:root {
        --gold: #c5a059;
        --dark: #0f0f0f;
        --beige: #f9f7f2;
        --white: #ffffff;
    }

    /* Core fix for horizontal overflow */
    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Prevents the horizontal scroll */
        position: relative;
    }


    /* Optional: Ensure images never exceed their container */
    img {
        max-width: 100%;
        height: auto;
    }

    body {
        font-family: "Montserrat", sans-serif;
        color: #333;
        background-color: var(--white);
    }
    h1,
    h2,
    h3,
    h4,
    .navbar-brand {
        font-family: "Cormorant Garamond", serif;
        font-weight: 600;
    }

    /* Navbar */
    /* Glassmorphism Navbar */
    .navbar {
        position: fixed; /* This keeps it stuck to the screen */
        top: 0;
        width: 100%;
        z-index: 1050; /* Ensures it stays above all other content */
        background: rgba(15, 15, 15, 1) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        transition: transform 0.4s ease, background 0.4s ease; /* Smooth appearance */
    }

    /* Class to hide navbar when scrolling down */
    .navbar-hidden {
        transform: translateY(-100%);
    }

    /* Ensure the content doesn't get hidden behind the fixed navbar */
    body {
        padding-top: 80px; /* Adjust based on your navbar height */
    }

    /* Optional: Make navbar slightly more solid when scrolling */
    .navbar.scrolled {
        background: rgba(10, 10, 10, 0.9) !important;
        backdrop-filter: blur(20px);
    }
    .nav-link {
        color: #fff !important;
        font-size: 0.85rem;
        letter-spacing: 2px;
        position: relative;
        margin: 0 15px;
    }
    .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -5px;
        left: 0;
        background-color: var(--gold);
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }

    /* Hero Slider - Reduced Height */
    #heroCarousel,
    .carousel-item {
        height: 80vh;
        min-height: 500px;
    }

    .carousel-item {
        background-color: #000;
    }

    .hero-img {
        height: 80vh;
        width: 100%;
        object-fit: cover;
        opacity: 0.5;
    }
    .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        text-align: center;
        width: 100%;
        left: 0;
        right: 0;
    }
    .hero-subtitle {
        color: var(--gold);
        font-size: 1.1rem;
        letter-spacing: 6px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
        line-height: 1.1;
        margin-bottom: 30px;
    }

    /* Service Card with Image */
    .service-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        overflow: hidden;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
    }

    .service-img-wrapper {
        width: 100%;
        height: 240px;
        overflow: hidden;
    }

    .service-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .service-card:hover {
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        transform: translateY(-8px);
    }

    .service-card:hover .service-img-wrapper img {
        transform: scale(1.1);
    }

    .extra-text {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    /* 2. Show the text when the parent has the .show-content class */
    .content-box.show-content .extra-text {
        display: inline !important;
        opacity: 1;
    }

    /* 3. Style the button */
    .read-more-btn {
        display: inline-block;
        margin-top: 10px;
        color: #C5A059; /* Your Gold Variable */
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .read-more-btn:hover {
        color: #000;
    }

    /* Ensure the text flow looks natural */
    .service-text {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
    }

    /* Portfolio Grid Refinement */
    .portfolio-grid {
        padding: 20px 0;
    }

    .portfolio-item {
        position: relative;
        overflow: hidden;
    }

    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.5s ease;
        text-align: center;
    }

    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }

    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.1);
    }

    /* Uneven Heights for Mosaic Look */
    .img-wrapper.h-tall {
        height: 615px; /* Spans height of roughly two small rows */
    }

    .img-wrapper.h-medium {
        height: 300px;
    }

    .img-wrapper.h-small {
        height: 248px;
    }

    @media (max-width: 991px) {
        .img-wrapper.h-tall, 
        .img-wrapper.h-medium, 
        .img-wrapper.h-small {
            height: 350px; 
        }
    }

    .overlay-content h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        margin-top: 10px;
        transform: translateY(20px);
        transition: transform 0.5s ease;
    }

    .category {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        display: block;
    }

    /* Hover States */
    .portfolio-item:hover .img-wrapper img {
        transform: scale(1.1);
    }

    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio-item:hover .overlay-content h4 {
        transform: translateY(0);
    }

    /* Divider for Gallery Header */
    .gold-divider {
        width: 60px;
        height: 2px;
        margin-left: auto;
        margin-right: auto;
        background: var(--gold);
    }

    /* Testimonials - Fixed overlapping */
    .testimonial-card {
        background: #fff;
        padding: 40px;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        border: 1px solid #f0f0f0;
        margin: 15px 0;
        text-align: center;
    }
    .reviewer-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: -80px auto 20px;
        border: 4px solid var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .quote-icon {
        color: var(--gold);
        font-size: 1.5rem;
        margin-bottom: 15px;
        opacity: 0.5;
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        padding: 10px 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-float i {
        font-size: 24px;
        margin-right: 10px;
    }

    .whatsapp-float:hover {
        background-color: #128C7E;
        color: #fff;
        transform: translateY(-5px);
    }

    .whatsapp-float span {
        font-weight: 600;
        font-size: 14px;
    }

    @media (max-width: 768px) {
        .whatsapp-float span { display: none; }
        .whatsapp-float { padding: 15px; border-radius: 50%; }
        .whatsapp-float i { margin-right: 0; }
    }

    /* Contact Section Adjustment */
    #contact .h6 { font-family: 'Montserrat', sans-serif; font-weight: 400; color: #fff; }
    .text-gold { color: var(--gold) !important; }

    /* Contact Prominence */
    .contact-form .form-control {
        border: none;
        border-bottom: 2px solid #e0e0e0;
        border-radius: 0;
        padding: 15px 5px;
        background: transparent;
        font-weight: 500;
    }
    .contact-form .form-control:focus {
        border-color: var(--gold);
        box-shadow: none;
    }
    .contact-form label {
        color: var(--gold);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .btn-luxury {
        /* Base Styles */
        position: relative;
        display: inline-block;
        padding: 18px 45px;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #fff;
        border: none;
        cursor: pointer;
        overflow: hidden;
        z-index: 1;

        /* The "Shift" Background Logic */
        background: linear-gradient(to right, #C5A059 50%, #000 50%);
        background-size: 200% 100%;
        background-position: left bottom;
        transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .btn-luxury:hover {
        color: #fff;
        background-position: right bottom;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        transform: translateY(-2px);
    }

    /* Ensure any icons inside move with the text */
    .btn-luxury i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .btn-luxury:hover i {
        transform: translateX(5px);
    }

    /* Why Choose Us Styling */
    .feature-box {
        text-align: center;
        padding: 20px;
        transition: all 0.3s ease;
    }

    .feature-box h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .feature-box p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.6;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .feature-icon-wrapper i {
        width: 30px;
        height: 30px;
        stroke: var(--gold);
        stroke-width: 1.5px;
    }

    .feature-box:hover .feature-icon-wrapper {
        background: var(--gold);
        transform: translateY(-5px);
    }

    .feature-box:hover .feature-icon-wrapper i {
        stroke: #fff;
    }

/* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(197,160,89,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .page-header h1 {
            color: var(--white);
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            color: var(--gold);
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        .gold-divider {
            width: 60px;
            height: 2px;
            margin: 20px auto;
            background: var(--gold);
        }



        /* Gallery Grid */
        .gallery-container {
            padding: 40px 0 80px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            padding: 0 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 4px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 20px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .overlay-icon {
            color: var(--gold);
            font-size: 2rem;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .overlay-icon {
            transform: translateY(0);
        }

/* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 10px;
            }

            .gallery-item img {
                height: 200px;
            }

            .whatsapp-float span {
                display: none;
            }

            .whatsapp-float {
                padding: 15px;
                border-radius: 50%;
            }

            .whatsapp-float i {
                margin-right: 0;
            }

            .filter-btn {
                padding: 8px 15px;
                font-size: 0.7rem;
            }
        }

        @media (min-width: 1400px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }