
html, body {
	height: 100%;
	    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
	color: #fff;
    background-color: #1A1A1A;
	background-image: url("/BGtr.png");
	background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: cover;
    color: white;

}

	@media (max-width: 768px) {
    /* Undo responsive styles here */
    body {
        width: 1024px !important;
        overflow-x: hidden;
    }
}
		
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.8);
            transition: background-color 0.3s ease;
        }

        header:hover {
            background-color: rgba(0, 0, 0, 1);
        }

        header .logo-container {
            display: flex;
            align-items: center;
        }

        header .logo-container img {
            width: 50px;
            height: auto;
            margin-right: 10px;
        }

        header .menu {
            display: flex;
            gap: 20px;
        }

        header .menu a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2em;
            transition: color 0.3s ease;
        }

        header .menu a:hover {
            color: #00ccff;
        }

        main {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

.description {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    margin: 50px 0 20px; /* Add top margin */
    font-size: 1.2em;
}

.description2 {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    text-align: left;
    margin: 50px 0 20px; /* Add top margin */
    font-size: 0.8em;
}

.buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;  /* Allows the buttons to wrap on smaller screens */
    justify-content: center;  /* Centers the buttons horizontally */
}

.button, .button2 {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background: linear-gradient(90deg, #007bff, #00ccff);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #000, 0 0 20px #000;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .buttons {
        flex-direction: row; /* Align buttons in a row for smaller screens */
    }
    
    .button, .button2 {
        flex: 1 1 20%; /* Make each button take up 30% width of the container */
        margin: 10px;
        padding: 20px 40px; /* Increased button size */
        font-size: 1.4em; /* Increased font size */
    }
}


        .button:hover {
            background: linear-gradient(90deg, #00ccff, #007bff);
            box-shadow: 0 0 20px #000, 0 0 40px #000;
        }


		
	/* Footer styles */
footer {
    background-color: #1A1A1A;
    padding: 15px 200px; /* Reduce padding to make it responsive */
    text-align: left;
	margin-top: auto; /* Pushes the footer to the bottom */
}

/* Footer container */
#footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping to adjust on smaller screens */
}

/* Footer sections */
.footer-section {
    flex: 1 1 20%; /* Maintain 4 equal sections */
    max-width: 20%; /* Prevent exceeding width */
    padding: 5px;
    text-align: left;
}


        /* Contact Form Styles */
        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            padding-top: 60px;
        }

        .modal-content {
            background-color: #000;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: #fff;
            text-decoration: none;
            cursor: pointer;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 1.2em;
            margin-bottom: 5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            font-size: 1em;
            border-radius: 5px;
            border: 1px solid #fff;
            background-color: #333;
            color: #fff;
        }

        .form-group textarea {
            height: 80px;
            resize: none;
        }

        .form-submit {
            background: linear-gradient(90deg, #007bff, #00ccff);
            border: none;
            color: #fff;
            padding: 15px 30px;
            font-size: 1.2em;
            cursor: pointer;
            border-radius: 10px;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .form-submit:hover {
            background: linear-gradient(90deg, #00ccff, #007bff);
            box-shadow: 0 0 20px #000, 0 0 40px #000;
        }
    
   /* CSS for the Cookie Banner */
    .cookie-banner {
      position: fixed;
      bottom: 10px;
      left: 10px;
      right: 10px;
      background: #333;
      color: #fff;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 14px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      display: none; /* Initially hidden */
      justify-content: space-between;
      align-items: center;
    }

    .cookie-banner.show {
      display: flex; /* Show the banner */
    }

    .cookie-banner a {
      color: #4caf50;
      text-decoration: underline;
    }

    .cookie-btn {
      background: #4caf50;
      color: #fff;
      border: none;
      padding: 5px 10px;
      border-radius: 3px;
      cursor: pointer;
      font-size: 12px;
    }

    .cookie-btn:hover {
      background: #45a049;
    }