@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
:root{
    --primary: #e1b13e;
    --body-text-color: #74787C;
    --dark-body-text-color: #ADADAD;
    --dark: #1b1b1b;
}

p{
    color: var(--body-text-color);
    font-weight: 300;
}
p a{
    color: var(--primary);
}
p a:hover{
    color: var(--body-text-color) !important;
}
p span{
    color: var(--primary);
    font-weight: 600;
}


body{
    font-family: "Fira Sans", sans-serif;
    overflow-x: hidden;
    color: #333;
}
.main-nav{
    background: #000;
    padding:0;
}
a{
    text-decoration: none;
    transition: .3s;
}
a:hover{
    color: var(--primary);
}
.header-logo{
    position: relative;
    display: flex;
    align-items: center;
}
.header-logo-bg{
    position: absolute;
    left:0;
    top:0;
    z-index:1;
    width: 100%;
    height: 100%;
    background-color: #1b1b1b;
    display: block;
    border-bottom-right-radius: 30%;
    border-right: 1px solid var(--primary);
   
}
.header-logo a{
    z-index: 1111;
}
.header-logo img{
    width: 150px;
}

.topbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #1b1b1b;
    border-bottom-left-radius: 30px;
    border-left: 1px solid var(--primary);
}
.topbar .icon-link {
    padding-right: 30px;
}
.topbar .icon-link .icon{
    width: 40px;
    height: 40px;
    color: #fff;
    background: #323232;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.topbar .icon-link .icon:hover{
    background: var(--primary);
}
.topbar .icon-link .icon i{
    font-size: 13px;
}
.topbar .icon-link a{
    color: #fff;
    font-size: 12px;
}
.topbar .icon-link a:hover{
    color: var(--primary);
}
.topbar .social-icons{
    display: flex;
    gap:15px;
}

.topbar .social-icons a{
    color: #fff;
    font-size: 19px;
}

.navbar-brand{
    
    display: none;
}
.navbar-brand img{
    width: 80px;
}

.fixed-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #000;
    animation: slideDown .4s ease;
}

.fixed-navbar .navbar-brand{
    display: block;
}
@keyframes slideDown{
    from{
        transform: translateY(-100%);
    }
    to{
        transform: translateY(0);
    }
}

.navbar .nav-link{
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 30px 0;
    margin-left: 20px;
}

.fixed-navbar .nav-link{
    padding: 0  !important;

}

.dropdown.active > .nav-link{
    color: var(--primary) !important;
}
.dropdown-item.active{
    background-color: var(--primary);
}
.dropdown-item.active:hover{
    color:#fff !important;
}
.nav-link.active,
.navbar .nav-item:hover .nav-link{
    color: var(--primary) !important;
}
.dropdown-menu{
    border-radius: 0;
    border-bottom: 2px solid var(--primary);

    display: block !important;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 
        max-height 0.5s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu{
    max-height: 500px; /* adjust if needed */
    
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}
.nav-item .dropdown-item:hover{
    color: var(--primary);  
}
.nav-item .dropdown-item:active{
    background: #000;  
}
.dropdown-toggle:after{
    margin-left:0;
    color: var(--primary);
}

.theme-btn{
    position: relative;
    border: none;
    padding: 10px 20px;
    color: #fff;
    background: var(--primary);
    border-radius: 10px;
    border-bottom: 4px solid #fff;
    z-index: 1;
    overflow: hidden;
    transition: .5s ease;

}

.theme-btn:hover{
    background-color: #fff;
    
}

.theme-btn-2{
    position: relative;
    border: none;
    padding: 10px 20px;
    color: #000;
    background: #fff;
    border: 1px solid var();
    border-bottom: 4px solid var(--primary);
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    transition: .5s ease;
}
.theme-btn-2:hover{
    background: #fff;
}

.theme-btn-dark{
    position: relative;
    border: none;
    padding: 10px 20px;
    color: #fff;
    background-color: #000;
    border: 1px solid var();
    border-bottom: 4px solid var(--primary);
    border-radius: 10px;
    z-index: 111;
    overflow: hidden;
    transition: .5s ease;
}


.theme-btn-dark:hover{
    color: #000;
    background: var(--primary);
}

.navbar-actions{
    margin-left: 100px;
}

.btn-primary{
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 2px;
    padding: 10px 20px;
}

.btn-primary:hover{
    background-color: #fff;
    border-color: #fff;
    color:#000;
    
}

.btn:active{
    background-color: #000 !important;
    border-color: #000 !important;
    color:#fff;
    
}


/* hero section */

.hero-section{
    background: linear-gradient(to right ,rgba(0,0,0,.8),rgba(0,0,0,.5) , rgba(0,0,0,0) , rgba(0,0,0,0)), url('../images/hero.jpg');
    background-position: left;
    background-size: cover;
    width: 100%;
    height: 80vh;
    
}
.hero-section .container{
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-section .content{
    width: 50%;
}
.hero-section .content .title{
    font-size: 45px;
    font-weight: 600;
    color:#fff;
}
.hero-section .content .description{
    font-size: 16px;
    color:#fff;
}

/* form control */
.form-control, .form-select{
    padding: .5rem .6rem;
    border-radius: 2px;
    outline:none;
    box-shadow: none;
}

.btn{
    border-radius: 2px;
}
.section-header{
    margin-bottom: 20px;
}
.section-header .subtitle{
    color: var(--primary);
    font-size: 15px;
    text-transform: uppercase;
    
}
.section-header .title{
    margin-top: 10px;
    font-size: 2.6rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.section-header.dark .title{
    color: #fff;
}

.section-dark{
    background-color: var(--dark);
}
.section-dark p{
    color: #fff;
}
.section-padding-50{
    padding-top:50px;
    padding-bottom: 50px;
}

/* page header */

.page-header{
    background: linear-gradient(to left, rgba(0,0,0,.8), rgba(0,0,0,.8)) , url('../images/page-header.jpg');
    background-size: cover;
    background-position: center center;
    padding: 100px 0;

}
.page-header .page-header-title{
    color: #fff;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.page-header p{
    font-size: 15px;
    color: #fff;
}

/* cta section */
.cta-section{
    background: linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.9)), url('../images/cta-section.jpg');
    background-size: cover;
    background-position: center center;
    color:#fff;
}
.cta-section p{
    color: #fff;
}
.cta-section .cta-call-btn{
    color: var(--primary);
    font-size: 2rem;
}

/* about us section  */

.about-us-img-area{
    position: relative;
}

.about-us-img-area .layer-image{
    position: absolute;
    bottom: 0;
    right:50px;
    z-index: 111;
    width: 300px;
    height: 300px;
    /* display: block; */
}
.about-us-img-area .layer-image img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-bottom-right-radius: 50px;
}

.about-us-img-area .text-layer{
    background-color: var(--primary);
    position: absolute;
    top: 20px;
    right: 50px;
    /* width: 100px; */
    /* height: 100px; */
    padding: 10px 20px;
    color:#fff;
    text-align: center;
    border-bottom-right-radius: 30px;
}
.about-us-img-area .text-layer h2{
    font-weight: 700;
}
.about-us-img-area .text-layer p{
    color:#fff;
}

/* service cards */

.serviceSlider{
    margin-top:50px;
}
.service-slider-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    margin-top:40px;
}
.services .service-button-next,
.services .service-button-prev{
    color:#fff;
    background-color: var(--primary);
    padding: 2px 20px;
    border: 1px solid #fff;
    border-radius: 3px;
    
}
.service-slider-buttons i{
    font-size: 2rem;
}
.service-card{
    min-height: 350px;
    position: relative;
    background-color: transparent;
    padding: 50px;
    z-index: 1;
    border: 1px solid var(--body-text-color);
    border-radius: 20px;
    overflow: hidden;
}
.service-card:before{
    content:"";
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    border-radius: 18px;
    transition: .4s;
    border-bottom: 4px solid var(--primary);
}

.service-card:hover:before{
    height: 0;
    
}
.service-card .service-card-header{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    z-index: 1111;
}
.service-card .service-card-header .icon{
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-card .service-card-header .icon i{
    font-size: 2rem;
}
.service-card .service-card-header .service-title{
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
    transition: .4s;

}
.service-card .service-card-body{
    margin-bottom: 40px;
    position: relative;
    z-index: 1111;
}

.service-card .service-card-body p{
    color: var(--body-text-color);
    transition: .4s;
}

.service-card:hover .service-card-header .service-title{
    color:#fff;
}
.service-card:hover .service-card-body p{
    color: #fff;
}

/* Fleet  */
.fleetSliderNav{
    margin-bottom: 20px;
}
.fleetSliderNav img{
    width: 100%;
}


.fleet-slider-thumbs{
    margin-bottom: 50px;
}
.fleetSliderNav .fleet-thumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #f7f7f7;
    padding:20px;
    /* border: 1px solid var(--primary); */
    transition: .4s;
    margin:20px;
    border-radius: 20px;
    position: relative;
}
.fleetSliderNav .slide.slick-active.slick-center .fleet-thumb:before{
    content: "";
    width: 20px;
    height: 20px;
    /* background-color: red; */
    position: absolute;
    bottom:-40px;
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-top: 20px solid var(--dark);;
    border-right: 20px solid transparent;
    transition: .4s;
}

.fleetSliderNav .fleet-thumb img{
    width: 120px;
}
.fleetSliderNav .fleet-thumb .fleet-category{
    display: block;
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
}

.fleet-category{
    color: var(--primary);
    font-size: 14px;
}
.fleetSliderNav .fleet-thumb .fleet-title{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.fleetSliderNav .slide.slick-active.slick-center .fleet-thumb{
    background-color: var(--dark);
    border-radius: 20px;
    /* box-shadow: 0 0 20px rgba(0,0,0,.2) !important;  */
}
.fleetSliderNav .slide.slick-active.slick-center .fleet-thumb .fleet-title{
    color: #fff;
}

.fleet-slider-info{
    background-color: #fff;
    padding: 40px;
    padding-bottom: 0;
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: #000;
    
}
.fleetSlider{
    border-radius: 20px;
    box-shadow: 0 20px 20px rgba(0,0,0,.1) !important;
}
.fleet-slider-info .fleet-image{
    aspect-ratio: 4/3;
    object-fit: contain;
    width: 100%;
    
}

.fleet-slider-info .fleet-title{
    font-weight: bold;
    margin-bottom: 40px;
}

.fleet-spec{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:20px;
}
.fleet-spec .fleet-spec-icon{
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.fleet-spec .fleet-spec-name{
    font-weight: bold;
    text-transform: capitalize;
}

/* specialities */

.speciality-box{
    height: 100%;
    /* margin-bottom: 30px; */
    border-left: 4px solid var(--primary);
    padding: 10px 20px;
}
.speciality-box-title{
    font-weight: 600;
    margin-bottom:10px;
    font-size: 20px;
    color: var(--primary);
}

/* our advantages */
.advantages-image{
    position: relative;
}

.experience-badge{
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 5px solid var(--primary);    
}

.experience-badge h3{
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span{
    font-size: 14px;
    color: #666;
}

.advantage-box{
    transition: .3s ease;
    background: #fff;
    border-radius: 20px;
    border-bottom: 5px solid var(--primary);
}

.advantage-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* custom accordian(faqs) */
.accordion-item{
    margin-bottom: 20px;
    border-radius: 20px !important;
    overflow: hidden;
    border: 1px solid #ddd !important;
}

.accordion-button:not(.collapsed){
    background-color: var(--primary);
}
.accordion-header button{
    font-size: 1rem;
    font-weight: 600;
}

/* service features */
.service-feature-section{
    background: var(--dark);
}

.service-feature-section p{
    color: var(--dark-body-text-color);
}

/* contact us */

.contact-info-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    border-radius: 15px;
    background: #fff;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    /* height: 100%; */
    border: 1px solid var(--primary);
}

.contact-info-box .icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--primary);
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-info-box h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-box p,
.contact-info-box a{
    font-size: 15px;
    color: #666;
    text-decoration: none;
}

.map-box{
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-box iframe{
    display: block;
}


/* footer */
footer{
    background-color: var(--dark);
    padding-top: 150px;
    padding-bottom: 0;
    color:var(--dark-body-text-color);
    font-weight: 300;
}

footer .footer-title{
    color:#fff;
    font-size: 18px;
    text-transform: capitalize;
    padding-bottom: 20px;
}

footer .footer-title:after{
    content: "";
    background-color: var(--primary);
    width: 50px;
    height: 2px;
    margin-top: 10px;
    display: block;
}
footer a{
    color: var(--dark-body-text-color);
    font-weight: 300;
}

footer ul li{
    list-style:none;
    line-height: 2.5rem;
    position: relative;
    padding-left:15px;
}
footer ul li:before{
    content:">";
    width: 10px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;

}

footer ul li:hover:before{
    color:var(--primary)
}
footer ul li:hover a{
    color: var(--primary);
}
footer .contact-info-item{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .contact-info-item .contact-icon{
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 50%;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

footer .contact-info-item:hover .contact-icon{
    rotate: 360deg;
}

.footer-bottom{
    border-top: 1px solid #3b3b3b;
    margin-top: 90px;
    padding: 20px 0;
    
}

footer .social-icons{
    padding-top: 20px;
    display: flex;
    gap: 20px;
}

footer .social-icons .icon{
    width: 40px;
    height: 40px;
    background-color: var(--body-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #000;
    transition: .2s;
}

footer .social-icons .icon:hover{
    background-color: var(--primary);
    color:#000;
    rotate: 360deg;
}

/* error pages */

.error-page{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.error-box{
    background: #fff;
    padding: 20px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}



.error-title{
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}

.error-text{
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.error-buttons{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.error-image{
    max-width: 420px;
    animation: floatCar 3s ease-in-out infinite;
}

@keyframes floatCar{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}

@media(max-width: 767px){

    .error-number{
        font-size: 100px;
    }

    .error-title{
        font-size: 34px;
    }

    .error-box{
        padding: 40px 25px;
    }

}