
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fffcf8;
            color: #3e2a2f;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4,
        .logo-text {
            font-family: 'Playfair Display', serif;
        }

        /* Color theme: Maroon, Gold, Cream, White */
        :root {
            --maroon: #8b2c2c;
            --gold: #c9a03d;
            --cream: #fdf8f0;
            --dark-maroon: #6a1e1e;
            --soft-gold: #e5c687;
        }

        .bg-maroon {
            background-color: var(--maroon) !important;
        }

        .text-gold {
            color: var(--gold) !important;
        }

        .bg-cream {
            background-color: var(--cream);
        }

        .btn-gold {
            background-color: var(--gold);
            color: #3e2a2f;
            font-weight: 600;
            border-radius: 40px;
            padding: 10px 28px;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-gold:hover {
            background-color: #b58c2f;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-outline-gold {
            border: 2px solid var(--gold);
            color: var(--gold);
            border-radius: 40px;
            padding: 8px 24px;
            font-weight: 500;
            transition: 0.3s;
        }

        .btn-outline-gold:hover {
            background-color: var(--gold);
            color: #3e2a2f;
        }

        .navbar {
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            padding: 12px 0;
        }

        .navbar-brand img {
            max-height: 100px;
            width: auto;
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--maroon);
        }

        .nav-link {
            font-weight: 500;
            color: #4a2e2e !important;
            margin: 0 8px;
            transition: 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold) !important;
        }

        .call-now-btn {
            background-color: var(--maroon);
            color: white;
            border-radius: 40px;
            padding: 8px 20px;
            font-weight: 600;
            transition: 0.3s;
        }

        .call-now-btn:hover {
            background-color: var(--dark-maroon);
            transform: scale(1.02);
        }

        /* Top header */
        .top-header {
            background: #2d1c1c;
            color: #f5e6d3;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-header a {
            color: #f5e6d3;
            text-decoration: none;
            margin-right: 20px;
            transition: 0.3s;
        }

        .top-header a:hover {
            color: var(--gold);
        }

        .social-icons a {
            margin-left: 12px;
            font-size: 16px;
        }

        /* Hero Slider */
        .carousel-item {
            height: 90vh;
            min-height: 550px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
        }

        .carousel-caption {
            bottom: 30%;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .carousel-caption h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        /* Cards */
        .service-card,
        .feature-card {
            border: none;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            background: white;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card {
            padding: 30px 20px;
            text-align: center;
            background: white;
            transition: 0.3s;
        }

        .feature-card i {
            font-size: 3rem;
            color: var(--maroon);
            background: #fce9db;
            padding: 18px;
            border-radius: 60px;
        }

        /* Gallery grid */
        .gallery-item {
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 15px;
            transition: 0.3s;
            cursor: pointer;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* testimonials */
        .testimonial-card {
            padding: 30px 20px;
            text-align: center;

            .carousel {
                position: relative;
            }

            .carousel-inner {
                position: relative;
                width: 100%;
                overflow: hidden;
            }

            .testimonial-card {
                padding: 30px 20px;
                text-align: center;
            }

            .testimonial-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                transition: all 0.4s ease;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
                height: 100%;
                border: none;
            }
        }

        .rating i {
            color: #ffc107;
            margin: 0 1px;
        }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--gold);
        }

        /* Process timeline */
        .process-step {
            background: white;
            padding: 30px 20px;
            border-radius: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--maroon);
            color: var(--gold);
            font-size: 2rem;
            line-height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
        }

        /* section */
        section{
            overflow: hidden;
        }
        .step-circle {
            width: 80px;
            height: 80px;
            background: var(--maroon);
            color: var(--gold);
            font-size: 2rem;
            font-weight: bold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: 0.3s;
        }

        .step-circle {
            width: 80px;
            height: 80px;
            background: var(--maroon);
            color: var(--gold);
            font-size: 2rem;
            font-weight: bold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: 0.3s;
        }

        .process-step:hover .step-circle {
            background: var(--gold);
            color: var(--maroon);
            transform: scale(1.05);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1607524976500-b9f7f3de3e40?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
        }

        /* Floating buttons */
        .float-buttons {
            position: fixed;
            bottom: 30px;
            right: 20px;
            z-index: 1040;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .float-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background-color: #25d366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: 0.2s;
        }

        .float-btn.call {
            background-color: var(--maroon);
        }

        .float-btn:hover {
            transform: scale(1.1);
            color: white;
        }

        footer {
            background: #221717;
            color: #e0cfc0;
        }

        .footer-link {
            color: #e0cfc0;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-link:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        @media (max-width: 992px) {
            .carousel-caption h1 {
                font-size: 2rem;
            }

            .carousel-item {
                height: 70vh;
            }
        }

        @media (max-width: 768px) {
            .top-header .row div {
                text-align: center;
                margin-bottom: 5px;
            }

            .social-icons {
                text-align: center;
                margin-top: 6px;
            }
        }

        /* contact map */
        .map-container iframe {
            width: 100%;
            height: 250px;
            border-radius: 20px;
            border: 0;
        }