* {
    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;
    --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 */
.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: 0.8rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 1rem;
}

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

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

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

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.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);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.get-mentor-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.get-mentor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.3);
}

.call-btn {
    background: var(--secondary);
    color: white;
    padding: 10px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 59, 142, 0.3);
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    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-cta {
    margin-top: 1rem;
}

.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 SHAPES */
.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 CONTAINERS */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.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;
}

/* SECTIONS */
.how-it-works, .focus-section, .why-works {
    padding: 4rem 0;
    background: white;
}

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

.feature-card {
    background: var(--light-bg);
    padding: 1.8rem;
    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);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--gray-text);
}

.focus-message {
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
    color: var(--gray-text);
}

/* REVIEW CAROUSEL */
.review-carousel-section {
    padding: 4rem 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 1.5rem;
}

.review-track {
    display: flex;
    gap: 1.5rem;
    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 340px;
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    scroll-snap-align: start;
    transition: all 0.4s;
    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(-8px);
    box-shadow: 0 30px 45px -12px rgba(0, 87, 255, 0.25);
}

.stars-container {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

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

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

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

.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);
}

/* MENTORS SECTION */
.mentors-section {
    padding: 4rem 0;
    background: white;
}

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

.mentors-track {
    display: flex;
    gap: 1.5rem;
    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 300px;
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    cursor: pointer;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px rgba(0, 87, 255, 0.2);
}

.mentor-card h3 {
    margin: 0.5rem 0;
    color: var(--dark-text);
}

.mentor-card p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.mentor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary);
}

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

.view-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.3);
}

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

.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 */
.standout-section {
    background: var(--gradient-secondary);
    padding: 4rem 0;
    color: white;
}

.standout-title {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
}

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

.standout-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    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);
}

.standout-feature h3 {
    margin-bottom: 0.5rem;
}

.light-feature {
    background: var(--light-bg);
    color: var(--dark-text);
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.light-feature:hover {
    background: white;
}

/* FAQ SECTION */
.faq-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

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

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

.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: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 87, 255, 0.1);
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* JOIN MOVEMENT SECTION - LIMITED SLOTS BOOKING */
.join-movement-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: white;
}

.join-movement-section .section-title {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
}

.join-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    color: var(--dark-text);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    width: 100%;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 87, 255, 0.4);
}

/* CONTACT SECTION */
.contact-section {
    padding: 4rem 0;
    background: white;
}

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

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--gradient-primary);
    transition: transform 0.3s;
}

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

/* FOOTER */
.footer {
    background: var(--secondary);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin: 0.3rem 0;
}

/* MODAL */
.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;
    color: #64748b;
}

.close:hover {
    color: #1e293b;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 4rem 0;
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
}

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

.filter-btn {
    background: white;
    border: 1px solid rgba(0, 87, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--dark-text);
    box-shadow: var(--shadow-sm);
    font-family: 'Inter', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

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

.team-profile-card {
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    cursor: pointer;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

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

.team-photo {
    width: 120px;
    height: 120px;
    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 {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    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;
}

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

/* LIGHTBOX */
.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);
}

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

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

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.7s;
}

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

/* MOBILE */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0.5rem 1rem;
    }
    .nav-menu {
        display: none;
    }
    .header-buttons {
        gap: 0.4rem;
    }
    .get-mentor-btn {
        padding: 7px 14px;
        font-size: 0.7rem;
    }
    .call-btn {
        padding: 7px 12px;
        font-size: 0.7rem;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-photo {
        max-width: 280px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .grid-cards,
    .standout-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 1.5rem;
    }
    .review-card-modern {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .get-mentor-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
    }
    .call-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}