@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');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}
:root{
    --primary-color: #BB9D5C;
    --black-color: #000000;
    --white-color: #ffffff;
    --sections-bg-color: #080808;
    --header-sticky-color: #1c1c1c;
    --form-bg-color: #00000000;
}
body {
    position: relative;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}
a {
    text-decoration: none;
}
figure {
    margin: 0;
    padding: 0;
}
.btn:focus {
    outline: none;
}
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}
a,button{
    display: inline-block;
}
button:focus {
    outline: none;
    box-shadow: none;
}
select{
    cursor: pointer;
}
.btn:focus {
    outline: none;
    box-shadow: none;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** All main content start**************************/
/* header css start */
.main-header{
    width: 100%;
}
.main-navbar{
    width: 100%;
    padding: 5px;
    background: var(--black-color);
    position: relative;
    top: 10px;
    border-radius: 15px;
    left: 0;
}
.Logo{
    width: 150px;
}
.navbar-nav{
    width: 100%;
    align-items: center;
    gap: 40px;
    margin-left: 20px;
}
.navbar-nav .nav-item .nav-link{
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    padding: 5px 0;
    position: relative;
    overflow: hidden;
}
.navbar-nav .nav-item .nav-link::before{
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item .nav-link:hover::before{
    width: 100%;
}
.navbar-nav .nav-item .nav-link.active{
    color: var(--primary-color);
}
.header-btns{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}
.header-btns .header-btn-1{
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    color: var(--white-color);
}
.header-btns .header-btn-1:hover{
    color: var(--primary-color);
}
.header-btns .header-btn-2{
    padding: 8px 25px;
    background: var(--primary-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.header-btns .header-btn-2:hover{
    background: var(--white-color);
    color: var(--black-color);
}
.header-sticky {
  width: 100%;
  position: relative;
  background: var(--black-color);
  transition: all 0.3s ease;
  z-index: 10;
  border: 2px solid var(--primary-color);
}

.header-sticky.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--header-sticky-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.5s ease;
  border: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-sticky.sticky{
    padding: 10px 0;
    border-radius: 0;
}
select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
/* header css start */
/* bg header hero */
.bg-header-hero{
    width: 100%;
    padding: 25% 0%;
    background: var(--sections-bg-color);
    position: absolute;
    top: -22%;
    left: 0;
    z-index: -2;
}
/* bg header hero */
/* hero section css start */
.hero-section{
    width: 100%;
    padding: 40px 0;
    position: relative;
}
.left-hero-content{
    width: 100%;
    height: 51.9vh;
    background: linear-gradient(to left,rgba(0,0,0,0.1), rgba(0,0,0,1)), url(../images/hero-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 0 40px;
    border: 2px solid var(--primary-color);
}
.left-hero-content h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
}
.left-hero-content p{
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 10px;
}
.right-hero-content{
    width: 100%;
    background: var(--form-bg-color);
    border: 2px solid var(--primary-color);
    padding: 30px 20px;
    border-radius: 15px;
}
.right-hero-content h2{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-color);
}
.custom-input-div{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--white-color);
}
.custom-input-div .custom-input{
    width: 100%;
    border: none;
    font-size: 16px;
    background: none;
    color: var(--white-color);
    box-shadow: none;
    padding: 5px 35px 5px 5px;
}
.custom-input-div .custom-input option{
    color: var(--black-color);
}
.custom-input-div i{
    width: 25px;
    height: 25px;
    font-size: 12px;
    background: var(--primary-color);
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: absolute;
    top: 5px;
    right: 5px;
}
.custom-input-div .custom-input:focus{
    border: none;
    outline: none;
    box-shadow: none;
}
.custom-input-div .custom-input::placeholder{
    color: var(--white-color);
}
.hero-form-btn{
    padding: 8px 25px;
    background: var(--primary-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.hero-form-btn:hover{
    background: var(--white-color);
    color: var(--black-color);
}
/* hero section css start */
/* about us section css start */
.about-us-section{
    width: 100%;
    padding: 40px 0;
    background: var(--sections-bg-color);
}
.about-content-box{
    width: 100%;
    padding: 0 50px 0 0;
}
.about-content-box h2{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.about-content-box h3{
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
}
.about-content-box p{
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 10px;
}
.about-btn{
    padding: 8px 25px;
    background: var(--primary-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.about-btn:hover{
    background: var(--white-color);
    color: var(--black-color);
}
.about-image-box{
    width: 100%;
    padding: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
}
.about-image-box .about-bg-image{
    border-radius: 15px;
}
/* about us section css start */
/* services section css start */
.services-section{
    width: 100%;
    padding: 40px 0;
    background: var(--sections-bg-color);
}
.service-heading{
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
.service-heading h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
}
.service-card-box{
    width: 100%;
    padding: 40px;
    background: var(--form-bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.service-card-box i{
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-card-box h2{
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
}
.service-card-box p{
    font-size: 14px;
    color: var(--white-color);
    text-align: center;
}
.service-btn{
    padding: 8px 25px;
    background: var(--primary-color);
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.service-btn:hover{
    background: var(--white-color);
    color: var(--black-color);
}
/* services section css start */
/* fleets section css start */
.fleets-section{
    width: 100%;
    padding: 40px 0;
    background: var(--sections-bg-color);
}
.fleet-heading h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 40px;
    text-align: center;
}
.main-fleets{
    width: 100%;
    margin-top: 0px;
}
.fleet-box{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.fleet-image img{
    width: 95%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    left: 11px;
    top: 7px;
}
.fleet-content{
    width: 93%;
    padding: 15px 10px;
    background: var(--primary-color);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    z-index: 1;
    bottom: 13px;
    left: 16px;
}
.fleet-content h2{
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 5px;
}
.fleet-content .fleet-para{
    font-size: 14px;
    color: var(--black-color);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--black-color);
}
.fleet-info{
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fleet-info p{
    font-size: 13px;
    color: var(--black-color);
    font-weight: 500;
}
.fleet-info p i{
    color: var(--black-color);
    margin-right: 2px;
}
.fleet-btn{
    width: fit-content;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    transition: all 0.3s ease;
}
.fleet-btn:hover{
    background: var(--white-color);
    color: var(--black-color);
}
.fleet-image{
    width: 100%;
    height: 36vh;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}
.fleetsectionbgchange{
    background: var(--white-color);
}
.fleetimageborderchange{
    border: 3px solid var(--secondary-color);
}
.main-fleetsmargin{
    margin-top: 0;
}
/* fleets section css start */
/* contact section css start */
.contact-section{
    width: 100%;
    padding: 40px 0;
    background: var(--sections-bg-color);
}
.contact-section .contact-info{
    width: 100%;
}
.contact-section .contact-info h2{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.contact-section .contact-info h3{
    font-size: 42px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
}
.contact-section .contact-info p{
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 10px;
}
.contact-section .contact-info .contact-features-info{
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 20px;
}
.contact-section .contact-info .contact-features-info .info-item{
    width: fit-content;
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact-section .contact-info .contact-features-info .info-item i{
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--black-color);
    border-radius: 5px;
    font-size: 17px;
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}
.contact-section .contact-info .contact-features-info .info-item:hover i{
    background: transparent;
    color: var(--primary-color);
}
.contact-section .contact-info .contact-features-info .info-item a{
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.contact-section .contact-info .contact-features-info .info-item a:hover{
    text-decoration: underline;
}
.contact-section .contactsocial-media-info{
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-section .contactsocial-media-info h4{
    font-size: 24px;
    font-weight: 600;
    color: var(--white-color);
}
.contact-section .contactsocial-media-info .social-icons{
    display: flex;
    gap: 15px;
    align-items: center;
}
.contact-section .contactsocial-media-info .social-icons a i{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 5px;
    color: var(--black-color);
    transition: all 0.3s ease-in-out;
}
.contact-section .contactsocial-media-info .social-icons a:hover i{
    background: var(--white-color);
    color: var(--black-color);
}
.contact-section .contact-form{
    width: 100%;
    padding: 40px;
    background: var(--form-bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
}
.contact-section .contact-form h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}
.contact-section .contact-form .contact-input-div{
    width: 100%;
    margin-bottom: 20px;
}
.contact-section .contact-form .contact-input-div .contact-custom-input{
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid var(--primary-color) !important;
    border: none;
    background: var(--form-bg-color);
    color: var(--white-color);
}
.contact-section .contact-form .contact-input-div .contact-custom-input::placeholder{
    color: var(--white-color);
}
.contact-section .contact-form .contact-input-div .contact-custom-input:focus{
    border-bottom: 1px solid var(--primary-color) !important;
    border: none;
    box-shadow: none;
    outline: none;
}
.contact-section .contact-btn{
    padding: 10px 25px;
    color: var(--black-color);
    background: var(--primary-color);
    text-align: center;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.contact-section .contact-btn:hover{
    color: var(--black-color);
    background: var(--white-color);
}
/* contact section css start */
/* footer section css start */
.footer-section{
    width: 100%;
    padding: 40px 0 0;
    background: var(--sections-bg-color);
    border-top: 1px solid var(--primary-color);
}
.footer-left-content{
    width: 100%;
    padding: 0 0px;
}
.footer-left-content .Footer-logo{
    max-width: 250px;
    margin-bottom: 20px;
}
.footer-left-content p{
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer-social-media{
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer-links{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.footer-links h2{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.footer-links ul{
    margin-left: 3px;
}
.footer-links ul li{
    list-style: disc;
    margin-bottom: 5px;
    margin-left: 15px;
}
.footer-links ul li a{
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    transition: all 0.3s ease;
}
.footer-links ul li::marker{
    color: var(--primary-color);
}
.footer-links ul li a:hover{
    color: var(--primary-color);
}
.footer-services{
    width: 100%;
    margin-left: 0px;
}
.footer-services h2{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.footer-services ul{
    margin-left: 21px;
}
.footer-services ul li{
    list-style: disc;
    margin-bottom: 5px;
}
.footer-services ul li a{
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    transition: all 0.3s ease;
}
.footer-services ul li a:hover{
    color: var(--primary-color);
}
.footer-services ul li::marker{
    color: var(--primary-color);
}
.footer-contact{
    width: 100%;
}
.footer-contact h2{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.footer-contact p{
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 5px;
}
.footer-contact p a{
    color: var(--white-color);
    transition: all 0.3s ease;
}
.footer-contact p a:hover{
    color: var(--primary-color);
}
.footer-bottom{
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid var(--primary-color);
    margin-top: 20px;
}
.footer-bottom-links{
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}
.footer-bottom-links ul{
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-bottom-links ul li a{
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.3s ease;
    font-weight: 500;
}
.footer-bottom-links ul li a:hover{
    color: var(--primary-color);
}
.footext p{
    font-size: 16px;
    color: var(--white-color);
}
/* footer section css start */
/* inner pages banner css */
.banner-section{
    width: 100%;
    padding: 0px 0;
    height: 30vh;
    text-align: center;
    border-bottom: 1px solid var(--primary-color);
}
.banner-section h2{
    font-size: 52px;
    font-weight: 600;
    color: var(--white-color);
    margin-top: 90px;
}
.breadcrumb{
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.breadcrumb-item a{
    color: var(--white-color);
}
.breadcrumb-item + .breadcrumb-item::before{
    color: var(--white-color);
}
.breadcrumb-item.active{
    color: var(--primary-color);
    font-weight: 700;
}
.bg-header-inner{
    width: 100%;
    padding: 19% 0% 19%;
    background: var(--sections-bg-color);
    position: absolute;
    top: -22%;
    left: 0;
    z-index: -1;
}
/* inner pages banner css */
/************************** All main content end **************************/

/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 481px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 480px) {}