        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Montserrat', sans-serif; background: #FAF9F6; color: #1A1A1A; line-height: 1.8; overflow-x: hidden; }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container { width: 100%; max-width: 1400px; margin: auto; padding: 0 20px; }
        :root {
            --gold: #BFA46F;
            --dark-gold: #A68A58;
            --header-height: 70px; /* कम height - clean look */
            --light-gray: #F2F2F2;
            --light-yellow: #FFF8E1;
            --off-white-cream: #FAF9F6;
            --text-dark: #2D2D2D;
            --text-light: #555;
        }
        /* PRELOADER */
        .preloader { position: fixed; inset: 0; background: #FAF9F6; display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity .8s ease; }
        .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
        .circle {
            width: clamp(120px, 50vw, 300px);
            height: clamp(120px, 50vw, 300px);
            border-radius: 50%;
            border: 2px solid rgba(191,164,111,.15);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(191,164,111,.1);
        }
        .typing-wrapper {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 3vw, 1.4rem);
            font-weight: 700;
            color: var(--dark-gold);
            text-align: center;
        }
        .typed-text { border-right: 2px solid var(--gold); padding-right: 4px; display: inline-block; }
        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: transparent;
            z-index: 1000;
            transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
        }
        /* Scrolled → Footer जैसा background */
        header.scrolled {
            background: #FFF8E1;
            backdrop-filter: blur(15px);
            box-shadow: 0 2px 15px rgba(0,0,0,.08);
        }
        nav {
            height: 100%;
            display: flex;
            align-items: center; /* Perfect vertical center */
            justify-content: space-between;
            padding: 0 20px;
            max-width: 1400px;
            margin: auto;
            width: 100%;
        }
        .logo { font-size: clamp(1.5rem, 3vw, 1.8rem); color: var(--gold); font-weight: 700; transition: .3s; }
        .logo:hover { transform: scale(1.03); }
        .nav-menu { display: flex; gap: 20px; align-items: center; }
        .nav-item { position: relative; font-weight: 400; letter-spacing: 0.4px; }
        .nav-item > a { padding: 6px 0; display: block; color: var(--text-light); font-size: 0.9rem; transition: .3s; }
        .nav-item:hover > a { color: var(--gold); }
        .dropdown {
            position: absolute; top: calc(100% + 5px); left: 50%; transform: translateX(-50%);
            min-width: 220px; background: #FAF9F6; border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,.05); opacity: 0; visibility: hidden;
            transition: all .3s ease; overflow: hidden;
        }
        .nav-item:hover .dropdown { opacity: 1; visibility: visible; top: 100%; }
        .dropdown a { display: block; padding: 10px 16px; border-bottom: 1px solid rgba(191,164,111,.05); color: var(--text-light); font-size: 0.85rem; transition: .3s; }
        .dropdown a:hover { background: rgba(191,164,111,.05); padding-left: 20px; color: var(--dark-gold); }
        .menu-toggle { display: none; font-size: 22px; color: var(--gold); cursor: pointer; }
        /* HERO SLIDER */
        .hero-slider { height: 90vh; min-height: 500px; position: relative; overflow: hidden; }
        .slider-wrapper { height: 100%; position: relative; }
        .slide {
            position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            text-align: center; padding: 0 20px; gap: 40px;
        }
        .slide.active { opacity: 1; z-index: 1; }
        .slide:nth-child(1) { background: var(--light-gray); }
        .slide:nth-child(2) { background: var(--light-yellow); }
        .slide:nth-child(3) { background: var(--off-white-cream); }
        .slide-content { display: flex; flex-direction: column; align-items: center; gap: 40px; width: 100%; max-width: 900px; }
        .we-do { font-size: clamp(1.4rem, 4vw, 2.4rem); font-weight: 500; color: var(--dark-gold); margin-bottom: 10px; opacity: 0; transform: translateY(30px); transition: all 0.8s ease 0.3s; }
        .big-word-wrapper { position: relative; opacity: 0; transform: translateY(40px); transition: all 1s ease 0.6s; }
        .horizontal-line { width: 90%; max-width: 900px; height: 5px; background: var(--gold); opacity: 0.9; border-radius: 3px; margin: 0 auto; }
        .horizontal-line.top { margin-bottom: 16px; }
        .horizontal-line.bottom { margin-top: 16px; }
        .big-word { font-size: clamp(10rem, 15vw, 12rem); font-weight: 900; color: var(--dark-gold); line-height: 0.88; letter-spacing: -3px; text-shadow: 0 4px 20px rgba(0,0,0,0.1); white-space: nowrap; }
        .get-started {
            font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 600; color: var(--dark-gold);
            text-transform: uppercase; letter-spacing: 1px; padding: 16px 40px;
            border: 2px solid var(--gold); border-radius: 50px; background: transparent;
            opacity: 0; transform: translateY(30px); transition: all 0.6s ease 1s; cursor: pointer; white-space: nowrap;
        }
        .get-started:hover { background: var(--gold); color: #000; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(191,164,111,.3); }
        .slide.active .we-do, .slide.active .big-word-wrapper, .slide.active .get-started { opacity: 1; transform: translateY(0); }
        /* CTA, MODAL, FOOTER, WHATSAPP - same as before */
        .cta-section { padding: 80px 20px; text-align: center; background: #FAF9F6; }
        .cta-section h2 { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--dark-gold); margin-bottom: 16px; line-height: 1.3; }
        .cta-section p { font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--text-light); max-width: 700px; margin: 0 auto 30px; }
        .cta-btn { padding: 14px 40px; background: var(--gold); color: #000; font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 500; border: none; border-radius: 40px; cursor: pointer; box-shadow: 0 10px 20px rgba(191,164,111,.2); transition: all 0.3s ease; }
        .cta-btn:hover { background: var(--dark-gold); transform: translateY(-4px); box-shadow: 0 15px 30px rgba(191,164,111,.3); }
        .modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); align-items: center; justify-content: center; z-index: 2000; opacity: 0; transition: opacity 0.3s ease; }
        .modal.active { display: flex; opacity: 1; }
        .modal-content { background: #ffffff; padding: 30px 20px; border-radius: 20px; max-width: 700px; width: 90%; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 40px rgba(0,0,0,.1); border: 1px solid rgba(191,164,111,.1); transform: scale(0.95); transition: transform 0.3s ease; }
        .modal.active .modal-content { transform: scale(1); }
        .close-modal { position: absolute; top: 15px; right: 20px; font-size: 24px; color: var(--text-light); cursor: pointer; transition: 0.3s; }
        .close-modal:hover { color: var(--dark-gold); transform: rotate(90deg); }
        .modal h1 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--dark-gold); text-align: center; margin-bottom: 12px; }
        .modal p { text-align: center; color: var(--text-light); margin-bottom: 30px; font-size: clamp(0.85rem, 1.5vw, 0.95rem); }
        .modal form { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .modal .form-group { position: relative; }
        .modal .form-group i { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); color: var(--gold); font-size: 1rem; }
        .modal input, .modal select { width: 100%; padding: 14px 14px 14px 45px; border: 1px solid rgba(191,164,111,.2); border-radius: 12px; background: #faf9f6; font-size: 0.9rem; transition: 0.3s; }
        .modal input:focus, .modal select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(191,164,111,.1); }
        .modal button { padding: 14px; background: var(--gold); color: #000; font-size: 1rem; font-weight: 500; border: none; border-radius: 12px; cursor: pointer; transition: 0.3s; }
        .modal button:hover { background: var(--dark-gold); transform: translateY(-2px); }
        footer { background: #FFF8E1; padding: 60px 20px 30px; border-top: 1px solid rgba(191,164,111,.1); }
        .footer-grid { max-width: 1400px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
        .footer-col h4 { font-size: 1.1rem; color: var(--dark-gold); margin-bottom: 15px; }
        .footer-col ul li a { color: var(--text-light); transition: color .3s; font-size: 0.9rem; }
        .footer-col ul li a:hover { color: var(--gold); }
        .social-icons a:hover { background: var(--gold); color: #000; transform: translateY(-2px); }
        .copyright { text-align: center; font-size: 0.85rem; color: var(--text-light); }
        .whatsapp-btn { position: fixed; bottom: 15px; right: 15px; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; box-shadow: 0 4px 15px rgba(37,211,102,.3); animation: pulse 2s infinite; z-index: 1000; }
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
        /* RESPONSIVE */
        @media (max-width: 1024px) {
            :root { --header-height: 65px; } /* Mobile पर और compact */
            .menu-toggle { display: block; }
            .nav-menu {
                position: absolute; top: 100%; left: 0; width: 100%;
                flex-direction: column; background: #FAF9F6; padding: 15px 0;
                box-shadow: 0 10px 20px rgba(0,0,0,.05); opacity: 0; visibility: hidden;
                transition: all .3s ease;
            }
            .nav-menu.active { opacity: 1; visibility: visible; }
            .nav-item { width: 100%; text-align: center; }
            .nav-item > a { padding: 10px 0; font-size: 1.05rem; }
            .dropdown { position: static; transform: none; box-shadow: none; background: transparent; display: none; }
            .nav-item.active .dropdown { display: block; }
            .dropdown a { padding: 7px 0; border: none; font-size: 0.95rem; }
        }
        @media (max-width: 768px) {
            .hero-slider { height: 70vh; min-height: 450px; }
            .big-word { font-size: clamp(3.5rem, 10vw, 8rem); }
            .slide { gap: 30px; }
            .get-started { padding: 14px 36px; }
        }
        @media (max-width: 480px) {
            .hero-slider { height: 60vh; min-height: 380px; }
            .big-word { font-size: clamp(3.2rem, 9.5vw, 7.5rem); letter-spacing: -2px; }
            .we-do { font-size: clamp(1.3rem, 3.5vw, 2rem); }
            .get-started { padding: 12px 32px; font-size: clamp(1rem, 2.5vw, 1.3rem); }
            .whatsapp-btn { width: 45px; height: 45px; font-size: 22px; bottom: 10px; right: 10px; }
        }
        @media (max-width: 360px) {
            .hero-slider { height: 55vh; min-height: 350px; }
            .big-word { font-size: clamp(3rem, 9vw, 7rem); }
        }
       
       
    /* Footer specific improvements */
.logo-col p {
    margin: 16px 0 24px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(191,164,111,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}
.contact-col p {
    margin-bottom: 14px;
    font-size: 0.95rem;
}
.contact-col p i {
    margin-right: 10px;
    color: var(--gold);
    width: 18px;
}
.footer-cta-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    font-size: 1rem;
    background: var(--gold);
    color: #000;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.footer-cta-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(191,164,111,.3);
}
/* Mobile responsive tweak */
@media (max-width: 768px) {
    .footer-grid {
        gap: 40px;
    }
    .logo-col p {
        margin: 16px 0;
    }
    .footer-cta-btn {
        margin-top: 20px;
        padding: 12px 28px;
    }
}
       
    /* Services */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 60px; }
    .service-item { background: #ffffff; padding: 40px 20px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.05); transition: .4s; }
    .service-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(191,164,111,.1); }
    .service-item i { font-size: 3.5rem; color: var(--gold); margin-bottom: 20px; }  