
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fff;
            color: #1e1e1e;
            overflow-x: hidden;
        }

        /* Black / Gold / White Theme */
        :root {
            --gold: #d4af37;
            --gold-dark: #b8902c;
            --black: #111111;
            --black-light: #1c1c1c;
            --white: #ffffff;
            --gray-light: #f8f9fa;
        }

        /* Top bar */
        .top-bar {
            background: var(--black);
            color: #ccc;
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .top-bar a {
            color: #ddd;
            text-decoration: none;
            transition: 0.3s;
            margin-right: 1rem;
        }

        .top-bar a:hover {
            color: var(--gold);
        }

        .social-icons i {
            margin: 0 6px;
            font-size: 0.9rem;
            transition: 0.3s;
            cursor: pointer;
        }

        .social-icons i:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* Sticky Nav */
        .navbar {
            background: var(--white);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            padding: 12px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--black);
            letter-spacing: -0.3px;
        }

        .navbar-brand span {
            color: var(--gold);
            font-size: 1.4rem;
        }

        .nav-link {
            font-weight: 500;
            color: #222;
            margin: 0 5px;
            transition: 0.2s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border: none;
            color: #000;
            font-weight: 600;
            padding: 8px 24px;
            border-radius: 40px;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            background: var(--gold-dark);
            color: #000;
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-outline-gold {
            border: 2px solid var(--gold);
            background: transparent;
            color: var(--gold);
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-gold:hover {
            background: var(--gold);
            color: #000;
        }

        /* Hero Slider */
        .carousel-item {
            height: 85vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
        }

        .carousel-caption {
            bottom: 25%;
            z-index: 2;
            text-align: center;
        }

        .floating-icon {
            position: absolute;
            opacity: 0.2;
            font-size: 5rem;
            bottom: 10%;
            animation: float 6s infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* sections */
        section {
            padding: 80px 0;
            overflow: hidden;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            width: 70px;
            height: 4px;
            background: var(--gold);
            position: absolute;
            bottom: -12px;
            left: 0;
            border-radius: 5px;
        }

        .text-gold {
            color: var(--gold);
        }

        .bg-black-light {
            background: #0f0f0f;
            color: #fff;
        }

        .card-service,
        .choose-card,
        .timing-card,
        .testimonial-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 20px;
            overflow: hidden;
        }

        .card-service:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--gold);
        }

        .icon-box {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .counter-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--gold);
            line-height: 1;
        }

        /* gallery */
        .gallery-img {
            border-radius: 16px;
            transition: 0.4s;
            cursor: pointer;
            overflow: hidden;
        }

        .gallery-img img {
            transition: 0.5s;
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 16px;
        }

        .gallery-img:hover img {
            transform: scale(1.07);
        }

        .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%;
    }
}
        /* Process timeline */
        .process-step {
            position: relative;
            background: #fff;
            border-radius: 60px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        /* contact form */
        .form-control,
        .form-select {
            border-radius: 12px;
            border: 1px solid #ddd;
            padding: 12px 16px;
        }

        .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }

        /* footer */
        .footer {
            background: #0a0a0a;
            color: #ccc;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer a:hover {
            color: var(--gold);
            text-decoration: underline;
        }

        /* floating buttons */
        .float-call {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 999;
            background: #25d366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }

        .float-wa {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            background: #25d366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }

        .float-call {
            background: #111;
            left: 20px;
        }

        .float-wa {
            background: #25d366;
        }

        .pulse {
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 70vh;
            }

            section {
                padding: 50px 0;
            }

            .section-title {
                font-size: 1.9rem;
            }
        }

        /* sticky */
        .sticky-top {
            top: 0;
            z-index: 1020;
        }

        /* map */
        .map-container iframe {
            width: 100%;
            height: 380px;
            border: 0;
            display: block;
        }