/* ===================================================
   VASANTH SCHOOL - ELITE PREMIUM DESIGN
   Modern, Professional, Animated
   =================================================== */

/* Site Blank/Hide - Comment out to show site */
body * {
    /* display: none !important; */
     display: visible !important; 
}

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700&family=Noto+Sans+Tamil:wght@400;500;600;700&display=swap');

/* ===== ELITE ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102,126,234,0.4); }
    50% { box-shadow: 0 0 40px rgba(102,126,234,0.8); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(238, 90, 36, 0.6); }
}

/* Animation Classes */
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-slideInLeft { animation: slideInLeft 0.8s ease forwards; }
.animate-slideInRight { animation: slideInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Glassmorphism */
.glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* Elite Section Label */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

/* Elite Cards */
.elite-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102,126,234,0.1);
    position: relative;
    overflow: hidden;
}

.elite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.elite-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(102,126,234,0.25);
}

/* Elite Button */
.elite-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.elite-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.elite-btn:hover::before {
    left: 100%;
}

.elite-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.5);
}

/* Elite Footer */
.elite-footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.elite-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #43e97b);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
    pointer-events: none;
}

/* Hero Gradient Background */
.hero-gradient {
    background: linear-gradient(-45deg, #667eea, #764ba2, #6B8DD6, #8E54E9);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

/* CTA Gradient Background */
.cta-gradient {
    background: linear-gradient(-45deg, #667eea, #764ba2, #6B8DD6, #8E54E9);
    background-size: 400% 400%;
    animation: gradient-shift 10s ease infinite;
}

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #f59e0b;
    --accent-light: #fbbf24;

    /* Neutrals */
    --white: #ffffff;
    --black: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Layout */
    --container-max: 1200px;
    --section-gap: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 200ms;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

.heading-1 { font-size: clamp(32px, 5vw, 48px); }
.heading-2 { font-size: clamp(26px, 4vw, 36px); }
.heading-3 { font-size: clamp(20px, 3vw, 24px); }

/* ===== Top Bar ===== */
.top-bar {
    background: var(--gray-900);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    color: rgba(255,255,255,0.8);
    transition: color var(--duration);
}

.top-bar-contact a:hover { color: var(--white); }

.top-bar-btn {
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 12px;
    transition: all var(--duration);
}

.top-bar-btn:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.top-bar-social {
    display: flex;
    gap: 12px;
    margin-right: 16px;
}

.top-bar-social a { opacity: 0.7; transition: opacity var(--duration); }
.top-bar-social a:hover { opacity: 1; }

.top-bar-actions { display: flex; align-items: center; }

@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* ===== Announcement ===== */
.announcement-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--duration);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 50%;
    object-fit: contain;
}

.logo-text strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
}

.logo-text span {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-full);
    transition: all var(--duration);
}

.nav-link:hover { color: var(--gray-900); background: var(--gray-50); }
.nav-link.active { color: var(--primary); background: rgba(30, 64, 175, 0.08); }

.nav-cta { margin-left: 12px; }

/* Language Toggle */
.lang-toggle {
    display: flex;
    background: var(--gray-100);
    padding: 3px;
    border-radius: var(--radius-full);
    margin-right: 12px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    border-radius: var(--radius-full);
    transition: all var(--duration);
}

.lang-btn:hover { color: var(--gray-700); }
.lang-btn.active { background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm); }

/* Mobile Menu */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    width: 20px;
    height: 16px;
    position: relative;
}

.menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--duration);
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 7px; }
.menu-icon span:nth-child(3) { top: 14px; }

.menu-toggle.active .menu-icon span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-toggle.active .menu-icon span:nth-child(2) { opacity: 0; }
.menu-toggle.active .menu-icon span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--duration);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover { background: var(--gray-50); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== Hero Section ===== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 520px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span { color: #fbbf24; }

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Section Styles ===== */
section { padding: 80px 0; }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title { margin-bottom: 12px; }

.section-desc {
    color: var(--gray-500);
    font-size: 16px;
    line-height: 1.7;
}

.bg-light { background: var(--gray-50); }
.bg-white { background: var(--white); }

/* ===== Grid System ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--duration);
}

.card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Feature Card */
.feature-card {
    padding: 32px 24px;
    text-align: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all var(--duration);
}

.card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.card:hover .feature-icon span { filter: brightness(0) invert(1); }

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

/* Program Card */
.program-card { overflow: hidden; }

.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.program-card .card-body { padding: 24px; }

.program-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.program-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.program-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: gap var(--duration);
}

.card-link:hover { text-decoration: underline; }

/* Stat Card */
.stat-card {
    padding: 32px;
    text-align: center;
}

.stat-card h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-card p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Staff Card */
.staff-card {
    overflow: hidden;
    text-align: center;
}

.staff-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.staff-card .card-body { padding: 20px; }

.staff-card h4 { font-size: 15px; margin-bottom: 4px; }
.staff-card .role { color: var(--primary); font-size: 12px; font-weight: 600; }
.staff-card .subject { color: var(--gray-400); font-size: 12px; }

/* Sports Card */
.sports-card { overflow: hidden; }

.sports-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sports-card .card-body { padding: 20px; }
.sports-card h3 { font-size: 17px; margin-bottom: 6px; }
.sports-card p { color: var(--gray-500); font-size: 13px; line-height: 1.6; }

/* Facility Card */
.facility-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
}

.facility-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all var(--duration);
}

.card:hover .facility-icon {
    background: var(--primary);
    transform: rotate(-5deg);
}

.card:hover .facility-icon span { filter: brightness(0) invert(1); }

.facility-card h3 { font-size: 16px; margin-bottom: 4px; }
.facility-card p { color: var(--gray-500); font-size: 13px; line-height: 1.5; }

/* News Card */
.news-card { overflow: hidden; }

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-card .card-body { padding: 20px; }

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.news-date { font-size: 12px; color: var(--gray-400); }

.news-tag {
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-card h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.news-card p { color: var(--gray-500); font-size: 13px; line-height: 1.6; }

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.about-badge span { font-size: 13px; opacity: 0.9; }

.about-content .section-label { margin-bottom: 12px; }
.about-content .section-title { text-align: left; margin-bottom: 16px; }
.about-content p { color: var(--gray-600); margin-bottom: 12px; line-height: 1.7; }

.about-list { margin: 24px 0; }

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
}

.about-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* ===== Principal Section ===== */
.principal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
}

.principal-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.principal-content h3 { font-size: 24px; margin-bottom: 4px; }
.principal-role { color: var(--primary); font-weight: 600; font-size: 14px; margin-bottom: 20px; }

.principal-content blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin: 20px 0;
}

.principal-stats { display: flex; gap: 40px; margin-top: 24px; }
.p-stat strong { display: block; font-size: 20px; color: var(--primary); }
.p-stat span { font-size: 12px; color: var(--gray-500); }

/* ===== Staff Section ===== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== Sports Section ===== */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== Transport Section ===== */
.transport-section {
    background: var(--gray-900);
    color: var(--white);
}

.transport-section .section-label { background: rgba(255,255,255,0.1); color: var(--white); }
.transport-section .section-title { color: var(--white); }
.transport-section .section-desc { color: rgba(255,255,255,0.7); }

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.transport-features { display: flex; flex-direction: column; gap: 20px; }

.transport-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.transport-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.transport-item h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.transport-item p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.5; }

.transport-image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.route-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.route-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== Page Header ===== */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-header h1 { color: var(--white); margin-bottom: 12px; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: 0.8; }

/* ===== Admission Hero ===== */
.admission-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.admission-hero-content { max-width: 550px; }

.admission-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 56px);
    color: var(--gray-900);
    margin-bottom: 12px;
}

.admission-hero .breadcrumb {
    justify-content: flex-start;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.admission-hero .breadcrumb a { color: var(--primary); }

.admission-hero p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===== Admission Steps ===== */
.steps-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 48px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-200);
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: all var(--duration);
}

.step-item:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.step-item h3 { font-size: 15px; margin-bottom: 6px; }
.step-item p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ===== Admission Form ===== */
.admission-form-section { background: var(--gray-50); }

.admission-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.admission-info { position: sticky; top: 100px; }
.admission-info h2 { font-size: 28px; margin-bottom: 16px; }
.admission-info p { color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; }

.admission-checklist {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.admission-checklist h4 { font-size: 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

.admission-checklist li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 13px;
}

.admission-checklist li:last-child { border-bottom: none; }

.admission-checklist li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
}

.admission-form-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.admission-form-card h3 { font-size: 22px; margin-bottom: 6px; }
.admission-form-card .subtitle { color: var(--gray-500); margin-bottom: 24px; font-size: 14px; }

/* ===== Fee Cards ===== */
.fee-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.fee-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--duration);
}

.fee-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fee-card.featured {
    border-color: var(--primary);
    position: relative;
}

.fee-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.fee-card h3 { font-size: 18px; margin-bottom: 6px; }
.fee-card .grade { color: var(--gray-500); font-size: 13px; margin-bottom: 20px; }

.fee-card .price { font-size: 40px; font-weight: 700; color: var(--primary); line-height: 1; }
.fee-card .price span { font-size: 14px; font-weight: 500; color: var(--gray-500); }

.fee-card ul { text-align: left; margin: 24px 0; }

.fee-card li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-card li::before { content: '✓'; color: var(--primary); font-weight: bold; font-size: 12px; }

/* ===== Forms ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all var(--duration);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--duration);
}

.contact-card:hover { background: rgba(30, 64, 175, 0.05); }

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-icon span { filter: brightness(0) invert(1); }

.contact-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-card p { color: var(--gray-600); font-size: 13px; line-height: 1.6; }

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 { font-size: 20px; margin-bottom: 24px; }

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 48px;
    border: 1px solid var(--gray-200);
}

.map-container iframe { width: 100%; height: 350px; border: none; }

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-about .logo { margin-bottom: 20px; }
.footer-about .logo-mark { background: var(--primary); }
.footer-about .logo-text strong { color: var(--white); }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration);
}

.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-section h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 13px;
    color: var(--gray-400);
    transition: all var(--duration);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 13px;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.9), transparent);
    opacity: 0;
    transition: opacity var(--duration);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 13px; }

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: transform var(--duration);
}

.lightbox-close:hover { transform: rotate(90deg); }

/* ===== Faculty Page ===== */
.faculty-card {
    text-align: center;
    padding-bottom: 20px;
}

.faculty-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
}

.faculty-card .card-body { padding: 20px 16px 0; }
.faculty-card h3 { font-size: 16px; margin-bottom: 4px; }
.faculty-role { color: var(--primary); font-size: 12px; font-weight: 600; }
.faculty-subject { color: var(--gray-500); font-size: 12px; }

/* ===== Fee Table ===== */
.table-wrapper {
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.fee-table { width: 100%; border-collapse: collapse; }

.fee-table th,
.fee-table td { padding: 14px 20px; text-align: left; }

.fee-table th { background: var(--primary); color: var(--white); font-weight: 600; font-size: 13px; }
.fee-table td { border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:hover td { background: var(--gray-50); }

/* ===== Admission Process ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--gray-200);
}

.process-step { text-align: center; position: relative; }

.process-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: all var(--duration);
}

.process-step:hover .process-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 { font-size: 15px; margin-bottom: 6px; }
.process-step p { color: var(--gray-500); font-size: 13px; line-height: 1.5; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root { --section-gap: 80px; }

    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 32px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration);
    }

    .nav.active { opacity: 1; visibility: visible; }

    .nav-link {
        padding: 16px 0;
        font-size: 20px;
        border-bottom: 1px solid var(--gray-200);
        border-radius: 0;
    }

    .nav-cta { margin: 24px 0 0; }
    .nav-cta .btn { width: 100%; justify-content: center; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { max-width: none; }
    .hero-buttons { justify-content: center; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-badge { right: 16px; }

    .principal-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .principal-image img { max-width: 280px; margin: 0 auto; }
    .principal-stats { justify-content: center; }

    .transport-grid { grid-template-columns: 1fr; gap: 40px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

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

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    .admission-form-grid { grid-template-columns: 1fr; }
    .admission-info { position: static; }

    .contact-grid { grid-template-columns: 1fr; }

    .fee-cards { grid-template-columns: 1fr; }

    .steps-timeline { flex-direction: column; gap: 32px; }
    .steps-timeline::before { display: none; }

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }

    .hero { padding: 60px 0 40px; }
    .hero-image img { height: 300px; }

    .stat-item h3 { font-size: 28px; }

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

    .staff-grid { grid-template-columns: 1fr; }
    .sports-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .lang-toggle {
        position: fixed;
        top: 16px;
        right: 60px;
        z-index: 1001;
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }
}

@media (max-width: 640px) {
    .header-inner { height: 60px; }
    .logo-mark { width: 36px; height: 36px; font-size: 16px; }
    .logo-text strong { font-size: 14px; }
    .logo-text span { font-size: 10px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .route-list { grid-template-columns: 1fr; }

    .process-grid { grid-template-columns: 1fr; }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fadeInUp 0.5s var(--ease) forwards; }

/* Tamil Font Support */
html[lang="ta"] body { font-family: 'Noto Sans Tamil', var(--font-sans); }
html[lang="ta"] h1, html[lang="ta"] h2, html[lang="ta"] h3,
html[lang="ta"] h4, html[lang="ta"] h5, html[lang="ta"] h6 {
    font-family: 'Noto Sans Tamil', var(--font-serif);
}

/* ===== Features Slider Section ===== */
.features-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
}

.features-slider-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-slider-section .section-label {
    color: var(--accent);
}

.features-slider-section .section-title {
    color: var(--white);
}

.features-slider-section .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

.features-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.feature-slide {
    display: none;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.feature-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.slide-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.slide-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.slide-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.slide-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.slide-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.slide-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

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

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Highlight Cards */
.highlight-card {
    text-align: center;
    padding: 32px 24px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.highlight-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card .feature-icon span {
    font-size: 32px;
}

.highlight-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.highlight-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Slider Responsive */
@media (max-width: 768px) {
    .feature-slide.active {
        grid-template-columns: 1fr;
    }

    .slide-image img {
        min-height: 250px;
    }

    .slide-content {
        padding: 24px;
    }

    .slide-content h3 {
        font-size: 22px;
    }

    .slide-features {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ===== FOUNDER SECTION - PREMIUM DESIGN ===== */
.founder-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1628 0%, #1a2a4a 50%, #0d1929 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(102,126,234,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(238,90,36,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(118,75,162,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.founder-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* Floating Decorative Elements */
.founder-section .float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.founder-section .float-element-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(238,90,36,0.3), rgba(238,90,36,0.1));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.founder-section .float-element-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.1));
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.founder-section .float-element-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(238,90,36,0.1));
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image-wrapper {
    position: relative;
    perspective: 1000px;
}

/* Premium Image Frame */
.founder-image {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    transform-style: preserve-3d;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #ffd700, #ee5a24, #667eea) 1;
    border-radius: 30px;
    z-index: -1;
}

.founder-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(102,126,234,0.4), rgba(238,90,36,0.4));
    border-radius: 30px;
    z-index: -2;
    filter: blur(20px);
}

.founder-image-inner {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.founder-image-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-image:hover img {
    transform: scale(1.08);
}

/* Golden Badge */
.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffb347, #ffd700);
    color: #1a1a2e;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow:
        0 10px 30px rgba(255,215,0,0.4),
        0 0 20px rgba(255,215,0,0.2);
    z-index: 10;
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255,215,0,0.4), 0 0 20px rgba(255,215,0,0.2);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255,215,0,0.6), 0 0 40px rgba(255,215,0,0.4);
    }
}

/* Content Styling */
.founder-content {
    padding: 20px 0;
    color: white;
}

.founder-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    color: #ffd700;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.founder-label::before {
    content: '✦';
    font-size: 10px;
}

.founder-label::after {
    content: '✦';
    font-size: 10px;
}

.founder-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #ffd700, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.founder-title {
    font-size: 20px;
    color: #ee5a24;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.founder-qualification {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 1px;
}

/* Quote Box */
.founder-message {
    position: relative;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    padding: 30px 30px 30px 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border-left: 4px solid #ffd700;
    font-style: italic;
    backdrop-filter: blur(10px);
}

.founder-message::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: rgba(255,215,0,0.3);
    line-height: 1;
}

/* Stats Grid */
.founder-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.founder-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.founder-highlight-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,215,0,0.3);
    transform: translateX(5px);
}

.founder-highlight-item span.icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(238,90,36,0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(255,215,0,0.2);
}

.founder-highlight-item span.text {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Signature */
.founder-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.signature-line {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    background: linear-gradient(135deg, #ffd700, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Founder Section Responsive */
@media (max-width: 992px) {
    .founder-section {
        padding: 80px 0;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .founder-content h2 {
        font-size: 38px;
    }

    .founder-content {
        text-align: center;
    }

    .founder-label {
        display: inline-flex;
    }

    .founder-message {
        text-align: left;
    }

    .founder-signature {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-content h2 {
        font-size: 32px;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }

    .founder-badge {
        padding: 10px 20px;
        font-size: 12px;
    }

    .founder-message {
        padding: 20px 20px 20px 30px;
        font-size: 16px;
    }

    .founder-message::before {
        font-size: 40px;
        left: 8px;
    }
}
