/* ===================================================
   RESET / GLOBAL
=================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    overflow-x:hidden;
    font-family:Arial, sans-serif;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}



/* ===================================================
   LAYOUT
=================================================== */
.page-wrapper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

.main-content{
    flex:1;
    padding-top:95px;
}

.section{
    padding:60px 20px;
    text-align:center;
}

.section-title{
    font-size:32px;
    margin-bottom:20px;
}

.section-desc{
    max-width:750px;
    margin:auto auto 35px;
    line-height:1.7;
}

/* HEADER */
/* DEFAULT TRANSPARENT HEADER */
/* HEADER FULL WIDTH */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: linear-gradient(135deg, #38bdf8, #facc15); */
    /* background: #38bdf8; */
    /* background: linear-gradient(135deg, #38bdf8, #facc15); */
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
}
/* On scroll */
/* WHEN SCROLLED */
.header.scrolled {
/*     background: #ffffff; /* change color here 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);

}

/* Change text color after scroll */
.header.scrolled .nav a {
    color: #333;
}

/* INNER CONTAINER (THIS FIXES ALIGNMENT) */
.nav-container {
    width: 100%;              /* FULL WIDTH */
    padding: 10px 50px;       /* spacing from edges */
    display: flex;
    align-items: center;
}

/* LOGO */
/* LOGO LEFT */
.logo {
    margin-right: auto;   /* pushes everything else right */
}

/* LOGO IMAGE */
.logo img {
    height: 70px;
    margin-left: 0;  /* ensure no extra spacing */
}

/* NAV LINKS */
.nav {
    display: flex;
    gap: 25px;
    margin-right: 70px; /* 👈 adjust this value */
}
.nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Hover underline animation */
.nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f59e0b;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #f59e0b;
}

.nav-btn{
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000 !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.header a {
    margin:5px;
    text-decoration:none;
    color:black;
}


/* DROPDOWN CONTAINER */
.dropdown {
    position: relative;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    min-width: 180px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s ease;
}

/* LINKS */
.dropdown-menu a {
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER EFFECT */  
.dropdown-menu a:hover {
    background: #facc15;
    padding-left: 20px; /* slide effect */
    color: black;
    box-shadow: inset 3px 0 0 #f59e0b;
}
/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-toggle {
    transition: 0.3s;
}

/* rotate arrow when open */
.dropdown-menu.show + .dropdown-toggle,
.dropdown:hover .dropdown-toggle {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}


/* CONTENT */
.hero {
    background:#38bdf8;
    color:white;
    padding:80px;
    text-align:center;
}

.section {
    padding:50px;
    text-align:center;
}

/* FOOTER ALWAYS AT BOTTOM */
.footer {
    background:#111;
    color:white;
    text-align:center;
    padding:15px;
}

.form-box {
    max-width: 500px;
    margin: auto;
    background: #f9fafb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-box h3 {
    text-align: left;
    margin-top: 20px;
}

.form-box button {
    width: 100%;
    margin-top: 10px;
}
/* WhatsApp Button*/
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
}
/* Floating Button */
.enquiry-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #facc15;
    padding: 12px 18px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* Popup Background */
.popup {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

/* Popup Box */
.popup-content {
    background: white;
    padding: 20px;
    width: 350px;
    border-radius: 10px;
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top:10px;
    right:15px;
    font-size: 20px;
    cursor: pointer;
}

/* Form Fields */
.popup-content input,
.popup-content textarea {
    width: 100%;
    padding:10px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:5px;
}

/* Hide toggle on desktop */
.menu-toggle {
    display: none;
    font-size: 25px;
    cursor: pointer;
}


/* Admission Button */
.admission-btn {
    background: #ef4444;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;

    animation: pulse 1.5s infinite;
}


/* Center container */
.admission-center {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* BUTTONS IN ONE LINE */
.btn-group {
    display: flex;
    gap: 15px; /* space between buttons */
    align-items: center;
}

/* OPTIONAL: SAME HEIGHT LOOK */
.admission-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    background: #ef4444;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.enroll-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;

    animation: zoomPulse 1.5s infinite ease-in-out;
}

/* Hover Effect for BOTH buttons */
.enroll-btn:hover,
.admission-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Click Effect */
.enroll-btn:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Blinking effect */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}



/* ZOOM IN & OUT */
@keyframes zoomPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }  /* zoom in */
    100% { transform: scale(1); }    /* zoom out */
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        background: #facc15;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    .nav a {
        padding: 10px;
        display: block;
    }

    .nav.active {
        display: flex;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        padding: 10px;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 10px;
    }
    .slider-content {
    left: 5%;
    right: 5%;
    text-align: center;
    }

    .slider-content h1 {
        font-size: 26px;
    }
}

/* FULL SCREEN SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 100vh; /* FULL SCREEN */
    overflow: hidden;
}

/* Images */
.slides img {
    width: 100%;
    height: 100vh; /* FULL SCREEN */
    object-fit: cover; /* IMPORTANT */
    display: none;
}

/* Active slide */
.slide.active {
    display: block;
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: white;
    padding: 12px;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 30px; }
.next { right: 30px; }

/* SLIDER CONTENT (LEFT SIDE) */
.slider-content {
    position: absolute;
    top: 80%;
    left: 60%; /* 👈 left side positioning */
    transform: translateY(-50%);
    color: white;
    z-index: 20;
    max-width: 600px;
    
    padding: 20px;
   
    backdrop-filter: blur(5px);
}

/* HEADING */
.slider-content h1 {
    font-size: 32px;
}

.slider-content p {
    font-size: 16px;
    margin: 10px 0;
}

.slider-content a {
    display: inline-block;
    margin-top: 10px;
}

.slider::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
   /* background: rgba(0, 0, 0, 0.473);  improves text visibility */
}


/* LOADER BACKGROUND */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* LOGO ANIMATION */
#loader img {
    width: 120px;
    animation: zoom 1.5s infinite ease-in-out;
}

/* Animation */
@keyframes zoom {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}


/* GALLERY SECTION */
.gallery-section {
    padding: 50px;
    text-align: center;
}

/* GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* IMAGES */
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER EFFECT */
.gallery img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);

    justify-content: center;
    align-items: center;
}

/* LIGHTBOX IMAGE */
#lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* SECTION */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 40px;
}

/* PROGRAM GRID */
/* PROGRAM GRID */
.programs {
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
    padding: 60px 20px;
}

/* CARD WRAPPER */
.flip-card {
    width: 260px;
    height: 220px;
    perspective: 1000px;

    position: relative;
}

/* INNER (MAIN FIX) */
.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;

    transform-style: preserve-3d;
    transition: transform 0.6s ease;

    /* 🔥 IMPORTANT FIX */
    transform-origin: center;
}

/* FLIP */
.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 20px;
    color: white;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* FRONT COLORS */
.flip-card:nth-child(1) .flip-front {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}
.flip-card:nth-child(2) .flip-front {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}
.flip-card:nth-child(3) .flip-front {
    background: linear-gradient(135deg, #34d399, #10b981);
}

/* BACK COLORS */
.flip-card:nth-child(1) .flip-back {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
}
.flip-card:nth-child(2) .flip-back {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}
.flip-card:nth-child(3) .flip-back {
    background: linear-gradient(135deg, #10b981, #047857);
}

/* BACK ROTATION */
.flip-back {
    transform: rotateY(180deg);
}

/* ICON */
.icon {
    font-size: 45px;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* ICON ANIMATION */
.flip-card:hover .icon {
    transform: scale(1.1);
}

/* TEXT */
.flip-front h3,
.flip-back h3 {
    margin: 10px 0;
}

.desc {
    font-size: 14px;
    text-align: center;
}

/* BUTTON */
.card-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background: white;
    color: #333;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* 🔥 VERY IMPORTANT FIX (NO OVERLAP EVER) */
.flip-card {
    isolation: isolate;   /* creates separate layer */
}

/* MOBILE */
@media (max-width: 768px) {
    .programs {
        flex-direction: column;
        align-items: center;
    }

    /* Disable flip on mobile */
    .flip-card:hover .flip-inner {
        transform: none;
    }
}

/* SECTION */
.about-section {
    padding: 60px 20px;
    /* background: #f8fafc;  light gray/blue */
    background: linear-gradient(135deg, #e0f2fe, #fef9c3);
}

/* CONTAINER */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

/* IMAGE */
.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CONTENT */
.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-content ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }
}

/* HERO */
.about-hero {
    height: 250px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.about-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
}

.about-content {
    max-width: 500px;
}

/* MISSION */
.mission-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 50px 20px;
}

.mission-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* WHY SECTION */
.why-section {
    padding: 60px 20px;
    text-align: center;
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.why-card {
    background: #e0f2fe;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    padding: 50px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-section {
        flex-direction: column;
        align-items: center;
    }
}

/* ================= HERO ================= */
.admission-hero {
    height: 250px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* FIX: center horizontally */
    text-align: center;
    padding: 20px;
}

/* ================= WRAPPER ================= */
.admission-wrapper {
    display: flex;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

/* ================= LEFT INFO ================= */
.admission-info {
    flex: 1;
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
}

.info-item {
    margin: 12px 0;
    font-weight: 500;
    font-size: 15px;
}

/* ================= FORM BOX ================= */
.admission-form-box {
    flex: 1.2;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ================= FORM ================= */
.admission-form-box input,
.admission-form-box select,
.admission-form-box textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* ROW */
.row {
    display: flex;
    gap: 15px;
}

/* FOCUS EFFECT */
.admission-form-box input:focus,
.admission-form-box select:focus,
.admission-form-box textarea:focus {
    border-color: #38bdf8;
    outline: none;
    box-shadow: 0 0 8px rgba(56,189,248,0.4);
}

/* ================= BUTTON ================= */
.submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* HOVER */
.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ================= INFO CARDS SECTION ================= */
.admission-info-section {
    padding: 60px 20px;
    background: #f8fafc;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
}

/* GRID */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.info-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;

    /* Top color border */
    border-top: 5px solid;
}

/* DIFFERENT COLORS */
.info-card:nth-child(1) { border-color: #38bdf8; }
.info-card:nth-child(2) { border-color: #a78bfa; }
.info-card:nth-child(3) { border-color: #34d399; }

/* HOVER */
.info-card:hover {
    transform: translateY(-8px);
}

/* HEADINGS */
.info-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

/* LIST */
.info-card ul {
    padding-left: 0;
    list-style: none;
}

.info-card ul li {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
}

/* CHECK ICON */
.info-card ul li::before {
    content: "✔ ";
    color: #22c55e;
    font-weight: bold;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .admission-wrapper {
        flex-direction: column;
    }

    .row {
        flex-direction: column;
    }

    .admission-hero {
        height: auto;
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* HERO */
.contact-hero {
    height: 220px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* INFO SECTION */
.contact-info-section {
    padding: 50px 20px;
    background: #f8fafc;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.contact-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* FORM */
.contact-wrapper {
    padding: 60px 20px;
}

.contact-form-box {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

/* FOCUS */
.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #34d399;
    outline: none;
    box-shadow: 0 0 8px rgba(52,211,153,0.4);
}

/* BUTTON */
.contact-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #34d399, #059669);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.contact-btn:hover {
    transform: scale(1.05);
}

/* MAP */
.map-section {
    margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        padding: 40px 20px;
    }
}

/* HERO */
.program-hero {
    height: 250px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* SECTION */
.program-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.program-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    align-items: center;
}

.program-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.program-content {
    max-width: 500px;
}

/* HIGHLIGHTS */
.program-highlights {
    padding: 60px 20px;
    text-align: center;
}

.highlight-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.highlight-card {
    background: #e0f2fe;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: bold;
}

/* DAILY */
.daily-section {
    padding: 50px;
    text-align: center;
}

.daily-section ul {
    list-style: none;
}

.daily-section ul li {
    margin: 10px 0;
}

/* CTA */
.program-cta {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    padding: 50px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .program-container {
        flex-direction: column;
        text-align: center;
    }
}

/* NURSERY HERO (different color) */
.nursery-hero {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

/* Highlight variation */
.nursery-hero h1 {
    letter-spacing: 1px;
}

/* Optional: Different highlight colors */
.nursery-hero + .program-section {
    background: #f5f3ff;
}

/* HERO */
.gallery-hero {
    height: 240px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* SECTION */
.gallery-section {
    padding: 60px 20px;
    background: #f8fafc;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* ITEM */
.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 45px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .gallery-hero {
        height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .gallery-item img {
        height: 220px;
    }
}

/* Sticky WhatsApp Button */


/* Floating Button */
.wa-sticky-btn{
    position:fixed;
    left:auto;
    right:20px;
    bottom:20px;
    width:35px;
    height:35px;
    object-fit:contain;
    overflow:hidden;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    cursor:pointer;
    z-index:99999;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* Popup */
.wa-popup{
    position:fixed;
    right:20px;
    bottom:90px;
    width:320px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
    z-index:99999;
    display:none;
    animation:popupIn 0.4s ease;
}

/* Header */
.wa-header{
    background:#25D366;
    color:#fff;
    padding:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.online-status{
    font-size:12px;
}

.wa-close{
    cursor:pointer;
    font-size:18px;
}

/* Body */
.wa-body{
    padding:18px;
}

.chat-msg{
    background:#f1f1f1;
    padding:12px;
    border-radius:12px;
    margin-bottom:12px;
}

/* Typing dots */
.typing{
    display:flex;
    gap:5px;
    margin-bottom:15px;
}

.typing span{
    width:8px;
    height:8px;
    background:#999;
    border-radius:50%;
    animation:typing 1s infinite;
}

.typing span:nth-child(2){animation-delay:.2s;}
.typing span:nth-child(3){animation-delay:.4s;}

@keyframes typing{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-5px);}
}

/* Button */
.wa-btn{
    display:block;
    text-align:center;
    background:#25D366;
    color:#fff;
    padding:12px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}



/* Chat Area */
.chat-area{
    max-height:260px;
    overflow-y:auto;
    margin-bottom:15px;
}

/* Messages */
.bot-msg,
.user-msg{
    padding:10px 12px;
    border-radius:12px;
    margin-bottom:10px;
    font-size:14px;
    line-height:1.5;
}

.bot-msg{
    background:#f1f1f1;
}

.user-msg{
    background:#dcf8c6;
    text-align:right;
}

/* Buttons */
.quick-btns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-bottom:15px;
}

.quick-btns button{
    border:none;
    padding:10px;
    border-radius:10px;
    cursor:pointer;
    background:#f8fafc;
    font-size:13px;
}


#userForm input{
    width:100%;
    padding:12px;
    margin-bottom:10px;
    border:1px solid #ddd;
    border-radius:10px;
}