*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.top-bar{
    background: #681500;
    padding: 12px 0;
}

.top-bar .container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar a{
    color: #fff;
    text-decoration: none;
    font-size: 23px;      /* Bigger font */
    font-weight: 800;     /* Bold */
    letter-spacing: 0.5px;
    transition: .3s ease;
}

.top-bar a:hover{
    color: #f8d7c7;
}

/* Navbar */

.custom-navbar{
    background:#fff;
    box-shadow:0 5px 20px rgba(97, 49, 10, 0.479);
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#681500 !important;
    letter-spacing:.5px;
}

.navbar-brand span{
    color:#1c1c1c;
}

.navbar-nav .nav-link{
    color:#1c1c1c !important;
    font-size:16px;
    font-weight:500;
    margin-left:15px;
    position:relative;
    transition:.3s;
}

/* Modern Hover Effect */

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:3px;
    background:#681500;
    left:50%;
    bottom:-5px;
    transform:translateX(-50%);
    border-radius:20px;
    transition:.4s ease;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.navbar-nav .nav-link:hover{
    color:#681500 !important;
    transform:translateY(-2px);
}
.hero-section{
    position:relative;
    min-height:100vh;
    background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.80) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.30) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
}

.hero-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(104,21,0,.85);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    letter-spacing:.5px;
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#c96b4b;
}

.hero-content p{
    font-size:18px;
    color:#f1f1f1;
    line-height:1.8;
    margin-bottom:35px;
    max-width:600px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    background:#681500;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-size:17px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 15px 40px rgba(104,21,0,.35);
}

.hero-btn:hover{
    background:#7f1b00;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 20px 50px rgba(104,21,0,.45);
}
.services-section{
    background:#f8f9fa;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:#1c1c1c;
}

.section-subtitle{
    color:#6c757d;
    font-size:16px;
}

/* SERVICE CARD */

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border-top:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-top:4px solid #681500;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.service-card .icon{
    font-size:45px;
    margin-bottom:15px;
}

.service-card h4{
    font-weight:600;
    margin-bottom:10px;
    color:#1c1c1c;
}

.service-card p{
    color:#6c757d;
    font-size:15px;
    line-height:1.7;
}
.about-section{
    background:#fff;
}

.about-img img{
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-content h2{
    font-size:40px;
    font-weight:700;
    color:#1c1c1c;
    margin-bottom:20px;
}

.about-content p{
    color:#6c757d;
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
}

.about-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 35px;
    background:#681500;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(104,21,0,.25);
}

.about-btn:hover{
    background:#7f1b00;
    transform:translateY(-3px);
    color:#fff;
}
/* SECTION BACKGROUND */
.contact-section{
    background:#f8f9fa;
}

/* HEADINGS */
.section-title{
    font-size:38px;
    font-weight:700;
    color:#1c1c1c;
}

.section-subtitle{
    color:#6c757d;
}

/* CONTACT INFO */
.contact-info .info-box{
    background:#fff;
    padding:20px;
    border-radius:12px;
    margin-bottom:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-info .info-box:hover{
    transform:translateY(-5px);
    border-left:4px solid #681500;
}

.contact-info h5{
    margin-bottom:8px;
    color:#1c1c1c;
    font-weight:600;
}

.contact-info a{
    text-decoration:none;
    color:#681500;
    font-weight:600;
    font-size:16px;
}

.contact-info p{
    margin:0;
    color:#6c757d;
}

/* Highlight Box */
.highlight-box{
    background:#681500;
    color:#fff;
}

.highlight-box h5,
.highlight-box p{
    color:#fff;
}

/* FORM */
.contact-form{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-control{
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    transition:.3s;
}

.form-control:focus{
    border-color:#681500;
    box-shadow:0 0 0 0.2rem rgba(104,21,0,.15);
}

/* BUTTON */
.submit-btn{
    width:100%;
    padding:14px;
    background:#681500;
    color:#fff;
    border:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(104,21,0,.25);
}

.submit-btn:hover{
    background:#7f1b00;
    transform:translateY(-3px);
}
/* FOOTER BASE */
.footer-section{
    background:#1c1c1c;
    color:#fff;
    margin-top:50px;
}

/* BRAND */
.footer-brand h3{
    font-size:28px;
    font-weight:700;
}

.footer-brand span{
    color:#681500;
}

.footer-brand p{
    color:#bbb;
    font-size:14px;
    line-height:1.8;
    margin-top:10px;
}

/* HEADINGS */
.footer-section h5{
    font-size:18px;
    margin-bottom:15px;
    font-weight:600;
    color:#fff;
}

/* LINKS */
.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:10px;
    font-size:14px;
    color:#bbb;
}

.footer-links a{
    text-decoration:none;
    color:#bbb;
    transition:.3s;
}

.footer-links a:hover{
    color:#681500;
    padding-left:5px;
}

/* CONTACT LINKS */
.footer-contact a{
    color:#bbb;
    text-decoration:none;
}

.footer-contact a:hover{
    color:#681500;
}

/* LINE */
.footer-line{
    border:0;
    height:1px;
    background:#333;
    margin:30px 0;
}

/* COPYRIGHT */
.copyright p{
    margin:0;
    font-size:14px;
    color:#888;
}
/* Mobile Menu */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

@media(max-width:991px){

.navbar-nav{
    text-align:center;
    padding-top:15px;
}

.navbar-nav .nav-link{
    margin:10px 0;
}

}
/* RESPONSIVE */

@media (max-width:992px){

.hero-section{
    text-align:center;
}

.hero-content{
    margin:auto;
}

.hero-content h1{
    font-size:50px;
}

}

@media (max-width:768px){

.hero-content h1{
    font-size:40px;
}

.hero-content p{
    font-size:16px;
}

.hero-btn{
    width:100%;
    max-width:280px;
}

}

@media (max-width:576px){

.hero-content h1{
    font-size:32px;
}

.hero-badge{
    font-size:12px;
}

.hero-content p{
    font-size:15px;
}

}
@media(max-width:768px){
    .section-title{
        font-size:30px;
    }
}
@media(max-width:768px){
    .about-content h2{
        font-size:30px;
        text-align:center;
    }

    .about-content p{
        text-align:center;
    }

    .about-btn{
        display:block;
        text-align:center;
        margin:auto;
        width:200px;
    }
}
/* RESPONSIVE */
@media(max-width:768px){

.section-title{
    font-size:30px;
    text-align:center;
}

.section-subtitle{
    text-align:center;
}

}
/* RESPONSIVE */
@media(max-width:768px){
    .footer-section{
        text-align:center;
    }

    .footer-links li,
    .footer-contact li{
        text-align:center;
    }
}