/* ========================================
   SANDIPANI GURUKUL - INTERNATIONAL SCHOOL
   Professional Stylesheet
   Colors: Saffron/Orange, Deep Teal, Gold
   ======================================== */

/* CSS Variables */
:root {
    --primary-saffron: #E65C00;
    --primary-saffron-dark: #CC5200;
    --primary-saffron-light: #FF7A1A;
    --secondary-teal: #0A4D68;
    --secondary-teal-dark: #083A4F;
    --secondary-teal-light: #0D6A8F;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E8C547;
    --accent-gold-dark: #B8972E;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #555555;
    --text-muted: #777777;
    --bg-light: #FFFAF5;
    --bg-cream: #FFF8E7;
    --bg-white: #FFFFFF;
    --bg-dark: #0A1628;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

.page-banner .animate-fade-up{
    color:white;
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes fadeInRight {
    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 scaleInBounce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes floatRotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(230, 92, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(230, 92, 0, 0);
    }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-25px); }
    60% { transform: translateY(-15px); }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideInfiniteReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--accent-gold), 0 0 20px var(--accent-gold);
    }
    50% {
        box-shadow: 0 0 30px var(--accent-gold), 0 0 50px var(--accent-gold);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 50px rgba(212, 175, 55, 0.6);
    }
}

@keyframes borderPulse {
    0%, 100% { border-color: var(--primary-saffron); }
    50% { border-color: var(--accent-gold); }
}

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

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

@keyframes swing {
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.3); }
    70% { transform: scale(1); }
}

@keyframes morphShape {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

@keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotateY(10deg);
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    100% {
        transform: perspective(400px) rotateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wobble {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-25px) rotate(-5deg); }
    30% { transform: translateX(20px) rotate(3deg); }
    45% { transform: translateX(-15px) rotate(-3deg); }
    60% { transform: translateX(10px) rotate(2deg); }
    75% { transform: translateX(-5px) rotate(-1deg); }
}

@keyframes lightSpeedIn {
    0% {
        opacity: 0;
        transform: translateX(100%) skewX(-30deg);
    }
    60% {
        opacity: 1;
        transform: translateX(-20px) skewX(30deg);
    }
    80% {
        transform: translateX(0) skewX(-15deg);
    }
    100% {
        transform: translateX(0) skewX(0);
    }
}

/* Animation Classes */
.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-down { animation: fadeInDown 0.8s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.8s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.8s ease forwards; }
.animate-scale { animation: scaleIn 0.6s ease forwards; }
.animate-scale-bounce { animation: scaleInBounce 0.8s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-rotate { animation: floatRotate 5s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 2s ease infinite; }
.animate-bounce-in { animation: bounceIn 1s ease forwards; }
.animate-glow { animation: glow 2s ease-in-out infinite; }
.animate-swing { animation: swing 1s ease forwards; }
.animate-heartbeat { animation: heartbeat 1.5s ease-in-out infinite; }
.animate-morph { animation: morphShape 8s ease-in-out infinite; }
.animate-flip { animation: flipIn 1s ease forwards; }
.animate-wobble { animation: wobble 1s ease forwards; }
.animate-light-speed { animation: lightSpeedIn 1s ease forwards; }
.animate-zoom { animation: zoomInOut 6s 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; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* ========================================
   SVG ICONS
   ======================================== */

.icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.icon-svg-sm { width: 18px; height: 18px; }
.icon-svg-md { width: 28px; height: 28px; }
.icon-svg-lg { width: 36px; height: 36px; }
.icon-svg-xl { width: 48px; height: 48px; }

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    background: linear-gradient(135deg, var(--secondary-teal-dark), var(--secondary-teal));
    color: var(--text-light);
    padding: 5px 0;
    font-size: 12px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.top-bar-item:hover {
    color: var(--accent-gold);
}

.top-bar-item svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    transform: scale(0);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-light);
    position: relative;
    z-index: 1;
    transition: var(--transition-normal);
}

.social-link:hover svg {
    fill: var(--secondary-teal);
    transform: scale(1.1);
}

/* ========================================
   MAIN HEADER
   ======================================== */

.main-header {
    background: var(--bg-white);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 65px;
    width: auto;
    transition: var(--transition-normal);
}

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

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary-saffron);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    font-size: 11px;
    color: var(--secondary-teal);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 5px;
}

.main-nav a {
    padding: 12px 20px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-saffron);
    background: rgba(230, 92, 0, 0.08);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 50%;
}

.header-btn {
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: var(--text-light);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(230, 92, 0, 0.35);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 92, 0, 0.45);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-saffron);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.35) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(10, 22, 40, 0.45) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 1000px;
    padding: 0 20px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease, glow 3s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
    color: var(--accent-gold);
    animation: textGlow 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: 1px;
}

.hero-motto {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--accent-gold);
    margin-bottom: 45px;
    animation: fadeInUp 1s ease 0.3s backwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 0 25px;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
}

.hero-stat .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 8px;
    display: block;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-dark);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--secondary-teal);
    border-color: var(--text-light);
    transform: translateY(-4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 3px;
    animation: fadeInDown 1.5s ease infinite;
}

/* ========================================
   QUICK INFO BAR
   ======================================== */

.quick-info-bar {
    background: var(--bg-white);
    padding: 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
    margin-top: -70px;
    margin-left: 40px;
    margin-right: 40px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-info-item {
    padding: 20px 25px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.quick-info-item:last-child {
    border-right: none;
}

.quick-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.quick-info-item:hover {
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: var(--text-light);
}

.quick-info-item:hover::before {
    transform: scaleX(1);
}

.quick-info-item .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(230, 92, 0, 0.25);
}

.quick-info-item .icon-box svg {
    width: 30px;
    height: 30px;
    fill: var(--text-light);
    transition: var(--transition-normal);
}

.quick-info-item:hover .icon-box {
    background: var(--text-light);
    transform: scale(1.1) rotate(10deg);
}

.quick-info-item:hover .icon-box svg {
    fill: var(--primary-saffron);
}

.quick-info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.quick-info-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
    padding: 50px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.1));
    color: var(--primary-saffron);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 92, 0, 0.2);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-saffron);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--bg-white);
    overflow: hidden;
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--bg-white);
}

.about-img-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content h3 span {
    color: var(--primary-saffron);
}

.about-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
}

.about-feature:hover {
    background: rgba(230, 92, 0, 0.1);
    transform: translateX(5px);
}

.about-feature .feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature .feature-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--text-light);
}

.about-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.accreditations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.accreditation-item {
    background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-teal-light));
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.accreditation-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(10, 77, 104, 0.3);
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-teal-dark));
    padding: 80px 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,%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.03'%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");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.stat-card .icon-box svg {
    width: 36px;
    height: 36px;
    fill: var(--secondary-teal);
}

.stat-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
    animation: pulse 1s ease infinite;
}

.stat-card .number {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-light);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */

.programs-section {
    background: var(--bg-light);
}

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

.program-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 30px;
    position: relative;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    right: 25px;
    box-shadow: 0 8px 25px rgba(230, 92, 0, 0.3);
    transition: var(--transition-normal);
}

.program-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-light);
}

.program-card:hover .program-icon {
    transform: rotate(15deg) scale(1.1);
}

.program-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.program-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-saffron);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
}

.program-link svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-saffron);
    transition: var(--transition-normal);
}

.program-link:hover {
    color: var(--primary-saffron-dark);
}

.program-link:hover svg {
    transform: translateX(5px);
}

/* ========================================
   IMAGE SLIDER
   ======================================== */

.slider-section {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    overflow: hidden;
}

.slider-header {
    text-align: center;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    gap: 10px;
    animation: slideInfinite 40s linear infinite;
    width: fit-content;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-item {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-normal);
}

.slider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 1;
}

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

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.slider-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--text-light);
    transform: translateY(100%);
    transition: var(--transition-normal);
    z-index: 2;
}

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

.slider-item-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.slider-item-content p {
    font-size: 13px;
    opacity: 0.9;
}

/* Reverse Slider */
.slider-track-reverse {
    animation: slideInfiniteReverse 40s linear infinite;
}

/* ========================================
   FACILITIES SECTION
   ======================================== */

.facilities-section {
    background: var(--bg-white);
}

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

.facility-card {
    position: relative;
    height: 320px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.facility-card:hover img {
    transform: scale(1.15);
}

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 77, 104, 0.95), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-normal);
}

.facility-card:hover .facility-overlay {
    background: linear-gradient(to top, rgba(230, 92, 0, 0.95), rgba(230, 92, 0, 0.4) 70%);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.facility-card:hover .facility-icon {
    background: var(--accent-gold);
    transform: scale(1.1) rotate(10deg);
}

.facility-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-light);
}

.facility-card:hover .facility-icon svg {
    fill: var(--secondary-teal);
}

.facility-overlay h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.facility-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.facility-card:hover .facility-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.1), transparent);
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(230, 92, 0, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-saffron);
}

.testimonial-author-info h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--primary-saffron);
}

/* ========================================
   NEWS SECTION
   ======================================== */

.news-section {
    background: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.news-featured {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-lg);
}

.news-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-featured:hover img {
    transform: scale(1.05);
}

.news-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-light);
}

.news-category {
    display: inline-block;
    background: var(--primary-saffron);
    color: var(--text-light);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-featured-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-gold);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

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

.news-item img {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-content .news-category {
    background: var(--secondary-teal);
    font-size: 10px;
    padding: 4px 10px;
    align-self: flex-start;
}

.news-item-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-item-content .news-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ---- Animated Bubble Background ---- */
.cta-bubbles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0.4);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-800px) scale(1.2);
        opacity: 0;
    }
}

@keyframes bubbleSway {
    0%, 100% { margin-left: 0; }
    25% { margin-left: 40px; }
    75% { margin-left: -30px; }
}

.cta-bubbles .bubble {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    animation: bubbleRise linear infinite, bubbleSway ease-in-out infinite;
    z-index: 1;
}

.cta-bubbles .bubble:nth-child(1)  { left: 2%;  width: 35px; height: 35px; animation-duration: 6s, 2.5s; animation-delay: 0s; }
.cta-bubbles .bubble:nth-child(2)  { left: 6%;  width: 22px; height: 22px; animation-duration: 7s, 3s; animation-delay: 0.5s; }
.cta-bubbles .bubble:nth-child(3)  { left: 11%; width: 55px; height: 55px; animation-duration: 8s, 3.5s; animation-delay: 1s; }
.cta-bubbles .bubble:nth-child(4)  { left: 16%; width: 30px; height: 30px; animation-duration: 5.5s, 2.8s; animation-delay: 0.3s; }
.cta-bubbles .bubble:nth-child(5)  { left: 22%; width: 60px; height: 60px; animation-duration: 7.5s, 3.2s; animation-delay: 1.4s; }
.cta-bubbles .bubble:nth-child(6)  { left: 28%; width: 20px; height: 20px; animation-duration: 5s, 2.5s; animation-delay: 0.8s; }
.cta-bubbles .bubble:nth-child(7)  { left: 34%; width: 70px; height: 70px; animation-duration: 9s, 4s; animation-delay: 2s; }
.cta-bubbles .bubble:nth-child(8)  { left: 41%; width: 32px; height: 32px; animation-duration: 6.5s, 3s; animation-delay: 1.1s; }
.cta-bubbles .bubble:nth-child(9)  { left: 48%; width: 50px; height: 50px; animation-duration: 7s, 3.5s; animation-delay: 0.4s; }
.cta-bubbles .bubble:nth-child(10) { left: 55%; width: 26px; height: 26px; animation-duration: 6s, 2.5s; animation-delay: 1.6s; }
.cta-bubbles .bubble:nth-child(11) { left: 62%; width: 45px; height: 45px; animation-duration: 8s, 3.2s; animation-delay: 2.2s; }
.cta-bubbles .bubble:nth-child(12) { left: 69%; width: 28px; height: 28px; animation-duration: 5.5s, 2.5s; animation-delay: 0.9s; }
.cta-bubbles .bubble:nth-child(13) { left: 76%; width: 58px; height: 58px; animation-duration: 7.5s, 3.5s; animation-delay: 1.3s; }
.cta-bubbles .bubble:nth-child(14) { left: 83%; width: 24px; height: 24px; animation-duration: 5.2s, 2.2s; animation-delay: 1.8s; }
.cta-bubbles .bubble:nth-child(15) { left: 90%; width: 65px; height: 65px; animation-duration: 9s, 4s; animation-delay: 2.5s; }
.cta-bubbles .bubble:nth-child(16) { left: 97%; width: 18px; height: 18px; animation-duration: 4.5s, 2s; animation-delay: 1.2s; }

.cta-bubbles .bubble:nth-child(17) { left: 4%;  width: 40px; height: 40px; animation-duration: 6.5s, 3s; animation-delay: 0.7s; }
.cta-bubbles .bubble:nth-child(18) { left: 13%; width: 30px; height: 30px; animation-duration: 7.2s, 3.2s; animation-delay: 1.5s; }
.cta-bubbles .bubble:nth-child(19) { left: 19%; width: 52px; height: 52px; animation-duration: 8s, 3.5s; animation-delay: 0.6s; }
.cta-bubbles .bubble:nth-child(20) { left: 25%; width: 22px; height: 22px; animation-duration: 5.5s, 2.5s; animation-delay: 2.1s; }
.cta-bubbles .bubble:nth-child(21) { left: 37%; width: 60px; height: 60px; animation-duration: 7.8s, 3.4s; animation-delay: 1.9s; }
.cta-bubbles .bubble:nth-child(22) { left: 44%; width: 27px; height: 27px; animation-duration: 5.3s, 2.3s; animation-delay: 0.8s; }
.cta-bubbles .bubble:nth-child(23) { left: 52%; width: 48px; height: 48px; animation-duration: 8.5s, 3.6s; animation-delay: 2.3s; }
.cta-bubbles .bubble:nth-child(24) { left: 59%; width: 25px; height: 25px; animation-duration: 5s, 2.4s; animation-delay: 1.1s; }
.cta-bubbles .bubble:nth-child(25) { left: 66%; width: 55px; height: 55px; animation-duration: 7.6s, 3.3s; animation-delay: 1.7s; }
.cta-bubbles .bubble:nth-child(26) { left: 72%; width: 20px; height: 20px; animation-duration: 4.8s, 2.1s; animation-delay: 2.6s; }
.cta-bubbles .bubble:nth-child(27) { left: 79%; width: 62px; height: 62px; animation-duration: 9s, 4s; animation-delay: 0.9s; }
.cta-bubbles .bubble:nth-child(28) { left: 86%; width: 28px; height: 28px; animation-duration: 5.7s, 2.6s; animation-delay: 1.4s; }
.cta-bubbles .bubble:nth-child(29) { left: 93%; width: 45px; height: 45px; animation-duration: 6.8s, 3s; animation-delay: 2s; }
.cta-bubbles .bubble:nth-child(30) { left: 98%; width: 22px; height: 22px; animation-duration: 5.2s, 2.2s; animation-delay: 1.3s; }

.cta-bubbles .bubble:nth-child(31) { left: 9%;  width: 50px; height: 50px; animation-duration: 8s, 3.5s; animation-delay: 2.4s; }
.cta-bubbles .bubble:nth-child(32) { left: 31%; width: 24px; height: 24px; animation-duration: 5.4s, 2.4s; animation-delay: 1.6s; }
.cta-bubbles .bubble:nth-child(33) { left: 57%; width: 58px; height: 58px; animation-duration: 8.7s, 3.7s; animation-delay: 0.5s; }
.cta-bubbles .bubble:nth-child(34) { left: 74%; width: 26px; height: 26px; animation-duration: 5.6s, 2.5s; animation-delay: 2.2s; }
.cta-bubbles .bubble:nth-child(35) { left: 95%; width: 60px; height: 60px; animation-duration: 9.2s, 4.2s; animation-delay: 1.8s; }

/* Static dot pattern removed - using animated bubbles instead */

.cta-content {
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-normal);
}

.cta-btn-light {
    background: var(--text-light);
    color: var(--primary-saffron);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.cta-btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta-btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-saffron);
    transform: translateY(-4px);
}

/* ========================================
   PARTNERS SECTION
   ======================================== */

.partners-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-item {
    padding: 20px 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    font-weight: 600;
    color: var(--text-gray);
    font-size: 15px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-saffron);
}

/* ========================================
   APP DOWNLOAD SECTION
   ======================================== */

.app-section {
    background: linear-gradient(135deg, var(--secondary-teal-dark), var(--secondary-teal));
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
}

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

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

.app-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-content h2 span {
    color: var(--accent-gold);
}

.app-content p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 15px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-feature svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-gold);
}

.app-feature span {
    font-size: 15px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    transition: var(--transition-normal);
}

.app-btn:hover {
    background: var(--text-light);
    color: var(--secondary-teal);
    border-color: var(--text-light);
    transform: translateY(-5px);
}

.app-btn svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.app-btn-text {
    text-align: left;
}

.app-btn-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.app-btn-text strong {
    font-size: 18px;
    font-weight: 600;
}

.app-image {
    position: relative;
    text-align: center;
}

.app-image img {
    max-width: 350px;
    margin: 0 auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-logo-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--accent-gold);
}

.footer-logo-text span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

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

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-saffron);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-links a:hover::before {
    background: var(--accent-gold);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-saffron);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    margin-left: 20px;
}

/* ========================================
   PREMIUM VIDEO SECTION
   ======================================== */

.premium-video-section {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.premium-video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.05), transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.premium-video-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 132, 170, 0.04), transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.premium-video-section > .container {
    position: relative;
    z-index: 1;
}

.video-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.video-label {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E65C00;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.video-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.video-main-title span {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description {
    font-size: 17px;
    color: #555555;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.video-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    animation: fadeInUp 0.8s ease;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.2s; }
.video-card:nth-child(5) { animation-delay: 0.3s; }
.video-card:nth-child(6) { animation-delay: 0.4s; }

.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.video-card.featured {
    grid-column: 2;
    grid-row: 1 / 3;
}

.video-card-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-card-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-card:hover .video-card-container img {
    transform: scale(1.08);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(230, 92, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    backdrop-filter: blur(0px);
}

.video-card:hover .video-card-overlay {
    opacity: 1;
    backdrop-filter: blur(6px);
}

.video-play-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(230, 92, 0, 0.4);
    padding: 0;
}

.video-play-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.video-play-large:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(230, 92, 0, 0.6);
    background: linear-gradient(135deg, #FF7A1A, #E65C00);
}

.video-play-large svg {
    width: 32px;
    height: 32px;
    fill: white;
    position: relative;
    z-index: 1;
    margin-left: 4px;
}

.video-card-info {
    padding: 7px;
}

.video-card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.video-card-info p {
    font-size: 13px;
    color: #555555;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .video-card.featured {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-main-title {
        font-size: 40px;
    }
    
    .video-description {
        font-size: 15px;
    }
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* ========================================
   PAGE BANNER
   ======================================== */

.page-banner {
    background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-teal-dark));
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    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.05'%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");
}

.page-banner-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-banner h1 span {
    color: var(--accent-gold);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 15px;
}

.breadcrumb a {
    color: var(--accent-gold);
}

.breadcrumb span {
    opacity: 0.7;
}

/* Page Banner About Specific */
.page-banner-about {
    background: linear-gradient(135deg, var(--secondary-teal-dark), var(--secondary-teal));
    padding: 140px 0 100px;
}

.page-banner-about .banner-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.page-banner-about h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.page-banner-about p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

/* ========================================
   ABOUT INTRO SECTION
   ======================================== */

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

.about-intro-images {
    position: relative;
    height: 500px;
}

.intro-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intro-img-main:hover img {
    transform: scale(1.08);
}

.intro-img-float {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 55%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
    animation: float 4s ease-in-out infinite;
}

.intro-img-float img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intro-img-float:hover img {
    transform: scale(1.08);
}

.experience-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--bg-white);
    padding: 25px 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: scaleInBounce 0.8s ease;
}

.counter-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-saffron);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-text {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.about-intro-content {
    padding-left: 20px;
}

.section-title-lg {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title-lg span {
    color: var(--primary-saffron);
}

.intro-lead {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--primary-saffron);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.1));
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 4px;
}

.highlight-item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */

.mission-vision-section {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
}

.mv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.mv-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--text-light);
}

.mv-card:hover .mv-icon {
    transform: scale(1.15) rotate(-15deg);
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.mv-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.1), transparent);
    border-radius: 50%;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */

.timeline-section {
    background: var(--bg-white);
}

.timeline-container {
    position: relative;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-saffron), var(--accent-gold), var(--primary-saffron));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 60px;
    text-align: right;
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    padding-left: 60px;
    margin-left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 0;
    right: -28px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-light);
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -28px;
    right: auto;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2) rotate(360deg);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(230, 92, 0, 0.4);
}

.timeline-content {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(230, 92, 0, 0.1);
}

.timeline-content:hover {
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.05), rgba(212, 175, 55, 0.05));
    border-color: var(--primary-saffron);
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   LEADERSHIP SECTION
   ======================================== */

.leadership-section {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leader-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 77, 104, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-overlay a {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    transform: scale(0.8);
}

.leader-card:hover .leader-overlay a {
    transform: scale(1) rotate(360deg);
}

.leader-overlay a:hover {
    background: var(--primary-saffron);
}

.leader-overlay svg {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
}

.leader-info {
    padding: 25px;
}

.leader-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.leader-info > span {
    display: block;
    color: var(--primary-saffron);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.leader-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--primary-saffron);
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-light);
}

.contact-card-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-saffron);
    box-shadow: 0 0 0 4px rgba(230, 92, 0, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.4);
}

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

.map-section {
    height: 450px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-detail-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-detail-grid:nth-child(even) {
    direction: rtl;
}

.about-detail-grid:nth-child(even) > * {
    direction: ltr;
}

.about-detail-image {
    position: relative;
}

.about-detail-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-detail-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 4px solid var(--primary-saffron);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-detail-content h2 span {
    color: var(--primary-saffron);
}

.about-detail-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-saffron), var(--accent-gold));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 55%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 55%;
}

.timeline-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-white);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent var(--bg-white) transparent transparent;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(230, 92, 0, 0.3);
    z-index: 1;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.team-card {
    text-align: center;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 5px solid var(--bg-white);
    box-shadow: var(--shadow-md);
    position: relative;
}

.team-card:hover .team-image {
    border-color: var(--primary-saffron);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-card .position {
    font-size: 14px;
    color: var(--primary-saffron);
    font-weight: 500;
    margin-bottom: 15px;
}

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

/* ========================================
   EVENTS / GALLERY PAGE
   ======================================== */

.events-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--bg-white);
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    border-color: var(--primary-saffron);
    color: var(--text-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(230, 92, 0, 0.15);
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--bg-light);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    box-shadow: 0 16px 48px rgba(230, 92, 0, 0.25);
    transform: translateY(-4px);
}

.gallery-item.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.gallery-item-wide {
    grid-column: span 2;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.85) 0%, rgba(212, 175, 55, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 28px;
    opacity: 0;
    transition: var(--transition-normal);
    backdrop-filter: blur(4px);
}

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

.overlay-content {
    width: 100%;
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
    transform: translateY(15px);
    transition: var(--transition-normal);
}

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

.gallery-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(15px);
    transition: var(--transition-normal) 0.1s;
}

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

.view-btn {
    background: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--primary-saffron);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .view-btn {
    transform: translate(-50%, -50%) scale(1);
}

.view-btn:hover {
    background: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.15);
}

.view-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

/* ========================================
   ANTIQUE LIGHTBOX MODAL
   ======================================== */

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(92, 64, 51, 0.2));
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: antiqueFrameReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes antiqueFrameReveal {
    from {
        transform: scale(0.85) rotate(2deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 75vh;
    border-radius: 2px;
    overflow: hidden;
    border: 12px solid #D4AF37;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #F5E6D3, #EDD5B8);
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    display: block;
    filter: sepia(4%) contrast(1.08);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #C67C4E, #D4AF37);
    border: 3px solid #FFF8E7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 8px 28px rgba(198, 124, 78, 0.4);
    color: #FFF8E7;
    z-index: 11;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 12px 36px rgba(198, 124, 78, 0.5);
    background: linear-gradient(135deg, #D4AF37, #E8C547);
}

.lightbox-close svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(198, 124, 78, 0.2), rgba(212, 175, 55, 0.15));
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: #FFF8E7;
    z-index: 11;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, #C67C4E, #D4AF37);
    border-color: #E8C547;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 24px rgba(198, 124, 78, 0.4);
}

.lightbox-nav svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

.lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9), rgba(198, 124, 78, 0.7));
    padding: 15px 28px;
    border-radius: 4px;
    backdrop-filter: blur(12px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    z-index: 11;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFF8E7;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.lightbox-info p {
    font-size: 13px;
    color: rgba(255, 248, 231, 0.85);
    margin: 0;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-image-container {
        max-height: 60vh;
    }

    .lightbox-image-container img {
        max-height: 60vh;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .lightbox-nav svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-close {
        width: 42px;
        height: 42px;
    }

    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-info {
        bottom: 18px;
        left: 18px;
        right: 18px;
        padding: 14px 18px;
    }

    .lightbox-info h3 {
        font-size: 16px;
    }

    .lightbox-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .lightbox-image-container {
        max-height: 50vh;
    }

    .lightbox-image-container img {
        max-height: 50vh;
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
    }

    .lightbox-nav svg {
        width: 18px;
        height: 18px;
    }
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-nav:hover {
    background: var(--primary-saffron);
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
    fill: var(--text-light);
}

.lightbox-prev {
    left: -100px;
}

.lightbox-next {
    right: -100px;
}

.lightbox-caption {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.lightbox-caption h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.lightbox-caption p {
    font-size: 15px;
    opacity: 0.8;
}

/* Event Cards */
.events-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.event-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-saffron);
    color: var(--text-light);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    min-width: 70px;
}

.event-date .day {
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 30px;
}

.event-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.event-meta svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-saffron);
}

.event-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   DISCLOSURE PAGE
   ======================================== */

.disclosure-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.disclosure-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.disclosure-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.disclosure-intro h2 span {
    color: var(--primary-saffron);
}

.disclosure-intro p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.disclosure-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.disclosure-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.disclosure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
}

.disclosure-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.disclosure-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.disclosure-card:hover .disclosure-card-icon {
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
}

.disclosure-card-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-saffron);
    transition: var(--transition-normal);
}

.disclosure-card:hover .disclosure-card-icon svg {
    fill: var(--text-light);
}

.disclosure-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.disclosure-card p {
    font-size: 15px;
    color: var(--text-gray);
}

/* Disclosure Tables */
.disclosure-tables {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.disclosure-table-wrapper {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.disclosure-table-header {
    background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-teal-light));
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.disclosure-table-header svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-gold);
}

.disclosure-table-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-light);
}

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

.disclosure-table th,
.disclosure-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.disclosure-table th {
    background: var(--bg-light);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclosure-table td {
    font-size: 15px;
    color: var(--text-gray);
}

.disclosure-table tr:hover td {
    background: rgba(230, 92, 0, 0.05);
}

.disclosure-table tr:last-child td {
  border-bottom: none;
  }

/* Disclosure Block Styles */
.disclosure-block {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 15px;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
}

.disclosure-header {
  background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-teal-light));
  padding: 10px 35px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.disclosure-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclosure-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-gold);
}

.disclosure-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
}

.table-responsive {
  overflow-x: auto;
  padding: 0;
}

.status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.status-active {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.15), rgba(129, 199, 132, 0.15));
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.3);
}

.result-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-teal);
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  background: rgba(0, 77, 77, 0.08);
  border-radius: 8px;
  transition: var(--transition-normal);
}

.doc-link:hover {
  background: var(--secondary-teal);
  color: var(--text-light);
}

.doc-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.total-row {
  background: linear-gradient(135deg, rgba(230, 92, 0, 0.08), rgba(212, 175, 55, 0.08));
}

.total-row td {
  font-weight: 600;
  color: var(--text-dark);
}

.table-note {
  padding: 20px 35px;
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  font-style: italic;
  background: var(--bg-light);
  border-top: 1px solid #f0f0f0;
}

/* Affiliations Grid */
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 35px;
}

.affiliation-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.affiliation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.affiliation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.affiliation-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-normal);
}

.affiliation-card:hover .affiliation-icon {
  background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
}

.affiliation-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-saffron);
  transition: var(--transition-normal);
}

.affiliation-card:hover .affiliation-icon svg {
  fill: var(--text-light);
}

.affiliation-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.affiliation-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.affiliation-status {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(0, 77, 77, 0.1), rgba(0, 128, 128, 0.1));
  color: var(--secondary-teal);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Disclosure Download Section */
.disclosure-download {
  background: linear-gradient(135deg, var(--secondary-teal), var(--secondary-teal-light));
  padding: 50px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.download-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.download-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.disclosure-download .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.disclosure-download .btn-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive for disclosure page */
@media (max-width: 1024px) {
  .affiliations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .disclosure-download {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .affiliations-grid {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  
  .disclosure-header {
    padding: 7px 25px;
  }
  
  .disclosure-header h2 {
    font-size: 18px;
  }
  
  .disclosure-download {
    padding: 35px 25px;
  }
  
  .download-content h3 {
    font-size: 22px;
  }
}

.table-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.table-badge-success {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.table-badge-warning {
    background: rgba(241, 196, 15, 0.1);
    color: #f39c12;
}

.table-badge-info {
    background: rgba(10, 77, 104, 0.1);
    color: var(--secondary-teal);
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.document-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.document-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-normal);
}

.document-card:hover .document-icon {
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
}

.document-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-saffron);
    transition: var(--transition-normal);
}

.document-card:hover .document-icon svg {
    fill: var(--text-light);
}

.document-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.document-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .programs-grid,
    .facilities-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-nav,
    .header-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 52px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat .number {
        font-size: 36px;
    }
    
    .about-grid,
    .contact-grid,
    .about-detail-grid,
    .app-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-detail-grid:nth-child(even) {
        direction: ltr;
    }
    
    .about-images {
        height: 450px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-info-bar {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .disclosure-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
    }
    
    .top-bar-left {
        gap: 15px;
        justify-content: center;
    }
    
    .top-bar-item span {
        display: none;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-motto {
        font-size: 20px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stat {
        width: 45%;
        padding: 0;
    }
    
    .hero-stat:not(:last-child)::after {
        display: none;
    }
    
    .hero-stat .number {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-info-bar {
        margin-top: -40px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 20px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .programs-grid,
    .facilities-grid,
    .gallery-grid,
    .team-grid,
    .disclosure-cards,
    .events-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-about {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-year {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -20px;
        right: auto;
        border-color: transparent var(--bg-white) transparent transparent;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 34px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .disclosure-table {
        display: block;
        overflow-x: auto;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .slider-item {
        width: 280px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 9px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-motto {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-content h3 {
        font-size: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 350px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .disclosure-table-header {
        padding: 20px;
    }
    
    .disclosure-table th,
    .disclosure-table td {
        padding: 5px 15px;
        font-size: 13px;
    }
}

/* ========================================
   EVENTS PAGE STYLES
   ======================================== */

/* Upcoming Events Timeline */
.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    color: var(--text-light);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.event-date .day {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-date .year {
    font-size: 14px;
    opacity: 0.9;
}

.event-content {
    padding: 30px;
    flex: 1;
}

.event-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.1), rgba(10, 77, 104, 0.15));
    color: var(--secondary-teal);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.event-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.event-meta svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-saffron);
}

/* Gallery Section */
/* ========================================
   ANTIQUE GALLERY SECTION
   ======================================== */

/* ========================================
   PREMIUM MODERN GALLERY SECTION
   ======================================== */

.gallery-section {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.05), transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 132, 170, 0.04), transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

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

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-label {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E65C00;
    font-weight: 700;
    margin-bottom: 5px;
    animation: fadeInUp 0.8s ease;
}

.gallery-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.gallery-description {
    font-size: 18px;
    color: #555555;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Premium Gallery Filter - Professional Design */
.premium-gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.premium-filter-btn {
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    color: #2C2C2C;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 100px;
    text-align: center;
}

.premium-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.premium-filter-btn:hover::before {
    transform: translateX(100%);
}

.premium-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E65C00, #FF7A1A);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-filter-btn:hover {
    background: #F8F8F8;
    border-color: #C0C0C0;
    color: #E65C00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.premium-filter-btn:hover::after {
    width: 100%;
}

.premium-filter-btn.active {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    color: #FFFFFF;
    border-color: #E65C00;
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.25);
    transform: translateY(-2px);
}

.premium-filter-btn.active::after {
    background: transparent;
}

/* Premium Gallery Grid */
.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    grid-auto-flow: dense;
}

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

.premium-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: premiumCardReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-gallery-item:nth-child(1) { animation-delay: 0.05s; }
.premium-gallery-item:nth-child(2) { animation-delay: 0.1s; }
.premium-gallery-item:nth-child(3) { animation-delay: 0.15s; }
.premium-gallery-item:nth-child(4) { animation-delay: 0.2s; }
.premium-gallery-item:nth-child(5) { animation-delay: 0.1s; }
.premium-gallery-item:nth-child(6) { animation-delay: 0.15s; }
.premium-gallery-item:nth-child(7) { animation-delay: 0.2s; }
.premium-gallery-item:nth-child(8) { animation-delay: 0.25s; }
.premium-gallery-item:nth-child(n+9) { animation-delay: calc((n - 9) * 0.05s + 0.3s); }

.premium-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.premium-item-tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.premium-item-wide {
    grid-column: span 2;
    aspect-ratio: auto;
}

.premium-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.premium-gallery-item img,
.premium-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.premium-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(230, 92, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    backdrop-filter: blur(0px);
    border-radius: 12px;
}

.premium-gallery-item:hover .premium-item-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.premium-item-content {
    width: 100%;
}

.premium-item-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.premium-item-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
    letter-spacing: 0.5px;
}

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

/* Hidden eye icon - click anywhere on image to open */
.premium-view-icon {
    display: none;
}

/* Video item specific styles */
.premium-video-item {
    position: relative;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    border-radius: 12px;
}

.premium-gallery-item:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.premium-play-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(230, 92, 0, 0.4);
    transform: scale(0.8);
    opacity: 0;
}

.premium-play-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.premium-gallery-item:hover .premium-play-btn {
    transform: scale(1);
    opacity: 1;
}

.premium-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(230, 92, 0, 0.6);
    background: linear-gradient(135deg, #FF7A1A, #E65C00);
}

.premium-play-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    position: relative;
    z-index: 1;
    margin-left: 4px;
}

/* ========================================
   EYECATCHING ANIMATIONS FOR LIGHTBOX
   ======================================== */

@keyframes imageZoomExpand {
    0% {
        transform: scale(0.3) rotate(-5deg);
        opacity: 0;
        filter: blur(20px);
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes glitchEffect {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

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

@keyframes imagePulseReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) rotateX(90deg);
    }
    50% {
        box-shadow: 0 0 40px rgba(230, 92, 0, 0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    }
}

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

/* ========================================
   PREMIUM LIGHTBOX MODAL
   ======================================== */

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: premiumModalReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes premiumModalReveal {
    from {
        transform: scale(0.8) rotateY(20deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    background: #000;
    animation: imagePulseReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-image-container img,
.lightbox-image-container video {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: #FFFFFF;
    z-index: 11;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    border-color: #FF7A1A;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.2), rgba(255, 122, 26, 0.15));
    border: 2px solid rgba(230, 92, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: #FFFFFF;
    z-index: 11;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    border-color: #FF7A1A;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 32px rgba(230, 92, 0, 0.4);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

.lightbox-info {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(230, 92, 0, 0.1));
    padding: 20px 28px;
    border-radius: 8px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 11;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: contentSlideUp 0.6s ease 0.3s backwards;
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.lightbox-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 1px;
    font-weight: 500;
}

.lightbox-container input:checked + .lightbox {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    animation: scaleIn 0.4s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 50px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-normal);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
}

.lightbox-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.lightbox-caption p {
    font-size: 16px;
    opacity: 0.8;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--text-light);
    cursor: pointer;
    padding: 20px;
    transition: var(--transition-normal);
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-gold);
}

/* Past Events Grid */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.past-event-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.past-event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.past-event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.past-event-card:hover .past-event-image img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-saffron);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    line-height: 1.2;
}

.event-date-badge span:first-child {
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.event-date-badge span:last-child {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.past-event-content {
    padding: 25px;
}

.past-event-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.past-event-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.view-gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-saffron);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
}

.view-gallery-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.view-gallery-link:hover {
    color: var(--secondary-teal);
}

.view-gallery-link:hover svg {
    transform: translateX(5px);
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.video-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    animation: pulseGlow 2s ease-in-out infinite;
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: var(--text-light);
    margin-left: 5px;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-card h4 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: var(--text-dark);
}

.video-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--text-gray);
}

/* Events Page Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .past-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        gap: 15px;
        min-width: auto;
        padding: 20px;
    }
    
    .event-date .day {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-tall img {
        height: 300px;
    }
    
    .gallery-item-wide {
        grid-column: span 1;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gallery-grid,
    .premium-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .premium-filter-btn {
        padding: 10px 20px;
        font-size: 11px;
        min-width: 80px;
    }
    
    .premium-gallery-filter {
        gap: 10px;
        margin-bottom: 20px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.05), transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.testimonials-section > .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #EFEFEF;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #E65C00;
}

.testimonial-stars {
    font-size: 18px;
    color: #FFB800;
    margin-bottom: 0px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid #EFEFEF;
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 13px;
    color: #999999;
}

/* ========================================
   ACHIEVEMENTS SECTION
   ======================================== */

.achievements-section {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 132, 170, 0.04), transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.achievements-section > .container {
    position: relative;
    z-index: 1;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.achievement-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #E65C00;
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.achievement-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.achievement-card p {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .testimonials-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-section,
    .achievements-section {
        padding: 60px 0;
    }
    
    .gallery-item img,
    .gallery-item-tall img,
    .gallery-item-wide img {
        height: 200px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - ABOUT PAGE
   ======================================== */

@media (max-width: 1024px) {
    .about-intro-grid,
    .mv-cards,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro-images {
        height: 400px;
    }
    
    .intro-img-main {
        width: 100%;
    }
    
    .intro-img-float {
        width: 70%;
        bottom: -30px;
        right: -20px;
    }
    
    .timeline-line {
        left: 0;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
    }
    
    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: -28px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .page-banner-about {
        padding: 100px 0 80px;
    }
    
    .page-banner-about h1 {
        font-size: 42px;
    }
    
    .page-banner-about p {
        font-size: 18px;
    }
    
    .about-intro-content {
        padding-left: 0;
    }
    
    .section-title-lg {
        font-size: 32px;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }
    
    .experience-counter {
        left: 50%;
        transform: translateX(-50%);
        bottom: -60px;
    }
    
    .mv-cards,
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .timeline-item {
        padding-left: 40px !important;
        margin-bottom: 40px;
    }
    
    .timeline-marker {
        width: 44px;
        height: 44px;
        left: -22px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-banner-about h1 {
        font-size: 32px;
    }
    
    .page-banner-about p {
        font-size: 16px;
    }
    
    .section-title-lg {
        font-size: 24px;
    }
    
    .intro-lead {
        font-size: 15px;
    }
    
    .about-intro-images {
        height: 300px;
    }
    
    .intro-img-main {
        width: 100%;
        height: 250px;
    }
    
    .intro-img-float {
        width: 60%;
        height: 150px;
        bottom: -40px;
        right: -10px;
    }
    
    .experience-counter {
        padding: 15px 20px;
        bottom: -50px;
    }
    
    .counter-number {
        font-size: 32px;
    }
    
    .counter-text {
        font-size: 12px;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
    }
    
    .mv-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .mv-card h3 {
        font-size: 20px;
    }
    
    .mv-card p {
        font-size: 14px;
    }
    
    .timeline-line {
        left: 0;
    }
    
    .timeline-item {
        padding-left: 30px !important;
        margin-bottom: 30px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        left: -20px;
        font-size: 11px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h4 {
        font-size: 16px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
    
    .leader-card {
        gap: 0;
    }
    
    .leader-image {
        height: 280px;
    }
    
    .leader-info h4 {
        font-size: 18px;
    }
    
    .leader-info p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* ========================================
   PREMIUM ABOUT PAGE STYLES - NEW DESIGN
   ======================================== */

/* Text Utilities */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-top {
    margin-bottom: 30px;
}

.section-lead {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.section-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.divider-accent {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    margin: 30px 0;
    border-radius: 2px;
}

/* About School Section */
.about-school-premium {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02), rgba(230, 92, 0, 0.01));
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-content-new {
    animation: fadeInLeft 0.8s ease;
}

.about-visual {
    animation: fadeInRight 0.8s ease;
}

.visual-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 520px;
    box-shadow: 0 10px 40px rgba(230, 92, 0, 0.15);
}

.visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.visual-box:hover img {
    transform: scale(1.08);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.25), rgba(230, 92, 0, 0.15));
    pointer-events: none;
}

/* Features Section */
.features-premium {
    padding: 40px 0;
    background: var(--bg-white);
}

.features-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.feature-premium-card {
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.02), rgba(212, 175, 55, 0.02));
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(230, 92, 0, 0.08);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.feature-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.feature-premium-card:hover {
    border-color: var(--primary-saffron);
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.1);
    transform: translateY(-8px);
}

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

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.feature-icon-box svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.feature-premium-card:hover .feature-icon-box {
    transform: scale(1.15) rotate(-15deg);
}

.feature-premium-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

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

/* Management Premium Section */
.management-premium {
    padding: 40px 0;
    background: var(--bg-light);
}

.management-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.mgmt-premium-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    transition: var(--transition-normal);
    text-align: center;
}

.mgmt-premium-card:hover {
    border-left-color: var(--primary-saffron);
    box-shadow: 0 15px 40px rgba(230, 92, 0, 0.15);
    transform: translateY(-8px);
}

.mgmt-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-saffron);
    transition: var(--transition-normal);
}

.mgmt-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.mgmt-premium-card:hover .mgmt-icon {
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    color: var(--text-light);
    transform: scale(1.15);
}

.mgmt-premium-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.mgmt-premium-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Location & Academics Premium */
.location-academics-premium {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02), rgba(230, 92, 0, 0.01));
}

.location-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.location-premium-content {
    animation: fadeInLeft 0.8s ease;
}

.premium-features-list {
    list-style: none;
    margin-top: 30px;
}

.premium-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    transition: var(--transition-normal);
    animation: fadeInLeft 0.8s ease;
}

.premium-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-saffron);
    flex-shrink: 0;
    margin-top: 4px;
    stroke-width: 2;
}

.premium-feature strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.premium-feature span {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

.premium-feature:hover {
    transform: translateX(10px);
}

.academics-premium-box {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(230, 92, 0, 0.12);
    border-top: 4px solid var(--primary-saffron);
    animation: fadeInRight 0.8s ease;
}

.academics-premium-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.academic-premium-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(230, 92, 0, 0.1);
}

.academic-premium-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.academic-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-saffron);
}

.academic-item-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.academic-label {
    display: block;
    font-weight: 700;
    color: var(--primary-saffron);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.academic-premium-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mission Vision Values Premium */
.mvv-premium {
    padding: 40px 0;
    background: var(--bg-white);
}

.mvv-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.mvv-premium-card {
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.02), rgba(212, 175, 55, 0.02));
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid rgba(230, 92, 0, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mvv-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.mvv-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(230, 92, 0, 0.15);
    border-color: var(--primary-saffron);
}

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

.mvv-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.mvv-card-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.mvv-premium-card:hover .mvv-card-icon {
    transform: scale(1.15) rotate(-15deg);
}

.mvv-premium-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: center;
}

.mvv-premium-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
}

.vision-accent {
    animation: fadeInUp 0.8s ease;
}

.mission-accent {
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.values-accent {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Stats Premium Section */
.stats-premium {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--secondary-teal-dark) 0%, var(--secondary-teal) 100%);
    color: var(--text-light);
}

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

.stat-premium-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-premium-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 13px;
    opacity: 0.8;
}

/* CTA Premium Section */
.cta-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-saffron) 0%, var(--primary-saffron-dark) 100%);
    text-align: center;
    color: var(--text-light);
}

.cta-premium-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-premium-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-premium-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-premium-button {
    display: inline-block;
    background: var(--text-light);
    color: var(--primary-saffron);
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-cream);
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(230, 92, 0, 0.05);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--primary-saffron);
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: rgba(230, 92, 0, 0.1);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 5px;
}

.feature-text span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    height: 500px;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.4), rgba(230, 92, 0, 0.2));
    pointer-events: none;
}

/* Management Section */
.management-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header .section-label {
    display: block;
}

.management-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mgmt-card {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(230, 92, 0, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mgmt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

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

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

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 15px;
}

.mgmt-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mgmt-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.mgmt-card strong {
    color: var(--primary-saffron);
    font-weight: 600;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

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

.location-features {
    list-style: none;
    margin-top: 30px;
}

.location-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: center;
    transition: var(--transition-normal);
}

.location-features li:hover {
    transform: translateX(10px);
}

.location-features svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-saffron);
    flex-shrink: 0;
}

.location-features span {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.academics-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-saffron);
}

.academics-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.academic-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(230, 92, 0, 0.1);
}

.academic-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.academic-label {
    display: block;
    font-weight: 700;
    color: var(--primary-saffron);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.academic-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mission Vision Values Section */
.mvv-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mvv-card {
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.02), rgba(212, 175, 55, 0.02));
    padding: 50px 35px;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(230, 92, 0, 0.1);
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 92, 0, 0.05), transparent);
    transition: var(--transition-slow);
}

.mvv-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-saffron);
}

.mvv-card:hover::before {
    left: 100%;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.mvv-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--text-light);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.15) rotate(-15deg);
}

.mvv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.mvv-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-teal-dark), var(--secondary-teal));
    color: var(--text-light);
}

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

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-card p {
    font-size: 13px;
    opacity: 0.85;
}

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--text-light);
    color: var(--primary-saffron);
    padding: 16px 48px;
    border-radius: var(--border-radius-xl);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-cream);
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Fade Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
.animate-fade-up1 {
    animation: fadeInUp 0.8s ease forwards;

}
.animate-fade-left {
    animation: slideInDown 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: slideInUp 0.8s ease forwards;
    opacity: 0;
}

/* Responsive Design - Premium About */
@media (max-width: 1024px) {
    .about-premium-grid,
    .location-premium-grid,
    .features-premium-grid,
    .management-premium-grid,
    .mvv-premium-grid,
    .stats-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 54px;
    }
    
    .section-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .about-school-premium,
    .features-premium,
    .management-premium,
    .location-academics-premium,
    .mvv-premium,
    .stats-premium,
    .cta-premium {
        padding: 60px 0;
    }
    
    .section-title-premium {
        font-size: 36px;
    }
    
    .section-tag {
        font-size: 11px;
    }
    
    .about-premium-grid,
    .location-premium-grid {
        gap: 50px;
    }
    
    .features-premium-grid,
    .management-premium-grid,
    .mvv-premium-grid,
    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mvv-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-box {
        height: 400px;
    }
    
    .feature-premium-card,
    .mgmt-premium-card,
    .academics-premium-box {
        padding: 30px 20px;
    }
    
    .feature-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-box svg {
        width: 28px;
        height: 28px;
    }
    
    .mgmt-icon {
        width: 60px;
        height: 60px;
    }
    
    .mgmt-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .mvv-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .mvv-card-icon svg {
        width: 34px;
        height: 34px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .cta-premium-content h2 {
        font-size: 38px;
    }
    
    .cta-premium-content p {
        font-size: 16px;
    }
    
    .premium-features-list {
        margin-top: 20px;
    }
    
    .premium-feature {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-school-premium,
    .features-premium,
    .management-premium,
    .location-academics-premium,
    .mvv-premium,
    .stats-premium,
    .cta-premium {
        padding: 40px 0;
    }
    
    .section-title-premium {
        font-size: 28px;
    }
    
    .section-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .section-center {
        margin-bottom: 40px;
    }
    
    .about-premium-grid,
    .location-premium-grid,
    .features-premium-grid,
    .management-premium-grid,
    .mvv-premium-grid,
    .stats-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-premium-grid {
        gap: 30px;
    }
    
    .location-premium-grid {
        gap: 30px;
    }
    
    .visual-box {
        height: 300px;
    }
    
    .feature-premium-card {
        padding: 25px 20px;
    }
    
    .feature-premium-card h3 {
        font-size: 16px;
    }
    
    .feature-premium-card p {
        font-size: 13px;
    }
    
    .feature-icon-box {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon-box svg {
        width: 26px;
        height: 26px;
    }
    
    .mgmt-premium-card {
        padding: 25px 20px;
    }
    
    .mgmt-premium-card h3 {
        font-size: 16px;
    }
    
    .mgmt-icon {
        width: 50px;
        height: 50px;
    }
    
    .mgmt-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .academics-premium-box {
        padding: 30px 20px;
    }
    
    .academics-premium-box h3 {
        font-size: 22px;
    }
    
    .academic-premium-item {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .academic-item-icon {
        width: 45px;
        height: 45px;
    }
    
    .academic-item-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .premium-feature {
        margin-bottom: 18px;
    }
    
    .premium-feature svg {
        width: 20px;
        height: 20px;
    }
    
    .premium-feature strong {
        font-size: 14px;
    }
    
    .premium-feature span {
        font-size: 12px;
    }
    
    .mvv-premium-card {
        padding: 30px 20px;
    }
    
    .mvv-premium-card h3 {
        font-size: 20px;
    }
    
    .mvv-premium-card p {
        font-size: 14px;
    }
    
    .mvv-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .mvv-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .stats-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-premium-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-title {
        font-size: 14px;
    }
    
    .stat-desc {
        font-size: 12px;
    }
    
    .cta-premium-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta-premium-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .cta-premium-button {
        padding: 14px 40px;
        font-size: 14px;
    }
}

/* ========================================
   PREMIUM CONTACT PAGE STYLES
   ======================================== */

/* Contact Access Premium Section */
.contact-access-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02), rgba(230, 92, 0, 0.01));
}

.access-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.access-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 92, 0, 0.15);
    border-top-color: var(--primary-saffron);
}

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

.access-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.access-card-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.access-card:hover .access-card-icon {
    transform: scale(1.15) rotate(-15deg);
}

.access-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.access-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.access-card-link {
    display: inline-block;
    color: var(--primary-saffron);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.access-card-link:hover {
    border-bottom-color: var(--primary-saffron);
    transform: translateX(5px);
}

/* Contact Form Premium Section */
.contact-form-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.05), transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.contact-form-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(26, 132, 170, 0.04), transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.contact-form-premium > .container {
    position: relative;
    z-index: 1;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.form-premium-wrapper {
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
}

.form-header-premium {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.section-tag {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E65C00;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title-premium {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-top: 15px;
    font-weight: 300;
}

.form-premium {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    position: relative;
}

.form-field label {
    font-weight: 600;
    font-size: 13px;
    color: #1A1A1A;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border: 1.5px solid #DEDEDE;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #1A1A1A;
    background: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999999;
    font-weight: 300;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #BFBFBF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #E65C00;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(230, 92, 0, 0.1), 0 4px 16px rgba(230, 92, 0, 0.15);
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.form-submit-premium {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    color: #FFFFFF;
    padding: 16px 48px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(230, 92, 0, 0.3);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.form-submit-premium::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.6s ease;
}

.form-submit-premium:hover::before {
    left: 100%;
}

.form-submit-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(230, 92, 0, 0.4);
    background: linear-gradient(135deg, #FF7A1A, #E65C00);
}

.form-submit-premium:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(230, 92, 0, 0.2);
}

.form-submit-premium svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

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

/* Contact Info Wrapper */
.form-info-wrapper {
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-card-premium {
    background: #FFFFFF;
    padding: 45px 40px;
    border-radius: 12px;
    border: 1px solid #EFEFEF;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card-premium:hover {
    border-color: #E65C00;
    box-shadow: 0 8px 32px rgba(230, 92, 0, 0.12);
    transform: translateY(-4px);
}

.info-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.info-features-premium {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-feature-premium {
    display: flex;
    gap: 20px;
    padding-bottom: 0;
    border-bottom: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-feature-premium:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-feature-premium:hover {
    transform: translateX(8px);
}

.info-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(230, 92, 0, 0.08), rgba(255, 122, 26, 0.06));
    border: 2px solid rgba(230, 92, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #E65C00;
    transition: all 0.3s ease;
}

.info-feature-premium:hover .info-feature-icon {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    border-color: #E65C00;
    color: #FFFFFF;
}

.info-feature-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

.info-feature-premium h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.info-feature-premium p {
    font-size: 13px;
    color: #555555;
    line-height: 1.7;
    font-weight: 300;
}

.info-card-accent {
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: var(--text-light);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(230, 92, 0, 0.25);
}

.info-card-accent h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-card-accent p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}

.quick-call-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-light);
    color: var(--primary-saffron);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-normal);
    text-decoration: none;
}

.quick-call-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quick-call-premium svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Map Section Premium */
.map-section-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02), rgba(230, 92, 0, 0.01));
}

.map-wrapper-premium {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 500px;
    box-shadow: 0 10px 40px rgba(230, 92, 0, 0.15);
}

.map-wrapper-premium iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Department Section Premium */
.department-section-premium {
    padding: 100px 0;
    background: var(--bg-white);
}

.department-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.department-card-premium {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(230, 92, 0, 0.08);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.department-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.department-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(230, 92, 0, 0.15);
    border-color: var(--primary-saffron);
}

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

.dept-icon-premium {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.dept-icon-premium svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.department-card-premium:hover .dept-icon-premium {
    transform: scale(1.2) rotate(-15deg);
}

.department-card-premium h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.department-card-premium p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.department-card-premium a {
    display: inline-block;
    color: var(--primary-saffron);
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition-normal);
    border-bottom: 2px solid transparent;
}

.department-card-premium a:hover {
    border-bottom-color: var(--primary-saffron);
    transform: translateX(3px);
}

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

.cta-content-premium {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-premium h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-premium p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons-premium {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    text-decoration: none;
}

.cta-button-primary {
    background: var(--text-light);
    color: var(--primary-saffron);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-cream);
}

.cta-button-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Contact Styles */
/* ========================================
   ANTIQUE GALLERY RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery-item {
        border-width: 6px;
    }

    .access-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .department-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper-premium {
        height: 400px;
    }
}

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

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

    .gallery-item {
        border-width: 5px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .gallery-filter {
        margin-bottom: 50px;
        gap: 12px;
    }

    .filter-btn {
        padding: 11px 26px;
        font-size: 13px;
    }

    .lightbox-image-container {
        border-width: 10px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 16px;
    }

    .lightbox-next {
        right: 16px;
    }

    .access-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .department-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title-premium {
        font-size: 36px;
    }
    
    .section-tag {
        font-size: 11px;
    }
    
    .access-card {
        padding: 30px 20px;
    }
    
    .department-card-premium {
        padding: 25px 15px;
    }
    
    .access-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .access-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .dept-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .dept-icon-premium svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-form-premium {
        padding: 60px 0;
    }
    
    .form-premium-wrapper {
        padding: 0;
    }
    
    .form-header-premium {
        margin-bottom: 30px;
    }
    
    .query-tabs-wrapper {
        margin: 25px 0 35px;
    }
    
    .info-card-premium {
        padding: 30px 20px;
    }
    
    .info-card-title {
        font-size: 22px;
    }
    
    .map-wrapper-premium {
        height: 350px;
    }
    
    .cta-content-premium h2 {
        font-size: 38px;
    }
    
    .cta-content-premium p {
        font-size: 16px;
    }
    
    .department-card-premium h4 {
        font-size: 14px;
    }
    
    .department-card-premium p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .access-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .access-card {
        padding: 25px 20px;
    }
    
    .access-card h3 {
        font-size: 16px;
    }
    
    .access-card p {
        font-size: 13px;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 16px;
    }
    
    .info-card-premium {
        padding: 25px 15px;
    }
    
    .info-card-title {
        font-size: 20px;
    }
    
    .info-feature-premium {
        gap: 15px;
    }
    
    .info-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .info-feature-premium h4 {
        font-size: 14px;
    }
    
    .info-feature-premium p {
        font-size: 12px;
    }
    
    .info-card-accent {
        padding: 25px 15px;
    }
    
    .info-card-accent h4 {
        font-size: 18px;
    }
    
    .info-card-accent p {
        font-size: 13px;
    }
    
    .quick-call-premium {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .department-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .department-card-premium {
        padding: 25px 15px;
    }
    
    .department-card-premium h4 {
        font-size: 14px;
    }
    
    .department-card-premium p {
        font-size: 12px;
    }
    
    .map-wrapper-premium {
        height: 300px;
    }
    
    .cta-content-premium h2 {
        font-size: 32px;
    }
    
    .cta-content-premium p {
        font-size: 15px;
    }
    
    .cta-buttons-premium {
        flex-direction: column;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }
}

/* ========================================
   SCROLLABLE QUERY TABS - CONTACT FORM
   ======================================== */

.query-tabs-wrapper {
    margin: 40px 0 50px;
    position: relative;
    overflow: hidden;
}

.query-tabs-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-saffron) rgba(230, 92, 0, 0.1);
}

.query-tabs-container::-webkit-scrollbar {
    height: 6px;
}

.query-tabs-container::-webkit-scrollbar-track {
    background: rgba(230, 92, 0, 0.05);
    border-radius: 10px;
}

.query-tabs-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-saffron), var(--accent-gold));
    border-radius: 10px;
}

.query-tabs-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-saffron);
}

.query-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 28px;
    background: #FFFFFF;
    border: 1.5px solid #DEDEDE;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #2C2C2C;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.query-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.query-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E65C00, #FF7A1A);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.query-tab svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.query-tab:hover::before {
    transform: translateX(100%);
}

.query-tab:hover {
    border-color: #BFBFBF;
    color: #E65C00;
    background: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.query-tab:hover::after {
    width: 100%;
}

.query-tab.active {
    background: linear-gradient(135deg, #E65C00, #FF7A1A);
    color: #FFFFFF;
    border-color: #E65C00;
    box-shadow: 0 8px 24px rgba(230, 92, 0, 0.3);
    transform: translateY(-2px);
}

.query-tab.active svg {
    color: #FFFFFF;
}

/* Tab Content */
.tab-content-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-content-section.active {
    display: block;
}

.tab-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tab-description {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Scrollable Main Navigation - Desktop */
/*.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
    font-size: 15px;
    padding-bottom: 5px;
    display: inline-block;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold));
    transition: var(--transition-normal);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover {
    color: var(--primary-saffron);
}

.main-nav ul li a.active {
    color: var(--primary-saffron);
    font-weight: 700;
} */

/* Mobile Scrollable Navigation */
/*@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 2px solid rgba(230, 92, 0, 0.1);
        z-index: 999;
        overflow: hidden;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    }

    .main-nav ul {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 12px 15px;
        scrollbar-width: thin;
    }

    .main-nav ul::-webkit-scrollbar {
        height: 4px;
    }

    .main-nav ul::-webkit-scrollbar-track {
        background: rgba(230, 92, 0, 0.05);
        border-radius: 2px;
    }

    .main-nav ul::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary-saffron), var(--accent-gold));
        border-radius: 2px;
    }

    .main-nav ul li {
        flex-shrink: 0;
    }

    .main-nav ul li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--bg-light);
        font-size: 11px;
        font-weight: 600;
        color: var(--text-dark);
        position: relative;
        border: 2px solid rgba(230, 92, 0, 0.1);
        transition: var(--transition-normal);
        text-align: center;
        padding: 0;
    }

    .main-nav ul li a:hover {
        background: rgba(230, 92, 0, 0.08);
        border-color: var(--primary-saffron);
    }

    .main-nav ul li a.active {
        background: linear-gradient(135deg, var(--primary-saffron), var(--accent-gold));
        color: var(--text-light);
        border-color: var(--primary-saffron);
        box-shadow: 0 6px 20px rgba(230, 92, 0, 0.35);
    }

    .main-nav ul li a::after {
        display: none;
    }

    body {
        padding-bottom: 70px;
    }

    .header-btn {
        margin-bottom: 80px;
    }
}    */

@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item {
        border-width: 4px;
        aspect-ratio: 1;
    }

    .gallery-item.gallery-item-tall,
    .gallery-item.gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
    }

    .section-title {
        font-size: 32px;
    }

    .section-badge {
        padding: 8px 24px;
        font-size: 11px;
    }

    .gallery-filter {
        margin-bottom: 40px;
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    .lightbox-image-container {
        max-height: 60vh;
        border-width: 8px;
    }

    .lightbox-image-container img {
        max-height: 60vh;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-nav svg {
        width: 22px;
        height: 22px;
    }

    .lightbox-close {
        width: 48px;
        height: 48px;
        top: 16px;
        right: 16px;
    }

    .lightbox-close svg {
        width: 22px;
        height: 22px;
    }

    .lightbox-info {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 8px 20px;
    }

    .lightbox-info h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .lightbox-info p {
        font-size: 12px;
    }

    .query-tabs-container {
        gap: 10px;
    }

    .query-tab {
        padding: 10px 18px;
        font-size: 12px;
        gap: 6px;
    }

    .query-tab svg {
        width: 18px;
        height: 18px;
    }

    .tab-title {
        font-size: 20px;
    }

    .tab-description {
        font-size: 13px;
    }

    .main-nav ul {
        padding: 10px 12px;
        gap: 8px;
    }

    .main-nav ul li a {
        width: 45px;
        height: 45px;
        font-size: 10px;
        border-radius: 50%;
    }
    
    .contact-form-layout {
        grid-template-columns: 1fr;
    }
    
    .department-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HERO VIDEO - FAST LOAD OPTIMIZATION
   ======================================== */

.hero-video {
    will-change: transform;
}

.hero-video[poster] {
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

/* ========================================
   TESTIMONIALS SECTION V3 - PREMIUM
   ======================================== */

.testimonials-section-v3 {
    background: linear-gradient(160deg, #0c1929 0%, #122640 50%, #0a1e35 100%);
    position: relative;
    overflow: hidden;
    padding: 30px 0 80px;
}

.testimonials-section-v3 .section-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonials-section-v3 .section-title {
    color: #fff;
}

.testimonials-section-v3 .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Floating particles */
.testimonial-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.testimonial-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

.testimonial-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
.testimonial-particles span:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 22s; width: 3px; height: 3px; }
.testimonial-particles span:nth-child(3) { left: 45%; animation-delay: 6s; animation-duration: 16s; width: 5px; height: 5px; background: rgba(230, 92, 0, 0.2); }
.testimonial-particles span:nth-child(4) { left: 65%; animation-delay: 2s; animation-duration: 20s; }
.testimonial-particles span:nth-child(5) { left: 80%; animation-delay: 8s; animation-duration: 24s; width: 3px; height: 3px; }
.testimonial-particles span:nth-child(6) { left: 92%; animation-delay: 5s; animation-duration: 19s; background: rgba(230, 92, 0, 0.2); }

/* Marquee / Horizontal scroll */
.testimonial-marquee {
    overflow: hidden;
    margin: 0 -60px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-marquee::before {
    left: 0;
    background: linear-gradient(to right, #0c1929, transparent);
}

.testimonial-marquee::after {
    right: 0;
    background: linear-gradient(to left, #0a1e35, transparent);
}

.testimonial-marquee-track {
    display: flex;
    gap: 10px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.testimonial-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonial Cards */
.tm-card {
    flex-shrink: 0;
    width: 380px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tm-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tm-card:hover::before {
    opacity: 1;
}

.tm-card-highlight {
    background: linear-gradient(145deg, rgba(230, 92, 0, 0.1), rgba(212, 175, 55, 0.05));
    border-color: rgba(230, 92, 0, 0.15);
}

.tm-card-accent {
    background: linear-gradient(145deg, rgba(10, 77, 104, 0.15), rgba(10, 77, 104, 0.05));
    border-color: rgba(10, 77, 104, 0.2);
}

.tm-card-quote {
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: 16px;
}

.tm-card-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 24px;
    min-height: 80px;
}

.tm-card-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tm-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent-gold);
}

.tm-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-author h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.tm-author span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.tm-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.tm-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-gold);
}

.tm-badge {
    margin-left: auto;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(230, 92, 0, 0.15);
    color: var(--primary-saffron-light);
    border: 1px solid rgba(230, 92, 0, 0.2);
}

.tm-badge-teal {
    background: rgba(10, 77, 104, 0.2);
    color: var(--secondary-teal-light);
    border-color: rgba(10, 77, 104, 0.3);
}

/* Trust bar */
.testimonial-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

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

.trust-item strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.trust-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .testimonials-section-v3 { padding: 30px 0; }
    .testimonial-marquee { margin: 0 -20px; }
    .tm-card { width: 300px; padding: 24px 20px; }
    .testimonial-trust-bar { gap: 20px; padding: 20px; }
    .trust-divider { display: none; }
    .trust-item strong { font-size: 22px; }
}

/* ========================================
   COACHING SECTION V2 (NDA / JEE / NEET) - PREMIUM
   ======================================== */

.coaching-section-v2 {
    background: linear-gradient(160deg, #f8f9fa 0%, #eef2f7 50%, #e8edf3 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Animated grid background */
.coaching-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating orbs */
.coaching-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.coaching-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.coaching-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(230, 92, 0, 0.08);
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.coaching-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(10, 77, 104, 0.06);
    bottom: -100px;
    left: -80px;
    animation: float 25s ease-in-out infinite reverse;
}

.coaching-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.07);
    top: 40%;
    left: 40%;
    animation: pulse 10s ease-in-out infinite;
}

.coaching-section-v2 .container {
    position: relative;
    z-index: 1;
}

.coaching-badge {
    background: rgba(230, 92, 0, 0.1) !important;
    color: var(--primary-saffron) !important;
    border-color: rgba(230, 92, 0, 0.2) !important;
}

.coaching-title { color: var(--text-dark) !important; }
.coaching-subtitle { color: var(--text-gray) !important; }

/* Cards grid */
.coaching-cards-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    align-items: stretch;
}

/* Individual card */
.cc-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.cc-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.cc-nda .cc-glow { background: radial-gradient(circle, rgba(46, 125, 50, 0.06), transparent 60%); }
.cc-jee .cc-glow { background: radial-gradient(circle, rgba(21, 101, 192, 0.06), transparent 60%); }
.cc-neet .cc-glow { background: radial-gradient(circle, rgba(198, 40, 40, 0.06), transparent 60%); }

.cc-card:hover .cc-glow { opacity: 1; }

.cc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Featured card */
.cc-featured {
    border: 2px solid var(--primary-saffron);
    box-shadow: 0 8px 30px rgba(230, 92, 0, 0.1);
}

.cc-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
}

.cc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.cc-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cc-nda .cc-icon { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); color: #2E7D32; }
.cc-jee .cc-icon { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); color: #1565C0; }
.cc-neet .cc-icon { background: linear-gradient(135deg, #FFEBEE, #FFCDD2); color: #C62828; }

.cc-card:hover .cc-icon { transform: scale(1.1) rotate(-5deg); }

.cc-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cc-nda .cc-label { color: #2E7D32; }
.cc-jee .cc-label { color: #1565C0; }
.cc-neet .cc-label { color: #C62828; }

.cc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cc-card > p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature tags */
.cc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.cc-features span {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-light);
    color: var(--text-gray);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.cc-nda .cc-features span { background: #E8F5E9; color: #2E7D32; border-color: #C8E6C9; }
.cc-jee .cc-features span { background: #E3F2FD; color: #1565C0; border-color: #BBDEFB; }
.cc-neet .cc-features span { background: #FFEBEE; color: #C62828; border-color: #FFCDD2; }

/* Stats */
.cc-stats {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 22px;
    margin-top: auto;
}

.cc-stat {
    text-align: center;
    flex: 1;
}

.cc-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.cc-nda .cc-stat strong { color: #2E7D32; }
.cc-jee .cc-stat strong { color: #1565C0; }
.cc-neet .cc-stat strong { color: #C62828; }

.cc-stat span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* CTA button */
.cc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #fff;
}

.cc-nda .cc-btn { background: #2E7D32; }
.cc-jee .cc-btn { background: #1565C0; }
.cc-neet .cc-btn { background: #C62828; }

.cc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

/* Features bar */
.coaching-features-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 24px 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.cfb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.cfb-item svg {
    color: var(--primary-saffron);
    fill: var(--primary-saffron);
    flex-shrink: 0;
}

/* Coaching V2 Responsive */
@media (max-width: 1024px) {
    .coaching-cards-v2 {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .coaching-section-v2 { padding: 40px 0 70px; }
    .cc-card { padding: 28px 22px; }
    .cc-card h3 { font-size: 20px; }
    .coaching-features-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ========================================
   ADMISSION ENQUIRY SECTION
   ======================================== */

.admission-enquiry-section {
    background: linear-gradient(160deg, #fff8f0 0%, #fff5eb 50%, #fef0e0 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.admission-enquiry-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.enquiry-badge {
    background: rgba(230, 92, 0, 0.1) !important;
    color: var(--primary-saffron) !important;
    border-color: rgba(230, 92, 0, 0.2) !important;
}

.enquiry-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 20px 0 16px;
}

.enquiry-info > p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.enquiry-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.enquiry-highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.enquiry-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enquiry-highlight-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.enquiry-highlight-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.enquiry-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.enquiry-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.enquiry-phone svg {
    color: var(--primary-saffron);
    fill: var(--primary-saffron);
    flex-shrink: 0;
}

/* Form Card */
.enquiry-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.enquiry-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--accent-gold), var(--primary-saffron));
    border-radius: 24px 24px 0 0;
}

.enquiry-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.enquiry-form > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #fafbfc;
    transition: all 0.25s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-saffron);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b8c4;
}

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

.form-group + .form-group:not(:first-child) {
    margin-top: 0;
}

.enquiry-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.enquiry-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-saffron), var(--primary-saffron-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 92, 0, 0.25);
}

.enquiry-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 92, 0, 0.35);
}

.enquiry-submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
}

/* Enquiry Responsive */
@media (max-width: 1024px) {
    .enquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .admission-enquiry-section { padding: 60px 0; }
    .enquiry-info h2 { font-size: 28px; }
    .enquiry-form-wrap { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 14px; }
    .enquiry-contact-strip { flex-direction: column; gap: 12px; }
}

/* ========================================
   PRINT STYLES
   ======================================== */  
   
@media print {
    .top-bar,
    .main-header,
    .hero-video,
    .hero-overlay,
    .scroll-indicator,
    .main-footer,
    .lightbox {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 30px 0;
    }
}



div.scrollmenu {
  background-color:#e38b00;
  overflow: auto;
  white-space: nowrap;

}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  font-size:14px;

  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
}
@media only screen and (orientation: landscape) {
div.scrollmenu{
display:none;}
.mobileHeader{
display:none;
}}
div.scrollmenu a.active {
  background-color: #ffffff;
  color: #e38b00;
  font-weight: 600;
  border-radius: 4px;
  margin-left:5px;
}
