*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    padding-top:84px;
}

.site-header{
    background:#1b1b1b;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:9999;
}

.site-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.site-brand{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;
    text-decoration:none;
    margin:0;
}

.site-brand-logo{
    width:44px;
    height:44px;
    object-fit:contain;
    display:block;
}

.site-brand-text{
    color:#fff;
    font-size:18px;
    font-weight:600;
    line-height:1;
    text-align:left;
}

.site-toggler{
    border:none;
    padding:6px 10px;
    box-shadow:none !important;
}

.site-toggler:focus{
    box-shadow:none !important;
}

.site-header .navbar-toggler-icon{
    filter: brightness(0) invert(1);
    width:1.4em;
    height:1.4em;
}

.site-menu{
    align-items:center;
    margin-left:auto;
}

.site-menu .nav-item{
    margin-left:10px;
}

.site-menu .nav-link{
    color:#fff !important;
    font-size:15px;
    font-weight:500;
    padding:8px 10px !important;
    text-align:left;
}

.site-menu .nav-link:hover{
    color:#D4AF37 !important;
}

.site-actions{
    display:flex;
    align-items:center;
    gap:12px;
    margin-left:24px;
}

.site-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    white-space:nowrap;
}

.site-btn-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    background:transparent;
}

.site-btn-outline:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
}

.site-btn-gold{
    background:#D4AF37;
    color:#fff;
}

.site-btn-gold:hover{
    background:#b8941f;
    color:#fff;
}

@media (max-width:991px){
    body{
        padding-top:78px;
    }

    .site-brand{
        justify-content:flex-start;
    }

    .site-brand-logo{
        width:38px;
        height:38px;
    }

    .site-brand-text{
        font-size:16px;
        text-align:left;
    }

    .site-header .navbar-collapse{
        background:#1b1b1b;
        margin-top:14px;
        padding:18px;
        border-radius:12px;
    }

    .site-menu{
        margin-left:0;
        align-items:flex-start;
    }

    .site-menu .nav-item{
        margin-left:0;
        width:100%;
    }

    .site-menu .nav-link{
        display:block;
        width:100%;
        padding:10px 0 !important;
        text-align:left;
    }

    .site-actions{
        margin-left:0;
        margin-top:14px;
        flex-direction:column;
        align-items:stretch;
    }

    .site-btn{
        width:100%;
    }
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

img{
    max-width:100%;
    display:block;
}

.section{
    padding:90px 0;
}

.section-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
    line-height:1.2;
}

.section-tag{
    color:#D4AF37;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
    display:inline-block;
}

.section-heading{
    margin-bottom:46px;
    text-align:center;
}

.btn-gold{
    background:#D4AF37;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:14px 30px;
    font-weight:600;
    display:inline-block;
}

.btn-gold:hover{
    background:#b8941f;
    color:#fff;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
        url('https://images.unsplash.com/photo-1460317442991-0ec209397118?q=80&w=2000') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 0 90px;
}

.hero-content{
    max-width:900px;
    margin:0 auto;
}

.hero h1{
    font-size:68px;
    font-weight:800;
    color:#fff;
    margin-bottom:16px;
}

.hero p{
    font-size:21px;
    color:#fff;
    margin-bottom:28px;
}

/* ABOUT */

.about-section p{
    color:#555;
    line-height:1.8;
    margin-bottom:16px;
}

.about-image{
    width:100%;
    border-radius:16px;
    object-fit:cover;
}

/* FEATURED */

.featured-section{
    background:#f8f8f8;
}

.project-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    height:100%;
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.project-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
}

.project-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:18px;
}

/* SERVICES */

.services-section{
    background:#fff;
}

.service-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:28px 22px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    height:100%;
}

.service-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:16px;
}

.service-card h4{
    font-size:22px;
    margin-bottom:10px;
    font-weight:700;
}

.service-card p{
    color:#666;
    line-height:1.7;
    margin:0;
}

/* WHY */

.pramaan-why{
    background:#111;
    padding:90px 0;
}

.pramaan-heading{
    text-align:center;
    margin-bottom:42px;
}

.pramaan-heading h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.pramaan-heading p{
    margin:0;
    color:#666;
}

.pramaan-why .pramaan-heading h2{
    color:#fff;
}

.pramaan-why .pramaan-heading p{
    color:rgba(255,255,255,.75);
}

.pramaan-card{
    height:100%;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    border-radius:16px;
    padding:28px 22px;
}

.pramaan-no{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:16px;
}

.pramaan-card h4{
    color:#fff;
    font-size:21px;
    font-weight:700;
    margin-bottom:10px;
}

.pramaan-card p{
    color:rgba(255,255,255,.74);
    line-height:1.7;
    margin:0;
}

/* TESTIMONIALS */

.pramaan-testimonials{
    background:#f8f8f8;
    padding:90px 0;
}

.pramaan-testimonial{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:26px 22px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    height:100%;
}

.pramaan-testimonial p{
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
}

.pramaan-testimonial h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:4px;
}

.pramaan-testimonial span{
    color:#D4AF37;
    font-size:14px;
    font-weight:600;
}

/* CTA */

.pramaan-cta-wrap{
    background:#f8f8f8;
    padding:0 0 90px;
}

.pramaan-cta{
    background:#111;
    color:#fff;
    text-align:center;
    border-radius:20px;
    padding:50px 26px;
}

.pramaan-cta h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:14px;
}

.pramaan-cta p{
    max-width:700px;
    margin:0 auto 24px;
    color:rgba(255,255,255,.8);
    line-height:1.8;
}

.pramaan-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.pramaan-outline{
    border:1px solid rgba(255,255,255,.28);
    color:#fff;
    border-radius:8px;
    padding:14px 28px;
    font-weight:600;
    display:inline-block;
}

.pramaan-outline:hover{
    background:#fff;
    color:#111;
}

/* INQUIRY */

.inquiry-section{
    background:#fff;
}

.inquiry-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:22px;
}

.inquiry-points{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.inquiry-point{
    background:#f8f8f8;
    border-radius:10px;
    padding:12px 14px;
    color:#333;
}

.contact-info-box{
    margin-top:24px;
}

.contact-info-box h4{
    font-size:24px;
    margin-bottom:16px;
    font-weight:700;
}

.contact-info-box p{
    margin-bottom:12px;
    color:#333;
}

.contact-info-box a{
    color:#1e63d5;
}

.inquiry-form-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    padding:28px;
}

.inquiry-input{
    height:54px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px 14px;
    box-shadow:none !important;
}

.inquiry-input:focus{
    border-color:#D4AF37;
}

.inquiry-textarea{
    height:auto;
    min-height:130px;
    resize:none;
}

/* MAP + CONTACT */

.map-section{
    background:#f8f8f8;
}

.map-box{
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.contact-strip-section{
    padding-top:0;
}

.contact-strip{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:28px 24px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.contact-strip-item h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-strip-item p{
    margin:0;
    color:#444;
}

.contact-strip-item a{
    color:#1e63d5;
}

.social-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.social-links a{
    padding:10px 16px;
    border:1px solid #ddd;
    border-radius:999px;
    color:#111;
    font-size:14px;
    font-weight:500;
    background:#fff;
}

.social-links a:hover{
    border-color:#D4AF37;
    color:#D4AF37;
}

/* STATS */

.stats-section{
    background:#fff;
}

.stat-box{
    padding:20px;
}

.stat-box h3{
    font-size:34px;
    color:#D4AF37;
    font-weight:800;
    margin-bottom:10px;
}

.stat-box p{
    color:#555;
    margin:0;
}

/* FLOATING BUTTONS */

.pramaan-whatsapp{
    position:fixed;
    right:18px;
    bottom:18px;
    background:#25D366;
    color:#fff;
    padding:12px 18px;
    border-radius:999px;
    font-weight:600;
    z-index:9999;
}

.pramaan-whatsapp:hover{
    color:#fff;
    background:#1fb958;
}

.mobile-sticky-bar{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    display:flex;
    z-index:9998;
}

.mobile-sticky-bar a{
    flex:1;
    text-align:center;
    padding:13px 10px;
    color:#fff;
    font-weight:600;
}

.mobile-call-btn{
    background:#111;
}

.mobile-whatsapp-btn{
    background:#25D366;
}

/* RESPONSIVE */

@media (max-width:991px){
    .hero{
        min-height:auto;
        padding:130px 0 75px;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        font-size:18px;
    }

    .section,
    .pramaan-why,
    .pramaan-testimonials{
        padding:72px 0;
    }

    .section-title,
    .pramaan-heading h2,
    .pramaan-cta h2{
        font-size:32px;
    }
}

@media (max-width:576px){
    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .section-title,
    .pramaan-heading h2,
    .pramaan-cta h2{
        font-size:28px;
    }

    .project-card h4,
    .service-card h4,
    .pramaan-card h4{
        font-size:20px;
    }

    .inquiry-form-box,
    .contact-strip{
        padding:22px 18px;
    }

    .pramaan-whatsapp{
        bottom:68px;
        right:14px;
        font-size:14px;
    }

    .mobile-sticky-bar a{
        font-size:14px;
    }
}

@media (min-width:992px){
    .mobile-sticky-bar{
        display:none;
    }
}

@media (max-width:991px){
    .pramaan-whatsapp{
        display:none !important;
    }
}

.footer{
    background:#111;
    color:#fff;
    padding:70px 0 24px;
}

.footer-block h4,
.footer-block h5{
    margin-bottom:18px;
    font-weight:700;
    color:#fff;
}

.footer-block h4{
    font-size:26px;
    letter-spacing:1px;
}

.footer-block h5{
    font-size:20px;
}

.footer-block p{
    color:rgba(255,255,255,.74);
    line-height:1.8;
    margin-bottom:12px;
}

.footer-block a{
    color:rgba(255,255,255,.82);
}

.footer-block a:hover{
    color:#D4AF37;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:rgba(255,255,255,.82);
}

.footer-links a:hover{
    color:#D4AF37;
    padding-left:4px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:36px;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.65);
    font-size:14px;
}

@media (max-width:576px){
    .footer{
        padding:55px 0 80px;
    }

    .footer-block h4{
        font-size:22px;
    }

    .footer-block h5{
        font-size:18px;
    }

    .footer-bottom{
        margin-top:28px;
        padding-top:18px;
    }
}