
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #111111;
            color: #fff;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .serif-heading,
        .navbar-brand,
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* GOLD & BLACK THEME */
        .gold-text {
            color: #D4AF37 !important;
        }

        .bg-gold {
            background-color: #D4AF37 !important;
        }

        .border-gold {
            border-color: #D4AF37 !important;
        }

        .btn-gold {
            background-color: #D4AF37;
            color: #111;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Inter', sans-serif;
        }

        .btn-gold:hover {
            background-color: #b4942f;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-outline-gold {
            border: 2px solid #D4AF37;
            background: transparent;
            color: #D4AF37;
            border-radius: 40px;
            padding: 8px 24px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-gold:hover {
            background: #D4AF37;
            color: #111;
            transform: scale(1.02);
        }

        /* Navbar / Header */
        .top-header {
            background: #0a0a0a;
            font-size: 0.85rem;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .top-header a,
        .top-header span {
            color: #ddd;
            text-decoration: none;
            transition: 0.2s;
        }

        .top-header a:hover {
            color: #D4AF37;
        }

        .social-icons a {
            margin: 0 6px;
            font-size: 1rem;
            display: inline-block;
        }

        .navbar {
            background: #111111e6;
            backdrop-filter: blur(8px);
            transition: 0.3s;
            padding: 12px 0;
        }

        .navbar-brand img {
            max-height: 55px;
            transition: 0.2s;
        }

        .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 5px;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #D4AF37 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #D4AF37;
            transition: 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Slider */
        .hero-slider .carousel-item {
            height: 90vh;
            min-height: 550px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-slider .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }

        .carousel-caption-custom {
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            transform: translateY(-50%);
            z-index: 2;
            text-align: center;
        }

        .ken-zoom {
            animation: kenZoom 20s infinite alternate;
        }

        @keyframes kenZoom {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.08);
            }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Section common */
        section{
            overflow: hidden;
        }
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            background: #D4AF37;
            margin: 12px auto 0;
        }

        /* Cards & Icons */
        .service-card,
        .why-card {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 2rem 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
            height: 100%;
        }

        .service-card:hover,
        .why-card:hover {
            transform: translateY(-10px);
            border-color: #D4AF37;
            box-shadow: 0 20px 30px -15px rgba(212, 175, 55, 0.2);
        }

        .why-icon {
            font-size: 2.8rem;
            color: #D4AF37;
            margin-bottom: 1rem;
        }

        /* Gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 25px;
            cursor: pointer;
        }

        .gallery-item img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .overlay-gallery {
            position: absolute;
            bottom: 0;
            background: linear-gradient(0deg, #000000c9, transparent);
            width: 100%;
            padding: 15px;
            text-align: center;
            opacity: 0;
            transition: 0.3s;
        }

        .gallery-item:hover .overlay-gallery {
            opacity: 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%;
    }
}
        /* Process timeline */
        .process-step {
            text-align: center;
            padding: 20px;
            background: #1a1a1a;
            border-radius: 30px;
            border-bottom: 4px solid #D4AF37;
            height: 100%;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #D4AF37;
            color: #111;
            font-size: 1.8rem;
            font-weight: bold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        /* Testimonial carousel */
        .testimonial-card {
            background: #1e1e1e;
            border-radius: 30px;
            padding: 2rem;
            margin: 20px;
            border: 1px solid #D4AF3740;
        }

        /* contact form */
        .contact-form {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 30px;
        }

        .form-control,
        .form-select {
            background: #2a2a2a;
            border: 1px solid #444;
            color: #fff;
        }

        .form-control:focus {
            background: #2a2a2a;
            border-color: #D4AF37;
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
            color: #fff;
        }

        footer a {
            text-decoration: none;
            color: #ccc;
            transition: 0.2s;
        }

        footer a:hover {
            color: #D4AF37;
        }

        /* Floating buttons */
        .float-call,
        .float-wa {
            position: fixed;
            bottom: 30px;
            width: 55px;
            height: 55px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 55px;
            font-size: 28px;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: 0.2s;
        }

        .float-call {
            left: 25px;
            background-color: #D4AF37;
            color: #111;
        }

        .float-wa {
            right: 25px;
            background-color: #25D366;
        }

        .float-call:hover,
        .float-wa:hover {
            transform: scale(1.08);
            color: white;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .top-header .text-end {
                text-align: center !important;
                margin-top: 6px;
            }

            .carousel-caption-custom {
                left: 5%;
                right: 5%;
            }
        }

        .sticky-top {
            z-index: 1020;
        }

        .bg-dark-trans {
            background: #000000aa;
        }