/* ===== CSS Variables ===== */
:root {
    /* London Kids Inspired Color Theme */
    --coral: #3bc1b2;
    --coral-dark: #2da89b;
    --teal: #dc143c;
    --teal-dark: #3A7BC8;
    --teal-light: #6BA8E8;
    --mint: #e0fff8;
    --white: #FFFFFF;
    --light-bg: #e0fff8;
    --dark: #2D3436;
    --gray: #636E72;
    --light-gray: #F5F6FA;
    
    /* Additional Accent Colors */
    --pastel-pink: #d4f5f0;
    --pastel-mint: #D4E8FF;
    --pastel-peach: #FFEAA7;
    --pastel-lavender: #DFE6E9;
    --yellow: #FFD93D;
    --green: #00B894;
    
    --font-heading: 'Chewy', cursive;
    --font-heading-alt: 'Fredoka One', cursive;
    --font-body: 'Poppins', sans-serif;
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 20px;
    --radius-small: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 80px 0;
}

/* ===== Wave Dividers (London Kids Style) ===== */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider.top {
    top: 0;
}

.wave-divider.bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--white);
}

.wave-divider.coral .shape-fill {
    fill: var(--coral);
}

.wave-divider.teal .shape-fill {
    fill: var(--teal);
}

.wave-divider.light .shape-fill {
    fill: var(--light-bg);
}

/* ===== Floating Decorations (London Kids Style) ===== */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    display: none;
}

.floating-shape.circle-1 {
    width: 80px;
    height: 80px;
    background: var(--pastel-pink);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape.circle-2 {
    width: 120px;
    height: 120px;
    background: var(--pastel-mint);
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.floating-shape.circle-3 {
    width: 60px;
    height: 60px;
    background: var(--pastel-lavender);
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.floating-shape.circle-4 {
    width: 100px;
    height: 100px;
    background: var(--pastel-peach);
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.floating-shape.star {
    width: 40px;
    height: 40px;
    background: var(--coral);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
}

.floating-shape.star-1 {
    top: 15%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-shape.star-2 {
    bottom: 25%;
    left: 25%;
    background: var(--teal);
    animation-delay: 2.5s;
}

.floating-shape.cloud {
    width: 100px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    opacity: 0.5;
}

.floating-shape.cloud::before,
.floating-shape.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.floating-shape.cloud::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.floating-shape.cloud::after {
    width: 35px;
    height: 35px;
    top: -15px;
    left: 45px;
}

.floating-shape.cloud-1 {
    top: 20%;
    left: 10%;
}

.floating-shape.cloud-2 {
    top: 40%;
    right: 5%;
    animation-delay: 3s;
}

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

/* ===== Decorative Dots Pattern ===== */
.dots-pattern {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, var(--coral) 3px, transparent 3px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.dots-pattern.top-left {
    top: 20px;
    left: 20px;
}

.dots-pattern.bottom-right {
    bottom: 20px;
    right: 20px;
}

.dots-pattern.teal {
    background-image: radial-gradient(circle, var(--teal) 3px, transparent 3px);
}

/* ===== Utility Classes ===== */
.text-coral { color: var(--coral); }
.text-teal { color: var(--teal); }
.text-teal-light { color: var(--teal-light); }
.text-white { color: var(--white); }
.bg-light { background-color: var(--light-bg); }
.bg-teal { background-color: var(--teal); }
.bg-coral { background-color: var(--coral); }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--coral);
    border-color: var(--coral);
}

.btn-outline:hover {
    background-color: var(--coral);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white {
    background-color: #dc143c;
    color: var(--white);
    border-color: #dc143c
}

.btn-outline-white:hover {
    background-color: #dc143c;
    color: var(--white);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

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

.btn-teal:hover {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 3px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

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

.header-logo-text {
    display: flex;
    align-items: center;
}

.header-logo-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-chennai { color: var(--coral); }
.logo-kids { color: var(--teal); }

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--coral);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #dc143c;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--coral);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Dropdown Menu ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--coral);
    padding-left: 25px;
}

/* ===== Tab System ===== */
.tab-container {
    margin-bottom: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.tab-btn:hover {
    color: var(--coral);
    background-color: var(--light-bg);
}

.tab-btn.active {
    color: var(--coral);
    background-color: var(--light-bg);
    border-bottom: 3px solid var(--coral);
    margin-bottom: -2px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* ===== Ethics Grid ===== */
.ethics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.ethics-card {
    background-color: var(--white);
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.ethics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.ethics-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-peach) 100%);
    border-radius: 50%;
}

.ethics-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

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

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

.testimonial-author {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(220, 20, 60, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.15);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: url('../photos/hscreen.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%); */
    z-index: 0;
}

.hero-blob {
    display: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    animation: blob1 8s ease-in-out infinite;
}

.hero-blob-2 {
    display: none;
}

@keyframes blob1 {
    0%, 100% { border-radius: 50% 40% 60% 50%; }
    50% { border-radius: 40% 60% 50% 60%; }
}

@keyframes blob2 {
    0%, 100% { border-radius: 60% 50% 40% 60%; }
    50% { border-radius: 50% 40% 60% 40%; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-centered {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}

.hero-text-centered {
        max-width: 900px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero-text-centered .hero-buttons {
    justify-content: center;
}

.hero-text-centered .hero-description {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #dc143c;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 36px;
    color: #dc143c;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-description {
    font-size: 20px;
    color: #dc143c;
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

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

.hero-image {
    position: relative;
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

/* ===== Stats Section ===== */
.stats {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #dc143c;
    margin-top: 10px;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #3bc1b2;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ===== Why Choose Us ===== */
.why-choose {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(254, 245, 240, 0.72) 0%, rgba(253, 232, 216, 0.72) 50%, rgba(254, 240, 230, 0.72) 100%),
                url('../photos/why\ choose\ us1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 193, 178, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose > .container {
    position: relative;
    z-index: 1;
}

.wcu-wrapper {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.wcu-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    color: #dc143c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.wcu-heading .text-coral {
    color: #dc143c;
}

.wcu-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.wcu-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.wcu-point {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wcu-number {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #dc143c;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wcu-point:hover .wcu-number {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.35);
}

.wcu-point-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s ease;
}

.wcu-point:hover .wcu-point-text {
    color: #dc143c;
}


/* ===== WCU Animations ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible,
.animate-fade-left.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* ===== Age Group Programmes - Full Screen Hero ===== */
.age-group-programmes-fullscreen {
position: relative;
width: 100%;
height: 100vh;
min-height: 700px;
overflow: hidden;
}

.programmes-hero-image {
position: relative;
width: 100%;
height: 100%;
}

.fullscreen-programmes-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

/* Overlay with gradient */
.programmes-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
);
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

.programmes-overlay .container {
position: relative;
text-align: center;
}

/* Hero Title */
.programmes-hero-title {
font-size: 48px;
font-weight: 800;
color: white;
text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
font-family: var(--font-heading);
}

.programmes-hero-title .text-coral {
color: #ff6b6b;
text-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
}

.programmes-hero-subtitle {
font-size: 20px;
color: rgba(255, 255, 255, 0.95);
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
margin-bottom: 60px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

/* Programmes CTA */
.programmes-cta {
text-align: center;
margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
.age-group-programmes-fullscreen {
min-height: 600px;
}

.programmes-hero-title {
font-size: 38px;
}

.programmes-hero-subtitle {
font-size: 18px;
margin-bottom: 50px;
}

.programmes-cta {
margin-top: 60px;
}
}

@media (max-width: 768px) {
.age-group-programmes-fullscreen {
min-height: 500px;
height: auto;
}

.programmes-hero-title {
font-size: 32px;
margin-bottom: 15px;
}

.programmes-hero-subtitle {
font-size: 16px;
margin-bottom: 40px;
}

.programmes-cta {
margin-top: 50px;
}
}

/* ===== Programmes Preview ===== */
.programmes-preview {
position: relative;
overflow: hidden;
padding-top: 100px;
background: linear-gradient(135deg, rgba(254, 245, 240, 0.92) 0%, rgba(253, 232, 216, 0.92) 50%, rgba(254, 240, 230, 0.92) 100%);
background-size: cover;
background-position: center;
background-attachment: fixed;
}

.programmes-preview > .container {
    position: relative;
    z-index: 1;
}

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

.programme-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--teal);
}

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

.programme-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.programme-card h3 {
    font-size: 24px;
    color: var(--coral);
    margin-bottom: 8px;
}

.programme-age {
    font-size: 14px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.programme-card ul {
    text-align: left;
    margin-bottom: 20px;
}

.programme-card li {
    font-size: 14px;
    color: var(--gray);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.programme-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

/* ===== Core Values ===== */
.core-values {
    position: relative;
    overflow: hidden;
}

.core-values > .container {
    position: relative;
    z-index: 1;
}

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

.value-card {
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.value-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.value-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.value-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}

.value-card-wide {
    grid-column: span 2;
}

/* Gradient backgrounds similar to playgroup cards */
.value-card.pink-mint {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.value-card.blue-lavender {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 50%, #c2e9fb 100%);
}

.value-card.peach-yellow {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* ===== Daily Schedule Section ===== */
.daily-schedule {
    background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 25%, #ecfdf5 50%, #fef9c3 75%, #fef2f2 100%);
    position: relative;
    overflow: hidden;
}

.daily-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(252, 165, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.schedule-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--coral), var(--teal));
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.schedule-time {
    margin-bottom: 15px;
}

.time-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    font-family: var(--font-heading);
    display: inline-block;
    background: linear-gradient(135deg, rgba(252, 165, 165, 0.2), rgba(52, 211, 153, 0.2));
    padding: 6px 12px;
    border-radius: 20px;
}

.schedule-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.schedule-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive Design for Daily Schedule */
@media (max-width: 768px) {
    .schedule-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .schedule-card {
        padding: 20px;
    }
    
    .time-text {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .schedule-content h3 {
        font-size: 18px;
    }
    
    .schedule-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .schedule-card {
        padding: 15px;
    }
    
    .time-text {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .schedule-content h3 {
        font-size: 16px;
    }
    
    .schedule-content p {
        font-size: 13px;
    }
}

/* ===== Schedule Section ===== */
.schedule {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

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

.schedule-table-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.schedule-table th {
    background-color: var(--coral);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
}

.schedule-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

.schedule-table td:first-child {
    font-weight: 600;
    color: var(--teal);
    white-space: nowrap;
}

/* ===== Methodology ===== */
.methodology {
    position: relative;
    overflow: hidden;
}

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

/* Method Facilities Layout */
.method-facilities-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

.mf-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1;
}

.mf-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.mf-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.35);
    transition: transform 0.3s ease;
}

.mf-item:hover .mf-number {
    transform: scale(1.15) rotate(-5deg);
}

.mf-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

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

/* Center Animated Teacher */
.mf-center-image {
    width: 300px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mf-teacher-wrap {
    position: relative;
    width: 100%;
}

.mf-teacher-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mf-teacher-img:hover {
    transform: scale(1.03);
}

.mf-float {
    position: absolute;
    font-size: 30px;
    animation: mfFloat 3s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.mf-float-1 {
    top: -15px;
    left: -20px;
    animation-delay: 0s;
}

.mf-float-2 {
    top: 10%;
    right: -25px;
    animation-delay: 0.7s;
}

.mf-float-3 {
    bottom: 15%;
    left: -25px;
    animation-delay: 1.4s;
}

.mf-float-4 {
    bottom: -10px;
    right: -20px;
    animation-delay: 2.1s;
}

@keyframes mfFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

.method-card p {
    font-size: 15px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ===== Testimonials ===== */
.testimonials {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(135deg, rgba(254, 245, 240, 0.92) 0%, rgba(253, 232, 216, 0.92) 50%, rgba(254, 240, 230, 0.92) 100%),
                url('../photos/our mission vision background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

/* London Kids Testimonials Style */
.london-testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.london-testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f5 100%);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.08);
    border: 2px solid rgba(220, 20, 60, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.london-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: #dc143c;
    opacity: 0.15;
    line-height: 1;
}

.london-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.12);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 20, 60, 0.15);
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #fef5f0 0%, #fde8d8 50%, #fef0e6 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    position: relative;
    border: 2px solid rgba(220, 20, 60, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: #dc143c;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.author-name {
    font-weight: 700;
    color: var(--coral);
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--mint) 0%, var(--teal) 50%, var(--teal-dark) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

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

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--teal);
    border-radius: 50%;
    opacity: 0.2;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

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

/* ===== WhatsApp Popup Styles ===== */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    max-width: 90vw;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}

.whatsapp-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-content {
    overflow: hidden;
}

.whatsapp-popup-header {
    background: #25D366;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-popup-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.whatsapp-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-popup-body p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.whatsapp-chat-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.whatsapp-chat-btn:hover {
    background: #128C7E;
}

/* WhatsApp Buttons Container */
.whatsapp-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float.chennai-kids {
    background: #25D366;
}

.whatsapp-float.smart-kids {
    background: #128C7E;
}

.whatsapp-float span {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover span {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* Responsive WhatsApp Popup */
@media (max-width: 480px) {
    .whatsapp-popup {
        bottom: 90px;
        right: 15px;
        width: 280px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* ===== Footer - London Kids Style ===== */
.footer-new {
    background: #1a1a2e;
    color: var(--white);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-new-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-new-logo {
    font-family: var(--font-heading);
    font-size: 34px;
    margin-bottom: 8px;
}

.fc-coral {
    color: var(--coral);
}

.fc-teal {
    color: var(--teal);
}

.footer-new-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-new-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--coral);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.footer-new-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-new-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--coral);
    border-radius: 2px;
}

.footer-new-col ul li {
    margin-bottom: 12px;
}

.footer-new-col ul a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-new-col ul a:hover {
    color: var(--coral);
    padding-left: 6px;
}

/* Footer Contact Items */
.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--coral);
}

/* Footer Bottom Bar */
.footer-bottom-new {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-new p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== Page Header ===== */
.page-header {
    background-color: var(--coral);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: var(--teal);
    border-radius: 50% 40% 60% 50%;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--white);
    max-width: 600px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .method-facilities-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .mf-center-image {
        grid-column: 1 / -1;
        width: 250px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .london-testimonials-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-new-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-logo-container {
        gap: 10px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header-logo-title {
        font-size: 18px;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-text-centered {
        min-height: 350px;
        padding: 20px;
    }
    
    .hero-text h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .hero-text-centered span {
        font-size: 1.5rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 300px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .wcu-heading {
        font-size: 34px;
    }
    
    .wcu-points {
        grid-template-columns: 1fr;
    }
    
    .programmes-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .method-facilities-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mf-center-image {
        width: 250px;
        margin: 0 auto;
        order: -1;
    }
    
    .value-card-wide {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .footer-new-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-new-col h4::after {
        margin: 8px auto 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== About Page Styles ===== */
.principal-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.principal-image {
    position: relative;
}

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

.principal-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.principal-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.principal-badge span {
    display: block;
    font-family: var(--font-heading);
}

.principal-badge span:first-child {
    font-size: 28px;
    font-weight: 800;
}

.section-title.text-left {
    text-align: left;
}

.principal-message p {
    margin-bottom: 15px;
    color: var(--gray);
}

.principal-message p:first-child strong {
    color: var(--coral);
    font-size: 20px;
}

.principal-message em {
    color: var(--teal);
    font-style: italic;
}

.principal-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.signature-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--coral);
}

.signature-title {
    color: var(--gray);
}

/* Play Group Grid */
.playgroup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.playgroup-card {
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Tall card for English Language/Rhymes */
.playgroup-card.tall-card {
    grid-row: span 2;
    padding: 40px 30px;
}

/* Short card for Math Counting */
.playgroup-card.short-card {
    padding: 25px 20px;
}

/* Pastel gradient backgrounds */
.pink-mint {
    background: linear-gradient(135deg, #ffd1dc 0%, #b5ead7 100%);
}

.blue-lavender {
    background: linear-gradient(135deg, #c7ceea 0%, #e2d1f9 100%);
}

.peach-yellow {
    background: linear-gradient(135deg, #ffdab9 0%, #fff9c4 100%);
}

.playgroup-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.playgroup-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.playgroup-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.playgroup-card li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
}

.playgroup-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
    .playgroup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .playgroup-card.tall-card {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .playgroup-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .playgroup-card {
        padding: 25px 20px;
    }
    
    .playgroup-card.tall-card {
        padding: 30px 25px;
    }
    
    .playgroup-icon {
        font-size: 40px;
    }
    
    .playgroup-card h4 {
        font-size: 18px;
    }
    
    .playgroup-card li {
        font-size: 14px;
    }
}

/* Extra-Curricular Activities */
.extra-curricular {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(254, 245, 240, 0.92) 0%, rgba(253, 232, 216, 0.92) 50%, rgba(254, 240, 230, 0.92) 100%),
                url('../photos/extra curricular activities background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.extra-curricular > .container {
    position: relative;
    z-index: 1;
}

.circular-formation {
    position: relative;
    width: 100%;
    height: 1100px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.activity-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    cursor: pointer;
    backdrop-filter: blur(3px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 0 60px rgba(255, 255, 255, 0.15),
        inset 0 0 40px rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

/* Central Hub - Largest */
.central-hub {
    width: 380px;
    height: 380px;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Inner Ring - Medium */
.inner-ring {
    width: 320px;
    height: 320px;
    z-index: 5;
}

.art-circle {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.drama-circle {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.music-circle {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

/* Outer Ring - Smallest */
.outer-ring {
    width: 280px;
    height: 280px;
    z-index: 1;
}

.gardening-circle {
    top: 8%;
    left: 8%;
}

.science-circle {
    top: 8%;
    right: 8%;
}

.sports-circle {
    bottom: 8%;
    right: 8%;
}

.puzzles-circle {
    bottom: 8%;
    left: 8%;
}

.storytelling-circle {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

/* Gradient Backgrounds */
.gold-gradient {
    background: radial-gradient(circle at 35% 35%, #ff6b6b 0%, #dc143c 30%, #b91c1c 60%, #991b1b 100%);
}

.yellow-gradient {
    background: radial-gradient(circle at 35% 35%, #fff3cd 0%, #ffe69c 30%, #ffd43b 60%, #fab005 100%);
}

.pink-gradient {
    background: radial-gradient(circle at 35% 35%, #ffe0ec 0%, #ffc9dd 30%, #ffb3d0 60%, #ff9ec7 100%);
}

.teal-gradient {
    background: radial-gradient(circle at 35% 35%, #d3f9f8 0%, #a6f3ec 30%, #7decec 60%, #5eead4 100%);
}

.green-gradient {
    background: radial-gradient(circle at 35% 35%, #d4f4dd 0%, #b7ebc9 30%, #95e1aa 60%, #6dd27a 100%);
}

.orange-gradient {
    background: radial-gradient(circle at 35% 35%, #ffe8cc 0%, #ffd8a8 30%, #ffc078 60%, #ff922b 100%);
}

.red-gradient {
    background: radial-gradient(circle at 35% 35%, #ffe0e0 0%, #ffc9c9 30%, #ffb3b3 60%, #ff9999 100%);
}

.purple-gradient {
    background: radial-gradient(circle at 35% 35%, #f3e8ff 0%, #e9d5ff 30%, #d8b4fe 60%, #c084fc 100%);
}

.blue-gradient {
    background: radial-gradient(circle at 35% 35%, #dbeafe 0%, #bfdbfe 30%, #93c5fd 60%, #60a5fa 100%);
}

.circle-content {
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.circle-icon {
    font-size: 50px;
    margin-bottom: 12px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    animation: gentleFloat 4s ease-in-out infinite;
}

.central-hub .circle-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.activity-circle h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.central-hub h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.activity-circle p {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    margin: 0 auto;
}

.central-hub p {
    font-size: 15px;
}

/* Hover Effects - 360° Spin + Glow Pulse */
.activity-circle:hover {
    transform: translate(-50%, -50%) rotate(360deg) scale(1.05);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.2),
        0 0 80px rgba(255, 255, 255, 0.3),
        inset 0 0 60px rgba(255, 255, 255, 0.35);
}

.central-hub:hover {
    transform: translate(-50%, -50%) rotate(360deg) scale(1.08);
}

.inner-ring:hover {
    transform: translateX(-50%) rotate(360deg) scale(1.08);
}

.drama-circle:hover {
    transform: translateY(-50%) rotate(360deg) scale(1.08);
}

.music-circle:hover {
    transform: translateX(-50%) rotate(360deg) scale(1.08);
}

.storytelling-circle:hover {
    transform: translateY(-50%) rotate(360deg) scale(1.08);
}

/* Floating Animation */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .circular-formation {
        height: 1000px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
    }
    
    .activity-circle {
        position: relative;
        margin-bottom: 25px;
        transform: none !important;
    }
    
    .central-hub,
    .inner-ring,
    .outer-ring {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 300px;
        height: 300px;
    }
    
    .central-hub {
        width: 320px;
        height: 320px;
        order: 1;
    }
    
    .inner-ring {
        width: 280px;
        height: 280px;
        order: 2;
    }
    
    .outer-ring {
        width: 240px;
        height: 240px;
        order: 3;
    }
    
    .activity-circle:hover {
        transform: rotate(360deg) scale(1.08) !important;
    }
}

@media (max-width: 768px) {
    .circular-formation {
        height: auto;
        padding: 20px 0;
        overflow-x: auto;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
    .activity-circle {
        min-width: 250px;
        height: 250px;
        margin: 0 15px;
        flex-shrink: 0;
    }
    
    .central-hub {
        width: 250px;
        height: 250px;
    }
    
    .inner-ring {
        width: 250px;
        height: 250px;
    }
    
    .outer-ring {
        width: 250px;
        height: 250px;
    }
    
    .circle-icon {
        font-size: 40px;
    }
    
    .central-hub .circle-icon {
        font-size: 45px;
    }
    
    .activity-circle h3 {
        font-size: 16px;
    }
    
    .central-hub h3 {
        font-size: 18px;
    }
    
    .activity-circle p {
        font-size: 11px;
    }
    
    .central-hub p {
        font-size: 13px;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #fef5f0 0%, #fde8d8 50%, #fef0e6 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.activity-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 100%);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.activity-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.activity-card h3 {
    font-size: 24px;
    color: var(--coral);
    margin-bottom: 15px;
    font-weight: 600;
}

.activity-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 16px;
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-mission {
    background: url('../photos/our mission vision background.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.vision-mission .section-title {
    color: #dc143c;
    position: relative;
    z-index: 1;
}

.vision-mission .section-title .text-coral,
.vision-mission .section-title .text-teal {
    color: #dc143c;
}

.vision-mission .section-subtitle {
    color: #dc143c;
    position: relative;
    z-index: 1;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 0;
}

.vm-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.vm-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 28px;
    color: var(--coral);
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.mission-card h3 {
    color: var(--teal);
}

.vm-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.vm-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
    font-size: 15px;
}

.vm-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.vision-card .vm-list li::before {
    color: var(--coral);
}

/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.approach-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.approach-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--teal);
    opacity: 0.3;
    line-height: 1;
}

.approach-content h3 {
    font-size: 22px;
    color: var(--coral);
    margin-bottom: 10px;
}

.approach-content p {
    color: var(--gray);
    font-size: 15px;
}

/* Teachers Section */
.teachers-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.teacher-info-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.teacher-info-card h3 {
    font-size: 22px;
    color: var(--coral);
    margin-bottom: 20px;
}

.teacher-info-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
}

.teacher-info-card ul li:last-child {
    border-bottom: none;
}

.teacher-info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

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

.teacher-quote blockquote {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--teal);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Chennai Kids Programmes ===== */
.chennai-kids-programmes {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.chennai-kids-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #dc143c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.programmes-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.programme-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.programme-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--coral) 0%, var(--teal) 100%);
}

.programme-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--coral);
}

/* Play Group Box with Background Image */
.programme-box-playgroup {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7)), url('../photos/prekg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.programme-box-playgroup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../photos/prekg.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
    opacity: 0.5;
}

/* Nursery Box with Background Image */
.programme-box-nursery {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7)), url('../photos/nursery.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.programme-box-nursery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../photos/nursery.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
    opacity: 0.5;
}

/* Junior KG Box with Background Image */
.programme-box-junior-kg {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7)), url('../photos/juniour kg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.programme-box-junior-kg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../photos/juniour kg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
    opacity: 0.5;
}

/* Senior KG Box with Background Image */
.programme-box-senior-kg {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7)), url('../photos/seniour kg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.programme-box-senior-kg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../photos/seniour kg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
    opacity: 0.5;
}

/* Day Care Box with Background Image */
.programme-box-daycare {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7)), url('../photos/day care.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.programme-box-daycare::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../photos/day care.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -1;
    opacity: 0.5;
}

.programme-box-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    animation: gentleFloat 3s ease-in-out infinite;
}

.programme-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 12px;
}

.programme-age {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.programme-description {
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.programme-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.programme-features li {
    font-size: 14px;
    color: #2d3436;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.3;
}

.programme-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.programme-box-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--coral);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.programme-box-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

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

/* Responsive for Programme Boxes */
@media (max-width: 768px) {
    .chennai-kids-heading {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .programmes-boxes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .programme-box {
        padding: 25px 20px;
        min-height: 400px;
    }
    
    .programme-box-icon {
        font-size: 40px;
    }
    
    .programme-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .chennai-kids-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .programmes-boxes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .programme-box {
        padding: 20px 15px;
        min-height: 380px;
    }
    
    .programme-box-icon {
        font-size: 36px;
    }
    
    .programme-box h3 {
        font-size: 22px;
    }
}

/* ===== Smart Kids Grid ===== */
.smart-kids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.smart-kids-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.smart-kids-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--coral) 0%, var(--teal) 100%);
}

.smart-kids-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--coral);
}

.smart-kids-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #3bc1b2;
    margin-bottom: 12px;
}

.smart-kids-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #6c757d;
    margin: 0;
}

/* Responsive for Smart Kids Grid */
@media (max-width: 768px) {
    .smart-kids-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .smart-kids-item {
        padding: 20px;
    }
    
    .smart-kids-item h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .smart-kids-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .smart-kids-item {
        padding: 18px;
    }
    
    .smart-kids-item h3 {
        font-size: 18px;
    }
}

/* ===== Programmes Page Styles ===== */
.programme-header {
    text-align: center;
    margin-bottom: 40px;
}

.programme-badge {
    display: inline-block;
    background-color: var(--coral);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.programme-badge.teal {
    background-color: var(--teal);
}

.programme-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.programme-desc {
    font-size: 18px;
    color: var(--gray);
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.syllabus-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--teal);
}

.syllabus-card h4 {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 15px;
}

.syllabus-card ul li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
    border-bottom: 1px dashed var(--light-gray);
}

.syllabus-card ul li:last-child {
    border-bottom: none;
}

/* Extracurricular */
.extra-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.extra-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.extra-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.extra-card h3 {
    font-size: 16px;
    color: var(--coral);
    margin-bottom: 8px;
}

.extra-card p {
    font-size: 13px;
    color: var(--gray);
}

/* ===== Facilities Page Styles ===== */

/* Best Facilities - London Kids Style */
.best-facilities-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background: #fffaf5;
}

.best-facilities-title {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    font-style: italic;
}

.best-facilities-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

/* Decorative Elements */
.decor-sun {
    position: absolute;
    top: -30px;
    left: -20px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, #FFD700 30%, transparent 30%),
                conic-gradient(from 0deg, #FFD700 0deg 10deg, transparent 10deg 30deg, #FFD700 30deg 40deg, transparent 40deg 60deg, #FFD700 60deg 70deg, transparent 70deg 90deg, #FFD700 90deg 100deg, transparent 100deg 120deg, #FFD700 120deg 130deg, transparent 130deg 150deg, #FFD700 150deg 160deg, transparent 160deg 180deg, #FFD700 180deg 190deg, transparent 190deg 210deg, #FFD700 210deg 220deg, transparent 220deg 240deg, #FFD700 240deg 250deg, transparent 250deg 270deg, #FFD700 270deg 280deg, transparent 280deg 300deg, #FFD700 300deg 310deg, transparent 310deg 330deg, #FFD700 330deg 340deg, transparent 340deg 360deg);
    opacity: 0.5;
    z-index: 0;
}

.decor-smiley {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 80px;
    height: 80px;
    font-size: 60px;
    z-index: 0;
    opacity: 0.4;
}

.decor-smiley::after {
    content: '😊';
}

.decor-leaves {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 100px;
    height: 120px;
    z-index: 0;
    opacity: 0.3;
}

.decor-leaves::after {
    content: '🌿';
    font-size: 70px;
}

.decor-stars {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 0;
    opacity: 0.3;
}

.decor-stars::after {
    content: '⭐';
    font-size: 40px;
}

.bf-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1;
}

.bf-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.bf-left .bf-item {
    text-align: left;
}

.bf-right .bf-item {
    text-align: left;
}

.bf-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), #ff8a65);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.35);
}

.bf-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

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

/* Responsive - Best Facilities */
@media (max-width: 1024px) {
    .best-facilities-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .best-facilities-section {
        padding: 50px 0 40px;
    }

    .best-facilities-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .best-facilities-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bf-center-image {
        width: 220px;
        margin: 10px auto;
    }

    .bf-column {
        gap: 25px;
    }

    .bf-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 17px;
    }

    .bf-text h3 {
        font-size: 16px;
    }

    .bf-text p {
        font-size: 13px;
    }
}

.intro-box {
    background-color: var(--teal);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
}

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

.facility-grid.reverse {
    direction: rtl;
}

.facility-grid.reverse > * {
    direction: ltr;
}

.facility-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.facility-list {
    list-style: none;
}

.facility-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.list-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.facility-list li strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.facility-list li p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.facility-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

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

.big-quote {
    max-width: 800px;
    margin: 0 auto 20px;
}

.big-quote p {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    font-style: italic;
}

.quote-footer {
    color: var(--white);
    font-size: 18px;
}

/* Events */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--coral);
}

.event-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.event-card h3 {
    font-size: 24px;
    color: var(--coral);
    margin-bottom: 5px;
}

.event-card > p {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.event-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray);
    font-size: 14px;
}

.event-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
}

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

.events-quote blockquote {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--teal);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Engagement */
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.engagement-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.engagement-card h3 {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 20px;
}

.engagement-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
    border-bottom: 1px solid var(--light-gray);
}

.engagement-card ul li:last-child {
    border-bottom: none;
}

.engagement-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.engagement-footer {
    text-align: center;
    background-color: var(--teal);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
}

.engagement-footer p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Fees Page Styles ===== */
.fee-table-wrapper {
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.fee-table th {
    background-color: var(--coral);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
}

.fee-table th small {
    display: block;
    font-weight: normal;
    font-size: 12px;
}

.fee-table tbody tr {
    background-color: var(--teal);
    color: var(--white);
}

.fee-table tbody tr:nth-child(even) {
    background-color: var(--teal-dark);
}

.fee-table td:first-child {
    text-align: left;
}

/* Offers */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.offer-card.featured {
    border: 3px solid var(--coral);
}

.offer-badge {
    display: inline-block;
    background-color: var(--coral);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.offer-badge.teal {
    background-color: var(--teal);
    color: var(--white);
}

.offer-badge.coral {
    background-color: var(--coral);
}

.offer-card h3 {
    font-size: 22px;
    color: var(--coral);
    margin-bottom: 10px;
}

.offer-tagline {
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.offer-card ul {
    margin-bottom: 15px;
}

.offer-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray);
}

.offer-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.combo-options, .pack-details {
    margin-top: 15px;
}

.combo, .pack {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--radius-small);
    margin-bottom: 10px;
}

.combo strong, .pack strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
}

.new-price {
    color: var(--coral);
    font-weight: 700;
    font-size: 18px;
}

.savings {
    background-color: var(--teal);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

/* Bonus Offers */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.bonus-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 50px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--dark);
    margin-bottom: 10px;
}

.bonus-tagline {
    display: block;
    color: var(--teal);
    font-style: italic;
    font-size: 14px;
    margin-top: 15px;
}

.early-bird-options .option {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--radius-small);
    margin-bottom: 10px;
    text-align: left;
}

.reward-options {
    text-align: left;
    margin-top: 15px;
}

.reward-options ul {
    margin: 10px 0;
}

.reward-options ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.reward-options ul li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--teal);
}

.courses-list {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
}

/* Exclusive Offers */
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.exclusive-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--teal);
}

.exclusive-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--coral);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    line-height: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.exclusive-card h3 {
    font-size: 22px;
    color: var(--coral);
    margin-bottom: 10px;
}

.for-badge {
    display: inline-block;
    background-color: var(--teal);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 15px;
}

.exclusive-card .tagline {
    display: block;
    color: var(--teal);
    font-style: italic;
    margin-top: 15px;
}

.exclusive-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray);
}

.exclusive-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* ===== Gallery Page Styles ===== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--coral);
    background-color: transparent;
    color: var(--coral);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--coral);
    color: #5A3A3A;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
}

/* ===== Contact Page Styles ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--radius-small);
}

.info-icon {
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    color: var(--coral);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.info-content a {
    color: var(--teal);
}

.info-content a:hover {
    color: var(--coral);
}

.founder-contact {
    background-color: var(--teal);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-small);
    text-align: center;
}

.founder-contact h4 {
    margin-bottom: 10px;
}

.founder-contact p {
    margin: 5px 0;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.contact-form button[type="submit"] {
    margin-top: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-small);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--coral);
}

/* Map */
.map-wrapper {
    margin-top: 30px;
}

.map-wrapper iframe {
    border-radius: var(--radius);
}

/* Quick Actions */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.action-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.action-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.action-card h3 {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 8px;
}

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

/* ===== Responsive Additions ===== */
@media (max-width: 1024px) {
    .principal-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .principal-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .section-title.text-left {
        text-align: center;
    }
    
    .vm-grid,
    .approach-grid,
    .teachers-content,
    .facility-grid,
    .events-grid,
    .engagement-grid,
    .offers-grid,
    .bonus-grid,
    .exclusive-grid {
        grid-template-columns: 1fr;
    }
    
    .facility-grid.reverse {
        direction: ltr;
    }
    
    .extra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .activity-card {
        padding: 30px 20px;
    }
    
    .activity-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .activity-card h3 {
        font-size: 20px;
    }
    
    .activity-card p {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon svg {
    animation: successPulse 2s ease-in-out infinite;
}

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

.thank-you-content h2 {
    font-size: 36px;
    color: var(--coral);
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 40px;
}

.next-steps {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h3 {
    color: var(--teal);
    margin-bottom: 15px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.next-steps li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.contact-info-box h3 {
    color: var(--teal);
    margin-bottom: 20px;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.contact-item {
    padding: 10px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item a {
    color: var(--teal);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .thank-you-content h2 {
        font-size: 28px;
    }
    
    .next-steps,
    .contact-info-box {
        padding: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .extra-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .activity-card {
        padding: 25px 20px;
    }
    
    .activity-icon {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* ===== Recent Events Photo Scroll Styles ===== */
.recent-events-scroll {
    background: #e0fff8;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.events-scroll-container {
    text-align: center;
}

.events-scroll-title {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 10px;
}

.events-scroll-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.events-scroll-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
}

.events-scroll-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

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

.event-scroll-item {
    flex: 0 0 300px;
    margin: 0 15px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-scroll-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-scroll-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.event-scroll-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
    text-align: left;
}

.event-scroll-overlay h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-scroll-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Pause animation on hover */
.events-scroll-wrapper:hover .events-scroll-track {
    animation-play-state: paused;
}

/* Loading state for events */
.events-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Loading state for gallery */
.gallery-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px;
    color: var(--teal);
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-loading p {
    margin: 0;
}

.no-images {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    padding: 40px;
    width: 100%;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 20px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--coral);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    color: #fff;
    font-size: 1rem;
    margin-top: 15px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* Gallery item cursor pointer */
.gallery-item {
    cursor: pointer;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 24px;
        padding: 15px 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
}

/* Responsive Design for Photo Scroll */
@media (max-width: 768px) {
    .recent-events-scroll {
        padding: 40px 0;
    }
    
    .events-scroll-title {
        font-size: 2rem;
    }
    
    .events-scroll-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .event-scroll-item {
        flex: 0 0 250px;
        margin: 0 10px;
    }
    
    .event-scroll-item img {
        height: 180px;
    }
    
    .event-scroll-overlay {
        padding: 25px 15px 15px;
    }
    
    .event-scroll-overlay h3 {
        font-size: 1.1rem;
    }
    
    .event-scroll-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .event-scroll-item {
        flex: 0 0 200px;
        margin: 0 8px;
    }
    
    .event-scroll-item img {
        height: 150px;
    }
    
    .event-scroll-overlay {
        padding: 20px 12px 12px;
    }
    
    .event-scroll-overlay h3 {
        font-size: 1rem;
    }
    
    .event-scroll-overlay p {
        font-size: 0.8rem;
    }
}
