/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Clean light theme */
    --primary-color: #2563eb;       /* blue */
    --primary-dark: #1e40af;
    --secondary-color: #f97316;     /* warm accent */
    --secondary-dark: #ea580c;
    --accent-color: #10b981;        /* green accent */
    --text-dark: #111827;           /* near-black text */
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;            /* light grey */
    --bg-white: #ffffff;            /* pure white sections */
    --border-color: #e5e7eb;
    --gradient-1: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-2: linear-gradient(135deg, #f97316 0%, #facc15 100%);
    --gradient-3: linear-gradient(135deg, #10b981 0%, #22c55e 100%);
    --gradient-hero: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(229, 231, 235, 0.8);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.logo:hover {
    opacity: 1;
}

.logo-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 62px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    /* Ensure the logo is always visible on the light navbar */
    mix-blend-mode: normal;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    width: 92px;
    height: 92px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1;
    transform: scale(0.9);
    pointer-events: none;
}

.logo:hover .logo-img {
    transform: scale(1.06) rotate(1deg);
    filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.25));
}

.logo:hover .logo-glow {
    opacity: 1;
    transform: scale(1.2);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 3px;
}

.logo-text-main {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 900;
    font-size: 1.65rem;
    letter-spacing: 0.08em;
    font-family: 'Playfair Display', 'Georgia', serif;
    text-transform: uppercase;
    position: relative;
}

.logo-letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: letterGlow 2s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
}

.logo-letter:nth-child(1) { animation-delay: 0s; }
.logo-letter:nth-child(2) { animation-delay: 0.1s; }
.logo-letter:nth-child(3) { animation-delay: 0.2s; }
.logo-letter:nth-child(4) { animation-delay: 0.3s; }

@keyframes letterGlow {
    0%, 100% {
        background-position: 0% center;
        transform: translateY(0) scale(1);
    }
    50% {
        background-position: 100% center;
        transform: translateY(-2px) scale(1.05);
    }
}

.logo:hover .logo-letter {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
}

.logo-letter::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.logo:hover .logo-letter::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.logo-text-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logo-sub-word {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.logo-sub-word::before {
    content: '•';
    position: absolute;
    left: -8px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.logo:hover .logo-text-sub {
    color: var(--primary-color);
    opacity: 1;
    gap: 8px;
}

.logo:hover .logo-sub-word {
    transform: translateX(2px);
}

.logo:hover .logo-sub-word::before {
    opacity: 0.6;
}

.logo-icon {
    font-size: 2rem;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--bg-light);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    will-change: auto;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    display: block;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    will-change: contents;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 10%;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 30%;
    right: 30%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    pointer-events: auto;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    padding: 0 24px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 9px 22px;
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    border-radius: 50px;
    font-size: 0.78rem;
    margin-top: 10.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    animation: pulseGlow 3s ease-in-out infinite;
    transition: var(--transition);
}

.hero-badge:hover {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    transform: translateY(-2px);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1), var(--shadow-lg);
    }
}

.hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    line-height: 1.2;
}

.title-line {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.title-main {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.95;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 96px 0;
    position: relative;
}

section#home {
    padding-top: 0;
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 4px;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-medium);
    margin-top: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

/* About Section */
.about {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./WhatsApp Image 2026-01-02 at 9.33.58 AM (3).jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.75;
    z-index: 0;
    filter: blur(0px);
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about .section-header {
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
    z-index: 2;
}

.about-text p {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.philosophy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.philosophy-list li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    color: var(--text-medium);
    position: relative;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    line-height: 1.8;
}

.philosophy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.feature-card:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

.feature-hover-effect {
    display: none;
}

.feature-card h4 {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-medium);
    font-size: clamp(0.9375rem, 1vw, 1rem);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-content {
    color: white;
}

.stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    padding: 80px 0;
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid var(--bg-light);
    transition: all 0.4s ease;
}

.testimonial-card.active .testimonial-content {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.2);
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.dot:hover {
    transform: scale(1.2);
    background: var(--primary-color);
    opacity: 0.7;
}

/* Programs Section */
.programs {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Main Programs Video */
.program-main-video {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.program-main-video:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.program-main-video video,
.program-main-video iframe {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* Program Section Styles */
.program-section {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.program-section h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.program-section h4 {
    font-size: clamp(1.25rem, 1.75vw, 1.5rem);
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.program-section p {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.program-classes,
.program-focus {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.program-classes li,
.program-focus li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--text-medium);
    position: relative;
    font-size: clamp(0.9375rem, 1vw, 1.0625rem);
    line-height: 1.7;
}

.program-classes li::before,
.program-focus li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.program-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-medium);
}

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

.fine-arts-category {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.fine-arts-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.fine-arts-category h4 {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.fine-arts-category ul {
    list-style: none;
    padding-left: 0;
}

.fine-arts-category ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-medium);
    position: relative;
    font-size: clamp(0.9375rem, 1vw, 1rem);
}

.fine-arts-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
}

/* Program Highlights under video */
.program-highlights {
    margin-top: 2.5rem;
    text-align: center;
}

.program-highlights h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.program-intro {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: var(--text-light);
}

.program-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.program-highlight-card {
    background: white;
    border-radius: 18px;
    padding: 1.7rem 1.5rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(74, 144, 226, 0.12);
}

.highlight-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.program-highlight-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.program-highlight-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 1;
}

.program-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover::after {
    width: 400px;
    height: 400px;
}

.program-card:hover {
    transform: translateY(-15px) rotateY(5deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.age-range {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.program-features {
    list-style: none;
    text-align: left;
}

.program-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
    position: relative;
    padding-left: 25px;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.program-features li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 0;
}

.gallery::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery .section-header {
    position: relative;
    z-index: 1;
}

.gallery .section-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: var(--bg-white);
    aspect-ratio: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: galleryFadeIn 0.5s ease-out forwards;
}

@keyframes galleryFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-item:nth-child(n+11) { animation-delay: 0.55s; }

/* Remove special size classes - all items same size */
.gallery-item-large,
.gallery-item-wide,
.gallery-item-tall {
    grid-column: span 1;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-icon {
    font-size: 2.5rem;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.gallery-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25), 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-text {
    opacity: 1;
    transform: translateY(0);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    background: var(--gradient-2);
}

.gallery-placeholder p {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Popup Ad Modal Styles */
.popup-ad-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.popup-ad-modal.active {
    display: flex;
    opacity: 1;
}

.popup-ad-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-ad-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: var(--transition);
    line-height: 1;
}

.popup-ad-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1) rotate(90deg);
}

.popup-ad-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.popup-ad-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .popup-ad-content {
        max-width: 95%;
        max-height: 85vh;
        border-radius: 12px;
    }
    
    .popup-ad-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 8px;
        right: 8px;
    }
    
    .popup-ad-image {
        max-width: 100%;
    }
}

/* Gallery Modal/Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    animation: imageFadeIn 0.5s ease-out;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.9);
    border-color: rgba(239, 68, 68, 0.9);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(37, 99, 235, 0.9);
    border-color: rgba(37, 99, 235, 0.9);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(1.05);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 10001;
    animation: counterFadeIn 0.5s ease-out 0.2s both;
}

@keyframes counterFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.lightbox-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10001;
    animation: infoFadeIn 0.5s ease-out 0.3s both;
}

@keyframes infoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-next {
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .lightbox-image {
        max-height: 75vh;
    }

    .lightbox-image-wrapper {
        padding: 15px;
        border-radius: 16px;
    }

    .lightbox-counter {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .lightbox-info {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-image-wrapper {
        padding: 10px;
    }

    .lightbox-image {
        max-height: 70vh;
    }
}

/* Admissions Section */
.admissions {
    background: var(--bg-light);
}

.admissions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
}

.required-docs {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.required-docs h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.required-docs ul {
    list-style: none;
}

.required-docs li {
    padding: 0.5rem 0;
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
}

.required-docs li::before {
    content: '📄';
    position: absolute;
    left: 0;
}

.admissions-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.admissions-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--bg-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
                      linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Why Choose SSGA Section */
.why-choose {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./WhatsApp Image 2026-01-02 at 9.48.03 AM.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.85;
    z-index: 0;
    filter: blur(0px);
}

.why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose .section-header {
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.why-choose-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    display: inline-block;
}

.why-choose-item:hover .why-choose-icon {
    transform: translateY(-4px) scale(1.1);
}

.why-choose-item h4 {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.why-choose-item p {
    color: var(--text-medium);
    font-size: clamp(0.9375rem, 1vw, 1rem);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-details h4 {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: clamp(0.9375rem, 1vw, 1.0625rem);
}

.enquiry-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-medium);
    font-size: clamp(0.9375rem, 1vw, 1rem);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.96);
    padding: 2.75rem 3rem;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.35);
    position: relative;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto 3rem auto;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.08) 0%, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.contact-form-wrapper > * {
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Feedback Section */
.feedback-section {
    background: var(--bg-light);
}

/* ── Feedback layout: form centred, testimonials full-width below ── */
.feedback-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feedback-form-wrapper {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
    padding: 2rem;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

/* ── Testimonials block ── */
.feedback-list-wrapper {
    width: 100%;
}

.feedback-list-title {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    text-align: center;
}

.feedback-list-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.feedback-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Testimonial card ── */
.feedback-item {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feedback-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.11);
}

.feedback-quote-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.feedback-stars {
    display: flex;
    gap: 3px;
    align-items: center;
}

.feedback-stars .star {
    color: #FF532E;
    font-size: 0.9rem;
    line-height: 1;
}

.feedback-item-text {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.88rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feedback-item:hover .feedback-item-text {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* user row at the bottom */
.feedback-item-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.feedback-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.feedback-item-name {
    margin: 0;
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.feedback-date {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1px;
}

.feedback-empty {
    margin: 0;
    color: var(--text-medium);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    color: white;
}

.footer-section h3 {
    font-size: clamp(1.375rem, 2vw, 1.625rem);
}

.footer-section h4 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: clamp(0.9375rem, 1vw, 1rem);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.9375rem, 1vw, 1rem);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9375rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 78px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        gap: 0;
    }

    .logo-img {
        height: 50px;
    }

    .logo-glow {
        width: 74px;
        height: 74px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .program-section {
        padding: 2rem;
    }

    .fine-arts-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .feedback-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-img {
        height: 45px;
    }

    .logo-glow {
        width: 66px;
        height: 66px;
    }

    section {
        padding: 48px 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero-video video {
        object-position: center;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .program-section {
        padding: 1.5rem;
    }

    .features-grid,
    .fine-arts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .program-main-video {
        margin-bottom: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .gallery-item:hover {
        transform: translateY(-4px);
    }
}


@media (max-width: 480px) {
    .feedback-list {
        grid-template-columns: 1fr;
    }
}
