
        :root {
            --primary-maroon: #4A0E17;
            --secondary-maroon: #631621;
            --gold-accent: #D4AF37;
            --gold-hover: #AA8417;
            --light-bg: #FFFBF7;
            --dark-text: #2D2D2D;
                     
            --dark-charcoal: #2D2D2D;     /* Off-Black Body Text */
            --muted-border: #EAE3DA;      /* Soft structural line separation */
        }
section,header{
    overflow: hidden;
}
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            background-color: #ffffff;
            overflow-x: hidden;
            margin-top: 56px;
        }

        h1, h2, h3, .navbar-brand {
            font-family: 'Marcellus', serif;
        }
        img{
            height: auto;
       
        }

        /* Custom Utility Classes */
        .text-maroon { color: var(--primary-maroon); }
        .text-gold { color: var(--gold-accent); }
        .bg-maroon { background-color: var(--primary-maroon); }
        .bg-cream { background-color: var(--light-bg); }
        .border-marron{border: 2px solid var(--primary-maroon);}
        /* Navbar Styling */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.6rem;
            letter-spacing: 1px;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            position: relative;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-maroon) !important;
        }
        @media (min-width: 992px) {
            .nav-link::after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: 0;
                left: 0;
                background-color: var(--gold-accent);
                transition: width 0.3s ease;
            }
            .nav-link:hover::after, .nav-link.active::after {
                width: 100%;
            }
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(74, 14, 23, 0.85), rgba(40, 5, 10, 0.9)), 
                        url('https://images.unsplash.com/photo-1610030469668-93535c17b6b3?q=80&w=1920') center/cover no-repeat;
            padding: 160px 0 120px 0;
            color: #ffffff;
        }
        .btn-gold {
            background-color: var(--gold-accent);
            color: var(--primary-maroon);
            font-weight: 600;
            border: 2px solid var(--gold-accent);
            padding: 10px 28px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: var(--primary-maroon);
            color: #ffffff;
      
        }
        .btn-outline-white {
            border: 2px solid #ffffff;
            color: #ffffff;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .btn-outline-white:hover {
            background-color: #ffffff;
            color: var(--primary-maroon);
        }

        /* Service Cards */
        .service-card {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 8px;
            padding: 30px 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(74, 14, 23, 0.1);
            border-color: var(--gold-accent);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background-color: var(--light-bg);
            border-radius: 50%;
            margin: 0 auto 20px auto;
            font-size: 1.8rem;
            color: var(--primary-maroon);
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            background-color: var(--primary-maroon);
            color: var(--gold-accent);
        }

        /* Gallery Overlay */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
       
        }
        .gallery-img {
     
             
            transition: transform 0.5s ease;
        }
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(74, 14, 23, 0.9), rgba(74, 14, 23, 0.4));
            opacity: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: opacity 0.4s ease;
        }
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Testimonials */
        .testimonial-card {
            background-color: #ffffff;
            border-left: 4px solid var(--gold-accent);
            padding: 25px;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        /* Footer */
        footer {
            background-color: #1A0508;
            color: #DDAAAB;
            padding: 60px 0 20px 0;
        }
        footer h5 {
            color: #ffffff;
            font-family: 'Marcellus', serif;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .footer-link {
            color: #DDAAAB;
            text-decoration: none;
            transition: color 0.2s;
            display: inline-block;
            margin-bottom: 10px;
        }
        .footer-link:hover {
            color: var(--gold-accent);
            padding-left: 4px;
        }
        .social-icons a {
            width: 36px;
            height: 36px;
          text-decoration: none;
            background-color: rgba(255,255,255,0.05);
            color: #ffffff;
            text-align: center;
            line-height: 36px;
            border-radius: 50%;
            margin-right: 8px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
    color: var(--gold-accent);
       
        }
.hero-split {
    min-height: 85vh;
}
.btn-outline-maroon {
    border: 2px solid var(--primary-maroon);
    color: var(--primary-maroon);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-outline-maroon:hover {
    background-color: var(--primary-maroon);
    color: #ffffff;
}
/* Elegant dynamic gold ring spinning or sitting behind the circular image */
.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px dashed var(--gold-accent);
    border-radius: 50%;
    transform: scale(0.96);
}
 /* Inner Header Block */
        .contact-hero {
            background: linear-gradient(rgba(74, 14, 23, 0.9), rgba(40, 5, 10, 0.95)), 
                        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1920') center/cover no-repeat;
            padding: 90px 0 60px 0;
            color: #ffffff;
        }

        /* Form Styling Elements */
        .form-control, .form-select {
            padding: 12px 18px !important;
            border: 1px solid var(--muted-border) !important;
            border-radius: 6px !important;
            background-color: #ffffff !important;
            font-size: 0.95rem !important;
            transition: all 0.3s ease !important;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-maroon) !important;
            box-shadow: 0 0 0 3px rgba(165, 29, 50, 0.08) !important;
            outline: 0 !important;
        }

        /* Interactive Contact Cards */
        .info-card {
            padding: 24px !important;
            background-color: var(--light-bg) !important;
            border: 1px solid var(--muted-border) !important;
            border-radius: 8px !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }
        .info-card:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 20px rgba(74, 14, 23, 0.05) !important;
        }
        .icon-box {
            width: 50px !important;
            height: 50px !important;
            background-color: var(--primary-maroon) !important;
            color: var(--gold-accent) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 50px !important;
            font-size: 1.25rem !important;
        }

        /* Action Trigger Buttons */
        .btn-brand {
            background-color: var(--primary-maroon) !important;
            color: #ffffff !important;
            padding: 12px 30px !important;
            font-weight: 500 !important;
            border-radius: 6px  !important;
            border: none !important;
            transition: all 0.3s ease !important;
        }
        .btn-brand:hover {
            background-color: var(--secondary-maroon) !important;
            color: var(--gold-accent) !important;
            box-shadow: 0 4px 15px rgba(74, 14, 23, 0.2) !important;
        }

        /* Embedded Map Panel wrapper */
        .map-responsive-container {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--muted-border);
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }
        
        /* Banner Header */
        .services-header {
            background: linear-gradient(rgba(74, 14, 23, 0.85), rgba(40, 5, 10, 0.9)), 
                        url('https://images.unsplash.com/photo-1542435503-956c469947f6?q=80&w=1920') center/cover no-repeat;
            padding: 100px 0 60px 0;
            color: #ffffff;
        }

        /* Package Premium Cards */
        .price-card {
            background: #ffffff;
            border: 1px solid rgba(74, 14, 23, 0.08);
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .price-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(74, 14, 23, 0.1);
        }
        .price-card.featured {
            border: 2px solid var(--gold-accent);
            box-shadow: 0 10px 30px rgba(74, 14, 23, 0.06);
        }
        .featured-ribbon {
            position: absolute;
            background: var(--gold-accent);
            color: var(--primary-maroon);
            font-weight: 600;
            font-size: 0.75rem;
            padding: 6px 30px;
            top: 16px;
            right: -30px;
            transform: rotate(45deg);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Custom Buttons */
        .btn-gold {
            background-color: var(--gold-accent);
            color: var(--primary-maroon);
            font-weight: 600;
            border: 2px solid var(--gold-accent);
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: var(--primary-maroon);
            color: #ffffff;
            border-color: var(--primary-maroon);
        }
        .btn-outline-maroon {
            border: 2px solid var(--primary-maroon);
            color: var(--primary-maroon);
            font-weight: 600;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        .btn-outline-maroon:hover {
            background-color: var(--primary-maroon);
            color: #ffffff;
        }

        /* Table custom typography */
        .table {
            vertical-align: middle;
        }
        .table th {
            font-family: 'Marcellus', serif;
            letter-spacing: 0.5px;
        }

        /* Accordion Customization */
        .accordion-button:not(.collapsed) {
            background-color: var(--light-bg);
            color: var(--primary-maroon);
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(74, 14, 23, 0.1);
        }



        .font-marcellus {
        font-family: 'Marcellus', serif;
    }
    
    .text-gold {
        color: #d4af37; /* Clean metallic gold matching the maroon */
    }

    .mehandi-bg-banner {
        width: 100%;
        max-width: 1667px;
        min-height: 150px;
        margin: 0 auto;
        border-radius: 12px; /* Optional: adds smooth corners if used as a card banner */
        
        /* Base Deep Maroon Color (#631621) blended with an elegant radial lighting glow */
        background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, rgba(99, 22, 33, 0) 70%), 
                    linear-gradient(135deg, #631621 0%, #4a0f18 100%);
        
        /* Subtle ornamental border accents */
        border: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    /* Elegant subtle pattern line overlay for a traditional look */
    .mehandi-bg-banner::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        opacity: 0.04;
        background-image: radial-gradient(#d4af37 1px, transparent 0);
        background-size: 24px 24px;
        pointer-events: none;
    }
    
    .max-w-600 {
        max-width: 600px;
    }
    .product-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
    }

    .product-item:hover {
        background: rgba(212, 175, 55, 0.1);
        border-color: #d4af37;
        transform: translateY(-3px);
    }

    .product-icon {
        font-size: 1.5rem;
        color: #d4af37;
    }
     .gallery-card {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
        }
        .gallery-img {
            transition: transform 0.5s ease;
            height: 350px;
            object-fit: cover;
            width: 100%;
                 border: #800020 2px solid;
        }
        .gallery-card:hover .gallery-img {
            transform: scale(1.05);
        }
     
        .bg-cream {
            background-color: #fdfbf7;
        }
        
        /* Section 1: About Header */
        .about-header {
            background: linear-gradient(rgba(74, 14, 23, 0.85), rgba(40, 5, 10, 0.9)), 
                        url('https://images.unsplash.com/photo-1590075865003-e48277adc558?q=80&w=1920') center/cover no-repeat;
            padding: 100px 0 60px 0;
            color: #ffffff;
        }

        /* Section 3: Process Timeline Step Icons */
        .process-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-maroon);
            color: var(--gold-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin: 0 auto 15px auto;
            box-shadow: 0 4px 10px rgba(74, 14, 23, 0.15);
        }

        /* Section 4: Team Card Custom Layout */
        .team-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .team-card:hover {
            transform: translateY(-5px);
        }
        .team-img-wrapper {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
        }
        .team-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }