
        :root {
            --gold: #d4af37;
            --gold-light: #e8c84a;
            --dark: #111;
            --dark-card: #1a1a1a;
            --white: #fff;
            --off-white: #f5f5f0;
        }

        body {
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
            background: var(--off-white);
            color: #222;
            scroll-behavior: smooth;
        }

        /* golden accents */
        .text-gold {
            color: var(--gold);
        }

        .bg-gold {
            background-color: var(--gold);
        }

        .border-gold {
            border-color: var(--gold);
        }

        .btn-gold {
            background: var(--gold);
            color: #000;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }

        .btn-gold:hover {
            background: var(--gold-light);
            color: #000;
            transform: scale(1.02);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }

        .btn-outline-gold {
            border: 2px solid var(--gold);
            color: var(--gold);
            background: transparent;
        }

        .btn-outline-gold:hover {
            background: var(--gold);
            color: #000;
        }

        /* top header */
        .top-header {
            background: #000;
            color: #fff;
            font-size: 0.85rem;
            padding: 6px 0;
            border-bottom: 1px solid #222;
        }

        .top-header a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px 0 0;
            transition: 0.2s;
            font-size: 0.9rem;
        }

        .top-header a i {
            color: var(--gold);
            margin-right: 5px;
        }

        .top-header a:hover {
            color: var(--gold);
        }

        .social-icons-top a {
            margin: 0 6px;
            font-size: 1rem;
        }

        .social-icons-top a:hover {
            color: var(--gold) !important;
        }

        /* navbar */
        .navbar {
            background: #000 !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
            padding: 8px 0;
        }

        .navbar .navbar-brand {
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #fff !important;
        }

        .navbar .navbar-brand img {
            height: 90px;
            margin-right: 8px;
        }

        .navbar .nav-link {
            color: #ddd !important;
            font-weight: 500;
            margin: 0 6px;
            transition: 0.2s;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--gold) !important;
        }

        .navbar .btn-gold {
            padding: 6px 20px;
            border-radius: 30px;
        }

        /* hero slider */
        .hero-slider .carousel-item {
            height: 90vh;
            min-height: 400px;
            background-size: cover;
            background-position: center;
        }

        .hero-slider .carousel-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-slider .carousel-caption {
            z-index: 3;
            bottom: 20%;
            text-align: left;
            max-width: 700px;
        }

        .hero-slider .carousel-caption h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .hero-slider .carousel-caption p {
            font-size: 1.1rem;
            color: #f0f0f0;
        }

        .hero-slider .carousel-caption .btn {
            margin: 6px 10px 6px 0;
        }

        /* sections */
        section {
            padding: 70px 0;
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--gold);
            display: block;
            margin: 8px auto 0;
        }

        .bg-dark-section {
            background: #0a0a0a;
            color: #fff;
        }

        /* cards */
        .card-gold {
            background: #fff;
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            height: 100%;
            color: #000;
        }

        .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%;
    }
}

        .card-gold:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(212, 175, 55, 0.15);
            border-bottom: 3px solid var(--gold);
        }

        .card-gold i {
            color: var(--gold);
            font-size: 2.5rem;
        }

        /* process arrows */
        .process-arrow {
            font-size: 2.5rem;
            color: var(--gold);
        }

        @media (max-width: 768px) {
            .process-arrow {
                transform: rotate(90deg);
            }
        }

        /* gallery */
        .gallery-img {
            border-radius: 12px;
            overflow: hidden;
            transition: 0.3s;
            cursor: pointer;
        }

        .gallery-img img {
            transition: 0.4s;
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .gallery-img:hover img {
            transform: scale(1.08);
        }

        /* testimonial carousel */
        .testimonial-card {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        }

        .testimonial-card .stars {
            color: var(--gold);
        }
        section{
            overflow: hidden;
        }

        /* cta */
        .cta-section {
            background: #0a0a0a;
            padding: 60px 0;
        }

        /* footer */
        footer {
            background: #000;
            color: #aaa;
            padding: 40px 0 20px;
        }

        footer a {
            color: #ccc;
            text-decoration: none;
        }

        footer a:hover {
            color: var(--gold);
        }

        footer .border-gold-bottom {
            border-bottom: 2px solid var(--gold);
            width: 40px;
        }

        /* floating buttons */
        .float-btn {
            position: fixed;
            bottom: 30px;
            z-index: 999;
            padding: 12px 18px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
            border: none;
        }

        .float-left {
            left: 20px;
            background: #25d366;
            color: #fff;
        }

        .float-right {
            right: 20px;
            background: var(--gold);
            color: #000;
        }

        .float-btn i {
            margin-right: 6px;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }

            100% {
                transform: scale(1);
            }
        }

        /* scroll top */
        #scrollTop {
            position: fixed;
            bottom: 100px;
            right: 20px;
            z-index: 998;
            background: var(--gold);
            color: #000;
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            font-size: 1.3rem;
            display: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* responsive */
        @media (max-width: 992px) {
            .hero-slider .carousel-item {
                height: 70vh;
            }

            .hero-slider .carousel-caption h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-slider .carousel-item {
                height: 60vh;
            }

            .hero-slider .carousel-caption {
                bottom: 10%;
            }

            .hero-slider .carousel-caption h1 {
                font-size: 1.8rem;
            }
        }