*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #b7822d;
    scroll-behavior: smooth;
}

#top-arrow{
    position: fixed;
    bottom: 80px;
    right: 23px;
    width: 45px;
    height: 45px;
    background-color: white;
    color: black;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

#top-arrow a{
    text-decoration: none;
    color: black;
}

#top-arrow a:hover{
    padding: 5px 15px;
    border-radius: 50%;
    background-color: #3a1916;
    color: white;
    transform: scale(1.1);
    box-shadow: 0px 0px 15px orangered;
    transition: 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.navi {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}


.navbar{
    min-height: 70px;
    width: 100%;
    background-color: #3a1916;

}

.navbar .logo{
    height: 50px;
    width: 250px;
}

.nav-item{
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: #ffb300;
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: white;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0;
    height: 2px;
    background-color: #ffb300;
    transition: width 0.4s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* .navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
    color: white;
} */

/* .slide{
    background-image: linear-gradient(to bottom right, #3a1916ab, #fff);
} */


.carousel-item img{
    width: 100%;
    height: 90vh;
    background-color: #ffd572;
    filter: brightness(50%);
    /* border-radius: 50%; */
    border: 2px solid black;
    object-fit: 100%;  
}

.carousel-item .slider-img{
    height: 90vh;
    background-color: #ffd572;
    filter: brightness(150%);
    /* border-radius: 50%; */
    border: 2px dotted black;
}

.carousel-caption{
    top: 12%;
    width: 55%;
    /* margin: auto; */
}

.carousel-caption .heading{
    font-size: 10vh;
    font-weight: 600;
    color: white;
}

.carousel-caption p{
    color:#ffb300;
    font-size: 3vh;
    font-weight: 700;
    text-align: justify;
}

.carousel-caption a{
    font-size: 20px;
    font-weight: 600;
}

.carousel-item .slider-btn{
    background-color: #E25E52;
    border: none;
    border-radius: 10px;
    /* padding: 0 15px; */
    /* margin-left: 20px; */ 
    transition: background-color 0.5s ease;
}

.slider-btn a{
    padding: 5px 10px;
    text-decoration: none;
    color: black;
}

.slider-btn i{
    font-size: 15px;
}

.slider-btn i{
    margin-top: 12px; 
}

.slider-btn:hover{
    background-color: #ffb300;
    transition: background-color 0.5s ease-in-out;
}
.slider-btn:hover i{
    transition:  0.5s ease-in-out;
    transform: translateX(10px);
}


.about .row{
    padding: 0;
    /* margin-top: 0px; */
    background-image: linear-gradient(to right, #ffe2b4a8, #ffe2b4a8), url(../assets/Home/back-img.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
}

.about .about-btn{
    background-color: #E25E52;
    border: none;
    border-radius: 10px;
    padding: 0 15px;
    /* margin-left: 20px; */
}

.about-btn a{
    padding: 7px 10px;
    text-decoration: none;
    color: black;
}

.about-btn i{
    margin-top: 12px; 
    /* margin-left: 5px; */
}

.about-btn:hover{
    background-color: #ffb300;
    transition: background-color 0.5s ease-in-out;
}
.about-btn:hover i{
    transition:  0.5s ease-in-out;
    transform: translateX(10px);
}

.about h1, h4, p{
    text-align: justify;
}

.p-img img{
    width: 30px;
    height: 30px;
}

.services .card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease-in-out,
                box-shadow 0.5s ease-in-out;
}


.services .card:hover{
    transform: translateY(-10px);
    box-shadow: 1px 1px 20px #3a1916;
}

.services .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    
}
.services .card-img-top:hover {
    height: 250px;
    object-fit: cover;
    transform: scale(1.1);
}


.service-info{
    min-height:350px;
    background-image:linear-gradient(to bottom right, rgba(255, 255, 255, 0.47), rgba(255, 255, 255, 0.47)), url(../assets/Home/info-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter:brightness(70%);
    padding: 40px;
    border-radius: 20px;
    font-weight:bolder;
}


.service-info h3 {
    color: #3a1916;
    margin-bottom: 15px;
}

.service-info p {
    color: rgb(57, 56, 56);
    font-size: 1rem;
}

.carousel-item .service-info{
    background-color: #E25E52;
    border: none;
    border-radius: 10px;
    padding: 0 15px;
    margin-left: 20px;
}

.service-info a{
    padding: 5px 10px;
    text-decoration: none;
    color: black;
}

.service-info i{
    margin-top: 11px; 
    /* margin-left: 5px; */
}

.service-btn{
    background-color: #fd6b5d;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
}

.service-btn a{
    color:#3a1916;
    font-weight: 500;
}

.service-btn:hover i{
    transition:  0.5s ease-in-out;
    transform: translateX(10px);
}

.service-btn:hover {
    background-color: #ffb300;
}

.service-info .card:hover{
    box-shadow: 1px 1px 20px #3a1916;
    transform: translateY(10px);
    transition: box-shadow 0.5s ease-in-out,
                transform 0.5s ease-in-out;
}
.service-info:hover{
    box-shadow: 1px 1px 20px #3a1916;
    transform: translateY(-10px);
    transition: transfrom 0.8s ease-in-out,
                box-shadow 0.5s ease-in-out;
}

.choose .choose-us{
    padding: 0;
    /* margin-top: 100px; */
    background-image: linear-gradient(to left, #ffe2b4a8, #ffe2b4a8), url(../assets/Home/back-img.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
}

.choose .choose-btn{
    background-color: #E25E52;
    border: none;
    border-radius: 10px;
    padding: 0 15px;
    /* margin-left: 20px; */
}

.choose-btn a{
    padding: 7px 10px;
    text-decoration: none;
    color: black;
}

.choose-btn i{
    margin-top: 12px; 
    /* margin-left: 5px; */
}

.choose-btn:hover{
    background-color: #ffb300;
    transition: background-color 0.5s ease-in-out;
}
.choose-btn:hover i{
    transition:  0.5s ease-in-out;
    transform: translateX(10px);
}

.choose h1, h4, p{
    text-align: justify;
}

.contact .row{
        padding: 0;
    /* margin-top: 100px; */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.537), rgba(0, 0, 0, 0.55)), url(../assets/Home/contact-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
    border-radius: 20px;
}

.contact p{
    color: #ffb300
}
.contact h1{
    color: #ffb300
}
.contact .ctn-top{
    margin-top: 50px;
}

.contact .contact-btn{
    background-color: #E25E52;
    border: none;
    border-radius: 10px;
    padding: 10px 10px;
    /* margin-left: 20px; */
    transition: background-color 0.5s ease;
}

.contact-btn a{
    /* padding: 10px; */
    text-decoration: none;
    color: black;
}

.contact-btn:hover{
    background-color: #ffb300;
    transition: background-color 0.5s ease-in-out;
}

.contact-btn:hover i{
    transition:  0.5s ease-in-out;
    transform: translateX(10px);
}

/* .testimonial{
    margin-top: 100px;
} */

.testimonial .card{
    max-width: 22rem;
    width: 100%;
    margin: auto;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}

.testimonial .card-img-top{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
    filter: brightness(100%);
}


.custom-footer
{
    background-color: #3a1916;   
}
.logo
{
    width: 250px;
    height: 250px;
}
.menulist
{

}
.menulist li
{
    list-style-type: none;
}
.menulist li a
{
    text-decoration: none;
    color: #ffb300;
    position: relative;
}
.menulist li a::after
{
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: width 0.5s ease;
    background-color: white;
}
.menulist li a:hover::after
{
    width: 100%;
}
.menulist li a:hover
{
    color: white;
}
.icons-container 
{
    height: 35px;
    width: 35px;
    background-color: #ffb300;
    border: 1px solid #000;
}
.icons i
{
    color: #3a1916;
}
.icons-container:hover
{
    background-color: #ffd572;
}
.icons i:hover{
    color: black;
}