:root {
    --primary: #0056b3;
    --secondary: #00c6ff;
    --accent: #ff6b6b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gradient-main: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px -5px rgba(0,0,0,0.15);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #475569;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

/* --- PRESCHOOL HEADER STYLES --- */

/* --- HEADER STYLES --- */
.top-header {
    background-color: #243b6b;
    color: white;
    font-size: 0.9rem;
    font-family: 'Fredoka', sans-serif;
}

.school-navbar {
    background-color: #ffffff;
    padding: 10px 0;
    font-family: 'Fredoka', sans-serif;
    border-bottom: 4px solid #ffc107;
    width: 100%;
    z-index: 1020;
    transition: all 0.3s ease-in-out;
}

/* --- THE STICKY CLASS (Added by JS) --- */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
    padding: 5px 0; /* Slightly smaller padding when sticky */
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Other nav styles (same as before) */
.header-socials a { color: white; margin-right: 15px; font-size: 1rem; }
.header-socials a:hover { color: #ffc107; }
.info-item { margin-left: 20px; font-weight: 500; }
.nav-link { color: #2d3436 !important; font-weight: 600; font-size: 1.05rem; margin: 0 10px; }
.nav-link:hover { color: #ff6f00 !important; }
.special-link { color: #e91e63 !important; background: #fce4ec; border-radius: 20px; padding: 6px 15px !important; }
.special-link:hover { background: #e91e63; color: white !important; }
.btn-fun-header { background: #00cec9; color: white; padding: 10px 25px; border-radius: 50px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 0 #00b8b4; }
.btn-fun-header:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #00b8b4; color: white; }

/* 1. TOP BAR */
.top-header {
    background-color: #243b6b; /* Deep Royal Blue */
    color: white;
    font-size: 0.9rem;
    font-family: 'Fredoka', sans-serif;
}

.header-socials a {
    color: white;
    margin-right: 15px;
    transition: color 0.3s;
    font-size: 1rem;
}

.header-socials a:hover {
    color: #ffc107; /* Yellow hover */
}

.info-item {
    margin-left: 20px;
    font-weight: 500;
}

/* 2. MAIN NAVBAR */
.school-navbar {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 10px 0;
    font-family: 'Fredoka', sans-serif;
    /* Colorful Bottom Border for School Vibe */
    border-bottom: 4px solid #ffc107; 
}

.navbar-brand img {
    transition: transform 0.3s;
}

.nav-link {
    color: #2d3436 !important;
    font-weight: 600;
    font-size: 1.0rem;
    margin: 0 12px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #ff6f00 !important; /* Orange Hover */
}

/* Creativity Cottage Special Link */
.special-link {
    color: #e91e63 !important; /* Pink Color */
    background: #fce4ec;
    border-radius: 20px;
    padding: 6px 15px !important;
}

.special-link:hover {
    background: #e91e63;
    color: white !important;
}

/* Contact Button */
.btn-fun-header {
    background: #00cec9;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 0 #00b8b4;
    transition: all 0.2s;
    display: inline-block;
}

.btn-fun-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #00b8b4;
    color: white;
}

/* 3. MOBILE TOGGLER ANIMATION */
.navbar-toggler {
    border: none;
    background: transparent !important;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #243b6b;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Animation when open */
.navbar-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}
.navbar-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- END OF PRESCHOOL HEADER STYLES --- */

/* --- PRESCHOOL HERO STYLES --- */
.preschool-hero {
    position: relative;
    /* Soft Sunny Gradient */
    background: linear-gradient(135deg, #bbf0f3 0%, #d4fc79 100%); /* Adjusted to closer match the light blue/green tint in reference */
    padding: 140px 0 180px; 
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2d3436;
    margin-bottom: 20px;
}

.highlight-word {
    color: #ff6b6b;
    position: relative;
    display: inline-block;
}

.highlight-word-2 {
    color: #0984e3;
}

.hero-text {
    font-size: 1.25rem;
    color: #636e72;
    font-weight: 500;
    max-width: 90%;
    margin-bottom: 30px;
}

/* Fun Badge */
.badge-fun {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #d35400;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.badge-fun .icon-circle {
    width: 25px;
    height: 25px;
    background: #ffeaa7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #d35400;
}

/* Playful Buttons */
.btn-fun {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-primary-fun {
    background-color: #00cec9;
    color: white;
    border: 3px solid #00cec9;
    box-shadow: 0 5px 0 #00b8b4;
}

.btn-primary-fun:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #00b8b4;
    color: white;
}

.btn-secondary-fun {
    background-color: white;
    color: #6c5ce7;
    border: 3px solid #6c5ce7;
    box-shadow: 0 5px 0 #a29bfe;
}

.btn-secondary-fun:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #a29bfe;
}

/* Trust Badges */
.trust-badges .trust-item {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #2d3436;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 15px;
    border-radius: 12px;
}

.trust-badges i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #27ae60 !important;
}

/* --- HERO IMAGE --- */
.hero-blob-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.blob-frame {
    width: 100%;
    max-width: 500px;
    height: auto;
    background: white;
    padding: 10px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: morphBlob 8s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.hero-main-img {
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes morphBlob {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Stickers */
.sticker-card {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floatSticker 4s ease-in-out infinite;
    border: 2px solid white;
}

.sticker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.bg-blue { background: #48dbfb; }
.bg-pink { background: #ff9ff3; }

.card-1 { top: 10%; left: 0; transform: rotate(-10deg); }
.card-2 { bottom: 10%; right: -20px; animation-delay: 2s; transform: rotate(5deg); }

@keyframes floatSticker {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- BACKGROUND DOODLES --- */
.doodle-bg {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}
.item-1 { top: 15%; left: 10%; transform: rotate(15deg); }
.item-2 { top: 20%; right: 15%; font-size: 4rem; }
.item-3 { bottom: 15%; left: 5%; }
.item-4 { top: 5%; right: 40%; font-size: 6rem; opacity: 0.4; }

/* --- SMOOTH CURVE BOTTOM --- */
.hero-curve {
    position: absolute;
    bottom: -1px; /* Remove gaps */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-curve svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px; /* Adjust height for subtle curve */
}

/* --- PRESCHOOL ABOUT SECTION --- */
.about-preschool {
    padding: 100px 0;
    background-color: #ffffff; /* White Background */
    background-image: radial-gradient(#f3f4f6 2px, transparent 2px);
    background-size: 40px 40px; /* Subtle dot pattern */
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif; /* Ensure you have this font imported */
}

/* Floating Doodles */
.doodle-float {
    position: absolute;
    color: rgba(0, 0, 0, 0.05);
    z-index: 0;
}
.sun-doodle { top: 50px; left: -50px; font-size: 8rem; color: #fff3cd; animation: spinSlow 20s linear infinite; }
.cloud-doodle-1 { top: 100px; right: -50px; font-size: 6rem; color: #e0f2fe; animation: floatCloud 8s ease-in-out infinite; }
.cloud-doodle-2 { bottom: 50px; left: 10%; font-size: 5rem; color: #e0f2fe; animation: floatCloud 10s ease-in-out infinite reverse; }

@keyframes spinSlow { 100% { transform: rotate(360deg); } }
@keyframes floatCloud { 50% { transform: translateX(20px); } }

/* Typography */
.fun-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -1px;
}

.fun-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
}

/* Fun Badge (Pill Shape) */
.fun-badge {
    display: inline-block;
    background-color: #ffeaa7;
    color: #d35400;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 3px 3px 0px rgba(211, 84, 0, 0.2);
}

/* Highlight Box (Dashed Border) */
.fun-box-highlight {
    background-color: #e0f7fa;
    border: 2px dashed #00bcd4;
    padding: 20px;
    border-radius: 20px;
    color: #006064;
    font-weight: 500;
    position: relative;
}

/* Clipart Image Styling */
.clipart-wrapper {
    position: relative;
    display: inline-block;
}

.rounded-blob {
    border-radius: 40px 40px 40px 40px; /* Soft rounded rectangle */
    box-shadow: 10px 10px 0px #ffccbc; /* Offset shadow for cartoon look */
    border: 4px solid #333;
    max-width: 100%;
    transform: rotate(2deg); /* Playful tilt */
}

/* Floating Sticker Badge */
.sticker-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px;
    border-radius: 50%;
    border: 3px solid #333;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.1);
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bounce-anim {
    animation: bounceBadge 3s infinite;
}

@keyframes bounceBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- MISSION & VISION CARDS (Sticker Style) --- */
.fun-card {
    padding: 30px;
    border-radius: 25px;
    position: relative;
    border: 3px solid #333;
    box-shadow: 8px 8px 0px #333; /* Comic book shadow */
    transition: transform 0.3s;
    height: 100%;
    background: white;
}

.fun-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0px #333;
}

.card-icon-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: white;
}

.fun-card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fun-card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Card Themes */
.card-yellow {
    background-color: #fff9c4; /* Pastel Yellow */
}
.card-yellow .card-icon-top { color: #fbc02d; }

.card-blue {
    background-color: #bbdefb; /* Pastel Blue */
}
.card-blue .card-icon-top { color: #1976d2; }

/* --- END OF PRESCHOOL ABOUT SECTION --- */

/* --- PRESCHOOL WELCOME STYLES --- */
.welcome-preschool {
    padding: 100px 0;
    position: relative;
    background-color: #fff8e1; /* Soft Pastel Yellow */
    background-image: radial-gradient(#ffe082 2px, transparent 2px);
    background-size: 30px 30px; /* Polka Dots */
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* The "Board" Container */
.welcome-board {
    background: #ffffff;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    /* Fun Dashed Border */
    border: 4px dashed #ffb74d; 
    box-shadow: 0 15px 0 rgba(255, 183, 77, 0.2); /* Thick bottom shadow */
    margin-top: 40px;
}

/* Top Icon (Sun) */
.welcome-icon-fun {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fbc02d; /* Sun Yellow */
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid #ffb74d;
}

.bounce-anim {
    animation: bounceIcon 3s infinite ease-in-out;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Typography */
.welcome-title-fun {
    font-size: 3rem;
    font-weight: 700;
    color: #5d4037; /* Warm Brown text */
    margin-top: 30px;
    margin-bottom: 25px;
}

.brand-pop {
    color: #ff6b6b; /* Pop Red */
    position: relative;
    display: inline-block;
}

/* Hand-drawn underline effect */
.brand-pop::after {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background: #48dbfb;
    opacity: 0.3;
    border-radius: 4px;
    position: absolute;
    bottom: 5px;
    z-index: -1;
}

.lead-text-fun {
    font-size: 1.25rem;
    color: #636e72;
    line-height: 1.6;
    font-weight: 500;
}

.main-text-fun {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.8;
}

/* Squiggly Divider */
.divider-squiggle {
    width: 120px;
    height: 20px;
    margin: 30px auto;
}

.divider-squiggle svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* STEAM Badge (Pill) */
.steam-pill {
    background-color: #6c5ce7;
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 1px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

/* Background Decorations */
.float-decor {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
}

.balloon-1 { top: 10%; left: 5%; font-size: 4rem; animation: floatUp 6s infinite alternate; }
.balloon-2 { top: 20%; right: 8%; font-size: 3.5rem; animation: floatUp 7s infinite alternate-reverse; }
.cloud-1 { bottom: 10%; left: -20px; font-size: 8rem; color: #ffffff; opacity: 0.8; }
.cloud-2 { top: 5%; right: 30%; font-size: 6rem; color: #ffffff; opacity: 0.5; }

@keyframes floatUp {
    0% { transform: translateY(0) rotate(5deg); }
    100% { transform: translateY(-20px) rotate(-5deg); }
}

/* --- END OF PRESCHOOL WELCOME STYLES --- */

/* --- PRESCHOOL "WHY CHOOSE US" STYLES --- */
.choose-preschool {
    padding: 100px 0 140px; /* Extra bottom padding for grass */
    background-color: #f0f5ff;
    position: relative;
    font-family: 'Fredoka', sans-serif;
    overflow: hidden;
}

/* Background Decor */
.decor-float {
    position: absolute;
    z-index: 0;
}
.sun-corner { top: -60px; left: -60px; font-size: 10rem; color: #fff; animation: spinSlow 30s linear infinite; }
.bird-1 { top: 100px; right: 10%; font-size: 2rem; color: #81d4fa; animation: floatBird 6s ease-in-out infinite; }
.bird-2 { top: 150px; right: 15%; font-size: 1.5rem; color: #81d4fa; animation: floatBird 7s ease-in-out infinite reverse; }

@keyframes floatBird {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* GROWTH CARDS */
.growth-card {
    background: white;
    border-radius: 20px;
    padding: 30px 30px 30px; /* Top padding is 0 to let icon pop out */
    margin-top: 40px; /* Space for the popped icon */
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-bottom: 5px solid rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.growth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Floating Icon Bubble */
.icon-pop {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -40px auto 20px; /* Negative margin pulls it up */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid white;
}

.card-content h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #444;
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Color Themes */
.card-mint .icon-pop { background-color: #4db6ac; }
.card-mint { border-color: #b2dfdb; }

.card-peach .icon-pop { background-color: #ff8a65; }
.card-peach { border-color: #ffccbc; }

.card-sky .icon-pop { background-color: #4fc3f7; }
.card-sky { border-color: #b3e5fc; }

.card-lavender .icon-pop { background-color: #9575cd; }
.card-lavender { border-color: #d1c4e9; }

.card-lemon .icon-pop { background-color: #fbc02d; }
.card-lemon { border-color: #fff9c4; }

.card-rose .icon-pop { background-color: #f06292; }
.card-rose { border-color: #f8bbd0; }


/* --- END OF WHY CHOOSE US --- */

/* --- PRESCHOOL LAB SETUP STYLES --- */
.lab-preschool {
    padding: 100px 0;
    /* Fun Pattern Background */
    background-color: #f0fdf4; /* Very Light Green */
    background-image: 
        radial-gradient(#86efac 1px, transparent 1px), 
        radial-gradient(#86efac 1px, transparent 1px);
    background-position: 0 0, 20px 20px;
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Floating Doodles */
.lab-doodle {
    position: absolute;
    color: rgba(0,0,0,0.05);
    z-index: 0;
}
.d-1 { top: 50px; left: 20px; font-size: 5rem; }
.d-2 { bottom: 100px; right: 20px; font-size: 6rem; transform: rotate(15deg); }
.d-3 { top: 150px; right: 10%; font-size: 4rem; }

/* Badge & Title */
.lab-badge {
    background: #333;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.create-title-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.c-block {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 15px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    box-shadow: 0 10px 0 rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.c-block:hover {
    transform: translateY(-5px);
}

/* Block Colors */
.c-orange { background: #ff9f43; }
.c-pink   { background: #ff6b81; }
.c-green  { background: #2ed573; }
.c-purple { background: #a55eea; }
.c-blue   { background: #2f3542; } /* Dark Blue for T */
.c-yellow { background: #f1c40f; }

.fun-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #2f3542;
    font-weight: 700;
    font-style: italic;
}

.lab-desc {
    max-width: 800px;
    color: #57606f;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Feature Blocks (Icons) */
.feature-block {
    background: white;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    border: 3px solid;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s;
}

.feature-block:hover {
    transform: rotate(3deg) scale(1.05);
}

.feature-block i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.feature-block span {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    line-height: 1.2;
}

/* Specific Block Themes */
.block-orange { border-color: #ff9f43; color: #ff9f43; }
.block-pink   { border-color: #ff6b81; color: #ff6b81; }
.block-green  { border-color: #2ed573; color: #2ed573; }
.block-purple { border-color: #a55eea; color: #a55eea; }
.block-blue   { border-color: #2f3542; color: #2f3542; }
.block-yellow { border-color: #f1c40f; color: #f1c40f; }

/* Lab Structure Card */
.structure-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 3px solid #2ed573;
    height: 100%;
}

.card-header-fun {
    background: #2ed573;
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.structure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.structure-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #333;
}

.structure-list .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.note-box {
    background: #e0f2fe;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #0369a1;
    border: 1px dashed #0284c7;
}

/* Highlights Section */
.highlights-wrapper {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    border: 3px dashed #ff9f43;
    height: 100%;
    position: relative;
}

.highlights-title {
    color: #ff9f43;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.3rem;
}

.fun-check-list {
    list-style: none;
    padding: 0;
}

.fun-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
}

.fun-check-list li i {
    margin-top: 4px;
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --- END OF PRESCHOOL LAB SETUP STYLES --- */

/* --- PRESCHOOL COUNTER SECTION --- */
.counter-preschool {
    padding: 100px 0;
    background-color: #ff7e67; /* Exact Salmon/Coral from screenshot */
    position: relative;
    overflow: hidden; /* Keeps images contained */
    color: white;
    font-family: 'Fredoka', sans-serif; /* Rounded playful font */
}

/* Floating Images Wrapper */
.char-float {
    position: absolute;
    bottom: 0; /* Anchor to bottom */
    z-index: 1;
    width: 280px; /* Size adjustment */
    pointer-events: none; /* Allows clicking through images if needed */
}

/* Specific Positioning */
.char-left {
    left: 2%;
    animation: floatLeft 4s ease-in-out infinite;
}

.char-right {
    right: 2%;
    animation: floatRight 5s ease-in-out infinite;
}

.char-float img {
    width: 100%;
    /* Multiply blend mode removes the white background from JPEGs effectively on colored backgrounds */
    mix-blend-mode: multiply; 
    filter: contrast(1.1); /* Pop the colors */
}

/* Floating Animations */
@keyframes floatLeft {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
}

@keyframes floatRight {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
}

/* Circular Icons */
.icon-bubble {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ff7e67; /* Icon color matches bg */
    margin: 0 auto 20px;
    box-shadow: 0 10px 0 rgba(0,0,0,0.1); /* 3D Bottom Shadow */
    border: 4px solid rgba(255,255,255,0.4);
    transition: transform 0.3s;
}

.counter-box:hover .icon-bubble {
    transform: scale(1.1) rotate(10deg);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Background Doodles */
.doodle-dots-left {
    position: absolute;
    top: 30px;
    left: 25%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#fff 20%, transparent 20%);
    background-size: 15px 15px;
    opacity: 0.3;
}

.doodle-lines-right {
    position: absolute;
    top: 40px;
    right: 25%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px dashed rgba(255,255,255,0.3);
    transform: rotate(-15deg);
}

/* --- END OF PRESCHOOL COUNTER SECTION --- */

/* --- PRESCHOOL USP SECTION STYLES --- */
.usp-preschool-modern {
    padding: 100px 0;
    /* Soft Lavender Background */
    background-color: #f3e5f5; 
    background-image: radial-gradient(#e1bee7 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Flashcard Style */
.usp-flashcard {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 3px dashed transparent; /* Dashed border setup */
    box-shadow: 0 10px 0 rgba(0,0,0,0.05);
}

.usp-flashcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 0 rgba(0,0,0,0.1);
}

.flashcard-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flashcard-body h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.flashcard-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Color Variants */
.card-blue {
    border-color: #4fc3f7;
}
.card-blue .flashcard-icon {
    background-color: #4fc3f7;
}

.card-yellow {
    border-color: #fbc02d;
}
.card-yellow .flashcard-icon {
    background-color: #fbc02d;
}

.card-green {
    border-color: #66bb6a;
}
.card-green .flashcard-icon {
    background-color: #66bb6a;
}

.card-red {
    border-color: #ef5350;
}
.card-red .flashcard-icon {
    background-color: #ef5350;
}

/* Special Highlight for 'One Centre' */
.card-red.highlight {
    background-color: #ffebee; /* Light red tint */
}

/* Background Doodles */
.doodle-bg {
    position: absolute;
    color: rgba(0,0,0,0.05);
    z-index: 0;
}
.doodle-1 { top: 50px; left: 5%; font-size: 5rem; transform: rotate(-15deg); }
.doodle-2 { bottom: 80px; right: 5%; font-size: 6rem; transform: rotate(15deg); }
.doodle-3 { top: 150px; right: 15%; font-size: 4rem; }

/* --- END OF PRESCHOOL USP STYLES --- */

/* --- PRESCHOOL PROGRAMS STYLES --- */
.programs-preschool {
    padding: 100px 0;
    /* Soft Sky Blue Background */
    background: linear-gradient(180deg, #e0f7fa 0%, #e1f5fe 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Background Decor */
.bg-decor {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    z-index: 0;
}
.cloud-1 { top: 50px; left: -50px; font-size: 8rem; animation: drift 25s linear infinite; }
.cloud-2 { bottom: 100px; right: -50px; font-size: 6rem; animation: drift 30s linear infinite reverse; }
.sun-spin { top: 20px; right: 50px; font-size: 5rem; color: #fff176; animation: spinSlow 15s linear infinite; }

@keyframes drift { 0% { transform: translateX(0); } 50% { transform: translateX(20px); } 100% { transform: translateX(0); } }
@keyframes spinSlow { 100% { transform: rotate(360deg); } }

/* --- NOTEBOOK CARDS --- */
.notebook-card {
    border-radius: 25px;
    padding: 10px; /* Space for border effect */
    position: relative;
    transition: transform 0.3s;
    height: 100%;
}

.notebook-card:hover {
    transform: translateY(-10px) rotate(1deg);
}

.card-body-fun {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    position: relative;
}

/* Spiral Binding Effect on Top */
.notebook-spiral {
    position: absolute;
    top: -15px;
    left: 20px;
    right: 20px;
    height: 30px;
    background-image: radial-gradient(circle, #333 30%, transparent 35%);
    background-size: 30px 30px;
    background-repeat: repeat-x;
    z-index: 2;
    opacity: 0.15;
}

/* Card Themes */
.card-pink { background-color: #ff80ab; color: white; box-shadow: 0 10px 0 #f50057; }
.card-pink .text-pink { color: #f50057; }

.card-purple { background-color: #b39ddb; color: white; box-shadow: 0 10px 0 #673ab7; }
.card-purple .text-purple { color: #673ab7; }

/* Header inside Card */
.fun-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px dashed rgba(255,255,255,0.5);
    padding-bottom: 15px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.fun-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
    margin: 0;
}
.fun-title span { font-size: 1rem; opacity: 0.9; font-weight: 400; }

/* List Styles inside Notebook */
.fun-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fun-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.fun-list li i { margin-right: 10px; }

/* --- MISC BOARD (White Board) --- */
.misc-board {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    border: 4px solid #4dd0e1; /* Cyan Border */
    box-shadow: 10px 10px 0 rgba(77, 208, 225, 0.3);
    margin-top: 60px;
    position: relative;
}

.board-badge {
    background: #ffeb3b;
    color: #f57f17;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    border: 2px solid #f57f17;
}

.board-title {
    color: #0097a7;
    font-weight: 700;
    font-size: 2.5rem;
}

.check-list-fun {
    list-style: none;
    padding: 0;
}

.check-list-fun li {
    padding: 12px 0;
    border-bottom: 2px dotted #e0f7fa;
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

.check-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #26a69a;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 0.8rem;
    margin-right: 12px;
}

/* --- BOTTOM BANNER --- */
.fun-banner {
    text-align: center;
    margin-top: 60px;
}

.handwritten-font {
    font-family: 'Patrick Hand', cursive; /* Or similar handwriting font */
    font-size: 2.5rem;
    color: #f57f17;
    text-shadow: 2px 2px 0px #fff;
}

/* Import Google Font for Handwritten style if needed */
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

/* --- END OF PRESCHOOL PROGRAMS STYLES --- */

/* --- CREATIVE PROGRAMS SECTION --- */
.programs-creative {
    padding: 120px 0;
    background: #fdfbf7; /* Warm Off-White */
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Background Blobs */
.shape-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #ffecb3; }
.blob-2 { bottom: 10%; right: -10%; width: 400px; height: 400px; background: #b3e5fc; }
.blob-3 { top: 40%; left: 40%; width: 300px; height: 300px; background: #e1bee7; opacity: 0.4; }

/* Header Typography */
.creative-badge {
    background: white;
    color: #ff6f00;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.15);
    display: inline-block;
    border: 2px solid #ffca28;
}

.creative-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #37474f;
    margin-top: 15px;
    letter-spacing: -1px;
}

.creative-lead {
    font-size: 1.15rem;
    color: #546e7a;
    line-height: 1.6;
}

/* --- 3D PROGRAM CARDS --- */
.program-card-3d {
    background: white;
    border-radius: 30px;
    padding: 40px 30px 30px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    overflow: hidden;
}

.program-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Card Variants */
.card-sun { border-color: #ffca28; }
.card-sun .card-icon-float { background: linear-gradient(135deg, #ffca28, #ff6f00); box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3); }
.card-sun h3 { color: #ff6f00; }

.card-moon { border-color: #4fc3f7; }
.card-moon .card-icon-float { background: linear-gradient(135deg, #4fc3f7, #0288d1); box-shadow: 0 10px 20px rgba(2, 136, 209, 0.3); }
.card-moon h3 { color: #0277bd; }

/* Floating Icon */
.card-icon-float {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    top: 30px;
    right: 30px;
    transform: rotate(10deg);
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.sub-text {
    font-size: 0.95rem;
    color: #90a4ae;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* List Items */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    font-size: 1.1rem;
    color: #455a64;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.icon-list li i {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #78909c;
    font-size: 0.9rem;
}

/* --- SKILLS UNIVERSE (Glass Container) --- */
.skills-universe {
    /* Glassmorphism Effect */
    background: rgba(33, 150, 243, 0.85); 
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(33, 150, 243, 0.25);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

/* 3D Bubble Buttons Grid */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.skill-bubble {
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    color: #1565c0;
    padding: 10px 7.5px;
    text-align: center;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1), 
                -5px -5px 10px rgba(255,255,255,0.2);
    cursor: default;
    transition: transform 0.2s;
    border: 2px solid white;
}

.skill-bubble:hover {
    transform: scale(1.05);
    color: #0d47a1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Footer Banner */
.result-banner {
    background: #ffca28;
    color: #3e2723;
    padding: 12px;
    border-radius: 15px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 0 #ff6f00;
}

/* --- END OF CREATIVE PROGRAMS SECTION --- */

/* --- PRESCHOOL GALLERY SLIDER --- */
.gallery-preschool {
    padding: 100px 0;
    /* Soft Teal Background */
    background-color: #ecfffe;
    background-image: radial-gradient(#d9f9f7 15%, transparent 16%), radial-gradient(#e8f6f5 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Background Decorations */
.gallery-decor {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    color: #00695c;
}
.camera-icon {
    top: 50px;
    right: 50px;
    font-size: 15rem;
    transform: rotate(15deg);
}

/* Slider Wrapper */
.gallery-slider-wrapper {
    position: relative;
    padding: 20px 0;
    overflow: hidden; /* Hide scrollbar */
}

.gallery-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px; /* Space for shadows */
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Polaroid Card Design */
.gallery-card {
    min-width: 300px; /* Fixed width for slider items */
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px) rotate(2deg);
    z-index: 2;
}

.polaroid-frame {
    background: white;
    padding: 15px 15px 50px 15px; /* Extra bottom padding for caption */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: rotate(-2deg); /* Natural messy look */
    position: relative;
    border-radius: 4px;
}

/* Alternate rotations using nth-child */
.gallery-card:nth-child(even) .polaroid-frame {
    transform: rotate(2deg);
}

.polaroid-frame img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 1px solid #eee;
    background: #f0f0f0;
}

/* Caption Handwriting Style */
.caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Patrick Hand', cursive; /* Handwritten font */
}

.caption h5 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #444;
    display: inline-block;
    margin-right: 5px;
}

/* Pin Tacks */
.pin-tack {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    z-index: 5;
}
.pin-red { background: #ff5252; }
.pin-yellow { background: #ffeb3b; }
.pin-blue { background: #448aff; }
.pin-green { background: #69f0ae; }
.pin-purple { background: #e040fb; }

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
    font-size: 1.2rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #ffca28; /* Yellow */
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* --- END OF PRESCHOOL GALLERY SLIDER --- */

/* --- VIDEO GALLERY STYLES --- */
.video-section-preschool {
    padding: 100px 0;
    background-color: #ede7f6;
    background-image: radial-gradient(#d1c4e9 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Background Decor */
.video-decor {
    position: absolute;
    color: rgba(103, 58, 183, 0.1);
    z-index: 0;
}
.film-reel { top: 50px; left: -50px; font-size: 10rem; transform: rotate(-20deg); }
.play-icon { bottom: 50px; right: -30px; font-size: 8rem; color: rgba(255, 111, 0, 0.1); }

/* Slider Layout */
.video-slider-container {
    position: relative;
    padding: 20px 0;
}

.video-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    /* Hide scrollbars */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.video-track::-webkit-scrollbar { display: none; }

/* Video Card (TV) */
.video-card {
    min-width: 400px;
    flex: 0 0 auto;
    text-align: center;
    transition: transform 0.3s;
}

.video-card:hover { transform: translateY(-5px); }

.tv-frame {
    padding: 15px 15px 10px;
    border-radius: 20px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    position: relative;
    border-bottom: 8px solid rgba(0,0,0,0.2);
}

.frame-red { background: #ff7043; }
.frame-blue { background: #42a5f5; }
.frame-yellow { background: #fbc02d; }

/* Video Wrapper & Overlay */
.video-wrapper {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 225px; 
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    z-index: 5;
}

.play-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7043;
    font-size: 1.5rem;
    padding-left: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.2s;
}

.video-wrapper:hover .play-circle {
    transform: scale(1.1);
    background: #fff;
}

/* Class added by JS when playing */
.video-wrapper.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* TV Knobs */
.tv-knobs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.knob {
    width: 15px; height: 15px; background: rgba(0,0,0,0.2); border-radius: 50%; display: inline-block;
}
.speaker-grill {
    font-family: monospace; font-weight: bold; color: rgba(0,0,0,0.2); letter-spacing: 2px;
}

.video-caption { margin-top: 15px; font-weight: 700; color: #455a64; font-size: 1.2rem; }

/* Navigation Buttons */
.video-btn {
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #673ab7;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
}
.video-btn:hover { background: #673ab7; color: white; transform: scale(1.1); }
.v-prev { left: -20px; }
.v-next { right: -20px; }

/* --- END OF VIDEO GALLERY STYLES --- */

/* --- CREATE Grid --- */
.create-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.create-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.create-item:hover { transform: translateY(-5px); }
.ci-1 { border-color: #ff6b6b; } .ci-1 i { color: #ff6b6b; }
.ci-2 { border-color: #feca57; } .ci-2 i { color: #feca57; }
.ci-3 { border-color: #48dbfb; } .ci-3 i { color: #48dbfb; }
.ci-4 { border-color: #ff9ff3; } .ci-4 i { color: #ff9ff3; }
.ci-5 { border-color: #54a0ff; } .ci-5 i { color: #54a0ff; }
.ci-6 { border-color: #1dd1a1; } .ci-6 i { color: #1dd1a1; }

/* --- Programs --- */
.program-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    border: none;
}

.program-card:hover {
    transform: scale(1.02);
}

.program-header {
    padding: 40px;
    color: white;
    position: relative;
}

.bg-preschool { background: linear-gradient(135deg, #ff9f1c, #ffbf69); }
.bg-daycare { background: linear-gradient(135deg, #2ec4b6, #cbf3f0); color: #0f172a !important; }

/* --- Skills Tag Cloud --- */
.skill-tag {
    display: inline-block;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 50px;
    background: white;
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s;
}

.skill-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.2);
}

/* --- CREATIVITY COTTAGE SECTION --- */
.creativity-section {
    padding: 100px 0;
    /* Light Artistic Background */
    background-color: #fff; 
    position: relative;
    overflow: hidden;
    font-family: 'Fredoka', sans-serif;
}

/* Background Decor */
.art-decor {
    position: absolute;
    color: rgba(233, 30, 99, 0.1);
    z-index: 0;
}
.paint-splash-1 { top: 50px; left: -30px; font-size: 8rem; transform: rotate(20deg); }
.paint-splash-2 { bottom: 50px; right: -30px; font-size: 10rem; color: rgba(156, 39, 176, 0.1); }
.pencil-float { top: 15%; right: 15%; font-size: 4rem; color: rgba(255, 193, 7, 0.2); animation: floatPencil 5s ease-in-out infinite; }

@keyframes floatPencil {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Intro Text */
.art-intro-box {
    padding-right: 20px;
}

.art-subheading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Patrick Hand', cursive; /* Handwritten feel */
}

.art-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.art-quote {
    background: #fff;
    padding: 15px;
    border-left: 5px solid #ffca28;
    border-radius: 10px;
    font-style: italic;
    color: #444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Mission Card (Paper Style) */
.mission-art-card {
    background: #e3f2fd; /* Light Blue */
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 5px 5px 0 rgba(33, 150, 243, 0.2);
    border: 2px dashed #90caf9;
    text-align: center;
}

.card-pin {
    width: 20px;
    height: 20px;
    background: #f44336;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.icon-header {
    font-size: 2.5rem;
    color: #1976d2;
    margin-bottom: 15px;
}

.mission-art-card h4 {
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 15px;
}

.mission-art-card p {
    color: #455a64;
    line-height: 1.6;
}

/* Art Board Wrapper (White Box) */
.art-board-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* Course Tags (Tag Cloud) */
.course-tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.course-tag {
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    border: 2px solid #ddd;
    transition: all 0.3s;
    cursor: default;
}

/* Colorful Borders for Tags using nth-child */
.course-tag:nth-child(4n+1) { border-color: #ff8a80; color: #d32f2f; background: #ffebee; }
.course-tag:nth-child(4n+2) { border-color: #82b1ff; color: #1976d2; background: #e3f2fd; }
.course-tag:nth-child(4n+3) { border-color: #ccff90; color: #388e3c; background: #f1f8e9; }
.course-tag:nth-child(4n+4) { border-color: #ffd180; color: #f57c00; background: #fff3e0; }

.course-tag:hover {
    transform: scale(1.1);
}

/* USP Art Boxes */
.usp-art-box {
    background: #f3e5f5;
    color: #7b1fa2;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    border: 2px solid #e1bee7;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.usp-art-box i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ab47bc;
}

.usp-art-box:hover {
    background: #e1bee7;
    transform: translateY(-5px);
}

/* Text Colors */
.text-pink { color: #ec407a; }
.text-purple { color: #ab47bc; }
.text-orange { color: #ffa726; }

/* --- END OF CREATIVITY COTTAGE SECTION --- */

/* --- CREATIVITY COTTAGE CAROUSEL STYLES --- */

/* Wrapper */
.cc-gallery-wrapper {
    position: relative;
    padding: 20px 0;
}

.cc-carousel-container {
    position: relative;
    padding: 0 40px; /* Space for arrows */
}

/* The Scroll Track */
.cc-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-behavior: smooth;
    /* Hide scrollbars */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cc-track::-webkit-scrollbar {
    display: none;
}

/* Art Card (The Item) */
.cc-art-card {
    min-width: 280px;
    flex: 0 0 auto;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.cc-art-card:hover {
    transform: translateY(-10px);
}

/* Artistic Frames */
.cc-frame {
    padding: 10px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.cc-frame img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border: 1px solid #eee;
}

/* Frame Variants */
.frame-wood {
    border: 8px solid #8d6e63; /* Wood Color */
    outline: 2px solid #5d4037;
}

.frame-gold {
    border: 8px solid #ffd54f; /* Gold Color */
    outline: 2px solid #ffb300;
}

.frame-white {
    border: 8px solid #fff; /* Modern White */
    outline: 1px solid #ddd;
}

/* Tag at bottom */
.cc-tag {
    background: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    margin-top: -15px; /* Overlap the frame slightly */
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    font-family: 'Patrick Hand', cursive;
}

/* Navigation Buttons (Paintbrush handle style) */
.cc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ec407a; /* Pink matches section */
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.cc-nav-btn:hover {
    background: #d81b60;
    transform: translateY(-50%) scale(1.1);
}

.cc-prev { left: 0; }
.cc-next { right: 0; }

/* Responsive */
@media (max-width: 768px) {
    .cc-carousel-container {
        padding: 0;
    }
    
    .cc-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .cc-prev { left: -10px; }
    .cc-next { right: -10px; }
}

/* --- END OF CREATIVITY COTTAGE CAROUSEL STYLES --- */

/* --- ATTRACTIVE PRESCHOOL FOOTER --- */
.footer-preschool {
    position: relative;
    background: transparent; /* Wave handles the color */
    font-family: 'Fredoka', sans-serif;
    color: white;
    margin-top: 80px;
}

/* 1. Wave Decoration */
.footer-wave {
    position: absolute;
    top: -100px; /* Pulls the wave up to overlap previous section */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 105px;
    background: #ffffff;
}

/* 2. Main Content Background */
.footer-content {
    /* Bright Blue Gradient */
    background: linear-gradient(180deg, #0099ff 0%, #0066cc 100%);
    padding-top: 50px;
    padding-bottom: 30px;
}

/* 3. Logo Visibility Fix */
.logo-wrapper {
    display: inline-block;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
}

/* Typography */
.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #e3f2fd; /* Very light blue for text */
    font-weight: 500;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffeb3b; /* Bright Yellow for headings */
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.text-yellow {
    color: #ffeb3b !important;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffeb3b;
    transform: translateX(5px);
}

/* Contact Boxes */
.contact-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1); /* Glass effect */
    padding: 10px;
    border-radius: 12px;
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.c-info h6 {
    font-size: 0.9rem;
    font-weight: 700;
}

.c-info a, .c-info p {
    font-size: 1rem;
    text-decoration: none;
}

/* Social Buttons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.social-btn:hover {
    background: white;
    color: #0099ff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #bbdefb;
    font-size: 0.95rem;
}

.dev-link {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 600;
}

.dev-link:hover {
    text-decoration: underline;
}

/* --- END OF PRESCHOOL FOOTER STYLES --- */