/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf898;
    color: #333;
}

/* Navbar */
.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #2A0E61, #1B1E4B);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.logo-text a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-text a:hover {
    color: #c8d2dd;
    transition: 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ffcc00;
    font-size: 19px;
}

/* Hamburger Menu for Mobile and Tablet */
.menu-toggle {
    display: none; /* Hidden on larger screens */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100; /* Ensure it's above other elements */
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) { /* For tablet and below */
    .menu-toggle {
        display: flex; /* Show hamburger menu */
    }

    .nav-links {
        display: none; /* Hide links initially */
        flex-direction: column;
        gap: 10px;
        background-color: #2A0E61;
        position: absolute;
        top: 60px;
        left: 20px; /* Align to the left */
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        display: flex; /* Show links when active */
    }

    .logo-container {
        flex: 1;
    }
}

/* Mobile Design (Smaller Screens) */
@media (max-width: 768px) {
    .menu-toggle {
        justify-content: flex-start; /* Align hamburger to the left */
    }

    .nav-links {
        left: 10px; /* Slightly adjust for smaller screens */
        top: 60px;
        width: calc(100% - 20px); /* Center dropdown width */
    }

    .nav-links a {
        font-size: 16px; /* Slightly smaller font for mobile */
    }
}
/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: linear-gradient(to right, #2A0E61, #1B1E4B); /* Matching your navbar */
        position: absolute;
        top: 60px;
        right: 10px;
        width: 250px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #fff;
        font-size: 16px;
    }

    .nav-links a:hover {
        color: #ffcc00;
    }

    .navbar {
        position: relative;
        justify-content: space-between;
    }
}

section {
    
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
#about{
    margin-top: 150px;
}

h2 {
    color: #4b0082;
}




/* Footer Styling */
footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #4B0082, #6A0DAD);
    color: white;
    font-size: 16px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sections */
.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* Headings */
.footer-section h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.youtube:hover { background: #FF0000; }
.facebook:hover { background: #1877F2; }
.instagram:hover { background: #C13584; }
.whatsapp:hover { background: #25D366; }
.email:hover { background: #FFD700; }

/* Policies */
.policies ul {
    list-style: none;
    padding: 0;
}

.policies ul li {
    margin: 8px 0;
}

.policies ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

.policies ul li a:hover {
    text-decoration: underline;
    color: #FFD700;
}
.map-container {
    margin: 20px auto;
    max-width: 1200px;
    width: 100%; /* Make the container take the full width */
    text-align: center; /* Center the map */
}

.map-container iframe {
    width: 100%; /* Make the map responsive */
    height: 300px; /* Set a default height */
    border: 0;
    border-radius: 8px; /* Add smooth corners for better aesthetics */
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-container {
        max-width: 90%; /* Reduce container width for smaller screens */
        margin: 15px auto;
    }
    .map-container iframe {
        height: 250px; /* Reduce height on smaller devices */
    }
}

@media (max-width: 480px) {
    .map-container {
        max-width: 100%; /* Full width for very small screens */
        margin: 10px auto;
    }
    .map-container iframe {
        height: 200px; /* Further reduce height for compact devices */
    }
}



/* Copyright */
.copyright {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}
