 body {
            margin: 0;
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #abddf14d;
            color: #333;
 }

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background: linear-gradient(90deg, #DB5905, #6a0dad);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: none;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Container Layout */
.container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Ensures wrapping for smaller screens */
}

/* Logo Section */
.logo-section {
    mix-blend-mode: multiply;
    text-decoration: none;  /* Remove underline */
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 80px;
    margin-right: 10px;
}

.logo-title {
    font-family: 'Poppins', sans-serif; /* Replace with your desired font */
    font-size: 2rem; /* Adjust the size as needed */
    text-decoration: none;  /* Remove underline */
    text-align: left;
    color: #333;
    line-height: 1; /* Adjust spacing between the lines */
    margin: 0;
}

.line1 {
    padding-right: 120px;
    font-weight: bold;
    color: #ffffff; /* Star's color */
}

.line2 {
    font-weight: bold;
    color: #ffffff ; /* Academy's color */
}


/* Navigation Menu */
nav {
    flex: 1;
    margin: 10px 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Wraps links on smaller screens */
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin: 5px 10px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    padding: 5px 1px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevents text wrapping */
  
}

.nav-links a:hover {
    background: rgb(33, 215, 133);
    color: #0066cc;
    border-radius: 5px;
}



/* Call-to-Action Button */
.cta {
    background: white;
    color: #0066cc;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevents button text from wrapping */
}

.cta:hover {
    background: #004d99;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .logo-section {
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-links {
        justify-content: center;
    }

    .nav-links li {
        margin: 5px;
    }

    .cta {
        margin-top: 10px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .nav-links a {
        font-size: 0.9rem;
        padding: 5px;
    }

    .cta {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}
  /* Hero Section */

.hero {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* Slider */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
}

.slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    font-size: 24px;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Positioning */
.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

        /* Section Styling */
        section {
            padding: 2rem;
            background: #fff;
            margin: 1rem auto;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            max-width: 1350px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: #333;
        }
.item {
    background: #004d99;
    border-radius: 8px;
    margin-top: 1 rem;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(221, 208, 30, 0.1);
}

       /* Teacher Profiles */
.profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.profile-card {
    background: #f9f9f9;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.profile-card:hover {
    transform: scale(1.05);
}

.profile-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.profile-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.profile-card p {
    font-size: 0.9rem;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 8px;
    text-align: center;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-teacher-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Full-Size Photo Modal Styling */
#photoModal .modal-content {
    max-width: 60%;
    margin: 10% auto;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

#photoModal img {
    width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

/* Advantage section */
.advantage-section {
    background-color: #771be01e; /* Light blue background */
    text-align: center;
    padding: 40px 20px;
}

.advantage-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #002060;
}

.advantage-section p {
    font-size: 1.2em;
    color: #0073e6;
    margin-bottom: 30px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.card {
    font-size: 14px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card h3 {
    font-size: 1.2em;
    color: #002060;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card ul {
    list-style-type: none;
    padding: 0;
}

.card ul li {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
}

/* Display Modal when active */
.modal.active {
    display: block;
}
/* Resources */
   .resources {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
    
    }

.resource {
    flex: 1;
    max-width: 300px;
    background: #e7f5ff;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    }

.resource h4 {
    font-size: 1.1rem;
    margin: 0;
    }

/*FAQ section */

    /* .partition-fade-in{
    background-color: #771be01e;
    } */

    .faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 15px;
    background-color: #f8f8f8;
    cursor: pointer;
  }
  
  .faq-answer {
    padding: 15px;
    display: none;
  }
  
  .faq-arrow {
    float: right;
    font-size: 18px;
    line-height: 1;
    color: #333;
    transition: transform 0.3s ease;
  }
  
  .faq-question.active .faq-arrow {
    transform: rotate(180deg);
  }
 /* Contact Form Section */
 .feedback-form {
            background: #e7f5ff;
            padding: 2rem;
            margin: 2rem auto;
            border-radius: 8px;
            max-width: 600px;
        }
        .feedback-form input, .feedback-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
        .feedback-form button {
            background-color: #4CAF50;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
        }
        .feedback-form button:hover {
            background-color: #45a049;
        }
        /* Footer */
        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 1rem 0;
            margin-top: 2rem;
        }

        footer a {
            color: #4CAF50;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .profiles, .resources {
                flex-direction: column;
                align-items: center;
            }

            .profile-card, .resource {
                width: 90%;
            }
        }

        /* Additional Footer Styling */
  footer {
    background-color: #003366; /* Footer background color */
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  footer ul li {
    margin: 0 20px;
    flex-basis: 150px;
  }

  footer ul li h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ffffff;
  }

  footer ul li a {
    color: #D3D3D3;
    text-decoration: none;
    font-size: 0.9em;
    display: block;
    margin-bottom: 5px;
  }

  footer ul li a:hover {
    text-decoration: underline;
  }

  footer .social-links {
    color: rgb(255, 0, 0);
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  footer .social-links a {
    margin: 0 1%;
    color: #ffffff;
    font-size: 1.2em;
  }

  footer .social-links a:hover {
    color: #ffffff;
  }

  .footer-bottom {
    margin-top: 20px;
    font-size: 0.9em;
    color: #a7a5a5;
  }



   .newsletter-signup {
    margin: 20px 0;
  }

  .newsletter-signup a {
    background-color: #1ABC9C;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
  }

  .newsletter-signup a:hover {
    background-color: #16A085;
  }

  .quick-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .quick-links a {
    margin: 0 15px;
    color: #d6b8b8;
    text-decoration: none;
    font-size: 0.9em;
  }

  .contact-info {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #ffee03;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
  }

  
  .back-to-top {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.9em;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

.back-to-top:hover {
    text-decoration: underline;
}


#video-library {
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#video-library h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

#video-library p {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

#video-library label {
    font-size: 1rem;
    color: #444;
    margin-right: 0.5rem;
}

#video-library select {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 300px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.video-container h3 {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1rem;
}

.video-item {
    flex: 1 1 calc(33.333% - 1rem);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
    width: 100%;
    height: 180px;
}

.video-item p {
    padding: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

/* General Section Styling */
#resources {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#resources h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

#resources p {
    text-align: center;
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.downloads h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
    text-align: center;
}

.downloads ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1rem;
}

.downloads li {
    margin: 0.5rem;
}

.downloads a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #3498db;
    padding: 0.5rem 1rem;
    border: 2px solid #3498db;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.downloads a:hover {
    background-color: #3498db;
    color: #fff;
    transform: scale(1.05);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 10% auto;
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #34495e;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-content .close:hover {
    color: #e74c3c;
}

.resource-options,
#resourceOptions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
}

.resource-options .option,
#resourceOptions a {
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
    text-decoration: none;
    font-size: 1rem;
}

.resource-options .option:hover,
#resourceOptions a:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Keyframes for Modal Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.selector-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.selector-container:hover {
    transform: translateY(-5px);
}

/* Modern button styles */
.selector-container button, 
.selector-container select {
    padding: 12px 18px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #004488, #0066cc);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Button Hover Effect */
.selector-container button:hover, 
.selector-container select:hover {
    background: linear-gradient(90deg, #0066cc, #0088ff);
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animated Border on Focus */
.selector-container select:focus {
    border: 2px solid #fff;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .selector-container {
        flex-direction: column;
        align-items: stretch;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures the popup stays on top */
}

.popup-content {
    background: white;
    width: 60%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10000; /* Ensures content is above everything */
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 10001; /* Ensures the close button is clickable */
}

/* fixing screen size */

/* General Responsive Fixes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

/* Responsive Navigation */
.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.nav-links li {
    margin: 5px 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    background: rgb(33, 215, 133);
    color: #0066cc;
    border-radius: 5px;
}

/* Hero Section Responsive */
.hero {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-slider {
    width: 100%;
    max-height: 530px;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Course Cards Responsive */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.course-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Contact & Map Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}
.map-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .course-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-form, .contact-info {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    .nav-links li {
        margin: 5px 0;
    }
}

