
        /* ----- global child-friendly palette ----- */
        :root {
            --brand-blue: #4A90D9;
            --brand-green: #6CC070;
            --brand-orange: #F5A623;
            --brand-white: #ffffff;
            --soft-bg: #f2f9ff;
            --shadow-soft: 0 12px 30px rgba(0, 20, 30, 0.08);
        }

        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background-color: var(--soft-bg);
            color: #2d4059;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4,
        .fw-semibold {
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .rounded-card {
            border-radius: 28px;
            background: white;
            box-shadow: var(--shadow-soft);
            transition: all 0.25s ease;
            border: none;
        }

        .rounded-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(74, 144, 217, 0.12);
        }

        .btn-soft-primary {
            background: var(--brand-blue);
            color: white;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 500;
            transition: 0.2s;
        }

        .btn-soft-primary:hover {
            background: #3a7bc8;
            color: white;
            transform: scale(1.02);
        }

        .btn-outline-soft {
            border: 2px solid var(--brand-blue);
            color: var(--brand-blue);
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 500;
        }

        .btn-outline-soft:hover {
            background: var(--brand-blue);
            color: white;
        }

        /* ----- sticky navbar ----- */
        .navbar {
            background: rgba(255, 255, 255, 0.92) !important;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            transition: 0.3s;
        }

        .navbar .nav-link {
            font-weight: 500;
            color: #1a2b3e;
            margin: 0 6px;
            border-radius: 30px;
            padding: 8px 16px;
        }

        .navbar .nav-link:hover {
            background: rgba(74, 144, 217, 0.08);
            color: var(--brand-blue);
        }

        /* Dropdown */
.navbar .dropdown-menu{
    border-radius:12px;
    padding:10px 0;
    min-width:280px;
    border:none;
}

.navbar .dropdown-item{
    padding:10px 20px;
    font-size:15px;
    transition:.3s;
}

.navbar .dropdown-item:hover{
    background:#0d6efd;
    color:#fff;
    padding-left:28px;
}

@media(min-width:992px){
    .navbar .dropdown:hover>.dropdown-menu{
        display:block;
        margin-top:0;
    }
}

/* Hero */
        .hero-choose {
            background: linear-gradient(135deg, #e3f0fa 0%, #c8e2f5 100%), url('https://placecats.com/1600/500?random=110');
            background-size: cover;
            background-blend-mode: overlay;
            padding: 70px 0 50px;
            border-radius: 0 0 40px 40px;
        }

        .hero-choose .breadcrumb {
            background: transparent;
            padding: 0;
        }

        .hero-choose .breadcrumb-item a {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .hero-choose .breadcrumb-item.active {
            color: #1f2a3e;
        }

        /* strength card */
        .strength-card {
            background: white;
            border-radius: 24px;
            padding: 24px 20px;
            box-shadow: var(--shadow-card);
            height: 100%;
            transition: 0.2s;
            border-left: 6px solid var(--brand-blue);
        }

        .strength-card:hover {
            transform: translateY(-4px);
        }

        .strength-card i {
            font-size: 2.2rem;
            color: var(--brand-blue);
            margin-bottom: 12px;
        }

        /* process timeline */
        .process-step {
            background: white;
            border-radius: 30px;
            padding: 16px 12px;
            box-shadow: var(--shadow-card);
            text-align: center;
            height: 100%;
            border-bottom: 6px solid var(--brand-blue);
        }

        .process-step .step-icon {
            font-size: 2rem;
            color: #ecf2f9;
        }

        .counter-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--brand-blue);
        }
        /* Hero */
    .hero-service {
      background: linear-gradient(135deg, #e3f0fa 0%, #c8e2f5 100%), url('https://placecats.com/1600/500?random=90');
      background-size: cover;
      background-blend-mode: overlay;
      padding: 70px 0 50px;
      border-radius: 0 0 40px 40px;
    }

    .hero-service .breadcrumb {
      background: transparent;
      padding: 0;
    }

    .hero-service .breadcrumb-item a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 500;
    }

    .hero-service .breadcrumb-item.active {
      color: #1f2a3e;
    }

    /* benefits icon cards */
    .benefit-icon-card {
      background: white;
      border-radius: 24px;
      padding: 20px;
      text-align: center;
      box-shadow: var(--shadow-card);
      transition: 0.2s;
      height: 100%;
    }

    .benefit-icon-card:hover {
      transform: translateY(-4px);
    }

    .benefit-icon-card i {
      font-size: 2.4rem;
      color: var(--brand-blue);
      margin-bottom: 12px;
    }


         /* Hero */
        .hero-contact {
            background: linear-gradient(135deg, #e3f0fa 0%, #c8e2f5 100%), url('https://placecats.com/1600/500?random=100');
            background-size: cover;
            background-blend-mode: overlay;
            padding: 70px 0 50px;
            border-radius: 0 0 40px 40px;
        }

        .hero-contact .breadcrumb {
            background: transparent;
            padding: 0;
        }

        .hero-contact .breadcrumb-item a {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .hero-contact .breadcrumb-item.active {
            color: #1f2a3e;
        }

        /* info card */
        .info-card {
            background: white;
            border-radius: 24px;
            padding: 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
            height: 100%;
            transition: 0.2s;
        }

        .info-card:hover {
            transform: translateY(-4px);
        }

        .info-card i {
            font-size: 2.4rem;
            color: var(--brand-blue);
            margin-bottom: 12px;
        }

        .emergency-banner {
            background: linear-gradient(135deg, var(--brand-orange), #e0992a);
            color: white;
            border-radius: 40px;
        }

        /* hero swiper */
        .swiper-slide {
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .swiper-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(74, 144, 217, 0.2) 0%, rgba(108, 192, 112, 0.15) 100%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* breadcrumb banner */
        .breadcrumb-banner {
            background: linear-gradient(135deg, #e3f0fa 0%, #c8e2f5 100%), url('assets/images/banner1.png');
            background-size: cover;
            background-blend-mode: overlay;
            padding: 70px 0 50px;
            border-radius: 0 0 40px 40px;
        }

        .breadcrumb-banner .breadcrumb {
            background: transparent;
            padding: 0;
        }

        .breadcrumb-banner .breadcrumb-item a {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-banner .breadcrumb-item.active {
            color: #1f2a3e;
        }

        /* icon box */
        .icon-box {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 18px;
            background: white;
            border-radius: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            transition: 0.2s;
        }

        .icon-box:hover {
            background: #f0f7fe;
        }

        .icon-box i {
            font-size: 1.6rem;
            color: var(--brand-blue);
            width: 40px;
            text-align: center;
        }
        /* Hero */
        .hero-service {
            background: linear-gradient(135deg, #e3f0fa 0%, #c8e2f5 100%), url('https://placecats.com/1600/500?random=130');
            background-size: cover;
            background-blend-mode: overlay;
            padding: 70px 0 50px;
            border-radius: 0 0 40px 40px;
        }

        .hero-service .breadcrumb {
            background: transparent;
            padding: 0;
        }

        .hero-service .breadcrumb-item a {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .hero-service .breadcrumb-item.active {
            color: #1f2a3e;
        }

        /* benefit card */
        .benefit-icon-card {
            background: white;
            border-radius: 24px;
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: 0.2s;
            height: 100%;
        }

        .benefit-icon-card:hover {
            transform: translateY(-4px);
        }

        .benefit-icon-card i {
            font-size: 2.2rem;
            color: var(--brand-blue);
            margin-bottom: 12px;
        }

        .checklist-card {
            background: white;
            border-radius: 20px;
            padding: 14px 20px;
            box-shadow: var(--shadow-card);
            margin-bottom: 12px;
        }

        .checklist-card i {
            color: var(--brand-green);
            margin-right: 12px;
        }

        .condition-card {
            background: white;
            border-radius: 20px;
            padding: 18px;
            box-shadow: var(--shadow-card);
            height: 100%;
            border-left: 6px solid var(--brand-blue);
        }

        .condition-card i {
            font-size: 1.8rem;
            color: var(--brand-blue);
            margin-bottom: 8px;
        }

        /* process timeline */
        .process-step {
            background: white;
            border-radius: 30px;
            padding: 16px 12px;
            box-shadow: var(--shadow-card);
            text-align: center;
            height: 100%;
            border-bottom: 6px solid var(--brand-blue);
        }

        .process-step .step-icon {
            font-size: 2rem;
            color: #fff;
        }

        .technique-card {
            background: white;
            border-radius: 24px;
            padding: 20px;
            box-shadow: var(--shadow-card);
            height: 100%;
            border-top: 6px solid var(--brand-blue);
        }

        .technique-card i {
            font-size: 2rem;
            color: var(--brand-blue);
            margin-bottom: 10px;
        }

        /* team card */
        .team-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 60px;
            margin-top: -40px;
            border: 4px solid white;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
        }

        .counter-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--brand-blue);
        }

        .testimonial-card {
            background: white;
            border-radius: 32px;
            padding: 28px;
            box-shadow: var(--shadow-card);
            max-width: 600px;
            margin: 0 auto;
        }

        .star-rating {
            color: #f5b342;
            letter-spacing: 2px;
        }

        .footer-social a {
            display: inline-flex;
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 40px;
            align-items: center;
            justify-content: center;
            color: white;
            transition: 0.2s;
        }

        .footer-social a:hover {
            background: var(--brand-blue);
            color: white;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
            color: white;
            border-radius: 40px;
        }

        @media (max-width: 768px) {
            .breadcrumb-banner {
                padding: 40px 0 30px;
            }

            .team-card img {
                width: 80px;
                height: 80px;
                margin-top: -30px;
            }
        }

        /* process timeline */
        .step-icon {
            width: 60px;
            height: 60px;
            background: var(--brand-blue);
            color: white;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin: 0 auto 12px;
        }

        /* values card */
        .value-card {
            border-left: 6px solid var(--brand-blue);
        }

        /* floating buttons */
        .floating-btn-group {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .floating-btn-group a {
            width: 58px;
            height: 58px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            transition: 0.2s;
            text-decoration: none;
            color: white;
        }

        .floating-btn-group .btn-phone {
            background: #25d366;
        }

        .floating-btn-group .btn-whatsapp {
            background: #128C7E;
        }

        .floating-btn-group a:hover {
            transform: scale(1.08);
        }

        .back-to-top {
            position: fixed;
            bottom: 170px;
            right: 34px;
            z-index: 998;
            background: var(--brand-blue);
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 6px 20px rgba(74, 144, 217, 0.3);
            transition: 0.2s;
            text-decoration: none;
            opacity: 0.8;
        }

        .back-to-top:hover {
            opacity: 1;
            color: white;
            transform: translateY(-3px);
        }

        /* gallery zoom */
        .gallery-img {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 24px;
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .gallery-img:hover {
            transform: scale(1.03);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        }
        .gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    color: #ffc107;
}

@keyframes zoomIn {
    from{
        transform: scale(.7);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}

/* Responsive */

@media(max-width:768px){

    .gallery-item img{
        height:220px;
    }

    .close-btn{
        font-size:35px;
        right:20px;
    }

    #lightbox img{
        max-width:95%;
    }
}

        /* testimonials */
        .testimonial-card {
            background: white;
            border-radius: 32px;
            padding: 28px;
            box-shadow: var(--shadow-soft);
        }

        .star-rating {
            color: #f5b342;
            letter-spacing: 2px;
        }

        /* footer */
        .footer-links a {
            color: #d4e2f0;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 4px;
        }

        .social-icon-circle {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 40px;
            align-items: center;
            justify-content: center;
            color: white;
            transition: 0.2s;
        }

        .social-icon-circle:hover {
            background: var(--brand-blue);
            color: white;
        }

        /* loader */
        #loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* section spacing */
        section {
            padding: 70px 0;
            overflow: hidden;
        }

        .bg-soft-blue {
            background: #eaf3fc;
        }

        .bg-soft-green {
            background: #eaf8ed;
        }

        /* process timeline */
        .step-circle {
            width: 60px;
            height: 60px;
            background: var(--brand-blue);
            color: white;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
        }

        /* counter */
        .counter-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--brand-blue);
        }

        /* map */
        .map-container iframe {
            width: 100%;
            height: 280px;
            border-radius: 28px;
            border: 0;
        }

        @media (max-width: 768px) {
            .swiper-slide {
                min-height: 60vh;
            }

            .hero-content {
                padding: 2rem 1rem;
            }
        }