*{
    font-family: 'Poppins', sans-serif;
}

:root{
    --primary-color:#D4A017;
    --secondary-color:#8B6508;
    --light-color:#FFF8E7;
}

/* Top Bar */
.top-bar{
    background: linear-gradient(90deg,#D4A017,#F4C430);
    color:white;
    padding:10px 0;
    font-weight:500;
}

.top-bar a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

.top-bar a:hover{
    color:#FFF8E7;
}


/* Navbar */
.navbar{
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.navbar-brand{
    color:var(--primary-color) !important;
    font-size:30px;
    font-weight:700;
}

.nav-link{
    color:#333 !important;
    font-weight:500;
    margin-left:20px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary-color) !important;
}

.btn-quote{
    background:var(--primary-color);
    color:white;
    border-radius:30px;
    padding:10px 25px;
}

.btn-quote:hover{
    background:var(--secondary-color);
    color:white;
}


/* Hero Section */
.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('/img/heroimg.jpg');
    background-size:cover;
    background-position:center;
    color:white;
}

.hero h1{
    font-size:60px;
    font-weight:700;
    line-height:1.2;
}

.hero p{
    font-size:20px;
    margin:25px 0;
    color:#e8e8e8;
}

.call-btn{
    background:#F4C430;
    color:#222;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
    transition:.3s;
}

.call-btn:hover{
    background:#D4A017;
    color:white;
    transform:translateY(-3px);
}


/* Services */
.services-section{
    background:#FFF8E7;
}

.service-tag{
    color:#D4A017;
    font-weight:600;
    letter-spacing:2px;
    font-size:14px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#1d2b2f;
}

.section-text{
    color:#6c757d;
    max-width:650px;
    margin:auto;
    font-size:17px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid rgba(212,160,23,0.15);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(212,160,23,0.25);
}

.service-icon{
    width:90px;
    height:90px;
    line-height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#D4A017,#F4C430);
    font-size:42px;
    color:#fff;
}

.service-card h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
    color:#1f2d3d;
}

.service-card p{
    color:#6b7280;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

.service-btn{
    display:inline-block;
    text-decoration:none;
    background:linear-gradient(135deg,#D4A017,#F4C430);
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.service-btn:hover{
    color:#fff;
    transform:scale(1.05);
}


/* About */
.about-section{
    background:linear-gradient(to bottom,#ffffff,#FFF8E7);
}

.about-tag{
    color:#D4A017;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.about-title{
    font-size:46px;
    font-weight:700;
    line-height:1.3;
    color:#1f2937;
}

.about-description{
    color:#6b7280;
    line-height:1.9;
    font-size:16px;
}

.about-image-wrapper{
    position:relative;
}

.about-main-image{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.experience-card{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    padding:20px 30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    text-align:center;
}

.experience-card h2{
    color:#D4A017;
    font-weight:700;
    margin:0;
}

.experience-card span{
    color:#6b7280;
    font-size:14px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    border-radius:15px;
    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box i{
    font-size:24px;
    color:#D4A017;
}

.feature-box span{
    font-weight:600;
    color:#1f2937;
}

.stat-box h3{
    color:#D4A017;
    font-size:34px;
    font-weight:700;
}

.stat-box p{
    color:#6b7280;
    margin:0;
}

.about-btn{
    background:linear-gradient(135deg,#D4A017,#F4C430);
    color:white;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
    transition:.3s;
}

.about-btn:hover{
    color:white;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,160,23,.3);
}


/* Contact Section */

.contact-section{
    background:linear-gradient(to bottom,#FFF8E7,#ffffff);
}

.contact-tag{
    color:#D4A017;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.contact-title{
    font-size:44px;
    font-weight:700;
    color:#1f2937;
}

.contact-text{
    color:#6b7280;
    max-width:650px;
    margin:auto;
    font-size:17px;
}

.contact-card{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    border:1px solid rgba(212,160,23,0.15);
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.contact-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(212,160,23,0.25);
}

.contact-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#D4A017,#F4C430);
}

.contact-icon i{
    color:white;
    font-size:34px;
}

.contact-card h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#1f2937;
}

.contact-card p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:20px;
}

.contact-link{
    color:#D4A017;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.contact-link:hover{
    color:#8B6508;
}

.contact-address{
    color:#374151;
    line-height:1.9;
    font-weight:500;
}


/* Footer */

.footer-section{
    background:linear-gradient(135deg,#8B6508,#D4A017);
    color:#ffffff;
}

.footer-logo{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-text{
    color:rgba(255,255,255,.85);
    line-height:1.9;
}

.footer-heading{
    font-size:22px;
    font-weight:600;
    margin-bottom:25px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ffffff;
    padding-left:8px;
}

.footer-contact p{
    color:rgba(255,255,255,.85);
    margin-bottom:18px;
}

.footer-contact a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
}

.footer-contact i{
    margin-right:10px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:white;
    text-decoration:none;
    margin-right:10px;
    transition:0.3s;
}

.social-icons a:hover{
    transform:translateY(-5px);
    background:white;
    color:#D4A017;
}

.privacy-btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 28px;
    border-radius:50px;
    background:white;
    color:#D4A017;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.privacy-btn:hover{
    background:#FFF8E7;
    color:#8B6508;
}

.footer-divider{
    border-color:rgba(255,255,255,.2);
    margin-top:50px;
    margin-bottom:20px;
}

.footer-bottom{
    color:rgba(255,255,255,.8);
    font-size:15px;
}


/* Responsive */

@media(max-width:768px){

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

}


@media (max-width:768px){

    .section-title{
        font-size:32px;
    }

    .service-card{
        padding:30px 25px;
    }

}


@media(max-width:991px){

    .about-title{
        font-size:36px;
    }

    .experience-card{
        right:10px;
        bottom:10px;
        padding:15px 20px;
    }

}


@media(max-width:768px){

    .about-title{
        font-size:30px;
    }

    .stat-box{
        margin-bottom:20px;
    }

}


@media(max-width:768px){

    .contact-title{
        font-size:32px;
    }

    .contact-card{
        padding:35px 25px;
    }

}


@media(max-width:991px){

    .footer-logo{
        font-size:28px;
    }

}


@media(max-width:768px){

    .footer-heading{
        margin-top:10px;
    }

    .social-icons a{
        margin-bottom:10px;
    }

}