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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #1e293b;
    overflow-x: hidden;
}

:root {
    --primary: #0057ff;
    --primary-dark: #0040cc;
    --secondary: #2c3b8e;
    --accent: #23dce1;
    --accent-dark: #1bc5ca;
    --light-bg: #f8fafc;
    --dark-text: #0f172a;
    --gray-text: #475569;
    --gradient-primary: linear-gradient(135deg, #0057ff, #23dce1);
    --gradient-secondary: linear-gradient(135deg, #2c3b8e, #0057ff);
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 87, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.get-mentor-btn, .call-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.get-mentor-btn:hover, .call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 87, 255, 0.3);
}

.call-btn {
    background: var(--secondary);
    margin-left: 1rem;
}

.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    max-width: 500px;
}

.highlight-stat {
    background: rgba(0, 87, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    margin: 1rem 0;
}

.hero-card {
    flex: 1;
    perspective: 1000px;
}

.hero-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid rgba(0, 87, 255, 0.2);
}

.hero-card:hover .hero-photo {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
    box-shadow: 0 30px 50px rgba(0, 87, 255, 0.3);
}

.floating-3d-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-3d-shape {
    position: absolute;
    opacity: 0.6;
    animation: float3D 20s infinite ease-in-out;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
}

.floating-3d-shape:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; border-radius: 30px; }
.floating-3d-shape:nth-child(2) { width: 120px; height: 120px; bottom: 15%; right: 8%; animation-delay: -3s; border-radius: 50%; opacity: 0.4; }
.floating-3d-shape:nth-child(3) { width: 50px; height: 50px; top: 50%; left: 85%; animation-delay: -6s; border-radius: 15px; background: var(--accent); }
.floating-3d-shape:nth-child(4) { width: 200px; height: 200px; bottom: -50px; left: -50px; border-radius: 50%; opacity: 0.2; background: var(--secondary); }
.floating-3d-shape:nth-child(5) { width: 40px; height: 40px; top: 70%; left: 20%; animation-delay: -9s; border-radius: 10px; background: var(--accent); }

@keyframes float3D {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(30px) rotate(240deg) scale(0.9); }
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.how-it-works, .focus-section, .why-works, .parent-section {
    padding: 5rem 0;
    background: white;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.review-carousel-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
    position: relative;
    overflow: hidden;
}

.review-carousel-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.review-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.review-track::-webkit-scrollbar {
    display: none;
}

.review-card-modern {
    flex: 0 0 360px;
    background: white;
    border-radius: 32px;
    padding: 2rem 1.8rem;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 20px 35px -10px rgba(0, 87, 255, 0.1);
    border: 1px solid rgba(0, 87, 255, 0.08);
}

.review-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 45px -12px rgba(0, 87, 255, 0.25);
    border-color: var(--primary);
}

.stars-container {
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.3rem;
}

.star-filled {
    color: #FFB800;
    font-size: 1.6rem;
}

.star-half {
    position: relative;
    display: inline-block;
    color: #e2e8f0;
    font-size: 1.6rem;
}

.star-half::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FFB800;
}

.review-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #1e293b;
    margin: 1rem 0 1.2rem 0;
    font-weight: 500;
    min-height: 100px;
}

.reviewer-name {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.reviewer-role {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.2rem;
}

.dot-indicators {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 87, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 6px var(--primary);
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
}

.fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.mentors-section {
    padding: 5rem 0;
    background: white;
}

.mentors-container {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.mentors-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem;
    scrollbar-width: none;
}

.mentors-track::-webkit-scrollbar {
    display: none;
}

.mentor-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.mentor-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 30px 40px rgba(0, 87, 255, 0.2);
    border-color: var(--primary);
}

.mentor-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.2rem;
    border: 4px solid var(--primary);
    transition: transform 0.3s;
}

.view-profile-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s;
    border: none;
}

.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 87, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.3);
}

.standout-section {
    background: var(--gradient-secondary);
    padding: 5rem 0;
    color: white;
}

.standout-section .section-title {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}

.standout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.standout-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.standout-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    color: var(--dark-text);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary);
}

.faq-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 87, 255, 0.1);
    background: white;
}

.faq-question {
    background: var(--light-bg);
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(0, 87, 255, 0.1);
}

.join-movement-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input, .form-group textarea {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
}

.submit-btn {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-buttons-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    background: var(--gradient-primary);
    transition: transform 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 28px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

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

.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 1px solid rgba(0, 87, 255, 0.2);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-text);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 87, 255, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-profile-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    border: 1px solid rgba(0, 87, 255, 0.1);
    animation: fadeScaleUp 0.5s ease forwards;
}

.team-profile-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.team-profile-card .team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary);
    transition: transform 0.3s;
}

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

.gallery-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    animation: fadeScaleUp 0.5s ease forwards;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 40px rgba(0, 87, 255, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.92);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 24px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
    border: 3px solid rgba(255,255,255,0.2);
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent);
}

@keyframes fadeScaleUp {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .nav-menu {
        display: none;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .review-card-modern {
        flex: 0 0 300px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}