/* fonts  */

/* @font-face {
    font-family: 'righteousregular';
    src: url('../fonts/righteous-regular-webfont.woff2') format('woff2'),
         url('../fonts/righteous-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */

:root{
    --primary-font: "Poppins", sans-serif;
    --secondary-font:  "Righteous", sans-serif;
    --primary-color: #0D72FF;
    --secondary-color: #FA9319;
    --white: #ffffff;
    --black: #000000;
    --text-color: #000000;

    --header-scrolled-bg: rgba(0, 0, 0, 0.8);
    --background-light: #F6F6F6;
    --transparent-color: transparent;
    
        /* Shadows */
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

*{ margin: 0;
    padding: 0;
    box-sizing: border-box;}

img{max-width: 100%; height: auto; display: block;}

a{ color: var(--text-color); text-decoration: none;}

ul { list-style: none; margin: 0; padding: 0;}

button, a {
    cursor: pointer;
}

button{border: 0; background-color: navajowhite;}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--secondary-font);
    font-weight: normal;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

h2{font-size: 36px;}

p { margin-bottom: 16px;}

html{font-size: 15px;}

body {
    font-family: var(--primary-font);
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 15px;
}


/* global styles */
.btn-primary-custom{
    
}

.btn{
    font-size: 14px;
    color: var(--white);
    background-color: var(--primary-color);
}
.btn:hover{
    color: var(--white);
    background-color: var(--secondary-color);
}

.tag-line{display: inline-flex; align-items: center; gap: 5px; color:  var(--secondary-color); font-size: 12px;}
.tag-line::before{content: ""; display: block; height: 8px; width: 8px; border-radius: 50%; background-color: var(--secondary-color);}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--transparent-color);
    box-shadow: var(--box-shadow-none);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    transition: height 0.3s ease;
    width: auto;
}

.header .nav{display: flex;
    align-items: center;
    gap: 25px;
}

.nav-list {
    display: flex;
    gap: 12px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    padding:10px;
    transition: color 0.3s ease;
}

.nav-item a:hover,.nav-item a:focus {
    color: var(--secondary-color);
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding:10px;
    min-width: 150px;
    border-radius: 8px;
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    display: block;
}

.dropdown li *{
    color: var(--text-color);
}

.dropdown li a {
    display: block;
    padding: 8px10px;
}

.dropdown li a:hover, .dropdown li a:focus {
    background: var(--background-light);
}

header *{ 
        color: var(--white);
}

header.scrolled  * {
}

header.scrolled a:hover, header.scrolled a:focus {
    color: var(--secondary-color);
}

.header.scrolled {
    background: var(--header-scrolled-bg);
    box-shadow: var(--box-shadow);
}

.header.scrolled .logo img {
    height: 60px;
    width: auto;
}

header .custom-select{
    background-image: url('../images/arrow-down-white.png');
    background-color: var(--transparent-color);
    border: 0;
    padding: 6px 14px 6px 3px;
    background-position: right center;
    font-size: 14px;
}

header.scrolled .custom-select{
  background-image: url('../images/arrow-down.png');
}

.header .custom-select option{
    color: var(--text-color);
    font-size: 14px;
}

header .btn:hover, header .btn:focus {
    color: var(--white);
}

header.scrolled .btn:hover, header.scrolled .btn:focus {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding:10px;
    display: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-links{display: flex; gap: 25px; align-items: center;}
.header-links a{display: block;}
.header-links a img{ height: 19px; width: auto;}

/* home banner */

.hero-content .lead{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    font-style: normal;
}

/* Section Padding */
.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-section .hero-content {
    z-index: 2;
    color: var(--white);
}

.hero-section .hero-content h2{
    color: var(--white);
    font-family: var(--secondary-font);
    font-weight: 300;
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-section .hero-content h2 b{
    color: var(--secondary-color);
}

.hero-section .hero-content p{
    margin-bottom: 40px;
    font-size: 18px;
}

/* Slick Slider specific for Hero */
.slick-slider-hero .slick-list,
.slick-slider-hero .slick-track {
    height: 100%;
}

.slick-slider-hero .hero-slide {
    background-size: cover;
    background-position: center;
    height: 100vh !important;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-slider-hero .hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .slick-slider-hero {
    position: relative;
    z-index: 2;
}

.hero-section .slick-controls-wrapper {
    position: absolute;
    right: 30px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    padding: 40px 0;
}

.hero-section .slick-controls-wrapper .slick-dots {
    position: relative;
    z-index: 2;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section .slick-controls-wrapper .slick-dots li {
    margin: 0 0;
}

.hero-section .slick-controls-wrapper .slick-dots li button:before {
    display: none;
}

.hero-section .slick-controls-wrapper .slick-dots li button{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--white);
    position: relative;
}

.hero-section .slick-controls-wrapper .slick-dots li.slick-active button{
    background-color: var(--primary-color);
}

.hero-section .slick-controls-wrapper .slick-dots li.slick-active button::after{
    content: "";
    width: 100% ;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.8);
    border: solid 1px var(--primary-color);
    border-radius: 50%;

}


/* slick dots */

.slick-dots li button{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--white);
    position: relative;
    font-size: 0;
}

.slick-dots li.slick-active button{
    background-color: var(--primary-color);
}


/*Rental Section*/

.Rental-section {
    background: url(../images/home-section-2.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}
.Rental-section::before {
    content: "";
    position: absolute;
    background-color: #000;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.Rental-section > *{
    position: relative;
    z-index: 2;
}

/*Choose Us Section*/

.section-why-choose-us{
    background-image: url(../images/bg-shap.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.section-why-choose-us h2{
    margin-bottom: 8px;
}

.choose-us-point{ 
  max-width: 90%;
}

.choose-us-point li{
    border-bottom: 1px dotted #707070;
    padding: 15px 0;
}

.choose-us-point li:last-child{ border: 0 none;}

.choose-us-point li h3{
    font-family: "Poppins", sans-serif;
    color: #0D72FF;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.choose-us-point li h3::before{
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 6px;
    background-color: var(--primary-color);
    display: block;
}

.choose-us-point li p{
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/*facilities start*/

.facilities-section{
    position: relative;
    padding-top: 80px;
}

.facilities-section > .container {
    position: relative;
    z-index: 2;
}

.facilities-bg{
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 0;
    height: 300px;
}

.facilities-bg img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.facilities-bg::before {
    content: "";
    position: absolute;
    background: linear-gradient(221deg, rgba(13, 114, 255, 1) 0%, rgba(10, 4, 4, 1) 83%);
    opacity: 0.7;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 1;
}

.facilities-box{ border-radius: 16px; overflow: hidden;}
.facilities-box-item{
    background-color: var(--black);
    padding: 50px 30px;
}
.facilities-box-item:nth-child(even){
    /* background-color: var(--primary-color); */
    background-color: #0b499f;
}

.facilities-box .icon-wrap{
    height: 49px;
    width: 49px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facilities-box-item h3{
    color: var(--white);
    font-size: 18px;
}

.facilities-box-item p{ font-size: 14px; margin: 0;}

/*Testimonial*/
.testimonial-section{padding: 70px 0 30px;}

.testimonial-header {
    display: flex;
    padding-bottom: 10px;
}

.carousel-margin .slick-slide {
    padding: 0 15px;
}

.itemInner {
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 20px;
    background-color: #E0ECFB;
    transition: transform 0.3s;
}

.client-testimonial {
    flex: 1;
    padding-bottom: 10px;
    border-bottom: solid 1px #c8ddf7;
}

.itemInner p {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #656565;
}

.client-testimonial > img{
    width: 30px;
    height: 30px;
}
.client-testimonial p{
    padding-top: 30px;
}

.clientInfo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.clientInfo-container .client-img img{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: solid 1px var(--primary-color);
}

.clientInfo-container .client-info {
    display: flex;
    flex-direction: column;
}

.clientInfo-container .client-info strong {
    font-size: 15px;
}

.clientInfo-container .client-info span {
    font-size: 13px;}

.testimonial-carousel .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0;
}

.testimonial-carousel .slick-dots li{
    margin: 0 2px;
    width: auto;
}
.testimonial-carousel .slick-dots li button:before{
    display: none;
}
.testimonial-carousel .slick-dots li button{
    background-color: black;
    height: 8px;
    border-radius: 5px;
    width: 15px;
}
.testimonial-carousel .slick-dots li.slick-active button{
        background-color: #0D72FF;
        width: 30px;
}
.testimonial-carousel .slick-dots{
    position: relative;
}

/*Apps Section*/

.app-section{ padding-top: 40px; 
    background: url("../images/blue-bg.jpg") right bottom no-repeat;
}

.app-section h3{
font-size: 40px;
color: #0D72FF;
}

.app-section p{
font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #656565;
}

.text-orange {
    color: #f5a623 !important;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    
    border: 1px solid var(--text-color);
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 25px;
    margin: 0 10px;
    padding: 8px 25px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.Rental-section .nav-tabs .nav-link{
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

.nav-tabs .nav-link.active {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.nav-tabs .nav-link:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.card.bg-dark {
    background-color: #2E2E2E !important;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    padding: 26px 26px 30px;
    box-shadow: 0px 3px 6px #00000029;
    text-align: left !important;
}

.trailer-image {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden ;
    margin-bottom: 26px;
}

.trailer-image img{display: block;}

.card-body {
    padding: 0px;
}

.card-title {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--white);
}

.card-text p{
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
    vertical-align: middle;
}

.card-text p b{font-size: 22px; vertical-align: middle;}

.card-text p span,
.card-text p b{
    font-family: var(--secondary-font);
    font-weight: normal;
}


.btn-dark {
    background-color: var(--black);
    border-color:  var(--black);
    border-radius: 6px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    display: block;
    font-size: 14px;
}

.btn-dark:hover {
    background-color: #fff;
    color: #333;
    border-color: #fff;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.bottomContact-secction{
    background-color: var(--black);
    color: var(--white);
    border-top: solid 4px var(--primary-color);
    border-bottom: solid 1px #5E5E5E;
}

.bottomContact-secction .row > div{
    border-right: solid 1px #5E5E5E;
    display: flex;
}
.bottomContact-secction .row > div:last-child{
    border: 0 none;
}

.bottomContact-secction h4{
    color: var(--white); 
    font-size: 18px;
    font-weight: normal;
}


.bottomContact-secction .row > div p{
    margin: 0;
}

.bottomContact-secction a{
    color: var(--white);
}

.bottomContact-secction .contact-icon{
    width: 40px;
    min-width: 40px;
} 

.bottomContact-secction .contact-info{
    flex: 1;
}

.footer {
    background: url(../images/footer-bg.jpg);
    font-size: 14px;
    color: #9d9d9d;
    padding-top: 50px;
}

.footer-row{
    padding-bottom: 30px;
}

footer h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--white);
}

footer p, footer a {
    color: #9d9d9d;
    text-decoration: none;
    margin: 0;
}

.footer-nav {padding-right: 30px;}
.footer-nav h5{white-space:  nowrap;}
.footer-nav li{
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-icons{display: flex; gap: 10px; flex-wrap: wrap;}

.social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 8px;
    background-color: #007bff;
    border-radius: 50%;
    gap: 10px;
}

.social-icons a { display: inline-block; }

.copyWrite{
    border-top: solid 1px #9d9d9d;
    padding: 15px 0;
}




.hero-section, .trailer-rental.Rental-section,
.section-why-choose-us, .facilities-section, .testimonial-section, .app-section, .bottomContact-secction, .footer{
    overflow: hidden;
}

@media (max-width: 768px) {

.header .logo {z-index: 12;}
.nav > * {z-index: 12;}

body.active .header{
    background: var(--header-scrolled-bg);
}

.hamburger { display: inline-flex; }
.nav-list{ position: fixed; 
    left: 0;
    top: 80px;
    width: 100%;
    height: calc(100% - 80px);
    overflow: auto;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.95); 
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.header.scrolled .nav-list{ top: 70px;
height: calc(100% - 70px);
}

.nav-list.active{
    display: flex;
}

.header .nav-list > li > a{
    font-size: 24px;
}

.hero-section .hero-content h2{
    font-size: 40px;
}

.trailer-image img{width: 100%;}

.section-why-choose-us{
    background-size: cover;
    background-position: center;
}
.section-why-choose-us > .container > .row.align-items-center > .col-lg-5.order-lg-2{
    margin-bottom: 30px;
}

.facilities-box{
    margin: 0 20px;
}


.bottomContact-secction .row{
    flex-direction: column;
}
.bottomContact-secction .col{
    padding: 20px;
}

.footer-row{
    gap: 30px;
}


    .trailer-rental h1 {
        font-size: 2rem;
    }

    .nav-tabs .nav-link {
        margin: 5px;
        padding: 6px 15px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

}

@media (max-width: 576px) {
    .trailer-rental h1 {
        font-size: 1.5rem;
    }

    .nav-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-tabs .nav-link {
        width: 100%;
        margin: 5px 0;
    }
}

/* inner Banner */

.top-Banner {position: relative;}
.top-Banner .banner-overlay{position: absolute; width: 100%; height: 100%; left: 0; top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.top-Banner > img{
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.breadcrumb-warapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-warapper .breadcrumb-list{
    display: flex;
    gap: 25px;
    background-color: var(--primary-color);
    border-radius: 25px;
    padding: 12px 25px;
    color: var(--white);
}

.breadcrumb-warapper .breadcrumb-list a,
.breadcrumb-warapper .breadcrumb-list span
{   color: white;
    font-size: 14px;
    text-transform: uppercase; }

.breadcrumb-warapper .breadcrumb-list a:hover{
    text-decoration: underline;
}

.breadcrumb-warapper .breadcrumb-list li{
    position: relative;
}

.breadcrumb-warapper .breadcrumb-list li::after{
    content: "";
    height: 7px;
    width: 7px;
    position: absolute;
    right: -15px;
    border: solid 1px white;
    border-width: 1px 1px 0px 0px;
    transform: rotate(45deg);
    top: 7px;
}

.breadcrumb-warapper .breadcrumb-list li:last-child::after{
    display: none;
}

.page-title{
    color: white;
    font-style: 40px;
}

.scheduleService-section{
    padding: 70px 0;
}

.dark-container{
    border-radius: 20px;
    background-color: var(--black);
    padding: 30px 20px;
}

.dark-container *{
    color: white;
}

.dark-container h2{
    font-size: 22px;
}

.dark-container h3{
    font-size: 17px;
    font-family: var(--primary-font);
}

.scheduleService-section .dark-container .Availability-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap ;
}

.lightGrey-block{
    background-color: #252525;
    border-radius: 20px;
    padding: 20px;
}

.btn.btn-grey{
    background-color: #252525;
    border-radius: 25px;
    line-height: 1;
    padding: 6px 15px;
    font-size: 14px;
}
.service-Details-content p{
    display: flex;
    flex-direction: column;
}

.service-Preferences{

}

.btn.btn-grey:hover{
    background-color: var(--primary-color);
}

.custom-checkbox{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #252525;
    border-radius: 3px;
    border: 1px solid #252525;
    height: 14px;
    width: 14px;
    border-radius: 4px;
}

.custom-checkbox:checked{
    background-color: var(--primary-color);
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: 1px solid white;
    padding: 10px 40px 10px 15px;
    border-radius: 25px;
    background-image: url(../images/arrow-down-orange.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
    width: auto;
    max-width: 300px;
    color: var(--secondary-color);
}

/* Orange Text select box */

.custom-select.orangeblack-select {
    background-image: url(../images/arrow-down-orange.svg);
    color: var(--secondary-color) !important;
    border-color: var(--black);
    background-color: var(--black);
    padding: 4px 28px 4px 10px;
}

.custom-select.orangeblack-select option{
    color: var(--white) !important;
}

.custom-select.orangeblack-select:focus,
.custom-select.orangeblack-select:focus-visible
{border-color: transparent;
    outline: 0 transparent;
}


/* black selct box */

.custom-select.black-select {
    background-image: url(../images/arrow-down-white.svg);
    color: var(--white) !important;
    border-color: var(--black);
    background-color: var(--black);
    padding: 6px 30px 6px 20px;
}

.custom-select.black-select *{
    color: var(--white) !important;
}

.custom-select.black-select:focus,
.custom-select.black-select:focus-visible {
    border-color: var(--black);
    outline: 0  var(--black);
}

.lightGrey-block p{font-size: 14px; line-height: 1.4; margin-bottom: 12px;}

.service-Preferences{border-top: solid 1px #404040; padding-top: 10px;}

.service-Preferences label{margin-bottom: 6px;}

.border-top-grey{border-top: solid 1px #252525; }

.btn.primary-button.bigSize{
    padding: 10px 18px;
    min-width: 100px;
    text-align: center;
    text-transform: uppercase;
}

.clientDetails-section{
    padding: 70px 0;
}

.dark-container .form-control{
    border-radius: 20px;
    border: solid 1px var(--black);
    background-color: #252525;
    padding: 8px 16px;
    color: var(--white);
}

.clientDetails-section .lightGrey-block h4{
    font-size: 16px;
    font-family: var(--primary-font);
}

.lightGrey-block .border-bottom-grey{
    border-bottom: solid 1px #404040;
    padding-bottom: 10px;
    margin-bottom: 12px;
}

/* contact-section */


    .contact-section {
      padding: 60px 0 0;
    }

    .cityscape-img {
        position: relative;
        padding-right: 25px;
        padding-bottom: 25px;
    }
    .cityscape-img::before{
        width: 92%;
        height: 92%;
        content: "";
        border: solid 3px #dddddd;
        position: absolute;
        z-index: 1;
        bottom: 0;
        right: 0;
        background-color: white;
    }
    .cityscape-img img{
        position: relative;
        z-index: 2;
    }


    .contactInfo-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px 50px;
        max-width: 580px;
    }

    .info-item .contact-icon img{ width: 24px; height: 24px; object-fit: contain; }
    .info-item strong{display: block; line-height: 24px;}
    .info-item p{margin: 0; font-size: 14px;}

    /* Section 2: Let Us Know What You Think */
    .contact-form {
      padding: 40px 0 60px;
    }

    .form-control {
      border-radius: 25px;
      border: 1px solid #ced4da;
      padding: 10px 16px;
      margin-bottom: 20px;
    }

    textarea.form-control{
      min-height: 180px;
       resize: none;
    }

    .contact-form .btn.primary-button.bigSize{min-width: 160px;}

    /* calendar modification style */

.calendar-container .calendar h2{
    font-weight: normal;
    font-family: var(--primary-font);
    font-size: 18px;
}

.calendar-container .calendar td{padding: 0;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.calendar-container .calendar header{
    margin-bottom: 10px;
}
.calendar-container .calendar table{
    margin: 0;
}

.calendar-container .calendar .day{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.calendar-container .calendar .day:hover{
    border: solid 1px var(--primary-color) ;
}

.calendar-container .calendar .day.today{
    background-color: var(--primary-color) ;
}

.calendar-container .calendar .day.wrong-month{
    color: #252525;
}
.calendar-container .calendar .day.wrong-month:hover{
    border-color: var(--transparent-color);
}
.calendar-container .calendar header .simple-calendar-btn{
    border-width: 1px;
}
.calendar-container .calendar header .simple-calendar-btn:before {
    border-width: 1px 1px 0 0;
    top: 10px;
    left: 9px;
}

.calendar-container .calendar header .simple-calendar-btn:hover{
    background-color: var(--secondary-color);
    border-color:  var(--secondary-color);
}

.calendar-container{
    border-radius: 16px;
    border: solid 1px #252525;
    padding: 20px;
}

/*Cart Css*/

.cartPage-section{padding: 70px 0;}

.cartTable-container {
    border: 1px solid #ccc;
    padding: 0;
    margin-bottom: 60px;
}
.cartTable-container .cart-table{margin-bottom: 0;}
    .cartTable-container .cart-table th {
      background-color: #000;
      color: #fff;
       font-family: var(--primary-font);
        font-weight: 400;
        font-style: normal;
        padding: 20px;
    }
    .cartTable-container .cart-table th:first-child{
        width: 80px;
    }
    .cartTable-container .cart-table td { 
      vertical-align: middle;
      padding: 20px;
       font-family: var(--primary-font);
    font-weight: 400;
    font-style: normal;
    }
    
    .cartTable-container .cart-table .product-detail {
      display: flex;
      align-items: center;
      gap: 45px;
      justify-content: flex-start;
    }
    .cartTable-container .cart-table .product-detail img {
      width: 70px;
      height: auto;
    }
    .cartTable-container .cart-table .remove-btn img {
        width: 20px;
        height: 20px;

    }
    .cartTable-container .cart-table .promo-code-btn {
        background-color: #000;
        color: #fff;
        padding: 12px 22px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border-radius: 4px;
        border: none;
        font-size: 14px;
        transition: background-color 0.2s ease;
    }
    .cartTable-container .cart-table .promo-code-btn img{
        width: 24px;
    }

    .cartTable-container .cart-table .promo-code-btn:hover {
        background-color: var(--secondary-color);
    }

    .totals-container .totals-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 30px;
      font-family: var(--secondary-font);
    font-weight: normal;

    }
    .totals-container .totals-table {
      background-color: #e6f0ff;
      border-radius: 12px;
      overflow: hidden;
      width: 100%;
      margin-bottom: 40px;
    }
    .totals-container .totals-table tr{
     border-bottom: 1px solid #afafaf;
    }
    .totals-container .totals-table td {
      padding: 15px 20px;
      font-size: 16px;
       font-family: var(--primary-font);
        font-weight: 400;
        font-style: normal;
         border-right: 1px solid #afafaf;

    }
    .totals-container .totals-table td:last-child {
      text-align: right;
      border-width: 0;
    }

    .totals-container .totals-table tr:last-child{
        border-width: 0;
    }
    .totals-container .totals-table tr:last-child td {
      font-weight: bold;
    }

    .totals-container .checkout-btn {
        padding: 12px 25px;
        background-color: #0D72FF;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 14px;
        text-transform: uppercase;
    }

/*Chack Out Page*/

    .step-circle {
      width: 41px;
      height: 41px;
      border-radius: 50%;
      background-color: #0066ff;
      color: white;
      text-align: center;
      line-height: 40px;
      font-weight: bold;
      position: relative;
    }

    .nextStep .step-circle{
        background-color: var(--black);
    }

    .step-circle::before,
    .step-circle::after {
        content: "";
        position: absolute;
        width: 1px;
        height: 800px;
        left: 50%;
        top: calc( 100% + 10px);
        background-color: #707070;
        transform: translateX(-50%);
    }

    .step-circle::before{
        top: auto;
        bottom: calc( 100% + 10px);
    }

    .checkout-step{
        overflow: hidden;
        padding-bottom: 70px;
    }

    .checkout-step:first-child .step-circle::before{
        display: none;
    }

    .checkout-step:last-child .step-circle::after{
        display: none;
    }

    .checkout-step .step-title {
      color: white;
      border-radius: 8px;
      font-weight: 600;
      margin-bottom: 0;
      font-family: var(--primary-font);
      font-size: 18px;
      margin-bottom: 20px;
    }

    .checkout-step .form-control {
      background: #2b2b2b;
      color: white;
      border: none;
      border-radius: 25px;
      padding: 12px 20px;
      margin-bottom: 20px;
    }
    
    .checkout-step .form-section {
      background: black;
      padding: 30px 20px;
      border-radius: 10px;
      color: white;
      flex: 1;
    }

    .checkout-step label{ display: block; margin-bottom: 10px;}

    .checkout-step.nextStep .form-section{
        padding: 10px 20px;
    }

    .checkout-step.nextStep .step-title {margin-bottom: 0;}

    .checkOut-page .order-summary {
      background: #e8f1ff;
      border-radius: 10px;
    }
    .checkOut-page .order-table td {
      padding: 10px 20px;
      border-bottom: 1px solid #afafaf;
    }

    .checkOut-page .order-table tr:nth-last-child(2) td,
    .checkOut-page .order-table tr:last-child td{
        border-bottom: 0;
    }
    
    .checkOut-page .btn-blue {
      background: #0066ff;
      color: white;
      border-radius: 5px;
      padding: 10px 25px;
      border: none;
      font-weight: 500;
      transition: 0.3s;
    }
    .checkOut-page .btn-blue:hover {
      background: #004ec2;
    }

/*  My Acount css  */

    .login-container {
        display: flex;
        max-width: 800px;
        background: #000;
        border-radius: 20px;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    .login-left {
        background: #007bff;
        color: #fff;
        padding: 40px 30px;
        width: 48%;
        text-align: center;
    }
    .login-left h2 {
        font-weight: 500;
        font-size: 28px;
        color: #fff;
    }
    .login-left p {
        font-size: 14px;
        margin-top: 10px;
    }
    .login-left img {
        margin-top: 30px;
        max-width: 100%;
    }
    .login-right {
        width: 60%;
        padding: 40px 30px;
        background: #000;
        color: #fff;
    }
    .login-right .form-control {
        background: #1e1e1e;
        border: none;
        border-radius: 30px;
        padding: 12px 20px;
        color: #fff;
        margin: 0;
    }
    .login-right .form-control::placeholder {
        color: #aaa;
    }
    .login-btn {
        background: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 8px 49px;
        font-weight: 600;
        margin-top: 20px;
    }
    .login-container .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 20px 0;
    }
    .login-container .divider::before, .login-container .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #444;
    }
    .login-container .divider::before {
        margin-right: 10px;
    }
    .login-container .divider::after {
        margin-left: 10px;
    }
    .login-container .social-buttons .icon-btn {
        margin: 5px;
        background: #fff;
        color: #000;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        padding: 0;
        font-weight: bold;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    .login-container .signup-text {
        margin-top: 15px;
        font-size: 14px;
    }
    .login-container .signup-text a {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
    }

    .login-container .input-group-text {
        display: flex;
        align-items: center;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #fff;
        text-align: center;
        white-space: unset;
        background-color: #1e1e1e;
        border:unset;
        border-radius: 30px;
    }

.on-demand {
    background-image: url(../images/secnd-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
}

.on-demand::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.on-demand > *{
    position: relative;
    z-index: 2;
}

.on-demand-content {
    background-color: rgba(13, 114, 255, 0.85);
    padding: 50px 40px;
    color: #fff;
    border-radius: 15px;
}
.on-demand-content h2{
    color: #fff;
}
.on-demand-content p{
    color: #fff;
    margin: 0;
}

.defaultList{
    margin-bottom: 16px;
}

.defaultList li{
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}
.defaultList li::before{
    content: "";
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute;
    top: 7px;
    left: 0;
}

.defaultList.orange-marker li::before{
    background-color: var(--secondary-color);
}

.about-section h2{font-size: 36px !important; margin-bottom: 14px;}
.about-section p,
.about-section li{font-size: 13px; margin-bottom: 4px;}

.about-section ul,
.about-section p{margin-bottom: 14px;}

.about-section li{font-weight: 600;}

.about-section .defaultList li::before{
    top: 5px;
}


.aboutDetailing-section{
    padding: 90px 0;
}

.aboutDetailing-section h2{
    font-size: 32px;
     margin-bottom: 14px;
}

.aboutDetailing-section p,
.aboutDetailing-section li{
    font-size: 15px !important;
    margin-bottom: 4px;
}
.aboutDetailing-section ul,
.aboutDetailing-section p{margin-bottom: 14px;}

.aboutDetailing-section li{font-weight: 600;}

@media (max-width: 991px) {
    .section-why-choose-us > .container > .row.align-items-center > .col-lg-5.order-lg-2 {
        margin-bottom: 30px;}

        .app-section > .container > .row  > .offset-md-1.col-md-5 {
    order: 2;
    margin-top: 30px;
}

.bottomContact-secction{
    padding: 40px 0;
}
.bottomContact-secction .row > div{
    border: none;
}

.app-section .play-store-icons{
    margin-bottom: 30px;
}

.section-why-choose-us{
    background-size: auto 100%;
}

.contactInfo-grid {
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
        gap: 20px 20px;
}

.login-container{
    margin: 0 20px;
}

}



@media (max-width: 768px) {
.login-container{
        flex-direction: column;
}

.login-container > div{
    width: 100%;
}

.login-container .login-left{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section .about-image{
    margin-bottom: 30px;
}

section{overflow: hidden;}

.aboutDetailing-section{padding-bottom: 0;}

.aboutDetailing-section ul, .aboutDetailing-section p,
.about-section p, .about-section ul, .about-section li{
        font-size: 15px;
    }

}

@media (max-width: 576px) {
    .contactInfo-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px 20px;
}
}



.account-page{
        padding-left: 10px;
     }
    .account-page .sidebar {
      background-color: #121212;
      height: 100vh;
      padding: 20px;
    }
    .account-page .sidebar .nav-link {
      color: #fff;
    }
    .account-page .sidebar .nav-link.active {
      background-color: #D6BFA6;
      color: #000;
    }
    .second-button .nav-link{
     border: none;
     background-color: #113C70;
    }
    .account-page .profile-img {
      width: 60px;
      height: 60px;
      background-color: #ccc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #555;
      margin: 0 auto 10px;
    }
    .account-page .content-section {
      padding: 30px;
    }
    .account-page .custom-input {
      background-color: #000;
      border: 1px solid #666;
      color: #fff;
    }
    .account-page .custom-input:focus {
      background-color: #000;
      color: #fff;
    }
    .account-page .btn-custom {
      background-color: #113C70;
      color: #fff;
    }
    .account-page .text-muted {
      color: #bbb !important;
    }
    .account-page .account{
        padding-left: 10px;
    }
      #tab-profile table {
      background-color: #121212;
    }
    #tab-profile th, td {
      vertical-align: middle;
    }
    #tab-profile .user-img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 50%;
    }
    .image-choose{
      background-color: unset;
    }
    
    
.trailer-image img {
    display: block;
    height: 240px;
    width: 100%;
    object-fit: cover;
}
    
    .testimonial-carousel .slick-track{display: flex !important;}
.testimonial-carousel .slick-slide{height: auto;}


.card-text.mb-4 {
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 5; */
    /* -webkit-box-orient: vertical; */
    overflow: hidden;
    /* display: box; */
    /* box-orient: vertical; */
    /* line-clamp: 3; */
    height: 170px;
}

.input-group .iti{width:100%;
    border: #1e1e1e;
    background-color: #1e1e1e;
    border-radius: 30px;
    position: relative;
    display: flex;
}

.input-group .iti__flag-container{
    position: static;
}

.input-group .phone {
    border: #1e1e1e;
    background-color: #1e1e1e;
    border-radius: 0 30px 30px 0;
    padding: 12px 20px !important;
    display: block;
    width: 100%;
    font-size: 16px;
    color: white;
}

.input-group .phone:focus-visible{
            outline: none;
}

.input-group .iti__flag-container .iti__country-list{
    width: 100%;
    background-color: #1e1e1e;
    border-color: #1e1e1e;
    white-space: normal;
}

.input-group .iti__flag-container .iti__selected-flag{padding-left: 12px;}


.trailer-rental.Rental-section{
    
}

.searchbox{
    border: solid 1px #CAC6C6;
    background-color: #2E2E2E;
    border-radius: 40px;
    padding: 0;
    display: flex;
    width: 100%;
    font-size: 16px;
    color: white;
    max-width: 500px;
    margin: 0 auto 30px;
}
.searchbox i{ width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchbox .input-field{flex: 1;}
.searchbox .input-field,
.searchbox .input-field:focus,
.searchbox .input-field:focus-visible
{
    background-color: transparent;
    outline: transparent;
    border: solid 1px transparent;
    color: white;
    min-width: 0 !important;
}
.searchbox button{
    background-color: #007bff;
    color: white;
    padding: 8px 26px;
    border: solid 1px #007bff;
    border-radius: 40px;
}

.searchbox.white-bg{
    background-color: white;
}

.searchbox.white-bg .input-field, .searchbox.white-bg .input-field:focus, .searchbox.white-bg .input-field:focus-visible{
    color: #2E2E2E;
}

.cardList-container{}
.cardList-container .card{
    flex-direction: initial;
    gap: 40px;
}

.cardList-container .trailer-image{
    width: 60%;
    margin:0;
}

.cardList-container .trailer-image img {
    height: 400px;
}

.cardList-container .card-body {
    display: flex;
    flex-direction: column;
}

.cardList-container .card-text{
    flex: 1;
}

.cardList-container .card-text .text-row{
    padding-bottom: 10px;
    border-bottom: solid 1px #707070;
    margin-bottom: 10px;
}

.cardList-container .card-text .text-row:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.cardList-container .text-row strong{
    display: block;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 8px;
}

.cardList-container .text-row span{
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 1.1;
}

.cardList-container .text-row span.bg-secondary{
    color: white;
    font-size: 14px;
    line-height: 1.2;
    font-weight: normal;
}

.cardList-container .card-title{
    font-size: 30px;
}

.cardList-container .btn-dark{
    background-color: #007bff;
    color: white;
    padding: 8px 26px;
    border: solid 1px #007bff;
    border-radius: 40px;
}


@media (max-width: 768px) {
    
.cardList-container .card{
    flex-direction: column;
}

.cardList-container .trailer-image{
    width: 100%;
}
    
}
.rent-button {
    padding: 11px 28px;
    font-size: 18px;
}
.about-section p{
    font-size: 15px !important;
}