
        /* ----- base & theme ----- */
        :root {
            --gold: #d4af37;
            --deep-blue: #0b1a3a;
            --maroon: #6b1d2c;
            --white: #ffffff;
            --light-gold: #f5e5b5;
            --shadow-gold: rgba(212, 175, 55, 0.3);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #faf7f2;
            color: #1e1e2a;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .fw-700 {
            font-weight: 700;
        }

        .gold-text {
            color: var(--gold);
        }

        .gold-bg {
            background: var(--gold);
        }

        .deep-blue-bg {
            background: var(--deep-blue);
        }

        .maroon-bg {
            background: var(--maroon);
        }

        section {
            overflow: hidden;
        }

        .section-title {
            position: relative;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background: var(--gold);
            margin: 12px auto 0;
            border-radius: 4px;
        }

        .btn-gold {
            background: var(--gold);
            color: #111;
            border: 2px solid var(--gold);
            font-weight: 600;
            padding: 10px 28px;
            transition: 0.3s;
        }

        .btn-gold:hover {
            background: transparent;
            color: var(--gold);
            border-color: var(--gold);
        }

        .btn-outline-gold {
            border: 2px solid var(--gold);
            color: var(--gold);
            font-weight: 600;
            padding: 10px 28px;
        }

        .btn-outline-gold:hover {
            background: var(--gold);
            color: #111;
        }

        /* top header */
        .top-header {
            background: var(--deep-blue);
            color: #ddd;
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .top-header a {
            color: #ddd;
            text-decoration: none;
            margin: 0 8px;
            transition: 0.2s;
        }

        .top-header a:hover {
            color: var(--gold);
        }

        .top-header .social-icons a {
            font-size: 1rem;
            margin: 0 6px;
        }

        /* navbar */
        .navbar {
            background: rgba(11, 26, 58, 0.97) !important;
            backdrop-filter: blur(4px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            padding: 12px 0;
            transition: 0.3s;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--gold) !important;
            letter-spacing: 1px;
        }

        .navbar-nav .nav-link {
            color: #f0f0f0 !important;
            font-weight: 500;
            margin: 0 6px;
            transition: 0.2s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--gold) !important;
        }

        .nav-cta .btn-gold {
            padding: 6px 20px;
            font-size: 0.9rem;
        }

        /* hero slider */
        .hero-slider .carousel-item {
            height: 92vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-slider .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 26, 58, 0.6);
        }

        .hero-slider .carousel-caption {
            z-index: 3;
            top: 50%;
            transform: translateY(-50%);
            bottom: unset;
            text-align: left;
            max-width: 700px;
        }

        .hero-slider .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .hero-slider .carousel-caption p {
            font-size: 1.2rem;
            opacity: 0.9;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* cards & hover */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            transition: 0.4s ease;
            border: 1px solid rgba(212, 175, 55, 0.15);
            height: 100%;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
            border-color: var(--gold);
        }

        .service-card .icon {
            font-size: 3.2rem;
            color: var(--gold);
        }

        .why-card {
            background: white;
            padding: 24px 16px;
            border-radius: 20px;
            transition: 0.3s;
            border: 1px solid #eee;
            height: 100%;
            text-align: center;
        }

        .why-card:hover {
            transform: scale(1.02);
            border-color: var(--gold);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
        }

        .why-card i {
            font-size: 2.4rem;
            color: var(--gold);
        }

        /* process step */
        .process-step {
            background: white;
            border-radius: 30px;
            padding: 30px 20px;
            position: relative;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border-left: 6px solid var(--gold);
        }

        .process-step .step-num {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--gold);
            opacity: 0.2;
            line-height: 1;
        }

        /* gallery */
        .gallery-img {
            border-radius: 20px;
            overflow: hidden;
            transition: 0.4s;
            border: 3px solid transparent;
        }

        .gallery-img:hover {
            transform: scale(1.03);
            border-color: var(--gold);
        }

        .gallery-img img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: 0.5s;
        }

        .gallery-img:hover img {
            transform: scale(1.06);
        }

        .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%;
    }
}

        /* testimonial */
        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 28px 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0ece6;
            height: 100%;
        }

        .testimonial-card .stars {
            color: var(--gold);
            letter-spacing: 2px;
        }

        /* contact */
        .contact-info i {
            color: var(--gold);
            width: 28px;
            font-size: 1.2rem;
        }

        .contact-form .form-control {
            border-radius: 40px;
            padding: 14px 20px;
            border: 1px solid #ddd;
        }

        .contact-form .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 280px;
            border-radius: 24px;
            border: 0;
        }

        /* cta */
        .cta-section {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #0f2a4a 100%);
            padding: 70px 0;
            border-top: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
        }

        /* footer */
        .footer {
            background: #08132b;
            color: #ccc;
            padding: 40px 0 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer a:hover {
            color: var(--gold);
        }

        /* floating buttons */
        .floating-btns {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .floating-btns a {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gold);
            color: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            transition: 0.3s;
            text-decoration: none;
        }

        .floating-btns a.whatsapp {
            background: #25d366;
            color: white;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        .floating-btns a:hover {
            transform: scale(1.08);
        }

        /* scroll top */
        .scroll-top {
            position: fixed;
            bottom: 185px;
            right: 30px;
            z-index: 999;
            background: var(--deep-blue);
            color: var(--gold);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            border: 2px solid var(--gold);
            opacity: 0;
            transition: 0.3s;
            text-decoration: none;
        }

        .scroll-top.show {
            opacity: 1;
        }

        /* responsive */
        @media (max-width: 992px) {
            .hero-slider .carousel-item {
                height: 70vh;
                min-height: 400px;
            }

            .hero-slider .carousel-caption h1 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 576px) {
            .hero-slider .carousel-item {
                height: 60vh;
                min-height: 360px;
            }

            .hero-slider .carousel-caption h1 {
                font-size: 1.8rem;
            }

            .top-header .d-flex {
                flex-wrap: wrap;
                justify-content: center;
                gap: 4px;
            }
        }