
        * {
            font-family: 'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: #faf8f5;
        }

        :root {
            --green: #4CAF50;
            --orange: #FF9800;
            --dark: #2d2d2d;
            --lightgray: #f0efec;
        }

        .bg-green {
            background-color: var(--green) !important;
        }

        .text-green {
            color: var(--green) !important;
        }

        .bg-orange {
            background-color: var(--orange) !important;
        }

        .text-orange {
            color: var(--orange) !important;
        }

        .btn-orange {
            background-color: var(--orange);
            color: #fff;
            border: none;
        }

        .btn-orange:hover {
            background-color: #e68900;
            color: #fff;
        }

        .btn-outline-orange {
            border: 2px solid var(--orange);
            color: var(--orange);
        }

        .btn-outline-orange:hover {
            background: var(--orange);
            color: #fff;
        }

        .top-header a {
            color: #fff;
            text-decoration: none;
            font-size: 0.85rem;
            margin-right: 1.2rem;
        }

        .top-header a:hover {
            color: #ffd9a3;
        }

        .social-icons a {
            color: #fff;
            margin-left: 0.7rem;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: #ffd9a3;
            transform: scale(1.1);
        }

        .navbar {
            background: #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand img {
            height: 65px;
        }

        .nav-link {
            font-weight: 500;
            color: #333 !important;
            transition: 0.3s;
            margin: 0 6px;
        }

        .nav-link:hover {
            color: var(--green) !important;
        }

        .btn-call-nav {
            background: var(--green);
            color: #fff;
            border-radius: 30px;
            padding: 6px 20px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-call-nav:hover {
            background: #3d8b40;
            color: #fff;
            transform: scale(1.02);
        }

        .hero-slide {
            min-height: 78vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-slide .overlay {
            background: rgba(0, 0, 0, 0.5);
            padding: 2.5rem;
            border-radius: 18px;
        }

        .hero-slide h1 {
            font-weight: 700;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-slide p {
            color: #f5f0e8;
            font-size: 1.2rem;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--green);
            border-radius: 50%;
            padding: 18px;
        }

        .carousel-indicators [data-bs-target] {
            background-color: var(--orange);
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        section{
            overflow: hidden;
        }
        .section-title {
            font-weight: 700;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--orange);
            margin: 8px auto 0;
            border-radius: 4px;
        }

        .card-service {
            border: none;
            border-radius: 20px;
            transition: 0.3s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
            background: #fff;
        }

        .card-service:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 40px rgba(76, 175, 80, 0.12);
            border-bottom: 4px solid var(--orange);
        }

        .card-service i {
            font-size: 2.8rem;
            color: var(--green);
        }

        .icon-box {
            background: #fff;
            border-radius: 18px;
            padding: 1.2rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            transition: 0.3s;
            border-left: 5px solid var(--orange);
        }

        .icon-box:hover {
            transform: scale(1.02);
            background: #fafff7;
        }

        .icon-box i {
            font-size: 2rem;
            color: var(--green);
            min-width: 48px;
        }

        .gallery-img {
            transition: 0.3s;
            border-radius: 14px;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-img img {
            transition: 0.5s;
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .gallery-img:hover img {
            transform: scale(1.08);
        }

        .process-step {
            background: #fff;
            border-radius: 50px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            transition: 0.3s;
            border: 2px solid #f0f0eb;
        }

        .process-step:hover {
            border-color: var(--green);
            transform: translateY(-6px);
        }

        .process-step .step-icon {
            background: var(--green);
            color: #fff;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 12px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
        }

        .testimonial-card img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--green);
        }

        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=800&auto=format&fit=crop') center/cover fixed;
            padding: 5rem 0;
            color: #fff;
        }

        .cta-section .btn {
            border-radius: 40px;
            padding: 10px 32px;
            font-weight: 600;
        }

        footer {
            background: #1e1e1e;
            color: #ccc;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        footer a:hover {
            color: var(--orange);
        }

        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .floating-buttons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            font-size: 28px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
            text-decoration: none;
        }

        .floating-buttons a:hover {
            transform: scale(1.12);
            background: #e6e934;
        }

        .floating-buttons .whatsapp {
            background: #25D366;
        }

        .floating-buttons .whatsapp:hover {
            background: #1da851;
        }

        @media (max-width: 768px) {
            .top-header .d-flex {
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
            }

            .hero-slide {
                /* min-height: 60vh; */
            }

            .hero-slide h1 {
                font-size: 2rem;
            }
        }

        .lightbox-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .lightbox-overlay img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 18px;
        }