* {
    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: 36px;
    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: #f8a21c;
}

.text-red {
    color: #f49d1d;
}

.gradient-text {
    background: linear-gradient(to right, #169fd1, #de1c88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.gradient-text-alt {
    background: linear-gradient(to right, #f89f1b 0%, #b4d332 50%, #de1c88 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: #de1c88;
    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: #b8166f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(239 83 80 / 17%);
    color: white;
}

.btn-secondary-custom {
    background-color: #169fd3;
    color: #ffffff;
    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: #0f86b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #86b7fe38;
    color: #ffffff;
}

/* ========================================
    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: #169fd2;
    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: #dd1d87;
}

.icon-yellow {
    background: #169fd3;
    color: #ffffff;
}

/* ========================================
    DAYCARE SECTION
======================================== */
#daycare {
    background: linear-gradient(135deg, #169fd2, #de1c88);
    color: white;
    position: relative;
    overflow: hidden;
}

.daycare-bg-icon {
    position: absolute;
    opacity: 0.1;
    color: white;
}

.featured-badge {
    background-color: #f8a21c;
    color: #ffffff;
    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: #f7a11d;
    color: #ffffff;
    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: #169fd2;
}

.bg-yellow {
    background:#de1c88;
}

.program-age {
    color: #f79d1d;
    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: #f59e1c;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

.learning-banner {
    background: #f7a11d;
    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: #f49d1d;
    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: #f29b1f;
    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: #169fd314;
}

.contact-info-card.red-bg {
    background: #de1c880a;
}

.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, #169fd2, #de1c88);
    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: #f7a11d;
}

.scroll-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background-color: #169fd2;
    color: #ffffff;
    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, #169fd1, #de1c88);
    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 ==================== */



/* Sweet alert - start  */
/* ============================================
    SWEET ALERT MODAL
============================================ */
.sweet-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sweet-alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sweet-alert-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.sweet-alert-modal {
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    pointer-events: auto;
    opacity: 1;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sweet-alert-modal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.sweet-alert-header {
    height: 180px;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sweet-alert-circle-1,
.sweet-alert-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(40px);
}

.sweet-alert-circle-1 {
    width: 160px;
    height: 160px;
    top: -40px;
    right: -40px;
    animation: pulse1 4s ease-in-out infinite;
}

.sweet-alert-circle-2 {
    width: 192px;
    height: 192px;
    bottom: -40px;
    left: -40px;
    animation: pulse2 5s ease-in-out infinite;
}

@keyframes pulse1 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes pulse2 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

.success-icon-wrapper {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #992475;
    stroke-width: 2.5;
}

.sweet-alert-content {
    padding: 2.5rem 2rem;
}

.sweet-alert-title {
    font-size: 34px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.4s ease-out 0.3s both;
}

.sweet-alert-message {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.4s ease-out 0.4s both;
}

.sweet-alert-info-box {
    background: linear-gradient(135deg, #faf5ff 0%, #fff5f5 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9d5ff;
    animation: fadeInUp 0.4s ease-out 0.5s both;
}

.info-box-text {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-divider {
    border-top: 1px solid #e9d5ff;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.phone-icon-wrapper {
    background: linear-gradient(135deg, #992475 0%, #e25527 100%);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: white;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0.25rem;
}

.contact-phone {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.contact-phone:hover {
    transform: scale(1.05);
}

.btn-close-modal {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out 0.6s both;
}

.btn-close-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
}

.btn-close-modal:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(153, 36, 117, 0.4);
}

.btn-close-modal:hover::before {
    left: 100%;
}

.btn-close-modal:active {
    transform: scale(0.98);
}

.btn-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    animation: fadeIn 0.3s ease-out 0.4s both;
}

.btn-close-x:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.btn-close-x-icon {
    width: 20px;
    height: 20px;
    color: white;
}

@media (max-width: 768px) {
    .sweet-alert-content {
        padding: 2rem 1.5rem;
    }
    .sweet-alert-title {
        font-size: 28px;
    }
    .sweet-alert-message {
        font-size: 15px;
    }
}
/* Sweet Alert - Ends */


.contact-title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sticky-enquiry-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sticky-enquiry-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;

    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background-color: #0f86b3;
    padding: 16px 1px;
    border-radius: 4px;
}


/* ========================================
    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;
    }

    .contact-title{
        font-size: 24px;
    }
    .sticky-enquiry-btn{
        display: none;
    }
}

