
        :root {
            --bg-color: #ffffff;
            --gold: #D4AF37;
            --white: #FFFFFF;
            --muted-text: #9CA3AF;
            --gold-hover: #F5C542;
            --dark: #1F2933;
        }

        body { font-family: 'Montserrat', sans-serif; color: var(--dark); background-color: var(--bg-color); overflow-x: hidden; }
        h1, h2, h3, .navbar-brand { font-family: 'Cinzel', serif; font-weight: 700; color: var(--dark); }

        /* Navbar */
        .navbar { padding: 1.5rem 0; background: transparent !important; }
        .nav-link { color: var(--dark) !important; font-weight: 600; margin: 0 10px; transition: 0.3s; }
        .nav-link:hover { color: var(--gold) !important; }
        .btn-gold { background-color: var(--gold); color: white !important; border: none; padding: 12px 25px; border-radius: 5px; font-weight: 700; transition: 0.3s; }
        .btn-gold:hover { background-color: var(--gold-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1920');
            background-size: cover; background-position: center;
            height: 90vh; display: flex; align-items: center;
        }

        /* Generic Section */
        section { padding: 90px 0; }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { color: var(--dark); position: relative; padding-bottom: 20px; }
        .section-title h2::after { content: ''; position: absolute; width: 70px; height: 3px; background: var(--gold); bottom: 0; left: 50%; transform: translateX(-50%); }

        /* 15 Line Block Styling */
        .content-text { text-align: justify; line-height: 1.9; font-size: 1rem; color: #4b5563; }

        /* Counter */
        .counter-section { background-color: #fcf8ee; padding: 60px 0; border-top: 5px solid var(--gold); border-bottom: 5px solid var(--gold); }
        .counter-box h2 { font-size: 3.5rem; color: var(--gold); margin-bottom: 0; }

        /* Services Grid - 7 Line Styling */
        .service-card { border: none; transition: 0.4s; height: 100%; border-radius: 0; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .service-card:hover { transform: translateY(-10px); }
        .service-img { height: 250px; object-fit: cover; }
        .service-desc-box { 
            background-color: #f8f9fa; /* bg-light */
            padding: 25px; 
            height: 400px; /* Forces height for approx 7-line description + heading */
            overflow: hidden; 
        }

        .nav-item{
            margin-left:25px !important;
        }

        /* Work Process */
        .process-num { width: 50px; height: 50px; border: 2px solid var(--gold); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: bold; font-size: 1.2rem; }

        /* FAQ */
        .accordion-button:not(.collapsed) { background-color: #fcf8ee; color: var(--gold); }

        /* Contact Section */
        .contact-sidebar { background: var(--dark); color: white; padding: 50px; border-radius: 10px; height: 100%; border-right: 8px solid var(--gold); }
        .contact-sidebar i { font-size: 1.5rem; margin-right: 15px; color: var(--gold); }

        /* Footer */
        footer { background: #0d1216; color: var(--muted-text); padding: 80px 0 20px; }
        footer h5 { color: white; margin-bottom: 25px; border-left: 4px solid var(--gold); padding-left: 15px; }
        footer a { color: var(--muted-text); text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--gold); }
