/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A1128;
    --secondary: #001F3F;
    --accent: #0066FF;
    --accent-dark: #0040A0;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.8);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}
/* ========== FONT SYSTEM - CLEAN & CONSISTENT ========== */
body {
    font-family: 'Inter', sans-serif; /* Main font for all text */
    background: var(--primary);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
}

/* Space Grotesk - Only for major headings */
.nav-left .logo,
.main-heading, .hero-text h1,
.about-card h2,
.section-title,
.gallery-heading,
.contact-card h2,
.testimonials h2,
.batch-container h3,
.modal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Sora - For special accent sections */
.typewriter,
.highlight-content h4,
.stat-number,
.feature-card h3,
.batch-card h4,
.testimonial-author,
.footer-brand {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

/* All other text automatically uses Inter (from body) */
/* ========== MOBILE TAP EFFECTS ========== */
@media (max-width: 768px) {
    /* Tap effect for cards */
    .feature-card:active,
    .stat-item:active,
    .testimonial-card-new:active,
    .highlight-card:active,
    .batch-card:active,
    .contact-item:active {
        transform: scale(0.98);
        background: rgba(0, 102, 255, 0.15);
        transition: all 0.1s ease;
    }
    
    /* Quick pulse effect for buttons */
    .nav-enroll-btn:active,
    .enroll-btn:active,
    .view-more-btn:active,
    .whatsapp-submit-btn:active,
    .back-btn:active {
        transform: scale(0.95);
        box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.3);
    }
    
    /* Ripple effect for nav links */
    .nav-links a:active {
        background: rgba(0, 102, 255, 0.1);
        border-radius: 20px;
        padding: 0.3rem 1rem;
    }
    
    /* Gallery items tap */
    .gallery-item:active {
        transform: scale(0.98);
        border-color: var(--accent);
        box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    }
    
    /* Image tap effect */
    .teacher-photo:active img,
    .image-wrapper:active img {
        transform: scale(1.02);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .feature-card:active,
    .stat-item:active {
        transform: scale(0.97);
    }
}
/* ========== FLOATING BACKGROUND NUMBERS ========== */
.floating-numbers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    overflow: hidden;
}

.floating-number {
    position: absolute;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 8vw, 6rem);
    white-space: nowrap;
    animation: floatNumber 20s linear infinite;
    text-shadow: 0 0 20px rgba(0,102,255,0.3);
}

@keyframes floatNumber {
    0% {
        transform: translateX(100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(-100%) rotate(360deg);
        opacity: 0;
    }
}

/* Different speeds for each number */
.floating-number:nth-child(1) { top: 10%; animation-duration: 25s; }
.floating-number:nth-child(2) { top: 30%; animation-duration: 30s; animation-delay: -5s; }
.floating-number:nth-child(3) { top: 50%; animation-duration: 35s; animation-delay: -10s; }
.floating-number:nth-child(4) { top: 70%; animation-duration: 28s; animation-delay: -15s; }
.floating-number:nth-child(5) { top: 90%; animation-duration: 32s; animation-delay: -20s; }

@media (max-width: 768px) {
    .floating-numbers {
        opacity: 0.1;
    }
}
/* ========== GLOWING BORDERS ON SCROLL ========== */
.glow-on-scroll {
    position: relative;
    overflow: hidden;
}

.glow-on-scroll::before {
    content: '';
    position: absolute;
    top: var(--y, 0);
    left: var(--x, 0);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,102,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.glow-on-scroll:hover::before,
.glow-on-scroll:active::before {
    opacity: 1;
}

/* Apply to cards */
.feature-card,
.testimonial-card-new,
.contact-item,
.batch-card {
    position: relative;
    overflow: hidden;
}

/* Remove the old before effect that conflicts */
.feature-card::before {
    display: none; /* Disable old effect */
}
/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* ========== NAVBAR ========== */
/* ========== NAVBAR - ULTRA MODERN ========== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 25, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    z-index: 1000;
    padding: 0.8rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Navbar scroll effect - when scrolled */
.main-nav.scrolled {
    background: rgba(5, 10, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.4);
    box-shadow: 0 5px 30px rgba(0, 102, 255, 0.2);
    padding: 0.5rem 2rem;
}



/* Left section with brand */
.nav-left {
    position: relative;
    overflow: hidden;
    padding: 5px 0;
}

.nav-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), #4D9EFF, transparent);
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-left .brand {
    display: flex;
    flex-direction: column;
}

/* Navbar Logo */
/* Navbar Logo - ULTRA PREMIUM & ATTRACTIVE */
.nav-left .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 5.5vw, 2rem) !important; /* Thoda bada kiya */
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #4D9EFF, #0066FF, #97bdf2, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    line-height: 1.2;
    letter-spacing: -0.02em; /* Thoda tight kiya */
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0,102,255,0.7);
    animation: logoPremium 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    transform: scale(1);
    transition: transform 0.3s ease;
}

/* Logo hover effect */
.nav-left .logo:hover {
    transform: scale(1.02);
    text-shadow: 0 0 40px rgba(0,102,255,0.9);
}

/* Premium animation for logo */
@keyframes logoPremium {
    0%, 100% {
        background-position: 0% 50%;
        text-shadow: 0 0 30px rgba(0,102,255,0.5);
    }
    33% {
        background-position: 50% 50%;
        text-shadow: 0 0 40px rgba(0,102,255,0.8);
    }
    66% {
        background-position: 100% 50%;
        text-shadow: 0 0 50px rgba(0,102,255,1);
    }
}
/* SPECIALLY FOR MOBILE - Extra Large aur Attractive */
@media (max-width: 480px) {
    .nav-left .logo {
        font-size: clamp(1.2rem, 6.5vw, 1.6rem) !important; /* Aur bada */
        letter-spacing: -0.01em;
        text-shadow: 0 0 40px rgba(0,102,255,0.8);
    }
    
    .nav-left .tagline {
        font-size: clamp(0.7rem, 3.8vw, 0.85rem) !important; /* Aur bada */
        letter-spacing: 1.8px;
        margin-top: 5px;
    }
}

/* For very small devices */
@media (max-width: 360px) {
    .nav-left .logo {
        font-size: clamp(1.1rem, 6vw, 1.4rem) !important;
    }
    
    .nav-left .tagline {
        font-size: clamp(0.65rem, 3.5vw, 0.75rem) !important;
    }
}

/* Navbar Tagline - Mobile ke liye bada kiya */
/* Navbar Tagline - WITHOUT ANY BLINKER */
.nav-left .tagline {
    font-family: 'Sora', sans-serif;
    font-size: clamp(0.7rem, 3vw, 0.85rem) !important;
    font-weight: 500;
    letter-spacing: 2px;
    color: transparent;
    background: linear-gradient(135deg, #aaa, #ffffff, #4D9EFF);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.9;
    text-transform: uppercase;
    margin-top: 2px;
    position: relative;
    padding-left: 5px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    border-left-color: var(--accent); /* Fixed color - no animation */
}
/* Ensure no animations on tagline */
.nav-left .tagline,
.nav-left .tagline::before,
.nav-left .tagline::after {
    animation: none !important;
    transition: none !important;
}

/* SPECIALLY FOR MOBILE - Extra Large */
@media (max-width: 480px) {
    .nav-left .logo {
        font-size: clamp(1.1rem, 6vw, 1.5rem) !important; /* Aur bada */
        line-height: 1.3;
    }
    
    .nav-left .tagline {
        font-size: clamp(0.65rem, 3.5vw, 0.8rem) !important; /* Aur bada */
        letter-spacing: 1.5px;
        margin-top: 5px;
    }
}

/* For very small devices */
@media (max-width: 360px) {
    .nav-left .logo {
        font-size: clamp(1rem, 5.5vw, 1.3rem) !important;
    }
    
    .nav-left .tagline {
        font-size: clamp(0.6rem, 3vw, 0.7rem) !important;
    }
}
.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
}

/* Nav Links */
/* Nav Links Container */
.nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Individual Nav Links */
.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Bottom border animation - enhanced */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #4D9EFF);
    border-radius: 10px;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 700;
}

/* Enroll Button */
.nav-enroll-btn {
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 1px;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 400;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.nav-enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Mobile Menu Button */
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin: 0;
    order: -1;  /* Isse button left side aa jayega */
}
/* Tablet Portrait */
@media (max-width: 768px) {
    .main-nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-left {
        flex: 1;
        text-align: center;
        margin-left: 40px;  /* Hamburger ke liye space */
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
        position: static;  /* absolute hatao */
        left: auto;
        top: auto;
        transform: none;
        font-size: 2rem;
        margin-left: 0;
        padding: 5px;
        width: auto;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }
    
    /* ... baaki ka code same rahega ... */
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
}
/* ========== 3D FLOATING SYMBOLS ========== */
.floating-3d-symbols {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    transform-style: preserve-3d;
    animation: rotate3d 40s linear infinite;
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.symbol-3d {
    position: absolute;
    font-size: 4rem;
    font-family: 'Space Grotesk', monospace;
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent);
    transform: translateZ(50px);
    animation: floatSymbol 8s ease-in-out infinite;
}

@keyframes floatSymbol {
    0%, 100% { transform: translateZ(50px) translateY(0); }
    50% { transform: translateZ(100px) translateY(-30px); }
}
/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #4D9EFF, #97bdf2, #0066FF);
    z-index: 1001;
    box-shadow: 0 0 20px #0066FF;
    transition: width 0.1s ease;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-text {
    transform-style: preserve-3d;
    animation: slideInLeft 1s ease;
}

/* Main Heading */
.main-heading, .hero-text h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(145deg, var(--accent), #0060d4, #97bdf2, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Typewriter */
.typewriter {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.3rem, 4.5vw, 2.2rem);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    border-right: 3px solid var(--accent);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: typewriter 3s steps(30) 1s 1 normal both,
               blink 0.75s step-end infinite;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* ========== HERO HIGHLIGHTS ========== */
.hero-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.highlight-card:hover {
    transform: translateX(15px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.15);
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(5deg) scale(1.1);
}

.highlight-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: white;
}

.highlight-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .highlight-card {
        padding: 1rem 1.2rem;
    }
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .highlight-content h4 {
        font-size: 1rem;
    }
    .highlight-content p {
        font-size: 0.85rem;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .hero-highlights {
        margin-top: 2rem;
        gap: 0.8rem;
    }
    .highlight-card {
        padding: 0.8rem 1rem;
    }
    .highlight-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    transform-style: preserve-3d;
    animation: rotateIn 1s ease;
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    transform-style: preserve-3d;
    transform: rotateY(10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5), 
                -20px 20px 40px rgba(0, 102, 255, 0.2);
    border: 3px solid rgba(0, 102, 255, 0.3);
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: clamp(4rem, 10vw, 8rem) 0;
    perspective: 1000px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: clamp(1.5rem, 4vw, 2rem);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 2;
}

.image-card {
    transform-style: preserve-3d;
}

.content-card {
    transform-style: preserve-3d;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px -20px rgba(0, 102, 255, 0.4);
    border-color: var(--accent);
}

.image-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(2deg);
}

.teacher-photo {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.teacher-photo img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.teacher-photo:hover img {
    transform: scale(1.05);
}

.medal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.3);
    animation: spin 10s linear infinite;
    z-index: 10;
    border: 2px solid #fff;
}

.medal-badge i {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}



/* About Card Typography */
.about-card h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-card p {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.9;
    opacity: 0.9;
}

/* ========== STATS GRID ========== */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1 1 100px;
    min-width: 100px;
    text-align: center;
    background: rgba(0, 102, 255, 0.08);
    padding: 1.2rem 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 102, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Tablet */
@media (max-width: 768px) {
    .stats-grid {
        gap: 1rem;
    }
    .stat-item {
        min-width: 80px;
        padding: 1rem 0.3rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .stats-grid {
        gap: 0.8rem;
    }
    .stat-item {
        min-width: 70px;
        padding: 0.8rem 0.2rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 30px 50px -20px rgba(0, 102, 255, 0.3);
    border-color: var(--accent);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: clamp(3rem, 6vw, 4rem);
    color: var(--accent);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(180deg);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.8;
}

/* ========== GALLERY SECTION - FIXED with Magnifying Glass ========== */
.gallery {
    padding: clamp(4rem, 10vw, 8rem) 0;
    overflow: hidden;
    background: #0d0d0d;
}

.gallery-heading {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    color: white;
}

.gallery-heading span {
    color: var(--accent);
}

.gallery-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-wrapper::before,
.gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0d0d0d, transparent);
}

.gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0d0d0d, transparent);
}

.gallery-track {
    display: flex;
    gap: 30px;
    animation: scrollGallery 30s linear infinite;
    width: fit-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    min-width: min(300px, 80vw);
    height: min(400px, 60vw);
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 102, 255, 0.3);
    position: relative;
}

/* Magnifying Glass Emoji - Bottom Left Corner */
.gallery-item::after {
    content: '🔍';
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
    background: rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Text that appears on hover */
.gallery-item::before {
    content: 'Click to view full screen';
    position: absolute;
    bottom: 20px;
    left: 70px;
    color: white;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
    white-space: nowrap;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 3;
}

.gallery-item:hover::after,
.gallery-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 102, 255, 0.4);
    border-color: var(--accent);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .gallery-item::after {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        bottom: 10px;
        left: 10px;
    }
    
    .gallery-item::before {
        font-size: 0.7rem;
        bottom: 15px;
        left: 55px;
        padding: 0.3rem 0.8rem;
        white-space: nowrap;
    }
}

@keyframes scrollGallery {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 4rem);
}

.view-more-btn {
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 1px;
    display: inline-block;
    padding: clamp(0.8rem, 3vw, 1rem) clamp(2rem, 5vw, 2.5rem);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #3427ed, #0066ff);
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(52, 39, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.view-more-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(52, 39, 237, 0.5);
}

.view-more-btn:active {
    transform: scale(0.95);
}

.view-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.view-more-btn:hover::before {
    left: 100%;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: clamp(2rem, 5vw, 3rem);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-card h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent);
    transform: translateX(10px);
    background: rgba(0, 102, 255, 0.05);
}

.contact-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    flex-shrink: 0;
}

.contact-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.contact-item p {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    word-break: break-word;
}

.whatsapp-badge {
    background: #25D366;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* Batch Timings */
.batch-container h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.batch-card {
    background: rgba(0,102,255,0.1);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0,102,255,0.3);
    transition: all 0.3s ease;
}

.batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,102,255,0.2);
}

.batch-card h4 {
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 0.5rem;
}

.batch-card p {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 500;
}

/* Map Container */
.map-container {
    height: min(450px, 60vh);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(3deg) rotateX(2deg);
    transition: transform 0.5s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.map-container:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.testimonials h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.8rem, 8vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.testimonial-card-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: clamp(1.5rem, 4vw, 2rem);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 40px -15px rgba(0, 102, 255, 0.4);
    border-color: var(--accent);
    background: rgba(0, 102, 255, 0.05);
}

.testimonial-card-new:hover::before {
    left: 100%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: 'Sora', sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem); /* Pehle 1.05-1.15 tha */
    font-weight: 400;
    line-height: 1.6; /* Pehle 1.7 tha */
    font-style: italic;
    margin-bottom: 1.2rem; /* Pehle 1.5rem tha */
}

.testimonial-author {
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.3rem);
    font-weight: 700;
}

.testimonial-detail {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
}

.stars {
    color: gold;
    margin-top: 0.5rem;
}
/* View All Reviews Button */
/* View All Reviews Button */
.view-all-reviews-btn {
    display: block;  /* inline-block se block karo */
    width: fit-content;  /* width content ke hisaab se */
    margin: 0 auto;  /* auto margin se center */
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 176, 155, 0.4);
    position: relative;
    overflow: hidden;
}

.view-all-reviews-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0, 176, 155, 0.6);
}

.view-all-reviews-btn:active {
    transform: translateY(0);
}

.view-all-reviews-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.view-all-reviews-btn:hover::before {
    left: 100%;
}
/* Review Button */
.review-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 176, 155, 0.3);
}

.review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 176, 155, 0.5);
}

.review-btn:active {
    transform: translateY(0);
}

/* ========== FIXED ENROLL BUTTON ========== */
.enroll-btn-3d {
    position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 1000;
    perspective: 1000px;
}

.enroll-btn {
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 1px;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 60px;
    color: white;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(0deg);
    box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: btnFloat 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.enroll-btn:hover {
    transform: translateZ(40px) rotateX(10deg);
    box-shadow: 0 40px 80px -10px var(--accent);
}

@keyframes btnFloat {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(-15px) translateZ(20px); }
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--accent);
    border-radius: 40px;
    padding: clamp(2rem, 5vw, 4rem);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform-style: preserve-3d;
    animation: modalAppear 0.5s ease forwards;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.2);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-50px) rotateX(-30deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.modal-content h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.2rem, 6vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

/* Form Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

input, select {
    font-family: 'Sora', sans-serif;
    width: 100%;
    padding: 1rem;
    background: rgba(71, 91, 159, 0.352);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    color: white;  /* YEH LINE ADD KARO */
    font-size: 1rem;
    transition: all 0.3s ease;
}
select option {
    background: #0A1128;  /* dark background */
    color: white;  /* white text */
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.whatsapp-submit-btn {
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 1px;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 400;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4);
}

.form-note {
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.site-footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 102, 255, 0.3);
    padding: 40px 0 30px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #4D9EFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
}

.footer-made {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.footer-made i {
    animation: heartbeat 1.5s ease infinite;
    color: #ff3366;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .typewriter {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .main-nav {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-enroll-btn {
        display: none;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
}

/* Mobile Large */
/* Mobile Large */
@media (max-width: 480px) {
    .container {
        padding: 0 4%;
    }
    
    .nav-left .logo {
        font-size: 0.9rem;
    }
    
    .nav-left .tagline {
        font-size: 0.45rem;
    }
    
    /* Hero section heading bada karo */
    .hero-text h1 {
        font-size: 2.8rem !important;  /* Pehle 2rem tha */
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .gradient-text {
        font-size: 2.8rem !important;
    }
    
    .typewriter {
        font-size: 1.4rem !important;  /* Pehle 1rem tha */
        white-space: normal;
        border-right: none;
        animation: none;
        margin-bottom: 1.5rem;
    }
    
    .about-card h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .gallery-item {
        min-width: 200px;
        height: 300px;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-accent {
    color: var(--accent);
}

.text-center {
    text-align: center;
}
/* ========== MOBILE MENU ANIMATIONS ========== */
@media (max-width: 768px) {
    .nav-links {
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transform-origin: top;
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        pointer-events: none;
        visibility: hidden;
    }
    
    .nav-links.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: all;
        visibility: visible;
        animation: slideDown 0.4s ease forwards;
    }
    
    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-30px) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    /* Mobile menu items staggered animation */
    .nav-links a {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        transition-delay: 0s;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
    
    /* Active link style in mobile menu */
    .nav-links a.active {
        color: var(--accent) !important;
        background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,102,255,0.05));
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        border-left: 3px solid var(--accent);
    }
    
    .nav-links a.active::after {
        display: none;
    }
    
    /* Mobile menu button animation */
    .mobile-menu-btn i {
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-btn:hover i {
        transform: scale(1.1);
    }
}
/* ========== SOCIAL SVG ICONS STYLING ========== */
.social-svg-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: rgba(0, 102, 255, 0.08) !important;
    border: 2px solid rgba(0, 102, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    padding: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

.social-svg-link:hover {
    transform: translateY(-8px) scale(1.1) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4) !important;
    background: rgba(0, 102, 255, 0.15) !important;
}

.social-svg-link:active {
    transform: scale(0.95) !important;
}

.social-svg-link svg {
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.3s ease !important;
}

.social-svg-link:hover svg {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .social-svg-row {
        gap: 10px !important;
        justify-content: center !important;
    }
    
    .social-svg-link {
        width: 50px !important;
        height: 50px !important;
        padding: 6px !important;
    }
}

@media (max-width: 480px) {
    .social-svg-link {
        width: 45px !important;
        height: 45px !important;
        padding: 5px !important;
    }
}

/* Glow effect on hover */
.social-svg-link::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,255,0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.social-svg-link:hover::before {
    width: 150px;
    height: 150px;
}
/* ========== ENROLL BUTTON CLICK EFFECT - SOOTHING ========== */
/* ========== ENROLL BUTTON CLICK EFFECT - ULTRA SOOTHING ========== */
.enroll-btn-click-effect {
    animation: ultraSoothingPulse 0.6s ease-out !important;
}

@keyframes ultraSoothingPulse {
    0% {
        transform: scale(1) translateZ(0);
        box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.5);
    }
    30% {
        transform: scale(1.08) translateZ(30px);
        box-shadow: 0 30px 60px -5px rgba(0, 102, 255, 0.8);
        background: linear-gradient(135deg, #4D9EFF, #0066FF, #4D9EFF);
    }
    60% {
        transform: scale(1.03) translateZ(15px);
        box-shadow: 0 25px 50px -8px rgba(0, 102, 255, 0.6);
    }
    100% {
        transform: scale(1) translateZ(0);
        box-shadow: 0 20px 40px -10px rgba(0, 102, 255, 0.5);
    }
}

/* Extra glow on click */
.enroll-btn:active {
    animation: clickBurst 0.3s ease-out !important;
}

@keyframes clickBurst {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 40px 20px rgba(0, 102, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}
/* Modal open hone par background ka soothing effect */
.modal.active ~ .enroll-btn-3d .enroll-btn {
    animation: softGlow 2s infinite alternate;
}

@keyframes softGlow {
    from {
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    }
    to {
        box-shadow: 0 20px 50px rgba(0, 102, 255, 0.7);
    }
}
/* Modal opening ko aur soothing banane ke liye */
.modal.active {
    animation: gentleFadeIn 0.4s ease forwards;
}

@keyframes gentleFadeIn {
    from {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0);
    }
    to {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
    }
}

.modal.active .modal-content {
    animation: softSlideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes softSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* ========== SVG CLICK EFFECT - SAME AS HOVER ========== */
.social-svg-link:active {
    transform: translateY(-8px) scale(1.1) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4) !important;
    background: rgba(0, 102, 255, 0.15) !important;
}

.social-svg-link:active svg {
    transform: scale(1.1) rotate(5deg) !important;
}

.social-svg-link:active::before {
    width: 150px;
    height: 150px;
}

/* Thoda smooth banane ke liye */
.social-svg-link {
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
