* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #51A1CA;
    --primary-red: #EAA643;
    --primary-dark: #2C2C2C;
    --light-yellow: #FFF9E6;
    --light-red: #FFE6E6;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.gallery-image-area{
    border-radius: 25px;
    overflow: hidden;
}

/* ========================================
    TYPOGRAPHY
======================================== */
.main-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.secondary-main-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.text-yellow {
    color: var(--primary-yellow);
}

.text-red {
    color: var(--primary-red);
}

.gradient-text {
    background: linear-gradient(to right, #EF5350, #FFD54F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text-alt {
    background: linear-gradient(to right, #EF5350 0%, #FFD54F 50%, #EF5350 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Mobile Typography */
@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
    }
    
    .secondary-main-heading {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 28px;
    }
    
    .secondary-main-heading {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
}

/* ========================================
    SECTION SPACING
======================================== */
.section {
    padding: 45px 0px;
}

@media (min-width: 992px) {
    .section {
        padding: 54px 0px;
    }
}

/* ========================================
    BUTTONS
======================================== */
.btn-primary-custom {
    background-color: var(--primary-red);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.3);
}

.btn-primary-custom:hover {
    background-color: #E53935;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 83, 80, 0.4);
    color: white;
}

.btn-secondary-custom {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
}

.btn-secondary-custom:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
    color: var(--text-dark);
}

/* ========================================
    NAVIGATION
======================================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-dark);
}
.navbar-brand img{
    width: 110px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD54F, #EF5350);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red);
}

/* ========================================
    HERO SECTION
======================================== */
#hero {
    background: linear-gradient(135deg, var(--light-yellow) 0%, #ffffff 50%, var(--light-red) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-icon {
    position: absolute;
    opacity: 0.03;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.admission-badge {
    background: var(--primary-red);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.3);
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px;
    color: white;
}

/* ========================================
    ABOUT SECTION
======================================== */
#about {
    background-color: white;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.icon-red {
    background: var(--primary-red);
}

.icon-yellow {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

/* ========================================
    DAYCARE SECTION
======================================== */
#daycare {
    background: linear-gradient(135deg, #EF5350, #F44336);
    color: white;
    position: relative;
    overflow: hidden;
}

.daycare-bg-icon {
    position: absolute;
    opacity: 0.1;
    color: white;
}

.featured-badge {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.daycare-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.daycare-image-wrapper {
    position: relative;
}

.daycare-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.daycare-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.trust-badge .number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

/* ========================================
    PROGRAMS SECTION
======================================== */
#programs {
    background: linear-gradient(135deg, var(--light-yellow) 0%, #ffffff 100%);
}

.program-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 40px;
    color: white;
}

.bg-red {
    background: linear-gradient(135deg, #EF5350, #E53935);
}

.bg-yellow {
    background: linear-gradient(135deg, #FFD54F, #FFC107);
}

.program-age {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* ========================================
    CURRICULUM SECTION
======================================== */
#curriculum {
    background-color: white;
    position: relative;
}

.curriculum-card {
    background: linear-gradient(135deg, var(--light-yellow) 0%, white 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.curriculum-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.curriculum-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

.learning-banner {
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 213, 79, 0.3);
}

/* ========================================
    ADMISSION SECTION
======================================== */
#admission {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFE082 50%, var(--light-yellow) 100%);
    position: relative;
}

.enrollment-badge {
    background: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(239, 83, 80, 0.3);
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 20px;
}

/* ========================================
    CONTACT SECTION
======================================== */
#contact {
    background-color: white;
}

.contact-info-card {
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
}

.contact-info-card.yellow-bg {
    background: var(--light-yellow);
}

.contact-info-card.red-bg {
    background: var(--light-red);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-form {
    background: linear-gradient(135deg, var(--light-yellow) 0%, white 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.form-label{
    margin-bottom: 2px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}
.form-control {
    font-size: 14px;
    padding: 7px 13px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 213, 79, 0.25);
}

/* ========================================
    CTA SECTION
======================================== */
#cta {
    background: linear-gradient(135deg, #EF5350, #F44336);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    opacity: 0.1;
}

/* ========================================
    FOOTER
======================================== */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-heading {
    color: var(--primary-yellow);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #E53935;
    transform: translateY(-3px);
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* ========================================
    FLOATING BUTTONS
======================================== */
.floating-buttons {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--primary-red);
}

.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #FFC107;
    transform: translateY(-5px);
    color: var(--text-dark);
}

/* ==================== Mobile Sticky Footer Action Bar - start ==================== */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 12px 14px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    animation: slideUp 0.5s ease-out;
}

@media (min-width: 992px) {
    .mobile-action-bar {
        display: none;
    }
}

.action-bar-container {
    display: flex;
    gap: 14px;
    max-width: 100%;
}

.action-btn {
    flex: 1;
    height: 56px;
    border: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
    position: relative;
    overflow: hidden;
}

.action-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 ease, height 0.6s ease;
}

.action-btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-call {
    background: #F3F5F7;
}

.btn-call:hover {
    background: #e8ebed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-call:active {
    transform: translateY(0);
    opacity: 0.8;
}

.btn-whatsapp {
    background: #F3F5F7;
}

.btn-whatsapp:hover {
    background: #e8ebed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:active {
    transform: translateY(0);
    opacity: 0.8;
}

.btn-quote {
    flex: 1.4;
    background: linear-gradient(to right, #992475, #c63230 );
    position: relative;
}

.btn-quote::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #a01020, #e62030);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.btn-quote:hover::after {
    opacity: 1;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 16, 39, 0.4);
}

.btn-quote:active {
    transform: translateY(0);
    opacity: 0.9;
}

.btn-icon {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}
.btn-call .btn-icon,
.btn-whatsapp .btn-icon {
    color: #374151;
}
.btn-quote .btn-icon {
    color: #ffffff;
}
.btn-text {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.btn-call .btn-text,
.btn-whatsapp .btn-text {
    color: #1f2937;
}
.btn-quote .btn-text {
    color: #ffffff;
}

/* ==================== Mobile Sticky Footer Action Bar - end ==================== */


/* ========================================
    MOBILE RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .hero-image img {
        height: 400px;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .daycare-image img {
        height: 400px;
    }
    
    .trust-badge {
        position: static;
        margin-top: 20px;
    }
    
    .floating-buttons {
        left: 15px;
        bottom: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .scroll-top-btn {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }

    .navbar .nav-item{
        width: 100%;
        border-bottom: 1px solid #ccc;
    }
}

