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

:root {
    --brand-blue: #0b3b82;
    --brand-blue-600: #0a2f68;
    --brand-blue-700: #072552;
    --brand-orange: #ff8a00;
    --brand-orange-600: #f67f00;
    --brand-bg: #F1F8FF;
    --brand-muted: #6b7a99;
    --brand-dark: #0b1f3a;
    --radius: 12px;
}

html,
body {
    scroll-behavior: smooth;
    padding: 0px;
    margin: 0px;
}

body {
    color: #0f1729;
    margin: 0px;
    padding: 0px;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
}

.heading-font {
    font-family: "Epilogue", sans-serif;
}

/* Topbar */
.topbar {
    background: var(--brand-blue-700);
    color: #e6eefc;
    font-size: .875rem;
}

.topbar a {
    color: #cfe0ff;
    text-decoration: none;
}

.topbar a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    letter-spacing: .2px;
}

.btn-brand {
    background: #D4AF37;
    color: #fff;
    border: none;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

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

/* Hero */
.hero {
    position: relative;
    background: url('images/hero-banner.svg') center/cover no-repeat;
    min-height: 690px;
    color: #fff;
}
.hero-second{
    min-height: 410px;
    position: relative;
    background: url('images/hero-banner.svg') center/cover no-repeat;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 48, .75), rgba(7, 21, 48, .55));
}

.hero .hero-content {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    padding-bottom: 110px;
    text-align: center;
}

.hero h1 {
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.hero p.lead {
    color: #e2ebff;
    max-width: 720px;
    margin: 0 auto;
}

.badge-pill {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    padding: .375rem .75rem;
    font-size: .8rem;
}

/* Booking form card */
.booking-card {
    margin-top: -60px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(5, 27, 65, .18);
}

.form-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--brand-blue);
}

.form-control,
.form-select {
    border-radius: 10px;
}

/* .booking-btn{
    border: 1px solid #DCDCDC;
    color: #A1A1A1;
}
.booking-btn.active, .hover{
    border: 1px solid #D4AF37 !important;
    color: #000;
} */
.booking-btn {
    transition: all 0.3s ease;
    color: #A1A1A1;
    border: 1px solid #DCDCDC;
    border-radius: 6px;
  }
  
  .booking-btn.active {
    background-color:transparent; /* Active background color */
    color: #000000 !important; /* Active text color */
    /* box-shadow: 0 0 10px rgba(20, 49, 175, 0.4); */
    border: 1px solid #D4AF37 !important;
  }

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 .2rem rgba(11, 59, 130, .15);
    border-color: var(--brand-blue);
}

/* Section helpers */
section.section {
    padding: 72px 0;
}

.section-heading {
    color: var(--brand-dark);
    font-weight: 800;
}

.section-sub {
    color: var(--brand-muted);
}

/* About */
.about-badge {
    position: absolute;
    right:320px;
    top: 0px;
    background: #fff;
    border-radius: 10px;
    padding: .5rem .75rem;
    box-shadow: 0 10px 30px rgba(7, 21, 48, .12);
    font-weight: 700;
    color: var(--brand-blue);
    background-color: #003E80;
}

.about-ring {
    position: absolute;
    left: 320px;
    bottom: -18px;
    background-color: #003E80;
    padding: .5rem .75rem;
    border-radius: 10px;
}

/* Services */
.service-card {
    border: 1px solid #e7eeff;
    border-radius: 14px;
    background: #fff;
    transition: all .2s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(8, 27, 66, .08);
}

.service-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    /* background: var(--brand-bg); */
    color: var(--brand-blue);
}

/* Fleet */
.nav-pills .nav-link {
    border-radius: 999px;
    padding: .5rem 1rem;
}

.nav-pills .nav-link.active {
    background: var(--brand-blue);
}

.car-card {
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(7, 21, 48, .12);
}

/* .car-thumb {
    background: #f7f9ff;
} */

/* Benefits */
.benefits {
    background: linear-gradient(180deg, #f8fbff, #f1f6ff);
}

.benefit-item .bi {
    color: var(--brand-blue);
}

/* Testimonials */
.testi-card {
    border-radius: 16px;
    border: 1px solid #e7eeff;
    background: #fff;
    box-shadow: 0 8px 26px rgba(7, 21, 48, .06);
}

/* City section */
.city-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 21, 48, .06);
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background: #f1f6ff;
    color: var(--brand-blue);
}

/* Footer */
footer {
    background:#003E80;
    color: #ffffff;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #D4AF37;
    /* text-decoration: underline; */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #ffffff;
}

/* Dots/decors (subtle) */
.soft-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e5edff;
    display: inline-block;
    margin-right: 6px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        min-height: 520px;
    }

 
}

.high-light-clr {
    color: #D4AF37;
}

.high-light-clr-bg {
    background-color: #D4AF37;
}

/*   style  */

.line-height-24 {
    line-height: 24px;
}

.line-height-115 {
    line-height: 115%;
}

.line-height-28 {
    line-height: 28px;
}

.line-height-26 {
    line-height: 26px;
}

.line-height-30 {
    line-height: 30px;
}

/*   border-radius-1  */
.border-radius-10 {
    border-radius: 10px !important;
}

.border-radius-12 {
    border-radius: 12px !important;
}

.border-radius-28 {
    border-radius: 28px !important;
}

.border-radius-22 {
    border-radius: 22px !important;
}

.border-radius-16 {
    border-radius: 16px !important;
}
.border-radius-4{
    border-radius:4px;
}
/* text-align  */

.text-justify {
    text-align: justify;
}

/*  Spacing/spacing */
.section-spacing {
    padding-top: 100px;
    padding-bottom: 64px;
}

/*   font-size  */
.fs-18 {
    font-size: 18px;
}

.fs-35 {
    font-size: 35px;
}

/*  new-Font-custome */
.fs-8 {
    font-size: 8px;
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-26 {
    font-size: 26px;
}

.fs-24 {
    font-size: 24px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fs-32 {
    font-size: 32px;
}

.fs-34 {
    font-size: 34px;
}

.fs-36 {
    font-size: 36px;
}

.fs-38 {
    font-size: 38px;
}

.fs-40 {
    font-size: 40px;
}

.fs-44 {
    font-size: 44px;
}

.fs-46 {
    font-size: 46px;
}

.fs-48 {
    font-size: 48px;
}

.fs-50 {
    font-size: 50px;
}

.fs-52 {
    font-size: 52px;
}

.fs-54 {
    font-size: 54px;
}

.fs-56 {
    font-size: 56px;
}

.fs-58 {
    font-size: 58px;
}

.fs-64 {
    font-size: 64px;
}

.fs-80 {
    font-size: 80px;
}

.fs-74 {
    font-size: 74px;
}

/*   font/width   */

.w-500 {
    width: 50% !important;
}

.w-750 {
    width: 75% !important;
}

/*   letter/specing   */

.letter-spacing-2 {
    letter-spacing: 0.2px !important;
}

.letter-spacing-minus5 {
    letter-spacing: -0.5px !important;
}

/*  fit/content */

.w-fit-contentt {
    width: fit-content;
}

/* font/weight  */

.fw-semibold {
    font-weight: 600;
}

.fw-medium {
    font-weight: 600;
}

.header-nav ul li {
    padding: 0px 10px;
}

.blue-clr {
    color: #003E80;
}

.grey-light {
    color: #616161 !important;
}

.grey-light-bg {
    background-color: #616161;
}

.blue-bg {
    background-color: #003E80;
}

.blue-trans-bg {
    background-color: #003e8073;
}

.btn-outline-d-yellow {
    border: 1px solid #D4AF37;
}

.gery-lightt {
    color: #A1A1A1;
}

.gery-lightt-outline {
    border: 1px solid #DCDCDC;
}

.text-darkk {
    color: #000 !important;
}

#input_box ::placeholder {
    color: #A1A1A1;
}

.border-8 {
    border: 8px solid #BFCFDF;
}
.line-clr{
    color: #a7a7a7;
}
.h-90{
    height: 90px;
}
.clr-storke{
    color:#b2b2b2;
}

/*   Fleetstab    */
.fleetTabs1 li {
    border: 1px solid #EEEEEE;
}
.nav-pills-new .nav-link-new{
    padding: .7rem 2rem !important;
    border-radius: 0px;
    color: #A1A1A1;
    font-size: 16px;
    font-weight: 500;
}
.nav-pills-new .nav-link-new.active{
    background-color: #D4AF37;
    font-size: 18px;
    font-weight: 600;
}
.mb-10{
    margin-bottom: 10px;
}

/*   slider */

/*   slider */
.car-product .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    background: #D4AF37;
    padding: 19px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    box-shadow: 2px 10px 20px #c0c0c0 !important;
}

.car-product .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    background: #D4AF37;
    padding: 19px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    box-shadow: 2px 10px 20px #c0c0c0 !important;
}

.car-product .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 44px;
    top: 266px;
}

.car-product .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    top: 266px;
}
.h-900{
    height: 124px;
}
.alignment-row{
    flex-direction: column;
    justify-content: start;
    align-items: self-start;
}
.box-shadow-none{
    box-shadow: none !important;
}
/*   footer  */
.footer-li li{
    padding: 5px 0px;
    font-size: 16px;
    font-weight: 400;
}
/*  text-underline   */
.text-underline{
    border: 1px solid #D4AF37;
    width: 52px;
}
.h-64{
    height: 60px;
}
.navbar-toggler {
    border-color: transparent !important; /* optional */
}

.navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-toggler:focus{
border: 2px solid #fff !important;
}
.line-height-normal{
    line-height: normal;
}
.dropdown-menu-f:active{
    color: #212529 !important;
    text-decoration: none;
    background-color: #f7f7f7 !important;
}
.anchor-color a{
    color: #616161 !important;
}
.btn-hvr:hover{
    border: 1px solid #fff !important;
    color: #fff !important;
}
.border-radius-top-16{
    border-radius: 16px 16px 0px 0px !important;
}
.border-radius-bottom-16{
    border-radius: 0px 0px 16px 16px !important;
}
.active-page{
    color: #D4AF37 !important;
}