html {
    scroll-behavior: smooth;
}

.navbar{
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled{
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled {
    color:#222 !important;
}

.navbar.scrolled .nav-link:hover{
    color:#b8860b !important;
}

.navbar-brand {
    font-size: 1.8rem;
    color: #b8860b !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #b8860b !important;
}

.nav-link.active{
    color:#b8860b !important;
    font-weight:700;
}

.btn-warning {
    background: #b8860b;
    border: none;
    color: white;
}

.btn-warning:hover {
    background: #9a7200;
}

/* hero section*/

.hero{
    height:100vh;
    background:
        linear-gradient(rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)),
        url("images/Dhero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero h1{
    font-size:4rem;
}

.hero p{
    max-width:600px;
}

.btn-warning{
    background:#b8860b;
    border:none;
    transition: all 0.3s ease;

    
}

.btn-warning:hover{
    background:#9a7200;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.45);
}

.btn-success{
    border:none;
    transition: all 0.3s ease;
}

.btn-success:hover{
    background: #1EBE5D;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/*service*/

.services{
    background:#fff;
}

.service-card{
    background:#fff;
    border-radius:15px;
    transition:all 0.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15) !important;
}

.service-icon{
    font-size:50px;
    color:#b8860b;
}

.service-card h4{
    font-weight:700;
    margin-top:20px;
}

.service-card p{
    line-height:1.7;
}

/*gallery*/

.gallery{
    background:#f8f9fa;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-video{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

/*Testimonials*/

.testimonials{
    background:#f8f9fa;
}

.testimonial-card{
    background:#fff;
    border-radius:15px;
    transition:all 0.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15) !important;
}

.testimonial-img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

/*contact*/

.contact{
    background:#f8f9fa;
}

.contact-card{
    background:#fff;
    border-radius:15px;
}

.contact-card p{
    font-size:17px;
    margin-bottom:20px;
}

.contact-card i{
    font-size:20px;
}

.map{
    border-radius:15px;
    overflow:hidden;
}

.map iframe{
    border-radius:15px;
}

/*footer*/

.footer{
    background:#1f1f1f;
}

.footer p,
.footer a{
    color:#ddd;
    text-decoration:none;
    transition:0.3s;
}

.footer a:hover{
    color:#b8860b;
}

.footer ul li{
    margin-bottom:10px;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:45px;
    height:45px;

    background:#2d2d2d;
    color:white;

    border-radius:50%;
    margin-right:10px;

    transition:0.3s;
}

.social-icons a:hover{
    background:#b8860b;
    transform:translateY(-5px);
}

.social-icons i{
    font-size:18px;
}

/*top Button*/

#topBtn{
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

     display: none;          /* Hidden initially */
    justify-content: center;
    align-items: center;

    background: #b8860b;
    color: white;

    cursor: pointer;

    display: none;

    transition: 0.3s;
}

#topBtn:hover{
    background: #9a7200;
    transform: scale(1.1);
}


/*Media query*/

@media (max-width: 991px){

    .navbar-brand{
        font-size:1.4rem;
    }

    .navbar-nav{
        margin-top:20px;
    }

    .nav-item{
        margin:8px 0;
    }

    .navbar .btn{
        width:100%;
        margin-top:15px;
    }

    .navbar-collapse{
        background:#fff;
        padding:20px;
        border-radius:12px;
        margin-top:15px;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

}

@media (max-width:768px){

       .hero{
        min-height:90vh;
        padding:100px 0 70px;
        background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url(images/mobile-hero.jpg);
        background-position:center;
        background-size:cover;
    }

    .hero h1{
        font-size:2.8rem;
        line-height:1.2;
    }

    .hero p{
        font-size:1rem;
        line-height:1.7;
    }

    .hero .btn{
    width:100%;
    margin-bottom:15px;
}


.navbar-brand{
    font-size:1.2rem;
}

.hero .container{
    padding:0 25px;
}

}