/* Ankur Preschool - Creative Modern Design */

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

section {
    padding: 70px 0;
    position: relative;
}

/* Decorative Elements */
.section-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-purple);
}

.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--primary-pink) 2px, transparent 2px);
    background-size: 20px 20px;
}

/* ================= VARIABLES ================= */
:root {
    /* Primary Colors - Balanced Orange/Coral Theme */
    --primary-orange: #ff6b35;
    --primary-coral: #ff8c61;
    --primary-teal: #00bfa5;
    --primary-cyan: #00d4bd;
    --accent-yellow: #ffc107;
    --accent-pink: #ff6b9d;
    
    /* Dark Shades */
    --dark-orange: #e55a2b;
    --dark-teal: #00a88f;
    
    /* Light Shades - More subtle */
    --light-orange: #fff5f0;
    --light-teal: #e8f9f6;
    --soft-coral: #fffaf8;
    --soft-cyan: #f0faf8;
    
    /* Text Colors - Better contrast */
    --text-dark: #2c3e50;
    --text-medium: #4a5568;
    --text-light: #6b7280;
    --white: #fff;
    --light-bg: #fafafa;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    --gradient-secondary: linear-gradient(135deg, #00bfa5 0%, #00d4bd 100%);
    --gradient-accent: linear-gradient(135deg, #ffc107 0%, #ff6b9d 100%);
}

/* ================= BASE ================= */
body {
    font-family: 'Nunito', 'Quicksand', 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fff;
    font-size: 22px;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    padding: 18px 45px;
    font-size: 19px;
    border-radius: 50px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 97, 0.5);
}

.btn-secondary {
    background: #ff6b35;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-light {
    background: #ffffff;
    color: #ff6b35;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    border: none;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: #ff6b35;
    background: #fff;
}

/* ================= HEADER ================= */
.header {
    margin: 0;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    color: var(--white);
    font-size: 10px;
    margin: 0;
    padding: 0;
    position: relative;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.top-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: nowrap;
}

.top-info {
    display: flex;
    gap: 35px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    flex-wrap: nowrap;
    
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.top-info span i {
    font-size: 22px;
    opacity: 0.9;
}

.top-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Navbar */
.navbar {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    overflow: visible;
}



.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 20px;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
   
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 12px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-right: 40px;
}

/* Nav Menu */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-start;
}

/* ================= VISION & MISSION SECTION ================= */
.vision-mission {
    background: var(--soft-cyan);
    padding: 60px 0;
}

.vision-mission h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.vision-mission .vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch; /* ensure both items share equal height */
}

.vision-mission .vm-item {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%; /* fill the full grid cell to match sibling height */
}

.vision-mission .vm-item h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    color: rgba(235, 186, 8);
    margin: 0 0 8px 0;
}

.vision-mission .vm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background: #7dab05; /* vm-icon-bg */
    box-shadow: 0 6px 18px rgba(235, 186, 8);
    font-size: 20px;
}

.vision-mission p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 18px;
}

@media (max-width: 992px) {
    .vision-mission .vm-grid {
        grid-template-columns: 1fr;
    }
    .vision-mission h2 { font-size: 30px; }
}

.nav-menu a {
    color: #4a5568;
    font-weight: 600;
    font-size: 22px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a.active {
    color: #ff6b35;
}

.nav-menu a i {
    font-size: 10px;
    margin-left: 2px;
}

/* Nav CTA Section */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
    flex-shrink: 0;
}

.call-us {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 20px;
    border-right: 2px solid #e5e7eb;
    white-space: nowrap;
}

.call-us i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.call-us div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.call-label {
    font-size: 18px;
    color: #6b7280;
    font-weight: 600;
}

.call-number {
    font-size: 24px;
    color: #ff6b35;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

.btn-inquire {
    background: linear-gradient(135deg, #00bfa5 0%, #00d4bd 100%);
    color: white;
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 165, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-inquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 165, 0.4);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    margin-top: 10px;
    border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 22px;
}

.dropdown-menu a:hover {
    background: var(--light-orange);
    color: var(--primary-orange);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 5px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.mobile-toggle i {
    color: var(--text-dark);
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 700px;
    min-height: 600px;
    overflow: hidden;
    /* neutralize generic section padding and margins */
    margin: 0 !important;
    padding: 0 !important;
    /* pull up underneath the header if it still leaves a gap */
    margin-top: -1px; /* tiny negative value if header border causes white line */
}
/* ensure no accidental spacing from header + section
   and keep the hero content near the top */
header + .hero,
.hero.animate-in {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.hero-slide {
    display: flex;
    align-items: flex-start; /* move text upward */
    justify-content: center;
}
.hero-content {
    padding-top: 60px; /* give some space from very top if desired */
}

/* remove the default top padding on the section that follows the hero */
.hero + section {
    padding-top: 0;
}


.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(0, 191, 165, 0.85));
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.active .hero-content h1 {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-slide.active .hero-content p {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-slide.active .hero-content .btn {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
}

.hero-content h1 {
    font-size: 76px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff !important;
margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Quicksand', sans-serif;
}

.hero-content p {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 35px;
font-family: 'Nunito', sans-serif;
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}

.hero-controls button {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.hero-controls button:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

/* Hero Dots Navigation */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dots .dot.active {
    background: white;
    width: 35px;
    border-radius: 10px;
}

/* Floating shapes */
.hero-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 2s;
}

.hero-shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    animation-delay: 4s;
}

/* ================= WELCOME ================= */
.welcome {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff 0%, #e8f9f6 50%, #f0faf8 100%);
    position: relative;
    overflow: hidden;
}
/*
.welcome::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}
    */
/*
.welcome::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}
*/
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.welcome-text h2 {
    font-size: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
}

.welcome-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.welcome-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 23px;
    font-family: 'Nunito', sans-serif;
}

.welcome-text .btn {
    margin-top: 30px;
}

.welcome-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    border-radius: 30px;
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.welcome-image:hover::before {
    transform: rotate(8deg);
}

.welcome-image img {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

/* ================= FEATURES ================= */
.features {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f9f6 0%, #f0faf8 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.features .section-header h2 {
    font-size: 64px;
    color: #00bfa5;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

.features .section-header p {
    font-size: 28px;
    color: #333333;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 191, 165, 0.15);
    position: relative;
    overflow: hidden;
    border: 3px solid #00bfa5;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 191, 165, 0.25);
    border-color: #00d4bd;
}

.feature-icon {
    width: 110px;
    height: 110px;
    background: #e4ba04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(228, 186, 4, 0.5);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: #e4ba04;
    box-shadow: 0 15px 40px rgba(228, 186, 4, 0.6);
}

.feature-card h3 {
    color: #00bfa5;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 800;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.feature-card:hover h3 {
    color: #ff6b35;
}
    font-family: 'Quicksand', sans-serif;
}

.feature-card:hover h3 {
    color: #00bfa5;
}

.feature-card p {
    color: #333333;
    font-size: 22px;
    line-height: 1.7;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* ================= PROGRAMS ================= */
.programs {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-card {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.program-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.program-card .age {
    display: block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin: 10px auto;
    width: fit-content;
}

.program-card p {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.9;
}

/* ================= WHY CHOOSE ================= */
.why-choose {
    padding: 80px 0;
    background: var(--primary-green);
    color: var(--white);
}

.why-choose .section-header h2,
.why-choose .section-header p {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
}

/* ================= CTA ================= */
.cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #ff8c61 0%, #ff6b35 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.cta .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 64px;
    margin-bottom: 25px;
    font-weight: 900;
    color: #ffffff !important;
font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
    animation: floatText 2.5s ease-in-out infinite !important;
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

.cta-content p {
    font-size: 26px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff !important;
font-weight: 600;
    line-height: 1.7;
    animation: floatText 2.5s ease-in-out 0.3s infinite !important;
}

.cta-content .btn-light {
    padding: 20px 55px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    animation: floatButton 2.5s ease-in-out 0.6s infinite !important;
}

@keyframes floatButton {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }
}

.cta-content .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Special layout for index page with image */
.cta-with-image .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-with-image .cta-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-with-image .cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-with-image .cta-content h2 span {
    display: block;
    color: var(--dark-green);
}

.cta-with-image .cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}

.cta-with-image .btn {
    padding: 10px 25px;
    font-size: 16px;
}

.cta-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cta-image img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: white;
    padding: 20px;
}

/* ================= PROGRAMS OFFERED ================= */
.programs-offered {
    padding: 20px 0 70px 0;
    background: linear-gradient(180deg, #fff 0%, #f0f9ff 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.programs-offered::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s infinite ease-in-out;
}

.programs-offered::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 22s infinite ease-in-out reverse;
}

.programs-offered .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.programs-offered .section-header h2 {
    font-size: 58px;
    color: #7daf00;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
}

.programs-offered .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #7daf00;
    border-radius: 10px;
}

.programs-offered .section-header p {
    font-size: 23px;
    color: #fad450;
    margin-top: 25px;
    font-family: 'Nunito', sans-serif;
}

.programs-offered-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.program-offered-card {
    background: var(--white);
    padding: 45px 25px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.program-offered-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    transition: left 0.5s ease;
}

.program-offered-card:hover::before {
    left: 0;
}

.program-offered-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.2);
}

.program-offered-icon {
    width: 90px;
    height: 90px;
    background: #e4ba04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(228, 186, 4, 0.4);
    position: relative;
    z-index: 1;
}

.program-offered-card:hover .program-offered-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(228, 186, 4, 0.6);
}

.program-offered-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Quicksand', sans-serif;
}

.program-offered-card:hover h3 {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-offered-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Quicksand', sans-serif;
}

.program-offered-card:hover h3 {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-offered-card p {
    color: var(--text-light);
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ================= FOOTER ================= */
.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.footer-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-credit {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 50%, #00bfa5 100%);
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.footer-credit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.footer-credit span {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.footer-credit a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-credit a:hover::after {
    width: 100%;
}

.footer-credit a:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-image {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .footer-image {
        width: 100%;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .navbar .container {
        padding: 20px 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .logo img {
        height: 180px;
        max-width: 450px;
    }
}

/* Tablet landscape (e.g. 1024px) – ensure full-width cards fit viewport */
@media (max-width: 1024px) {
    .programs-offered-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .program-offered-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    section {
        padding: 40px 0 !important;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px !important;
    }
    
    .program-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 35px !important;
    }
    
    .welcome-image::before {
        display: none;
    }
    
    .welcome-text h2 {
        font-size: 38px;
    }
    
    .programs-offered-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px !important;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px !important;
    }
    
    .cta-with-image .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-with-image .cta-content {
        text-align: center;
    }
    
    .cta-image {
        justify-content: center;
    }
    
    .navbar .container {
        padding: 15px 25px;
    }
    
    .logo img {
        height: 140px;
        max-width: 380px;
    }
    
    .nav-cta {
        gap: 15px;
        margin-left: 20px;
    }
    
    .call-us {
        display: none;
    }
    
    .cta {
        padding: 70px 0 !important;
    }
    
    .cta .container {
        padding: 0 30px;
    }
    
    .cta-content h2 {
        font-size: 40px;
        margin-bottom: 22px;
    }
    
    .cta-content p {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .cta-content .btn-light {
        padding: 16px 45px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 35px 0 !important;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .top-bar {
        padding: 0;
    }

    .top-bar .container {
        padding: 12px 15px;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 8px;
    }

    .top-info {
        gap: 15px;
        font-size: 16px;
        order: 1;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-info span {
        gap: 5px;
    }

    .top-info span i {
        font-size: 14px;
    }

    .top-right {
        order: 2;
        gap: 8px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
    
    .navbar {
        position: relative;
    }
    
    .navbar .container {
        padding: 12px 20px;
        flex-wrap: wrap;
    }
    
    .mobile-toggle {
        display: block;
        order: 4;
        padding: 8px 12px;
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .logo img {
        height: 90px;
        max-width: 250px;
    }
    
    .nav-cta {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .call-us {
        display: none;
    }
    
    .btn-inquire {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 12px;
        margin-left: 0;
        z-index: 999;
        order: 4;
        flex-basis: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 6px;
        padding-left: 10px;
        display: none;
        min-width: 100%;
    }

    .nav-menu .dropdown-menu a {
        font-size: 17px !important;
        padding: 10px 0 !important;
        line-height: 1.45;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero {
        height: 400px;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .hero-controls {
        padding: 0 15px;
    }
    
    .hero-controls button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .hero-dots {
        bottom: 25px;
    }
    
    .welcome,
    .features,
    .programs-offered,
    .why-choose-us,
    .outdoor-showcase,
    .daily-schedule,
    .stats-section,
    .faq-section,
    .cta {
        padding: 50px 0 !important;
    }
    
    .cta .container {
        padding: 0 25px;
    }
    
    .welcome-text h2,
    .section-header h2 {
        font-size: 34px;
    }
    
    .features .section-header h2 {
        font-size: 48px;
    }
    
    .features .section-header p {
        font-size: 22px;
    }
    
    .cta-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .cta-content .btn-light {
        padding: 15px 40px;
        font-size: 15px;
    }
    
    .welcome-text p,
    .section-header p {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 25px !important;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 25px !important;
    }
    
    .program-grid,
    .stats-grid,
    .programs-offered-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px !important;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .program-card,
    .program-offered-card,
    .benefit-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
        margin-bottom: 25px;
    }
    
    .program-offered-icon,
    .benefit-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 26px;
    }
    
    .program-offered-card h3,
    .benefit-card h3 {
        font-size: 19px;
    }
    
    .feature-card p {
        font-size: 20px;
    }
    
    .program-offered-card p,
    .benefit-card p {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 30px 0 !important;
    }

    .top-bar .container {
        padding: 10px 12px;
        row-gap: 6px;
    }

    .top-info {
        gap: 10px;
        font-size: 10px;
    }

    .top-info span {
        gap: 4px;
    }

    .top-info span i {
        font-size: 13px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .navbar .container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 90px;
        max-width: 260px;
    }

    .admission-open-btn {
        padding: 6px 10px;
        font-size: 10px;
        margin-left: 4px;
        margin-right: 4px;
    }
    
    .btn-inquire {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero {
        height: 350px;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-controls button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-dots {
        bottom: 20px;
    }
    
    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dots .dot.active {
        width: 28px;
    }
    
    .welcome-text h2,
    .section-header h2 {
        font-size: 28px;
    }
    
    .features .section-header h2 {
        font-size: 42px;
    }
    
    .features .section-header p {
        font-size: 20px;
    }
    
    .cta {
        padding: 45px 0 !important;
    }
    
    .cta .container {
        padding: 0 20px;
    }
    
    .cta-content h2 {
        font-size: 30px;
        margin-bottom: 18px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .cta-content .btn-light {
        padding: 14px 35px;
        font-size: 14px;
    }
    
    .welcome-text p,
    .section-header p {
        font-size: 15px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
        margin-bottom: 22px;
    }
    
    .program-icon,
    .program-offered-icon,
    .benefit-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .program-offered-card,
    .benefit-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .program-offered-card h3,
    .benefit-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 18px;
    }
    
    .program-offered-card p,
    .benefit-card p {
        font-size: 13px;
    }
    
    .program-number {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }
    
    .program-details {
        flex-direction: column;
        gap: 8px;
        padding: 12px 0;
    }
    
    .program-price {
        font-size: 26px;
        margin: 12px 0;
    }
    
    .program-price span {
        font-size: 14px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 38px;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .floating-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .floating-badge i {
        font-size: 18px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question i {
        font-size: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .top-bar .container {
        padding: 8px 10px;
        row-gap: 5px;
    }

    .top-info {
        gap: 8px;
        font-size: 11px;
    }

    .top-info span {
        gap: 3px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .cta {
        padding: 40px 0 !important;
    }
    
    .cta .container {
        padding: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cta-content .btn-light {
        padding: 13px 30px;
        font-size: 13px;
    }
}


/* ================= SECTION BADGES ================= */
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: none !important;
    animation: pulse 2s infinite;
}

/* ================= ENHANCED FEATURE CARDS ================= */
.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s infinite;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.feature-card:hover .card-shine {
    left: 100%;
}

/* ================= WELCOME IMAGE ENHANCEMENTS ================= */
.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
    z-index: -1;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    animation: bounce 2s infinite;
}

.floating-badge i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================= EVENTS SECTION ================= */
.events-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
}

.events-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.25);
}

.event-date {
    background: var(--gradient-secondary);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 800;
}

.event-date .day {
    display: block;
    font-size: 36px;
    line-height: 1;
    font-family: 'Quicksand', sans-serif;
}

.event-date .month {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 22px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: 'Quicksand', sans-serif;
}

.event-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary-teal);
}

.event-btn {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.event-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

/* ================= ENHANCED PROGRAM CARDS ================= */
.program-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #00bfa5 0%, #00d4bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    font-family: 'Quicksand', sans-serif;
}

.program-details {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 2px solid rgba(59, 130, 246, 0.1);
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.program-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
}

.program-details i {
    color: var(--primary-teal);
}

.program-price {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0;
    font-family: 'Quicksand', sans-serif;
}

.program-price span {
    font-size: 16px;
    font-weight: 600;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.program-link:hover {
    gap: 12px;
}

.card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-secondary);
    opacity: 0.1;
    transition: height 0.5s ease;
}

.program-offered-card:hover .card-glow {
    height: 100%;
}

/* ================= STATS SECTION ================= */
.stats-section {
    padding: 70px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.95;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

.stat-label {
    font-size: 21px;
    opacity: 0.95;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #faf5ff 0%, #fce7f3 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.12);
    position: relative;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
}

.quote-icon {
    font-size: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    font-family: 'Nunito', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.author-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: 'Quicksand', sans-serif;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: #fbbf24;
    font-size: 16px;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 70px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question h3 {
    font-size: 23px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
    font-size: 21px;
}

/* FAQ Section Colors */
.faq-section .section-badge {
    background: #7dae02 !important;
    box-shadow: 0 3px 10px rgba(125, 174, 2, 0.25) !important;
}

.faq-section .section-header h2 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #7dae02 !important;
    background-clip: unset !important;
    color: #7dae02 !important;
}

.faq-section .section-header h2::after {
    background: #7dae02 !important;
}

.faq-section .faq-question i {
    color: #7dae02 !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .events-slider,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-slider,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 42px;
    }
}


/* ================= WHY CHOOSE US ================= */
.why-choose-us {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}

.why-choose-us .section-badge,
.why-choose-us .section-header h2 {
    color: #e6be00;
}

.why-choose-us .section-header h2::after {
    background: #e6be00 !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #e4ba04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    /* icon should not cast a shadow */
    box-shadow: none !important;
}

/* ensure hover state also remains shadowless */
.benefit-card:hover .benefit-icon {
    box-shadow: none !important;
}

.benefit-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e6be00;
    font-family: 'Quicksand', sans-serif;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 21px;
    font-family: 'Nunito', sans-serif;
}

/* ================= DAILY SCHEDULE ================= */
.daily-schedule {
    padding: 70px 0 20px 0;
    background: white;
}

.schedule-timeline {
    max-width: 900px;
    margin: 35px auto 0;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b35 0%, #ff8c61 100%);
    transform: translateX(-50%);
}

.schedule-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
    position: relative;
}

.schedule-item:nth-child(even) {
    direction: rtl;
}

.schedule-item:nth-child(even) .schedule-content {
    direction: ltr;
}

.schedule-time {
    text-align: right;
    padding-right: 40px;
    font-size: 23px;
    font-weight: 700;
    color: var(--primary-purple);
    font-family: 'Quicksand', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.schedule-item:nth-child(even) .schedule-time {
    text-align: left;
    padding-right: 0;
    padding-left: 40px;
    justify-content: flex-start;
}

.schedule-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    position: relative;
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.schedule-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.3);
}

.schedule-icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #e4ba04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(228, 186, 4, 0.4);
    z-index: 2;
}

.schedule-item:nth-child(even) .schedule-icon {
    left: auto;
    right: -30px;
}

.schedule-content h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
}

.schedule-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 20px;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-timeline::before {
        left: 30px;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 80px;
    }
    
    .schedule-item:nth-child(even) {
        direction: ltr;
    }
    
    .schedule-time {
        text-align: left;
        padding: 0 0 10px 0;
        justify-content: flex-start;
    }
    
    .schedule-item:nth-child(even) .schedule-time {
        padding: 0 0 10px 0;
    }
    
    .schedule-icon {
        left: -50px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= OUTDOOR LEARNING SHOWCASE ================= */
.outdoor-showcase {
    padding: 70px 0;
    background: white;
    overflow: hidden;
}

.outdoor-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.outdoor-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    transition: transform 0.5s ease;
}

.outdoor-image:hover {
    transform: scale(1.02);
}

.outdoor-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s infinite ease-in-out;
}

.image-badge i {
    font-size: 24px;
    color: #f59e0b;
}

.image-badge span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
}

.outdoor-text h2 {
    font-size: 54px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    font-family: 'Quicksand', sans-serif;
}

.outdoor-text > p {
    font-size: 28px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    font-family: 'Nunito', sans-serif;
}

.outdoor-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.outdoor-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.outdoor-feature:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(5px);
}

.outdoor-feature i {
    width: 50px;
    height: 50px;
    background: #7daf00 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(125, 175, 0, 0.3) !important;
}

.outdoor-feature h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
}

.outdoor-feature p {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    font-family: 'Nunito', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .outdoor-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .outdoor-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .outdoor-text h2 {
        font-size: 32px;
    }
    
    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
    }
    
    .image-badge i {
        font-size: 20px;
    }
    
    .image-badge span {
        font-size: 14px;
    }
}


/* ================= ENHANCED VISUAL ATTRACTIONS ================= */

/* Animated gradient background for sections */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Features background - REMOVED to show visible section */
/* .features {
    background: linear-gradient(-45deg, #faf5ff, #fce7f3, #dbeafe, #f0f9ff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
} */

/* Enhanced card hover effects with 3D transform */
.feature-card,
.program-offered-card,
.benefit-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover,
.program-offered-card:hover,
.benefit-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(139, 92, 246, 0.3);
}

/* Glowing effect on buttons */
.btn-primary,
.btn-inquire {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-inquire::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Floating particles effect */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

/* Enhanced section headers with animated underline */
.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
}

/* Colorful shadow effects */
.program-offered-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.program-offered-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
}

.program-offered-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.program-offered-card:nth-child(4):hover {
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.4);
}

.program-offered-card:nth-child(5):hover {
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
}

/* Pulsing icons */
.feature-icon,
.program-offered-icon,
.benefit-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Rainbow border effect on hover */
.feature-card:hover,
.benefit-card:hover {
    border-image: linear-gradient(45deg, #ff6b35, #ff8c61, #00bfa5, #00d4bd) 1;
    border-width: 3px;
    border-style: solid;
}

/* Glowing text effect - CLEAN VERSION */
.hero-content h1 {
    color: #ffffff !important;
}

.hero-content p {
    color: #ffffff !important;
}

@keyframes textGlow {
    0%, 100% {
}
    50% {
}
}

/* Ripple effect on stat cards */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.stat-card:hover::before {
    width: 300px;
    height: 300px;
}

/* Bouncing arrow for CTA sections */
.cta::after {
    content: '↓';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Colorful scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b35, #ff8c61);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e55a2b, #ff7a4d);
}

/* Sparkle effect on images */
.outdoor-image::before,
.community-image::before,
.learning-image::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    animation: sparkle 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}


/* ================= REDUCE BLANK SPACE - COMPACT LAYOUT ================= */

/* Reduce section padding globally */
section {
    padding: 50px 0 !important;
}

/* Reduce specific section paddings */
.welcome,
.features,
.programs-offered,
.why-choose-us,
.outdoor-showcase,
.daily-schedule,
.stats-section,
.faq-section,
.cta {
    padding: 45px 0 !important;
}

/* Reduce page header padding */
.page-header {
    padding: 70px 0 !important;
}

/* Reduce gaps in grids */
.feature-grid {
    gap: 25px !important;
}

.programs-offered-grid {
    gap: 25px !important;
}

.benefits-grid {
    gap: 25px !important;
}

.stats-grid {
    gap: 30px !important;
}

.faq-container {
    margin-top: 30px !important;
}

.faq-item {
    margin-bottom: 15px !important;
}

/* Reduce welcome content gap */
.welcome-content {
    gap: 50px !important;
}

/* Reduce outdoor content gap */
.outdoor-content {
    gap: 40px !important;
}

/* Reduce section header margins */
.section-header {
    margin-bottom: 35px !important;
}

.features .section-header,
.programs-offered .section-header,
.why-choose-us .section-header,
.daily-schedule .section-header,
.faq-section .section-header {
    margin-bottom: 30px !important;
}

/* Reduce feature grid margin */
.feature-grid {
    margin-top: 30px !important;
}

/* Reduce benefits grid margin */
.benefits-grid {
    margin-top: 35px !important;
}

/* Reduce programs grid margin */
.programs-offered-grid {
    margin-top: 35px !important;
}

/* Reduce schedule timeline margin */
.schedule-timeline {
    margin: 35px auto 0 !important;
}

/* Reduce schedule item margin */
.schedule-item {
    margin-bottom: 35px !important;
}

/* Reduce outdoor features margin */
.outdoor-features {
    margin-bottom: 25px !important;
}

/* Reduce outdoor feature gap */
.outdoor-features {
    gap: 15px !important;
}

/* Reduce card padding */
.feature-card {
    padding: 35px 25px !important;
}

.program-offered-card {
    padding: 35px 20px !important;
}

.benefit-card {
    padding: 30px 25px !important;
}

/* Reduce stat card padding */
.stat-card {
    padding: 30px 20px !important;
}

/* Reduce FAQ padding */
.faq-question {
    padding: 20px 25px !important;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px !important;
}

/* Reduce CTA padding */
.cta-content h2 {
    margin-bottom: 15px !important;
}

.cta-content p {
    margin-bottom: 25px !important;
}

/* Reduce welcome text margins */
.welcome-text h2 {
    margin-bottom: 20px !important;
}

.welcome-text p {
    margin-bottom: 15px !important;
}

.welcome-text .btn {
    margin-top: 20px !important;
}

/* Reduce outdoor text margins */
.outdoor-text h2 {
    margin-bottom: 15px !important;
}

.outdoor-text > p {
    margin-bottom: 25px !important;
}

/* Reduce hero height on smaller screens */
@media (max-width: 768px) {
    .hero {
        min-height: 500px !important;
    }
    
    section {
        padding: 35px 0 !important;
    }
    
    .page-header {
        padding: 50px 0 !important;
    }
}


/* ================= ADDITIONAL VISUAL ENHANCEMENTS ================= */

/* Smooth transitions for all interactive elements */
a, button, .btn, .card, .feature-card, .program-offered-card, .benefit-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved focus states for accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 3px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Enhanced mobile toggle animation */
.mobile-toggle {
    transition: transform 0.3s ease;
}

.mobile-toggle:active {
    transform: scale(0.9);
}

.mobile-toggle.active i {
    animation: rotate 0.3s ease;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(90deg);
    }
}

/* Improved card shadows on hover */
.feature-card:hover,
.program-offered-card:hover,
.benefit-card:hover,
.stat-card:hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

/* Loading animation for images */
img {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Improved button hover effects */
.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced section transitions - removed opacity 0 to prevent invisible sections */
section {
    animation: sectionFadeIn 0.8s ease-in forwards;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

/* Sticky navbar shadow on scroll */
.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* Improved mobile menu overlay */
@media (max-width: 768px) {
    .nav-menu.active {
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile menu backdrop */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
}

/* Mobile menu fix: disable unintended dark overlay layer */
@media (max-width: 768px) {
    .nav-menu.active::before {
        content: none !important;
        display: none !important;
    }
}

/* Enhanced FAQ accordion animation */
.faq-item.active .faq-answer {
    animation: expandAnswer 0.5s ease-out;
}

@keyframes expandAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved stat counter animation */
.stat-number {
    font-variant-numeric: tabular-nums;
}
nhanced hero slider transitions */    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved program card hover effects */
.program-offered-card:hover .program-offered-icon {
    animation: iconBounce 0.6s ease;
}eyframes iconBounce {00% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Enhanced benefit card interactions */
.benefit-card:hover .benefit-icon {
    animation: iconRotate 0.6s ease;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.1);
    }
}

/* Improved schedule timeline animations */
.schedule-content {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.schedule-item:nth-child(even) .schedule-content {
    transform: translateX(30px);
    animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced outdoor showcase animations */
.outdoor-feature {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFeature 0.6s ease-out forwards;
}

.outdoor-feature:nth-child(1) {
    animation-delay: 0.1s;
}

.outdoor-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.outdoor-feature:nth-child(3) {
    animation-delay: 0.3s;
}

.outdoor-feature:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInFeature {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Improved CTA section animations - removed opacity 0 to prevent invisible content */
.cta-content h2,
.cta-content p,
.cta-content .btn {
    animation: fadeInUp 0.8s ease-out forwards;
}

.cta-content h2 {
    animation-delay: 0.2s;
}

.cta-content p {
    animation-delay: 0.4s;
}

.cta-content .btn {
    animation-delay: 0.6s;
}

/* Enhanced welcome section animations */
.welcome-text,
.welcome-image {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.welcome-text {
    animation-delay: 0.2s;
}

.welcome-image {
    animation-delay: 0.4s;
}

/* Improved feature grid stagger animation - removed opacity 0 to prevent invisible cards */
.feature-card {
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Enhanced program cards stagger animation */
.program-offered-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.program-offered-card:nth-child(1) {
    animation-delay: 0.1s;
}

.program-offered-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-offered-card:nth-child(3) {
    animation-delay: 0.3s;
}

.program-offered-card:nth-child(4) {
    animation-delay: 0.4s;
}

.program-offered-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Improved benefit cards stagger animation */
.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Enhanced stat cards animation */
.stat-card {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Improved navbar scroll effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
}

/* Enhanced logo animation on page load */
.logo {
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved nav menu items animation */
.nav-menu li {
    opacity: 0;
    animation: fadeInDown 0.6s ease-out forwards;
}

.nav-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-menu li:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-menu li:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-menu li:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-menu li:nth-child(5) {
    animation-delay: 0.3s;
}

.nav-menu li:nth-child(6) {
    animation-delay: 0.35s;
}

.nav-menu li:nth-child(7) {
    animation-delay: 0.4s;
}

/* Enhanced CTA button animation */
.nav-cta {
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.5s forwards;
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
    .feature-card,
    .program-offered-card,
    .benefit-card,
    .stat-card,
    .outdoor-feature,
    .schedule-content,
    .welcome-text,
    .welcome-image,
    .nav-menu li,
    .logo,
    .nav-cta {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Strong fix: Programs Offered layout between 480px and 768px */
@media (min-width: 480px) and (max-width: 768px) {
    .programs-offered-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .program-offered-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ================= REMOVE ANY UNWANTED GAPS ================= */

/* Ensure no gaps between header and hero */
header {
    margin-bottom: 0 !important;
}

.hero {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Ensure no gaps between sections */
section + section {
    margin-top: 0 !important;
}

/* Remove default margins from body */
body {
    margin: 0;
    padding: 0;
}

/* Ensure footer has no gaps */
.footer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Fix any container gaps */
.container {
    margin-left: auto;
    margin-right: auto;
}

/* Ensure welcome section connects properly */
.welcome {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove gaps from all major sections */
.features,
.programs-offered,
.why-choose-us,
.outdoor-showcase,
.daily-schedule,
.stats-section,
.faq-section,
.cta {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/* ================= COMPREHENSIVE COLOR SCHEME UPDATE ================= */

/* Update all remaining purple/pink references to orange/teal */
.welcome-text h2,
.section-header h2,
.cta-content h2,
.features .section-header h2,
.programs-offered .section-header h2,
.why-choose-us .section-header h2,
.daily-schedule .section-header h2 {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.section-header h2::after {
    background: var(--gradient-primary) !important;
}

.welcome-text h2::after {
    background: var(--gradient-primary) !important;
}

.programs-offered .section-header h2,
.outdoor-text h2 {
    color: #fad450 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.programs-offered .section-header h2::after {
    background: #fad450 !important;
}

.benefit-icon,
.program-offered-icon {
    background: #e4ba04 !important;
    box-shadow: 0 10px 30px rgba(228, 186, 4, 0.4) !important;
}

.benefit-card:hover .benefit-icon,
.program-offered-card:hover .program-offered-icon {
    box-shadow: 0 15px 40px rgba(228, 186, 4, 0.6) !important;
}

/* explicit removal of any shadows that might persist */
.benefit-icon,
.program-offered-icon {
    box-shadow: none !important;
}
.benefit-card:hover .benefit-icon,
.program-offered-card:hover .program-offered-icon {
    box-shadow: none !important;
}
.benefit-card,
.program-offered-card {
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15) !important;
    border: 2px solid rgba(255, 107, 53, 0.1) !important;
}

.benefit-card:hover,
.program-offered-card:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2) !important;
    border-color: rgba(255, 107, 53, 0.3) !important;
}

.benefit-card h3,
.program-offered-card h3 {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.why-choose-us .section-header h2,
.why-choose-us .benefit-card h3 {
    color: #e6be00 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.why-choose-us .section-badge {
    color: #ffffff !important;
    background: #e6be00 !important;
}

.program-offered-card::before {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 97, 0.05)) !important;
}

.program-offered-card:hover .card-glow {
    background: var(--gradient-secondary) !important;
}

.program-number {
    background: linear-gradient(135deg, #00bfa5 0%, #00d4bd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    opacity: 0.5 !important;
    font-size: 64px !important;
}

.program-details i {
    color: var(--primary-teal) !important;
}

.program-price {
    background: var(--gradient-secondary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.program-link {
    color: var(--primary-teal) !important;
}

.schedule-content {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15) !important;
    border: 2px solid rgba(255, 107, 53, 0.1) !important;
}

.schedule-content:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25) !important;
    border-color: rgba(255, 107, 53, 0.3) !important;
}

.schedule-icon {
    background: var(--gradient-primary) !important;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4) !important;
}

.outdoor-feature {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 97, 0.05)) !important;
    border: 2px solid transparent !important;
}

.outdoor-feature:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 97, 0.1)) !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
}

.outdoor-feature i {
    background: #7daf00 !important;
    box-shadow: 0 5px 20px rgba(125, 175, 0, 0.3) !important;
}

.faq-item {
    background: linear-gradient(135deg, rgba(125, 175, 0, 0.05), rgba(125, 175, 0, 0.05)) !important;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(125, 175, 0, 0.15) !important;
}

.faq-question:hover {
    background: rgba(125, 175, 0) !important;
}

.faq-question i {
    color: var(--primary-orange) !important;
}

.programs-offered {
    background: linear-gradient(180deg, #fff 0%, #e0f7f4 50%, #fff0eb 100%) !important;
}

.programs-offered::before {
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 70%) !important;
}

.programs-offered::after {
    background: radial-gradient(circle, rgba(0, 191, 165, 0.1) 0%, transparent 70%) !important;
}

.why-choose-us {
    background: linear-gradient(180deg, #ffffff 0%, #fff0eb 100%) !important;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1) !important;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.floating-badge {
    background: var(--gradient-primary) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4) !important;
}

.image-badge i {
    color: #ffc107 !important;
}

.testimonial-card {
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.12) !important;
}

.testimonial-card:hover {
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2) !important;
}

.quote-icon {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.event-card::before {
    background: var(--gradient-secondary) !important;
}

.event-date {
    background: var(--gradient-secondary) !important;
}

.event-content h3 {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.event-meta i {
    color: var(--primary-teal) !important;
}

.event-btn {
    background: var(--gradient-secondary) !important;
    box-shadow: 0 5px 20px rgba(0, 191, 165, 0.3) !important;
}

/* Update focus states */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 3px solid rgba(255, 107, 53, 0.5) !important;
}

/* Update program card hover shadows */
.program-offered-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4) !important;
}

.program-offered-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(255, 140, 97, 0.4) !important;
}

.program-offered-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(0, 191, 165, 0.4) !important;
}

.program-offered-card:nth-child(4):hover {
    box-shadow: 0 20px 60px rgba(0, 212, 189, 0.4) !important;
}

.program-offered-card:nth-child(5):hover {
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4) !important;
}

/* Update hero text glow - CLEAN VERSION */
.hero-content h1 {
    color: #ffffff !important;
}

.hero-content p {
    color: #ffffff !important;
}

@keyframes textGlow {
    0%, 100% {
}
    50% {
}
}

.stat-card::before {
    background: rgba(255, 107, 53, 0.1) !important;
}

/* Animated gradient background update - REMOVED to show visible features section */
/* .features {
    background: linear-gradient(-45deg, #fff0eb, #e0f7f4, #ffe5dc, #d4f5f0) !important;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
} */


/* ================= BALANCE ORANGE - REDUCE INTENSITY ================= */

/* Make backgrounds more subtle */
.welcome {
    background: linear-gradient(180deg, #fff 0%, #e8f9f6 50%, #f0faf8 100%) !important;
}

/* Features background - REMOVED to show visible section */
/* .features {
    background: linear-gradient(135deg, #fafafa 0%, #f0faf8 50%, #fff5f0 100%) !important;
} */

.programs-offered {
    background: linear-gradient(180deg, #fff 0%, #f0faf8 50%, #fff5f0 100%) !important;
}

.why-choose-us {
    background: linear-gradient(180deg, #ffffff 0%, #fff5f0 100%) !important;
}

.outdoor-showcase,
.daily-schedule {
    background: white !important;
}

.faq-section {
    background: #fafafa !important;
}

/* Reduce orange in FAQ items */
.faq-item {
    background: white !important;
    border: 2px solid #f0f0f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(125, 175, 0, 0.2) !important;
    border-color: rgba(125, 175, 0, 0.2) !important;
}

.faq-question {
    background: white !important;
}

.faq-question:hover {
    background: #fff5f0 !important;
}

.faq-item.active .faq-question {
    background: #fff5f0 !important;
}

.faq-answer {
    background: white !important;
}

/* Improve text visibility in stats */
.stat-card {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.stat-icon {
    opacity: 0.95 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
}

.stat-number {
}

.stat-label {
    font-weight: 600 !important;
}

/* Improve CTA text visibility - CLEAN VERSION */
.cta-content h2 {
    color: #ffffff !important;
}

.cta-content p {
    color: #ffffff !important;
font-weight: 600 !important;
}

.cta::before,
.cta::after {
    background: rgba(255, 255, 255, 0.15) !important;
}

.stats-section::before {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Make cards more white with subtle orange accents */
.feature-card,
.benefit-card,
.program-offered-card {
    background: white !important;
    border: 2px solid #f0f0f0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.feature-card:hover,
.benefit-card:hover,
.program-offered-card:hover {
    border-color: rgba(255, 107, 53, 0.3) !important;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15) !important;
}

/* Reduce orange in outdoor features */
.outdoor-feature {
    background: white !important;
    border: 2px solid #f0f0f0 !important;
}

.outdoor-feature:hover {
    background: #fff5f0 !important;
    border-color: rgba(255, 107, 53, 0.2) !important;
}

/* Reduce orange in schedule */
.schedule-content {
    background: white !important;
    border: 2px solid #f0f0f0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.schedule-content:hover {
    border-color: rgba(255, 107, 53, 0.3) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.12) !important;
}

/* Better text colors */
.faq-answer p {
    color: var(--text-medium) !important;
}

.feature-card p,
.benefit-card p,
.program-offered-card p {
    color: var(--text-medium) !important;
}

.outdoor-feature p,
.schedule-content p {
    color: var(--text-medium) !important;
}

/* Reduce animated gradient intensity - REMOVED to show visible features section */
/* .features {
    background: linear-gradient(-45deg, #fafafa, #f0faf8, #fff5f0, #f0faf8) !important;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
} */

/* Make section badges less intense */
.section-badge {
    background: var(--gradient-primary) !important;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.25) !important;
}

/* Improve heading visibility */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark) !important;
}

.welcome-text h2,
.section-header h2 {
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Better paragraph text */
p {
    color: var(--text-medium);
}

.welcome-text p,
.section-header p,
.outdoor-text > p {
    color: var(--text-medium) !important;
}

/* Reduce orange in program cards */
.program-offered-card::before {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(255, 140, 97, 0.02)) !important;
}

/* Better contrast for icons */
.feature-icon,
.benefit-icon,
.program-offered-icon {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
}

/* final override: ensure benefit icons remain shadowless everywhere */
.benefit-icon,
.program-offered-icon {
    box-shadow: none !important;
}

/* Subtle hover effects */
.feature-card:hover .feature-icon,
.benefit-card:hover .benefit-icon,
.program-offered-card:hover .program-offered-icon {
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4) !important;
}

/* override to keep benefit icons shadowless even on hover */
.benefit-card:hover .benefit-icon,
.program-offered-card:hover .program-offered-icon {
    box-shadow: none !important;
}

/* ================= INCREASE FONT SIZES FOR READABILITY ================= */

/* Base text size */
body {
    font-size: 17px !important;
    line-height: 1.7 !important;
}

/* Navigation */
.nav-menu a {
    font-size: 17px !important;
}

.call-number {
    font-size: 17px !important;
}

.btn-inquire {
    font-size: 16px !important;
}

.dropdown-menu a {
    font-size: 19px !important;
    padding: 14px 22px !important;
}

/* Headings */
h1 {
    font-size: 52px !important;
}

h2 {
    font-size: 44px !important;
}

h3 {
    font-size: 24px !important;
}

h4 {
    font-size: 20px !important;
}

/* Paragraphs */
p {
    font-size: 17px !important;
    line-height: 1.8 !important;
}

/* Section headers */
.section-header h2 {
    font-size: 48px !important;
}

.section-header p {
    font-size: 19px !important;
}

/* Welcome section */
.welcome-text h2 {
    font-size: 50px !important;
}

.welcome-text p {
    font-size: 18px !important;
}

/* Feature cards */
.feature-card h3 {
    font-size: 22px !important;
}

.feature-card p {
    font-size: 16px !important;
}

/* Program cards */
.program-offered-card h3 {
    font-size: 22px !important;
}

.program-offered-card p {
    font-size: 17px !important;
}

.program-details span {
    font-size: 15px !important;
}

.program-price {
    font-size: 34px !important;
}

.program-price span {
    font-size: 17px !important;
}

.program-link {
    font-size: 16px !important;
}

/* Benefit cards */
.benefit-card h3 {
    font-size: 22px !important;
}

.benefit-card p {
    font-size: 16px !important;
}

/* Stats */
.stat-number {
    font-size: 58px !important;
}

.stat-label {
    font-size: 17px !important;
}

/* Schedule */
.schedule-time {
    font-size: 19px !important;
}

.schedule-content h3 {
    font-size: 21px !important;
}

.schedule-content p {
    font-size: 16px !important;
}

/* Outdoor features */
.outdoor-text h2 {
    font-size: 44px !important;
}

.outdoor-text > p {
    font-size: 32px !important;
}

.outdoor-feature h4 {
    font-size: 22px !important;
}

.outdoor-feature p {
    font-size: 18px !important;
}

/* FAQ */
.faq-question h3 {
    font-size: 19px !important;
}

.faq-question i {
    font-size: 22px !important;
}

.faq-answer p {
    font-size: 17px !important;
}

/* CTA */
.cta-content h2 {
    font-size: 50px !important;
}

.cta-content p {
    font-size: 25px !important;
}

/* Buttons */
.btn {
    font-size: 16px !important;
}

.btn-primary {
    font-size: 17px !important;
}

.btn-secondary {
    font-size: 17px !important;
}

/* Section badges */
.section-badge {
    font-size: 15px !important;
}

/* Hero content */
.hero-content h1 {
    font-size: 60px !important;
}

.hero-content p {
    font-size: 24px !important;
}

/* Top bar */
.top-info {
    font-size: 22px !important;
    flex-wrap: nowrap !important;
}

.top-info span {
    font-size: 22px !important;
    white-space: nowrap !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 16px !important;
    }
    
    .nav-menu a {
        font-size: 16px !important;
    }
    
    h2 {
        font-size: 36px !important;
    }
    
    h3 {
        font-size: 21px !important;
    }
    
    p {
        font-size: 16px !important;
    }
    
    .section-header h2 {
        font-size: 36px !important;
    }
    
    .section-header p {
        font-size: 17px !important;
    }
    
    .hero-content h1 {
        font-size: 36px !important;
    }
    
    .hero-content p {
        font-size: 20px !important;
    }
    
    .cta-content h2 {
        font-size: 36px !important;
    }
    
    .cta-content p {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px !important;
    }
    
    h2 {
        font-size: 30px !important;
    }
    
    h3 {
        font-size: 19px !important;
    }
    
    p {
        font-size: 15px !important;
    }
    
    .hero-content h1 {
        font-size: 30px !important;
    }
    
    .hero-content p {
        font-size: 18px !important;
    }
}


/* ================= ENHANCED TOP BAR STYLING ================= */

/* Add decorative wave pattern to top bar */
.top-bar {
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%) !important;
}



/* Enhanced top bar container */
.top-bar .container {
    padding: 10px 32px !important;
    flex-wrap: nowrap !important;
}

/* Better top info styling */
.top-info span {
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    white-space: nowrap !important;
}

.top-info span:hover {
    transform: translateY(-1px);
}

.top-info span i {
    font-size: 14px !important;
    margin-right: 6px;
}

/* Enhanced social icons */
.social-icons a {
    width: 34px !important;
    height: 34px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    font-size: 15px !important;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white !important;
    color: #ff6b35 !important;
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced navbar */
.navbar {
    margin-top: 0 !important;
    
}

.navbar .container {
    padding: 2px 20px !important;
}

/* Better logo sizing */
.logo {
    margin-left: -12px !important;
}

.logo img {
    height: 62px !important;
    max-width: 150px !important;
    margin-right: 17px !important;
    display: block !important;
}

/* Enhanced call button with pulse */
.call-us i {
    width: 42px !important;
    height: 42px !important;
    font-size: 17px !important;
}

/* Better call number styling */
.call-number {
    font-size: 16px !important;
    color: #ff6b35 !important;
}

/* Enhanced inquire button */
.btn-inquire {
    padding: 12px 26px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Better nav menu spacing */
.nav-menu {
    gap: 24px !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
}

.nav-menu a {
    font-size: 17px !important;
    font-weight: 600 !important;
    text-transform: capitalize;
    padding: 4px 0 !important;
}

/* Add hover underline effect */
.nav-menu a::after {
    height: 3px !important;
}

/* Responsive top bar */
@media (max-width: 992px) {
    .top-bar .container {
        padding: 10px 30px !important;
    }
    
    .top-info {
        gap: 20px !important;
    }
    
    .top-info span {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: block !important;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px !important;
        text-align: center;
    }
    
    .top-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px !important;
    }
    
    .top-info span {
        font-size: 18px !important;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .navbar .container {
        padding: 12px 20px !important;
    }
    
    .logo img {
        height: 75px !important;
        max-width: 200px !important;
    }
    
    .call-us {
        display: none !important;
    }
    
    .btn-inquire {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
}

/* Marquee animation for top-bar text on mobile */
@keyframes topInfoMarquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column !important;
        align-items: stretch !important;
        overflow: hidden;
    }

    .top-bar {
        overflow: hidden;
    }

    .top-info {
        display: inline-flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        animation: topInfoMarquee 20s linear infinite;
    }
    
    .top-info span {
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .top-right {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    
    .social-icons a {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }
}

/* Remove icon shadows globally */
i[class^="fa"],
i[class*=" fa"],
.feature-icon,
.benefit-icon,
.program-icon,
.program-offered-icon,
.stat-icon,
.quote-icon,
.schedule-icon,
.floating-badge i,
.image-badge i,
.event-meta i,
.program-details i,
.outdoor-feature i,
.faq-question i,
.social-icons a {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

/* Remove shadows from all button styles */
button,
.btn,
[class*="btn-"],
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    box-shadow: none !important;
}

button:hover,
button:focus,
button:active,
.btn:hover,
.btn:focus,
.btn:active,
[class*="btn-"]:hover,
[class*="btn-"]:focus,
[class*="btn-"]:active,
a.btn:hover,
a.btn:focus,
a.btn:active,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="reset"]:active {
    box-shadow: none !important;
}

.section-badge,
.section-badge:hover,
.section-badge:focus,
.section-badge:active {
    box-shadow: none !important;
}

/* Final override: remove all section-badge glow/shadow */
.section-badge,
.section-badge:hover,
.section-badge:focus,
.section-badge:active,
.gallery-intro .section-badge {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
    animation: sectionBadgePulseNoShadow 2s infinite !important;
}

.section-badge::before,
.section-badge::after,
.gallery-intro .section-badge::before,
.gallery-intro .section-badge::after {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
}

@keyframes sectionBadgePulseNoShadow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Outdoor showcase layout refresh */
.outdoor-showcase {
    background: #f8f8fa !important;
    padding: 40px 0 !important;
}

.outdoor-showcase .container {
    max-width: 1280px;
}

.outdoor-content {
    display: grid !important;
    grid-template-columns: 1.06fr 1fr !important;
    gap: 32px !important;
    align-items: start !important;
}

.outdoor-image {
    background: #f0f0f3;
    border-radius: 0;
    padding: 18px;
    position: relative;
}

.outdoor-image h2 {
    font-size: 54px !important;
    line-height: 1.1 !important;
    margin: 0 0 18px 8px !important;
    color: #7daf00 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.outdoor-image img {
    width: 100%;
    display: block;
    border-radius: 26px;
}

.outdoor-text {
    padding-top: 6px;
}

.outdoor-text .section-badge {
    display: none !important;
}

.outdoor-text h2 {
    display: none !important;
}

.outdoor-text p{
    font-size: 28px !important;
    line-height: 1.75 !important;
    color: #4b5b73 !important;
    
}

.outdoor-text > p {
    font-size: 50px !important;
    line-height: 1.55 !important;
    color: #2f3d54 !important;
    margin-bottom: 24px !important;
}

.outdoor-features {
    display: grid !important;
    gap: 16px !important;
    margin-bottom: 22px !important;
}

.outdoor-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff !important;
    border: 1px solid #e7e8ec !important;
    border-radius: 16px !important;
    padding: 18px 16px !important;
    box-shadow: none !important;
}

.outdoor-feature:hover {
    transform: none !important;
    border-color: #d9dbe2 !important;
    box-shadow: none !important;
}

.outdoor-feature i {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #7daf00 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
}

.outdoor-feature h4 {
    margin: 0 0 4px 0 !important;
    color: #20314a !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
}

.outdoor-feature p {
    margin: 0 !important;
    color: #4b5b73 !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
}

.outdoor-text .btn.btn-primary {
    border-radius: 999px !important;
    padding: 14px 34px !important;
    font-size: 20px !important;
    background: #7daf00 !important;
    color: #fff !important;
}

@media (max-width: 992px) {
    .outdoor-content {
        grid-template-columns: 1fr !important;
    }

    .outdoor-image h2 {
        font-size: 38px !important;
        margin-left: 2px !important;
    }

    .outdoor-text > p {
        font-size: 28px !important;
    }

    .outdoor-feature h4 {
        font-size: 20px !important;
    }

    .outdoor-feature p {
        font-size: 18px !important;
    }

    .outdoor-text .btn.btn-primary {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .outdoor-image {
        padding: 12px;
    }

    .outdoor-image h2 {
        font-size: 31px !important;
    }

    .outdoor-feature {
        padding: 14px !important;
        gap: 12px;
    }

    .outdoor-feature i {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px !important;
    }

    .outdoor-feature h4 {
        font-size: 20px !important;
    }

    .outdoor-feature p {
        font-size: 17px !important;
    }
}

/* Homepage navbar admission CTA */
.admission-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    margin-left: 16px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.admission-open-btn:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff5b1f 0%, #ff7b4a 100%);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .admission-open-btn {
        padding: 9px 16px;
        font-size: 13px;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .admission-open-btn {
        order: 2;
        padding: 7px 12px;
        font-size: 11px;
        margin-left: 8px;
        margin-right: 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* Homepage top-bar logo */
.top-bar-logo {
    display: inline-flex;
    align-items: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.top-bar-logo img {
    height: 38px;
    width: auto;
    display: block;
}

@media (max-width: 992px) {
    .top-bar-logo img {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar-logo {
        margin-right: 0;
        margin-bottom: 4px;
    }

    .top-bar-logo img {
        height: 28px;
    }
}

/* Final desktop dropdown sizing override */
@media (min-width: 769px) {
    .nav-menu .dropdown-menu a {
        font-size: 21px !important;
        padding: 16px 24px !important;
    }
}

/* ================= VALUES WE LIVE ================= */
.values-live-section {
    background: #ffffff;
}

.values-live-section .section-header h2 {
    color: var(--dark-orange);
}

.values-live-section .section-header p {
    color: var(--text-medium);
}

.values-accordion {
    max-width: 1100px;
    margin: 32px auto 0;
    display: grid;
    gap: 14px;
}

.value-item {
    border: 2px solid rgba(255, 193, 7, 0.48);
    border-radius: 18px;
    background: #fffdf2;
    box-shadow: 0 8px 22px rgba(44, 62, 80, 0.07);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.value-item:nth-child(even) {
    border-color: rgba(145, 208, 76, 0.52);
    background: #f5fbe9;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(44, 62, 80, 0.1);
}

.value-item[open] {
    border-color: rgba(255, 107, 53, 0.82);
    box-shadow: 0 14px 28px rgba(229, 90, 43, 0.16);
}

.value-item summary {
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
}

.value-item summary::-webkit-details-marker {
    display: none;
}

.value-index {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: #7d5100;
    background: #ffe7ad;
    border: 1px solid rgba(255, 193, 7, 0.6);
}

.value-item:nth-child(even) .value-index {
    color: #3f6518;
    background: #dff2c1;
    border-color: rgba(145, 208, 76, 0.62);
}

.value-item[open] .value-index {
    color: #ffffff;
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.value-item h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.25;
    color: #2f3f2f;
}

.value-item summary i {
    color: var(--primary-orange);
    font-size: 18px;
    transition: transform 0.25s ease;
}

.value-item[open] summary i {
    transform: rotate(180deg);
}

.value-content {
    padding: 0 22px 20px 76px;
    color: var(--text-medium);
}

.value-content p {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.7;
}

.value-content p:last-child {
    margin-bottom: 0;
}

.value-content ul {
    margin: 0 0 12px 22px;
}

.value-content li {
    margin-bottom: 6px;
    font-size: 21px;
    color: #3f4d3f;
}

@media (max-width: 992px) {
    .value-item summary {
        padding: 16px 16px;
        gap: 10px;
    }

    .value-index {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .value-item h3 {
        font-size: 22px;
    }

    .value-content {
        padding: 0 16px 16px 16px;
    }

    .value-content p,
    .value-content li {
        font-size: 18px;
    }
}
