/* ===== BASE STYLES ===== */
:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #fca311;
    --text-light: #f8f8f8;
    --text-muted: #b8b8b8;
    --bg-dark: #0f0f1a;
    --card-bg: #242424;
    --text-color: #000;
    --transition-speed: 0.3s;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    font-size: 17px;
    margin: 0;
    padding: 0;
}

/* ===== COMPONENT STYLES ===== */
/* Navigation */
.nav-container {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: var(--primary);
}

.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

.desktop-nav .logo img {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-speed);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links .nav-cta {
    background: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: 0.3s ease;
    color: #000;
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    background: #ee9911;
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

/* Mobile Navigation */
.mobile-nav-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 1rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.mobile-nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-subheading {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-text a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    border-radius: 6px;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.hero-text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

.hero-text .learn-more-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent);
}

.hero-text .learn-more-btn:hover {
    background: rgba(252, 163, 17, 0.1);
}

.hero-img {
    flex: 1;
    border-radius: 0.375rem;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: auto;
    border-radius: 0.375rem;
    box-shadow: var(--shadow);
}

/* Content Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto;
}

.section-subheading {
    text-align: center;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* About Section */
.about p, .program p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about ul, .program ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.about li, .program li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background-color: var(--primary);
    padding: 5rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.member-position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-links a {
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-dark);
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-info {
    padding: 2rem;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1;
}

/* Testimonials Begin */
       /* Testimonials Container */
        .testimonials-section {
            padding: 60px 20px;
            background-color:#fff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-size: 2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #3498db;
            margin: 15px auto 0;
        }

        /* Testimonials Slider */
        .testimonials-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform var(--transition-speed);
            will-change: transform;
        }

        /* Individual Testimonial Card */
        .testimonial-card {
            min-width: 100%;
            padding: 30px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow:0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all var(--transition-speed);
        }

        .testimonial-card.active {
            transform: scale(1.02);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .testimonial-rating {
            color: #f1c40f;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-style: italic;
            color: #333;
            margin-bottom: 25px;
            line-height: 1.6;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-text::before {
            top: -15px;
            left: -10px;
        }

        .testimonial-text::after {
            bottom: -25px;
            right: -10px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid #3498db;
        }

        .author-info h4 {
            color: #333;
            margin-bottom: 5px;
            text-align: left;
        }

        .author-info p {
            color: #7f8c8d;
            font-size: 0.9rem;
            text-align: left;
        }

        /* Navigation Dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #bdc3c7;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }

        .dot.active {
            background-color: #3498db;
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .slider-arrow {
            background-color: #fff;
            color: #3498db;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            pointer-events: all;
            transition: all var(--transition-speed);
        }

        .slider-arrow:hover {
            background-color: #3498db;
            color: #fff;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .testimonial-card {
                min-width: 50%;
                padding: 40px;
            }
        }

        @media (min-width: 992px) {
            .testimonial-card {
                min-width: 33.333%;
            }
        }
/* Testimonials End */

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span:first-child {
    font-weight: 600;
    color: var(--text-light);
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Google Form CTA */
.google-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: var(--secondary);
    text-align: center;
}

.google-form h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    max-width: 600px;
}

.google-form a {
    text-decoration: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    background: var(--accent);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.google-form a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

.google-form a i {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--text-muted);
    background: var(--card-bg);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
}

.contact textarea {
    min-height: 150px;
    resize: vertical;
}

.contact button {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.3);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom .social-links {
    margin-bottom: 1.5rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #bdc3c7;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-btn {
        display: block;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero-grid {
        flex-direction: column;
        padding-top: 2rem;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text a {
        display: block;
        margin: 0 auto 1rem;
        width: 80%;
    }
    
    .hero-text .learn-more-btn {
        background: transparent;
        color: var(--text-light);
        border: 1px solid var(--accent);
    }
    
    .hero-img {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .testimonial-card {
        min-width: 100% !important;
        padding: 1.5rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    .testimonials-slider {
        padding: 0;
    }
    
    .slider-nav {
        display: none;
    }
    
    .mobile-nav {
        width: 85%;
    }
}
