*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-family: "Inter", sans-serif;
}
/* Header top */
.header_top{
    background: transparent;
    padding: 10px 0;
}
.header_top_left_social a{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 0 2px 0 0;
    transition: 0.50s ease;
}
.header_top_left_social a:hover{
    color: #00ace5;
}
.header_top_right_col i{
    color: #fff;
    font-size: 16px;
}
.header_top_right_col a{
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: 0.50s ease;
}
.header_top_right_col a:hover{
    color: #00ace5;
}
.header_top_right_contact{
    display: flex;
    align-items: center;
    justify-content: end;
}
.header_top_border{
    padding: 0 0 0 10px;
}

/* Header */
.header_main{
    background-color: transparent;
    padding: 10px 0;
}
.header_logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.header_menu ul{
    padding: 0;
    margin: 0;
}
.header_menu ul li{
    list-style-type: none;
    display: inline-block;
    padding: 0 0 0 20px;
}
.header_menu ul li a{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: 0.50s ease;
}
.header_menu ul li a:hover{
    color: #00ace5;
}
.active_menu{
    color: #00ace5 !important;
}
.header{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
    background: linear-gradient(to bottom, black, transparent);
    padding: 10px 0;
}
/* Header */



/* Banner */


/*.banner_slide_col img{*/
/*    height: 100vh;*/
/*    width: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.banner_heading h1{*/
/*    text-transform: capitalize;*/
/*    font-size: 40px;*/
/*    font-weight: bold;*/
/*    color: #fff;*/
/*    font-family: "Inter", sans-serif;*/
/*}*/
/*.banner_subheading p{*/
/*    color: #fff;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*}*/
/*.banner_btn1{*/
/*    text-decoration: none;*/
/*    text-transform: capitalize;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    color: #fff;*/
/*    background: #00ace5;*/
/*    display: inline-block;*/
/*    padding: 8px 24px;*/
/*    border-radius: 40px;*/
/*    transition: 0.50s ease;*/
/*}*/
/*.banner_btn1:hover{*/
/*    background-color: #1e201e;*/
/*    color: #fff;*/
/*}*/
/*.banner_btn2{*/
/*    text-decoration: none;*/
/*    text-transform: capitalize;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    color: #1e201e;*/
/*    background: #fff;*/
/*    display: inline-block;*/
/*    padding: 8px 24px;*/
/*    border-radius: 40px;*/
/*    margin: 0 0 0 4px;*/
/*    transition: 0.50s ease;*/
/*}*/
/*.banner_btn2:hover{*/
/*    background: #00ace5;*/
/*    color: #fff;*/
/*}*/
/*.banner_buttons{*/
/*    padding: 10px 0 0 0;*/
/*}*/
/* Banner */


/***************  Banner Changed *******************/

.banner_sec{
     
}
.banner_main{
       padding-top: 140px;
    padding-bottom: 230px;
    /* background: skyblue; */
    /* height: 700px; */
    overflow: hidden;
    /*background: skyblue;*/
}
.banner_slide_info{
    width: 60%;
    background: #000000a3;
    padding: 25px;
    margin: auto;
    border-radius: 10px;
    color: white;
    position:relative;
}
.banner_slide_info h1{
     font-size: 25px;
    font-weight: 600;
}

.banner_sec video {
    position: absolute;
    /*height: 100%;*/
    top: 0;
    left: 0;
    width: 100%;
}


/*Booking form start*/
.booking_form_main{
    background: url(../images/experiencebg.png) no-repeat center;
    background-size: cover;
    padding: 60px 0 40px 0;
    background-size: cover;
}
.form_booking_heading h4{
    /*text-transform: capitalize;*/
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}
.book_form_lable {
    color: #fff;
    font-size: 16px;
}
.bookform1{
    font-size: 17px;
    font-weight: 400;
    color: #fff !important;
    background: transparent !important;
    padding: 10px 10px;
    border: none !important;
    border-radius: 0 !important;
    color-scheme: dark;
    border-bottom: 1px solid #ffffff69 !important;
}               
.bookform1:focus{
    outline: 0 !important;
    box-shadow: none!important;
    border-bottom: 1px solid #00ace5 !important;
}
.bookform1::placeholder{
    color: #eff3fd;
    font-size: 14px;
}
.book_sub_btn{
    background: #131a1b;
    padding: 8px 24px;
    color: #fff;
    border: 1px solid #343434 !important;
    border-radius: 20px;
    width: 100%;
    transition: 0.50s ease;
}
.book_sub_btn:hover{
    background: #00ace5;
}
 /* Styling for error messages */
        .invalid-feedback {
            display: block;
            font-size: 12px;
            color: red;
            margin-top: 5px;
        }
        .is-invalid {
            border-color: red;
        }
        
/* Style the select dropdown */
  .form-select.bookform1 {
    background-color: #111819; /* Dark background */
    color: #fff; /* White text */
    border: 1px solid #555; /* Optional border color */
  }

  /* Style the options */
  .form-select.bookform1 option {
    background-color: #111819; 
    color: #fff;
  }

  /* Optional hover effect for the dropdown */
  .form-select.bookform1:hover {
    border-color: #777; /* Highlight border on hover */
  }

  /* Optional focus effect */
  .form-select.bookform1:focus {
    outline: none;
    border-color: #aaa; /* Highlight border on focus */
    box-shadow: 0 0 5px #555; /* Optional shadow effect */
  }        
        
        
      
        
/*.booking_form .nav-link.active {*/
/*    background: #00ace5 !important;*/
/*    color: #fff !important;*/
/*    border-radius: 20px !important;*/
/*    border: none !important;*/
/*}        */
        
        
/*.booking_form .nav-tabs .nav-link {*/
/*    color: #fff !important;*/
/*}        */
/*.booking_form .nav-tabs .nav-link:hover{*/
/*    border: none !important;*/
/*}        */
/*.booking_form .nav-link:focus-visible {*/
/*    box-shadow: none !important;*/
/*}        */
        
/*.booking_form .nav-link:focus {*/
/*    border-color: transparent !important;*/
/*}        */
        
.booking_form .nav-link {
    border: none;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 0 5px;
    font-size: 17px;
    background-color: transparent; /* Light gray background */
    color: #fff; /* Dark text */
    /*border: 1px solid #fff;*/
    transition: all 0.3s ease; /* Smooth transition for background, color, and box-shadow */
  }
 /* Active button styles */
  .booking_form .nav-link.active {
    background-color: #00ace5; /* Blue background */
    color: white; /* White text */
    border: none !important;
  }

  /* Hover effects */
  .booking_form .nav-link:hover {
    background-color: #00ace5; /* Darker blue */
    color: white; /* White text */
  }       
        
   /* Style the entire select */
  .custom-select {
    font-size: 15px;
    margin-top: 3px;
    color: #7e8389 !important;
  }
 .bookform1::placeholder{
     opacity: 50%;
 }    
        
        
        
/* booking starts */

/* about us */
.about_main{
    background: #eff3fd;
    padding: 60px 0;
    /*padding-top:150px;*/
}
.about_left_text h5{
    font-size: 25px;
    font-weight: 600;
    color: #1e201e;
    position: relative;
}
.about_left_text h5::after{
    position: absolute;
    content: "";
    background: url(/assets/images/car1.png)no-repeat center !important;
    width: 78px !important;
    height: 36px !important;
    top: -3px;
    left: 104px;
}
.about_left_heading h2{
    text-transform: capitalize;
    font-size: 35px;
    font-weight: bold;
    color: #1e201e;
}
.about_left_heading h2 span{
    color: #00ace5;
}
.about_text p{
    color: #1e201e;
    font-size: 15px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.about_btn1{
  text-decoration: none;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #00ace5;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 40px;
  margin: 20px 0 0 0;
  transition: 0.50s ease;
}
.about_btn1:hover{
    background-color: #192026;
    color: #fff;
}
.about_btn2 i{
    color:#1e201e;
    background-color: #fff;
    padding: 5px 6px 5px 4px;;
    border-radius: 50%;
    font-size: 15px;
    /* display: inline-block; */
}
.about_btn2{
    text-decoration: none;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #1e201e;
  display: inline-block;
  padding: 6px 10px 6px 5px;
  border-radius: 40px;
  margin: 20px 0 0 5px;
  transition: 0.50s ease;
}
.about_right img{
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 20px;
}
.happy_customers_counter_main{
    background: #00ace5;
    padding: 10px 10px;
    border-radius: 20px;
    display: inline-block;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}
.happy_customers{
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}
.customer_text{
    text-transform: capitalize;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
}
/* about us */

/* fleets */
.our_fleets{
    padding: 60px 0;
    position: relative;
}
.our_fleets_text h5{
    font-size: 26px;
    font-weight: 600;
    color: #1e201e;
    position: relative; 
}
.our_fleets_text h5::after{
    position: absolute;
  content: "";
  background: url(/assets/images/car2.png)no-repeat center !important;
  width: 78px !important;
  height: 36px !important;
  top: -4px;
  left: 118px;
}
.our_fleets_heading h2{
  font-size: 35px;
  font-weight: bold;
  color: #1e201e;
}
.our_fleets_heading h2 span{
    color: #00ace5;
}
.fleets_slider_col img{
    width: 300px !important;
    height: auto;
    object-fit: cover;
}
.fleets_slider_col {
    background: #f8faff;
    padding: 20px 20px;
    border: 1px solid #ECF2FF;
    border-radius: 20px;
    transition: 0.50s ease;
}

.fleets_slider_col_heading h4{
    text-transform: capitalize;
    font-size: 24px;
    color: #1e201e;
    font-weight: bold;
}
.fleets_slider_col_description p{
    color: #1e201e;
  font-size: 17px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.fleets_btn1{
    text-decoration: none;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #00ace5;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 40px;
  margin: 10px 0 0 0;
  transition: 0.50s ease;
}
.fleets_btn1:hover{
    background: #03346e;
}
.fleets_btn2{
    text-decoration: none;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #1e201e;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 40px;
  margin: 10px 0 0 4px;
  transition: 0.50s ease;
}
.fleets_btn2:hover{
    background: #03346e;
}
.fleets_footer{
    display: flex;
    padding: 20px 0 0 0;
}
.fleets_price p{
    font-size: 15px;
    font-weight: bold;
    color: #1e201e;
    border-radius: 20px;
}
.fleets_price{
    padding: 12px 0 0 56px;
}
.fleets_slider{
    padding: 25px 0 0 0;
}
.fleets_slider .owl-dots{
    display: none;
}
.fleets_slider .owl-nav{
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}
/*.fleets_slider .owl-prev{*/
/*    background: url(../images/arrowleft.png) no-repeat center !important;*/
/*    width: 42px !important;*/
/*    height: 42px !important;*/
/*}*/
/*.fleets_slider .owl-next{*/
/*    background: url(../images/arrowright.png) no-repeat center !important;*/
/*    width: 42px !important;*/
/*    height: 42px !important;*/
/*}*/
/*.fleets_slider .owl-prev span{*/
    /*display: none!important;*/
    /*font-weight: bold;*/
    /*background: #000;*/
    /*color: #fff;*/
    /*font-size: 30px;*/
    /*padding: 5px 10px;*/
    /*border-radius: 50%;*/
/*}*/
.fleets_slider .owl-nav button {
    background: #1e201e !important;
    color: #fff !important;
    width: 35px !important;
    height: 35px !important;
    /*font-size: 20px !important;*/
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100% !important;
    transition: 0.50s ease;
}
.fleets_slider .owl-nav button:hover{
    background: #00ace5 !important;
}
.fleets_slider .owl-prev span {
    font-size: 27px !important;
    margin-right: 3px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3px;
}
.fleets_slider .owl-next span {
    font-size: 27px !important;
    margin-right: -2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3px;
}


/*.fleets_slider .owl-next span{*/
/*    display: none!important;*/
/*}*/
.hire_option_type a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #1e201e;
    border: 1px solid #dadada;
    padding: 5px 5px;
    border-radius: 20px;
}
/* fleets */


/* all fleets */
.all_fleets_heading h2{
    font-size: 35px;
  font-weight: bold;
  color: #1e201e;
}
.all_fleets_heading h2 span{
    color: #00ace5;
}
.all_fleets {
    background: #f8faff;
    padding: 60px 0 80px 0;
    position: relative;
}
.all_fleet_car_layer{
    position: absolute;
    top: 0;
    left: 0;
}
.all_fleet_car_layer img{
    width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 12%;
}
.all_fleets_text p{
    color: #1e201e;
    font-size: 17px;
    font-weight: 400;
    font-family: "Poppins", sans-serif; 
}
.search1{
    color: #1e201e;
    font-size: 15px;
    font-weight: 500;
    border-radius: 40px;
    height: 50px;
}

.all_fleets_searchbar{
    position: relative;
    display: block;
    margin: auto;
    width: 70%;
}

.all_fleets_searchbar i{
    color: #fff;
    background-color: #03346e;
    padding: 10px 10px;
    border-radius: 50%;
    transition: 0.50s ease;
}
.all_fleets_searchbar i:hover{
    background-color: #00ace5;
}
.search_btn {
    position: absolute;
    right: 13px;
    top: 13px;
    text-decoration: none;
}
.fleets_menu{
    padding: 25px 0 0 0;
    position: relative;
    z-index: 9;
}
.fleets_menu .nav-tabs .nav-link.active{
    color: #00ace5;
    background: transparent;
    border-bottom: 2px solid #00ace5;
}
.fleets_menu .nav-tabs .nav-link{
    border-color: transparent;
    color: #1e201e;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
}
.menu_car_slider_col img{
    width: 230px !important;
    height: auto;
    object-fit: cover;
}
.menu_car_slider_col{
    background: #fff;
    padding: 20px 20px;
    border-radius: 20px;
    border: 1px solid #ECF2FF;
    /* box-shadow: 0 2px 5px rgb(0 0 0 / 0.1); */
    position: relative;
    transition: 0.50s ease;
}
.menu_car_slider{
    padding: 20px 0 0 0;
}
.menu_car_col_heading h6{
    font-size: 18px;
    color:#1e201e;
    font-weight: 500;
}
.menu_car_col_quote p{
    color: #1e201e;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.menu_col_btn1 {
    text-decoration: none;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #1e201e;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 40px;
  margin: 10px 0 0 0;
  transition: 0.50s ease;
}
.menu_col_btn2{
    text-decoration: none;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #00ace5;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 40px;
  margin: 10px 0 0 4px;
  transition: 0.50s ease;
}
.menu_car_price{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: #00ace5;
    padding: 5px 5px;
    border-radius: 20px;
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 8px;
}
.menu_car_slider .owl-dots{
    position: absolute;
    bottom: -50px;
    right: 0;
}
.menu_car_slider .owl-dot.active span{
    background: #00ace5 !important;
}
.menu_car_slider .owl-dots .owl-dot span{
    margin: 5px 3px !important;
}
.menu_car_slider .owl-nav{
    position: absolute;
    bottom: -55px;
    left: 0;
}
.menu_car_slider .owl-nav button {
    background: #1e201e !important;
    color: #fff !important;
    width: 30px !important;
    height: 30px !important;
    /*font-size: 20px !important;*/
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100% !important;
    transition: 0.50s ease;
}
.menu_car_slider .owl-nav button:hover{
    background: #00ace5 !important;
}
.menu_car_slider .owl-prev span {
    font-size: 20px !important;
    margin-right: 2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px;
}
.menu_car_slider .owl-next span {
    font-size: 20px !important;
    margin-right: -2px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px;
}
/* all fleets */

/* key features */
.key_features_main{
    padding:  60px 0;
    background: #EBF4F6;
}
.key_features_text h5{
  font-size: 25px;
  font-weight: 600;
  color: #1e201e;
  position: relative;
}

.key_features_text h5::after {
    position: absolute;
    content: "";
    background: url(/assets/images/car1.png)no-repeat center !important;
    width: 78px !important;
    height: 36px !important;
    top: -4px;
    left: 144px;
}
.key_features_heading h2{
    font-size: 35px;
    font-weight: bold;
    color: #1e201e;
}
.key_features_heading h2 span{
    color: #00ace5;
}
.key_feature_icon i{
    font-size: 30px;
    color: #fff;
    background: #00ace5;
    padding: 12px 12px;
    border-radius: 50%;
}
.key_feature_col{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px 10px;
    border: 1px solid #ECF2FF;
    border-radius: 20px;
}
.key_fea_info{
    padding: 10px 0 0 10px;
}
.key_fea_col_heading h4{
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    color: #1e201e;
}
.key_fea_col_text p{
    font-size: 16px;
    font-weight: 400;
    color: #1e201e;
}
.key_feature_items{
    padding: 20px 0 0 0;
}
/* key features */

/* why choose us */
.why_choose_left_col img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.why_choose_us{
    background: #192026;
}
.why_choose_right_text h5{
    font-size: 25px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.why_choose_right_text h5::after {
    position: absolute;
    content: "";
    background: url(/assets/images/car1.png)no-repeat center !important;
    width: 78px !important;
    height: 36px !important;
    top: -3px;
    left: 179px;
  }
.why_choose_right_col{
    padding: 60px 0 0 30px;
}
.why_choose_right_heading h2{
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}
.why_choose_right_heading h2 span{
    color: #00ace5;
}
.why_choose_right_col_subpara{
    padding: 10px 0 0 0;
}
.why_choose_right_col_subpara p{
    color: #fff;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.our_services_heading h5{
    font-size: 25px;
  font-weight: 600;
  color: #fff;
}
.serice_col i{
    color: #fff;
    font-size: 30px;
}
.serice_col{
    display: flex;
    align-items: center;
}
.service_col_name h5 a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    transition: 0.50s ease;  
}
.service_col_name h5 a:hover{
    color: #00ace5;
    text-decoration: underline;
}
.service_col_name{
    padding: 8px 0 0 10px;
}
.service_btn {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #1e201e;
    background: #fff;
    display: inline-block;
    padding: 6px 24px;
    margin: 25px 0 0 0;
    border-radius: 20px;
    transition: 0.50s ease;
}
.service_btn:hover{
    color: #fff;
    background: #00ace5;
}
/* why choose us */

/* blogs */
.blogs{
    padding: 60px 0;
    background: #f8faff;
}
.blogs_text h5{
    font-size: 24px;
  font-weight: 600;
  color: #1e201e;
  position: relative;
}
.blogs_text h5::after {
    position: absolute;
    content: "";
    background: url(/assets/images/car1.png)no-repeat center !important;
    width: 78px !important;
    height: 36px !important;
    top: -6px;
    left: 137px;
  }
.blogs_heading h2{
    font-size: 35px;
  font-weight: bold;
  color: #1e201e;
}
.blogs_heading h2 span{
    color: #00ace5;
}
.blog_col img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
}
.blog_col_text p{
    font-size: 16px;
  font-weight: 400;
  color: #1e201e;
}
.blog_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 0 0;
    border-bottom: 1px  dotted #dadada;
}
.blog_col_date p{
    font-size: 14px;
    font-weight: 400;
    color: #1e201e;
}
.blog_col_heading h4{
    font-size: 18px;
  color: #1e201e;
  line-height: 25px;
  font-weight: 500;
  padding: 5px 0 0 0;
}
.blog_btn{
    text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #1e201e;
  display: inline-block;
  padding: 6px 20px;
  margin: 10px 0 20px 0;
  border-radius: 20px;
  transition: 0.50s ease;
}
.blog_btn:hover{
    color: #fff;
    background-color: #00ace5;
}
.blog_col_info {
    background: #fff;
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
}
.blog_col{
    border: 1px solid #ECF2FF;
    border-radius: 0 0 10px 10px;
}
.blog_item{
    padding: 20px 0 0 0;
}
/* blogs */

/* footer */
.footer{
    background: #1e201e;
    padding: 60px 0 0px 0;
}
.footer_logo img{
    width: 250px;
    height: auto;
    object-fit: cover;
}
.footer_about p{
    color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.footer_social_heading h5{
    color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.footer_social a{
    color: #00ace5;
    font-size: 20px;
    text-decoration: none;
    padding: 0 2px 0 0;
    transition: 0.50s ease;
}
.footer_social a:hover{
    color: #fff;
}
.footer_menu_heading h5{
    font-size: 20px;
  color: #fff;
  line-height: 25px;
  font-weight: 500;
}
.footer_menu ul{
    padding: 0;
    margin: 0;
}
.footer_menu ul li{
    list-style-type: none;
    padding: 0 0 5px 0;
}
.footer_menu ul li a{
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    transition: 0.50s ease;
}
.footer_menu ul li a:hover{
    color: #00ace5;
}
.footer_contact_quote a{
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: 0.50s ease;
}
.footer_contact_quote{
    padding: 0 0 0 8px;
}
.footer_contact_col i{
    color: #fff;
    font-size: 18px;
}
.footer_contact_col{
    display: flex;
}
.footer_contact_quote a:hover{
    color: #00ace5;
}
.footer hr{
    color: #fff;
}
.copyright_col p{
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}
.copyright_col p a{
    text-decoration: none;
    color: #00ace5;
}
/* footer */

/* mobile menu */
.hamburger_menu i{
    color: #fff;
    font-size: 25px;
}
.hamburger_menu{
    text-decoration: none;
}
.mobile_logo img{
    width: 200px;
    height: auto;
    object-fit: cover;
}
.mobile_menu ul{
    padding: 0;
    margin: 0;
}
.mobile_menu ul li{
    list-style-type: none;
    padding: 0 0 15px 0;
}
.mobile_menu ul li a{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    transition: 0.50s ease;
}
.mobile_menu ul li a:hover{
    color: #00ace5;
}
.mob_active_menu{
    color: #00ace5 !important;
}
.mobile_btn{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #00ace5;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    margin: 21px 0 0 0;
    transition: 0.50s ease;
}
.mobile_btn:hover{
    background: #1e201e;
}
.mobile_btn1{
    text-decoration: none;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #1e201e;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 40px;
  margin: 5px 0 0 0;
  transition: 0.50s ease;
}
.mobile_social a{
    text-decoration: none;
    font-size: 20px;
    color: #192026;
    transition: 0.50s ease;
}
.mobile_social a:hover{
    color: #00ace5;
}
.mobile_social{
    margin: 4 0 0 -5px;
}



















/* about start*/



/* About page starts */

/* About banner */
.about_banner{
    background: linear-gradient(to top, rgb(0, 0, 0, 0.2), rgb(0, 0, 0, 0.4)), url(../images/aboutbanner.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}
.innerpage_name h6{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
}
.inner_page_heading h1{
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}
.banner_menu ul{
    padding: 0;
    margin: 0;
}
.banner_menu ul li{
    list-style-type: none;
    display: inline-block;
    padding: 0 10px 0 0;
}
.banner_menu ul li a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: 0.50s ease;
}
.banner_menu ul li a:hover{
    color: #00ace5;
}
.menu_divide{
    color: #fff;
}
.active_inner_menu{
    color: #00ace5 !important;
    border-bottom: 2px solid #00ace5;
    padding: 0 0 0 4px;
}
.banner_menu i{
    color: #fff;
    font-size: 20px;
}
/* About banner */

/* About section 1 */
.about_section1{
    padding: 60px 0;
    background-color: #f8faff;
}
.about_sec1_heading h2{
    font-size: 35px;
    font-weight: bold;
    color: #1e201e;
    line-height: 45px;
}
.about_sec1_heading h2 span{
    color: #00ace5;
    /* font-style: italic; */
}
.about_sec1_paragrapgh p{
    color: #1e201e;
    font-size: 15px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.about_sec1_mid img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}
.about_right_counter{
    background: #192026;
    padding: 20px 20px;
    border-radius: 20px;
}
.count_num{
    font-size: 70px;
    font-weight: 600;
    color: #fff;
}
.counter_quote {
    font-size: 25px;
    color: #fff;
}
.about_sec1_right_image img{
    width: 100%;
    height: 237px;
    object-fit: cover;
    border-radius: 20px;
}
.about_sec1_right_image{
    margin-top: 20px;
}
.about_sec1_btn{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #00ace5;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    margin: 20px 0 0 0;
    transition: 0.50s ease;
}
.about_sec1_btn:hover{
    background: #192026;
    color: #fff;
}
/* About section 1 */


/* Experience */
.experience_main{
    background: url(../images/experiencebg.png)no-repeat center;
    background-size: cover;
    padding: 80px 0 0 0;
    height: 116vh;
}
.experience_left img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.experience_right_heading h2{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 45px;
    /*font-family: "Cormorant Infant", serif;*/
}
.experience_right_heading h2 span{
    color: #00ace5;
    
}
.experience_right_text p{
    color: #f8faff;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Poppins", sans-serif;
}
.experience_right_text{
    padding: 15px 0 0 0;
}
.exp_right_item_col img{
    width: 40px;
    height: auto;
    object-fit: cover;
}
.exp_right_item_col_head h5{
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.exp_right_item_col_head{
    padding: 10px 0 0 0;
}
.exp_right_item_col{
    border: 1px dotted #ebf4f659;
    padding: 20px 20px;
    border-radius: 10px;
}
.exp_height{
    margin: 20px 0 0 0;
}
/* Experience */



/* Luxury collection */
.luxury_collection{
    padding: 100px 0;
    background: #f8faff;
}
.luxury_collection_heading h2{
    font-size: 35px;
    font-weight: bold;
    color: #1e201e;
    line-height: 45px;
}
.luxury_collection_heading h2 span{
    color: #00ace5;
}
.lux_coll_name h5{
    font-size: 22px;
    color: #1e201e;
    font-weight: 500;
}
.lux_coll_name{
    padding: 10px 0 0 0;
}
.lux_slider_col img{
    width: 100% !important;
    height: auto;
    object-fit: cover;
    border-radius: 20px !important;
}
.lux_car_ratings i{
    color: #FABC3F;
}
.lux_car_quote p{
    color: #1e201e;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    /* padding: 0 10px; */
    font-family: "Poppins", sans-serif;
}
.lux_car_price span{
    font-size: 30px;
    color: #1e201e;
    font-weight: bold;
}
.lux_car_price {
    color: #1e201e;
    font-size: 18px;
    font-weight: 400;
}
.lux_car_btn {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #00ace5;
    display: inline-block;
    padding: 6px 22px;
    border-radius: 40px;
    margin: 10px 0 0 0;
    transition: 0.50s ease;
}
.lux_car_btn:hover{
    background: #192026;
    color: #fff;
}
.lux_slider_col{
    background: #fff;
    padding: 20px 20px;
    border-radius: 20px;
    border: 1px solid #ECF2FF;
}
.lux_coll_slider .owl-nav{
    display: none !important;
}
.lux_coll_slider .owl-dots{
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%, 0);
}
.lux_coll_slider .owl-dots .owl-dot span {
    margin: 5px 3px !important;
}
.lux_coll_slider .owl-dot.active span {
    background: #00ace5 !important;
}
/* Luxury collection */

/* testimonials */
.testimonials{
    background: url(../images/experiencebg.png)no-repeat center;
    background-size: cover;
    padding: 100px 0 60px 0;
}
.testimonial_left_name h6{
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
}
.testimonial_left_heading h2{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 45px;
    font-family: "Cormorant Infant", serif;
}
.testimonial_ratings i{
    color:#FABC3F;
}
.testimonial_message p{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    /* padding: 0 10px; */
    font-family: "Poppins", sans-serif;
}
.testimonial_message{
    padding: 10px 0 0 0;
}
.testimonial_user h4{
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}
.testimonial_user{
    padding: 0 0 0 10px;
}
.testimonial_user_main img{
    width: 40px !important;
    height: auto;
    object-fit: cover;
}
.testimonial_user_main{
    display: flex;
    align-items: center;
}
.testimonial_main .owl-dots{
    display: none !important;
}
.testimonial_right img{
    width: 100% !important;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.abt_fea_col i{
    font-size: 20px;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 10px;
    border-radius: 50%;
}
.abt_fea_name h5{
    font-size: 16px;
    color: #fff;
}
.abt_fea_name{
    padding: 15px 0 0 0;
}
/* testimonials */

/* call now */
.call_now_main{
    background-color: #192026;
    padding: 60px 0;
}
.call_now_heading h4{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 45px;
    font-family: "Cormorant Infant", serif;
}
.call_now_btn{
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 40px;
    padding: 10px 30px;
    display: inline-block;
    margin: 10px 0 0 0;
    transition: 0.50s ease;
}
.call_now_btn:hover{
    background: #00ace5;
    color: #fff;
    border: 1px solid #00ace5;
}
/* call now */


/*about end*/

/* Fleets page starts */

/* Fleets page starts */
.fleet_banner{
    background: linear-gradient(to top, rgb(0, 0, 0, 0.4
    ), rgb(0, 0, 0, 0.4)), url(../images/fleetbanner.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}
.fleets_main{
    background: #f8faff;
    padding: 60px 0;
}
.fleets_heading h2{
    font-size: 40px;
    font-weight: bold;
    color: #192026;
    line-height: 45px;
    font-family: "Cormorant Infant", serif;
}
.fleets_paragrapgh p{
    color: #1e201e;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.fleets_menu1 .nav-tabs .nav-link.active{
    color: #00ace5;
    background: transparent;
    border-bottom: 2px solid #00ace5;
}
.fleets_menu1 .nav-tabs .nav-link {
    border-color: transparent;
    color: #1e201e;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}
.menu_car_col img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.menu_car_name h4{
    font-size: 23px;
    color: #1e201e;
    font-weight: 500;
}
.menu_car_name{
    padding: 10px 0 0 0;
}
.menu_car_quote p{
    color: #1e201e;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.menu_info_col i{
    font-size: 20px;
    color: #000;
    /* background: #00ace5;
    padding: 1px 5px; */
    border-radius: 50%;
}
.menu_car_passengers_count{
    color: #1e201e;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 0 0 0 5px;
}
.menu_info_col{
    display: flex;
    align-items: center;
}
.menu_car_pricelist h3{
    font-size: 25px;
    font-weight: 600;
    color: #1e201e;
}
.menu_car_pricelist h3 span{
    font-size: 16px;
    font-weight: 400;
}
.menu_car_pricelist{
    /* padding: 10px 0 0 0; */
    margin: -10px 0 0 0;
}
.menu_car_col{
    background: #fff;
    padding: 10px 10px 20px 10px;
    border-radius: 20px;
    border: 1px solid #ECF2FF;
}
.menu_car_btn{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #00ace5;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 40px;
    margin: 0px 0 0 4px;
    transition: 0.50s ease;
}
.menu_car_btn:hover{
    background: #001F3F;
    color: #fff;
}
.menu_car_btn1{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #1e201e;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 40px;
    margin: 10px 0 0 0;
    transition: 0.50s ease;
}
.menu_car_btn1:hover{
    background: #001F3F;
    color: #fff;
}
.menu_cars_main{
    padding: 20px 0 0 0;
}
.menu_col_adj{
    margin: 20px 0 0 0;
}

/*fleets Services */
.fleets_service_text h6{
    font-style: italic;
    font-size: 21px;
}
.fleets_service_heading h2{
    font-size: 40px;
    font-weight: bold;
    color: #192026;
    line-height: 45px;
    /* font-family: "Cormorant Infant", serif; */
}
.fleets_service{
    padding: 60px 0;
}
.fleets_service_heading p{
    color: #1e201e;
    font-size: 15px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.fleets_service_heading span{
    color: #00ace5;
}
.fleet_service_item_col i{
    font-size: 25px;
    background: #fbfbfb;
    padding: 15px 15px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.2);
}
.fleets_ser_col_heading h5{
    font-size: 18px;
    color: #1e201e;
    font-weight: 600;
}
.fleets_ser_col_heading{
    padding: 20px 0 0 0;
}
.fleet_ser_col_text p{
    color: #1e201e;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.fleets_service_items{
    padding: 20px 0 0 0;
}
.fleets_service_car_layer img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.fleets_service{
    position: relative;
}
.fleets_service_car_layer{
    position: absolute;
    top: 10%;
    left: 0;
}
/*fleets Services */


/*Popular cars */
.popular_cars_main{
    background: url(../images/experiencebg.png) no-repeat center;
    background-size: cover;
    padding: 60px 0;
}
.popular_car_col img{
    width: 100% !important;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.popular_cars_heading h2{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    line-height: 45px;
}
.popular_cars_heading h2 span{
    color: #00ace5;
}
.popular_cars_para p{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.populat_car_slider{
    padding: 20px 10px;
}
.popular_cars_name h4{
    font-size: 23px;
    color: #fff;
    font-weight: 600;
}
.popular_cars_name {
    padding: 10px 0 0 0;
}
.popular_ratings i{
    color: #FABC3F;
}
.popular_ratings{
    margin-top: -10px;
}
.popular_car_quote p{
    /*margin-bottom:20px;*/
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    font-family: "Poppins", sans-serif;
}
.popular_car_col hr{
    color: #fff;
    border-style: dashed;
}
.popular_info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popular_info h5{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    font-family: "Cormorant Infant", serif;
}
.popular_info h5 span{
    font-size: 18px;
    font-weight: 500;
}
.popu_btn1{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: #1e201e;
    background: #fff;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    transition: 0.50s ease;
}
.popu_btn2{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #00ace5;
    display: inline-block;
    padding: 6px 18px;
    margin: 0 0 0 5px;
    border-radius: 40px;
    transition: 0.50s ease;
}
.popu_btn1:hover{
    background-color: #001F3F;
    color: #fff;
}
.popu_btn2:hover{
    background-color: #1e201e;
    color: #fff;
}
.popular_car_col{
    border: 1px solid #ffffff47;
    padding: 10px 10px 20px 10px;
    border-radius: 20px;
}
.populat_car_slider .owl-dots{
    position: absolute;
    bottom: -30px;
    right: 10px;
}
.populat_car_slider .owl-dots .owl-dot span {
    margin: 5px 3px !important;
}
.populat_car_slider .owl-dot.active span {
    background: #00ace5 !important;
}
.populat_car_slider .owl-nav{
    position: absolute;
    left: 0;
    bottom: -30px;
}
.populat_car_slider .owl-prev {
    background: url(../images/left-chevron.png) no-repeat center !important;
    width: 25px !important;
    height: 25px !important;
}
.populat_car_slider .owl-next {
    background: url(../images/chevron.png) no-repeat center !important;
    width: 25px !important;
    height: 25px !important;
    margin: 0 0 0 15px !important;
}
.populat_car_slider .owl-prev span{
    display: none !important;
  }
  .populat_car_slider .owl-next span{
    display: none !important;
  }
/* Fleets page ends */







/* contact page starts */
.contact_banner {
    background: linear-gradient(to top, rgb(0, 0, 0, 0.5 ), rgb(0, 0, 0, 0.5)), url(../images/contactbanner.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}
.contact_main{
    background: #f8faff;
    padding: 60px 0;
}
.contact_left_heading h2{
    font-size: 36px;
    font-weight: bold;
    color: #192026;
    line-height: 45px;
    font-family: "Cormorant Infant", serif;
}
.contact_left_para p{
    color: #1e201e;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.contact_left_col i{
    background-color: #00ace55e;
    color: #fff;
    font-size: 25px;
    padding: 10px 10px;
    border-radius: 50%;
    border: 1px solid #ECF2FF;
}
.contact_left_col_head {
    padding: 20px 0 0 0;
}
.contact_left_col_head h5{
    font-size: 22px;
    color: #1e201e;
    font-weight: 500;
}
.contact_left_col_text p{
    color: #1e201e;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.contact_left_col_text a{
    text-decoration: none;
    color: #1e201e;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.contact_left_info{
    padding: 30px 0 0 0;
}
.contact_social_heading h5{
    font-size: 20px;
    color: #1e201e;
    font-weight: 500;
}
.social_contact a{
    text-decoration: none;
}
.social_contact i{
    background-color: #00ace55e;
    color: #fff;
    font-size: 20px;
    padding: 10px 10px;
    border-radius: 50%;
    border: 1px solid #ECF2FF;
    transition: 0.50s ease;
}
.social_contact i:hover{
    background: #00ace5; 
}
.social_contact{
    padding: 10px 0 0 0;
}
.contact_right_heading h4{
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    padding: 0 0 10px 0;
}
.contact_right {
    background: #00ace5;
    padding: 25px 30px;
    border-radius: 20px;
}
.contactform1{
    font-size: 16px;
    color: #1e201e;
    font-weight: 500;
    border-radius: 40px;
    padding: 10px 14px;
    box-shadow:none !important;
}
.contact_form_btn{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #1e201e;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 40px;
    margin: 20px 0 0 0;
    transition: 0.50s ease;
}
.contact_form_btn:hover{
    background: #0b996f;
    color: #fff;
}

.callus_main{
    background: url(../images/experiencebg.png) no-repeat center;
    background-size: cover;
    padding: 60px 0;
}
.callus_left_text h4{
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}
.callus_right_text i{
    font-size: 20px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    background: #00ace5;
}
.callus_right_text p{
    color: #fff;
    font-size: 19px;
    margin-bottom: 0;
    padding: 0 0 0 10px;
}
.callus_right_text{
    display: flex;
    align-items: center;
}
.callus_right a{
    text-decoration: none;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}
/* contact page starts */


.abT_bann{
        background: linear-gradient(to top, rgb(0, 0, 0, 0.2), rgb(0 0 0 / 63%)), url(../images/img-12.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}


/*** Service Page */

.servFull_head {
    width: 70%;
    margin: auto;
}

.servFull_head h2{
    text-transform: capitalize;
    font-size: 35px;
    font-weight: bold;
    color: #1e201e;
}

.servFull_head h2 span {
    color: #00ace5;
}

.servFullCard_imggg img{
    width:100%;
}
.servFullCard_imggg{
    width:15%;
}
/*.srvflImg{*/
/*    width:8%;*/
/*}*/
.srvflCrddd{
    width:33.3%;
    margin:auto;
}
.servFull_1_crd h4{
    margin-top:10px;
    font-weight:600;
}

/*Serv 2*/

.servDesc_sec{
         background: url(../images/servDesk_back.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
    background-color: #171c1ef0;
    background-blend-mode: overlay;
     background-attachment:fixed;
}   
.servDesc_div{
    position:relative;
}


.servDesc_txt{
    width:55%;
}
.servDesc_txt h3{
    color:white;
}
.servDesc_txt p{
    color:white;
     margin-top: 20px;
}
.servDesc_txt button{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #00ace5;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    /*margin: 20px 0 0 0;*/
    transition: 0.50s ease;
    border:none;
}

.servDesc_div_imgg img{
    width:100%;
}
.servDesc_div_imgg{
     width: 50%;
    position: absolute;
    transform: rotateY(180deg);
    top: -70px;
    right: -55px;
}


/*Serv 3*/

.servBook_txt h2{
       text-transform: capitalize;
    font-size: 35px;
    font-weight: bold;
    color: #1e201e;
}
.servBook_txt h2 span {
    color: #00ace5;
}

.servBook_txt button{
   
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #00ace5;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    /*margin: 20px 0 0 0;*/
    transition: 0.50s ease;
    border:none;
}

/*My Styles(Sourav)*/

    ::placeholder {
        color: white !important;
    }

     :root{
        --primary-color: #000;
        --secondary-color: #fff;
        --primary-font: 'Orbitron', sans-serif;
    }

    .ptbl15{
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .book-btn{
        display: inline-block;
        padding: 0.625rem 1.875rem;
        line-height: 1.5625rem;
        background-color: var(--primary-color);
        /* border: 0.1875rem solid var(--primary-color); */
        color: var(--secondary-color);
        font-size: 0.975rem;
        text-decoration: none;
        font-family: var(--primary-font);
        text-transform: capitalize;
        position: relative;           
        overflow: hidden;  
        -webkit-transition: all .4s ease-out 0s;
        -o-transition: all .4s ease-out 0s;
        -moz-transition: all .4s ease-out 0s;
        transition: all .4s ease-out 0s;
        z-index: 1;
        isolation: isolate;
    }

    .book-btn::before {
        content: "";
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #6e1b23; /* Hover color */
        z-index: -1;
        transition: right 0.4s ease;
        z-index: -1;
    }

    .book-btn:hover::before {
        right: 0;
    }

    .book-btn:hover {
        color: #fff; 
    }            

    .car-info h2 span{
        color: #00ace5 !important;  
    }

    .appointment-wrapper h2{
        color: #00ace5 !important;
    }

    .car-banner {
        background: linear-gradient(to left, rgba(0,0,0,0.1), rgba(0,0,0)),url('../images/bugati_veyron_ban.jpg') center/cover no-repeat;
        position: relative;
        padding: 283px 0;
    }
    .overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        clip-path: polygon(0 0, 78% 0, 50% 100%, 0 100%);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .banner-title {
        color: white;
        font-size: 3.5rem;
        font-family: 'Orbitron', sans-serif;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        /* text-align: left; */
        z-index: 2;
        position: relative;
    }
    .banner-clip-extension {
        height: 50px;
        background-color: #0ff;
        clip-path: polygon(0 0, 100% 100%, 0 100%);
        position: absolute;
        width: 100%;
        z-index: 10;
        bottom: 0;
    }

    .appointment-wrapper {
        position: sticky;
        top: 20%;
        z-index: 1000;
    }

    .gallery .container h2 span{
        color: #00ace5 !important;
    }

    .service-title{
        background-color: #00ace5 !important;
    }
    /* =============== car-info ================= */
    .car-info{
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 31%;
    }

    .car-info-b{
        /* border: 1px solid #fff; */
        backdrop-filter: blur(8px);
        color: white;
    }

    .specs-more ul li{
        padding-block: 5px;
        transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease; 
        position: relative;
    }

    .specs-more ul li:hover{
        transform: translateX(3px);
        /* color: orange; */
    }

    .specs-more ul li::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: #0ff;
        transition: width 0.4s ease-in-out;
    }

    .specs-more ul li:hover::after {
        width: 50%;
    }


    input[type="date"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
        cursor: pointer;
    }

    .service-title{
        font-size: 16px !important;
    }

    /* =========== Faq Section ============= */

    .faq-section h2{
        position: relative;
    }

    .faq-section .faq-head::before{
        content: "";
        position: absolute;
        bottom: 15px;
        height: 4px;
        width: 80px;
        left: 20% !important;
        background-color: #00ace5;
        border-radius: 10px;
    }

    .faq-section .faq-head::after {
        content: "";
        position: absolute;
        bottom: 15px;
        height: 4px;
        width: 80px;
        right: 20% !important;
        background-color: #00ace5;
        border-radius: 10px;
    }

    .accordion-button .icon {
        margin-left: auto;
        font-size: 22px;
        transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed) .icon {
        content: "−";
        transform: rotate(180deg);
    }

    .accordion-button.collapsed .icon::before {
        content: "+";
    }

    .accordion-button:not(.collapsed) .icon::before {
        content: "−";
    }

    .accordion-button::after {
        display: none;
    }

    .accordion-button .icon {
        margin-left: auto;
        font-size: 24px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    /* =============== get =========== */

    .hire-contact-section {
    background: linear-gradient(to right, rgba(233, 11, 11, 0.8), rgba(20, 20, 20, 0.9)),
                url('../images/bugati_veyron_end.jpg') center center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    }

    .quote-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    }

    .cta-btn {
    display: inline-block;
    background-color: #6c757d; /* Match button style from image */
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    }

    .cta-btn:hover {
    background-color: #5a6268;
    }

    .arrow-icon {
    display: inline-block;
    margin-left: 5px;
    font-weight: bold;
    }


    .project-section {
      background: linear-gradient(to right, #00ace5 50%, rgba(0, 0, 0, 0.8) 50%);
      color: white;
      padding: 50px 0;
    }
    .project-text {
      padding: 30px;
    }
    .project-card {
      background-color: white;
      color: black;
      border: none;
      height: 100%;
    }
    .project-date {
      background-color: #c82333;
      color: white;
      display: inline-block;
      padding: 4px 10px;
      position: absolute;
      bottom: 0;
      right: 0;
      font-size: 0.8rem;
    }
    .card-img-top {
      height: 200px;
      object-fit: cover;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #00ace5;
      border-radius: 0;
    }

    .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
}

    /* =============== faq-section ===================== */

    .faq-section .banner-clip-extension{
        bottom: -20%;
    }

    
    .car-slider h2 {
        font-size: 3rem;
        font-weight: 700;
        position: relative;
        color: #111;
        margin-bottom: 3rem;
    }

    .car-slider h2::before{
        content: "";
        position: absolute;
        bottom: 25px;
        height: 4px;
        width: 80px;
        left: 40% !important;
        background-color: #00fff7;
        border-radius: 10px;
    }

    .car-slider h2::after {
        content: "";
        position: absolute;
        bottom: 25px;
        height: 4px;
        width: 80px;
        right: 40% !important;
        background-color: #00fff7;
        border-radius: 10px;
    }

    .car-slider h2::before {
        left: 50%;
        transform: translateX(-130px);
    }

    .swiper {
        min-height: 200px;
        position: relative;
        padding-bottom: 60px;
    }

    .swiper-pagination-bullet {
        background: black !important;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: black !important;
    } 

    .car-slider h2::after {
        right: 50%;
        transform: translateX(130px);
    }

    .car-slide-item {
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .car-slide-item:hover {
        transform: scale(1.03);
    }

    .car-slide-item .overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
        transition: all 0.4s ease;
        top: 100%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        clip-path: none;
    }

    .car-slide-item:hover .overlay {
        top: 0;
    }

    .car-slide-item h4 {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .car-slide-item .btn {
        border: 2px solid #fff;
        padding: 0.4rem 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .car-slide-item .btn:hover {
        background-color: #fff;
        color: #000;
    }

    .card-img-top{
        height: 200px;
        object-fit: cover;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .card-img-top.a{
        object-position: bottom;
    }

    .project-card .overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
        transition: all 0.4s ease;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        clip-path: none;
    }

    .project-card:hover .overlay {
        top: 0;
    }

    .custom-list li {
        position: relative;
        padding-left: 40px;
        margin-bottom: 12px;
        font-family: "Orbitron", sans-serif;
        list-style: none;
        font-size: 30px !important;
    }

    .custom-list li::before {
        content: "✔"; /* Or use an icon like '\2022' for bullet */
        position: absolute;
        left: 0;
        top: 0;
        color: #00ffee; /* Customize this color */
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    /*=================== blog ===============================*/
    .read-more-btn {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/*Blog Hero Section */
.hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/3802510/pexels-photo-3802510.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(26 26 26 / 34%) 0%, rgb(44 44 44 / 30%) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    /*max-width: 600px;*/
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0; 
}


.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00ace5 0%, #00ace5 100%);
    margin: 0;
    border-radius: 2px;
}

/* Blog Card Styles */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-card .card-image {
    height: 400px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.category-badge {
    background: linear-gradient(135deg, #00ace5 0%, #00ace5 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.category-badge.featured {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.meta-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.category {
    color: #00ace5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date {
    color: #6c757d;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card .card-title {
    font-size: 2rem;
    -webkit-line-clamp: 3;
}

.card-excerpt {
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    color: #00ace5;
    transform: translateX(5px);
}

.read-more-btn i {
    transition: all 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Sidebar Styles */
.sidebar-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 30px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #00ace5;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-color: #e9ecef;
}

.recent-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-date {
    font-size: 0.8rem;
    color: #6c757d;
}


/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease-out;
}

.blog-card:nth-child(2) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #00ace5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ace5;
}

.blog-card:focus,
.read-more-btn:focus,
.load-more-btn:focus,
.btn-subscribe:focus {
    outline: 2px solid #00ace5;
    outline-offset: 2px;
}

.testimonial-section .card{
    transition: all 0.3s ease;
}

.testimonial-section .card:hover{
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}


.carousel-item {
  padding-top: 20px; 
}


.quotes{
    top: 0;
    right: 5% !important;
}




.custom-carousel-btn {
  width: 50px;
  height: 50px;
  background-color: #00ace5;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}


.carousel-item .row {
  display: flex;
  flex-wrap: nowrap;
}

.carousel-item .col-md-4 {
  flex: 1 0 0%;
}



.carousel-inner {
  overflow: hidden;
}



.carousel-control-prev.custom-carousel-btn {
  left: 90px;
}

.carousel-control-next.custom-carousel-btn {
  right: 90px;
}

.custom-carousel-btn:hover {
  background-color: #008cbf;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-image: none;
  background-color: #008cbf;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.carousel-control-prev-icon::after {
  content: '‹'; /* Left arrow */
  color: #fff;
}

.carousel-control-next-icon::after {
  content: '›'; /* Right arrow */
  color: #fff;
}

.testimonial-section{
    background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.8)),url(../images/bmw_X5M/bmw-x5m-3.webp) no-repeat center center/cover;
}
















