/*
Theme Name: Auto Motion Global
Theme URI: https://automotion.com
Author: Auto Motion Team
Author URI: https://automotion.com
Description: A modern WordPress theme for automotive dealership and vehicle sales
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: auto-motion
Tags: automotive, vehicles, dealership, car-sales
*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

/* ===============================
   MODAL STYLES
   =============================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 5% auto;
  padding: 40px;
  border: 1px solid #333;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 28px;
}

.modal-content .close {
  color: #aaa;
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content .close:hover, .modal-content .close:focus {
  color: #fff;
}

.modal-content form input, .modal-content form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 16px;
}

.modal-content form input:focus, .modal-content form textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.modal-content form button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d774 100%);
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ===============================
   SHOW MORE/LESS BUTTON
   =============================== */
.moreless-button {
  display: inline-block;
  margin-top: 15px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.moreless-button:hover {
  color: #f0d774;
  text-decoration: underline;
}

.moretext {
  display: none;
}

/* ===============================
   CAROUSEL PLACEHOLDER STYLING
   =============================== */
.carousel-item img[src$=".svg"] {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: contain;
  background: #f5f5f5;
}

.carousel-indicators button img[src$=".svg"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e0e0e0;
}

/* Ensure carousel always has minimum height */
.carousel-inner {
  min-height: 400px;
  background: #f9f9f9;
}

.carousel-item {
  min-height: 400px;
}

/* Ensure single vehicle slider nav icons align like original design */
.favorites-section .carousel-control-next, .favorites-section .carousel-control-prev {
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorites-section .carousel-control-next img, .favorites-section .carousel-control-prev img {
  width: 70px;
  height: auto;
}

/* Fix carousel indicators thumbnail sizing */
.carousel-indicators button {
  width: auto;
  height: 60px;
  margin: 0 5px;
  border: 2px solid transparent;
  opacity: 0.7;
}

.carousel-indicators button.active, .carousel-indicators button:hover {
  opacity: 1;
  border-color: #d4af37;
}

.carousel-indicators button img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 4px;
}

:root {

  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width:600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }

}

/* Theme Colors */
:root {
  --accent-color: #00b2c4;
  --dark-color: #222222;
  --light-dark-color: #727272;
  --light-color: #fff;
  --grey-color: #dbdbdb;
  --light-grey-color: #fafafa;
  --primary-color: #6995b1;
  --light-primary-color: #eef1f3;
}

/* Fonts */
:root {
  --body-font: "Open Sans", sans-serif;
  --heading-font: "Nunito", sans-serif;
}

body {
  --bs-link-color: #333;
  --bs-link-hover-color: #333;
  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;  /* --bs-link-color: #00b2c4;
  --bs-link-hover-color: #00b2c4; */
  --bs-light-rgb: 248, 248, 248;
  --bs-font-sans-serif: "Poppins", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #747474;
  --bs-primary: #00b2c4;
  --bs-primary-rgb: 255, 196, 63;
  --bs-success: #a3be4c;
  --bs-success-rgb: 163, 190, 76;
  --bs-primary-bg-subtle: #fff9eb;
  --bs-success-bg-subtle: #eef5e5;
  --bs-border-color: #f7f7f7;
  --bs-secondary-rgb: 230, 243, 251;  /* --bs-success-rgb: 238, 245, 228; */
  --bs-danger-rgb: 249, 235, 231;
  --bs-warning-rgb: 255, 249, 235;
  --bs-info-rgb: 230, 243, 250;
  background: #222732;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #00b2c4;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #00b2c4;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00b2c4;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d3d7dd;
  --bs-btn-disabled-border-color: transparent;
}

.btn-outline-primary {
  --bs-btn-color: #00b2c4;
  --bs-btn-border-color: #00b2c4;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #00b2c4;
  --bs-btn-hover-border-color: #00b2c4;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00b2c4;
  --bs-btn-active-border-color: #00b2c4;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff3cd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fff3cd;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #747474;
  --bs-btn-border-color: #efefef;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #efefef;
  --bs-btn-hover-border-color: #efefef;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #efefef;
  --bs-btn-active-border-color: #efefef;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #efefef;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #efefef;
  --bs-gradient: none;
}

.btn-warning {
  --bs-btn-color: #747474;
  --bs-btn-bg: #fcf7eb;
  --bs-btn-border-color: #fcf7eb;
  --bs-btn-hover-color: #747474;
  --bs-btn-hover-bg: #ffecbe;
  --bs-btn-hover-border-color: #ffecbe;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffecbe;
  --bs-btn-active-border-color: #ffecbe;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fcf7eb;
  --bs-btn-disabled-border-color: #fcf7eb;
}

.btn-success {
  --bs-btn-color: #222;
  --bs-btn-bg: #eef5e4;
  --bs-btn-border-color: #eef5e4;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #9de3c2;
  --bs-btn-hover-border-color: #9de3c2;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #9de3c2;
  --bs-btn-active-border-color: #9de3c2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #eef5e4;
  --bs-btn-disabled-border-color: #eef5e4;
}

.btn-danger {
  --bs-btn-color: #222;
  --bs-btn-bg: #ffeada;
  --bs-btn-border-color: #ffeada;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #ecc9af;
  --bs-btn-hover-border-color: #ecc9af;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #ecc9af;
  --bs-btn-active-border-color: #ecc9af;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #ffeada;
  --bs-btn-disabled-border-color: #ffeada;
}

body {
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--dark-color);
  font-weight: 700;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 700;
}

.breadcrumb.text-white {
  --bs-breadcrumb-divider-color: #fff;
  --bs-breadcrumb-item-active-color: var(--bs-primary);
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--bs-primary);
}

.nav-pills .nav-link {
  --bs-nav-pills-link-active-color: #111;
  --bs-nav-pills-link-active-bg: #f1f1f1;
}

/*.container {
max-width: 1400px;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
--bs-gutter-x: 3rem;
}*/

/*----------------------------------------------*/

/* 6. SITE STRUCTURE */

/*----------------------------------------------*/

/* 6.1 Header
--------------------------------------------------------------*/

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.preloader-wrapper .preloader {
  margin: 20% auto 0;
  transform: translateZ(0);
}

.preloader:before, .preloader:after {
  content: "";
  position: absolute;
  top: 0;
}

.preloader:before, .preloader:after, .preloader {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: animation 1.2s infinite ease-in-out;
}

.preloader {
  animation-delay: -0.16s;
}

.preloader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.preloader:after {
  left: 3.5em;
}

@keyframes animation {
  0%, 80%, 100% {
    box-shadow: 0 2em 0 -1em var(--accent-color);
  }

  40% {
    box-shadow: 0 2em 0 0 var(--accent-color);
  }

}

/* *** Start editing below this line *** */
.container-fluid {
  max-width: 1320px;
}

.banner-blocks {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2rem;
}

.block-1 {
  grid-area: 1 / 1 / 3 / 8;
}

.block-2 {
  grid-area: 1 / 8 / 2 / 13;
}

.block-3 {
  grid-area: 2 / 8 / 3 / 13;
}

@media screen and (max-width:1140px) {
  .banner-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .block-1 {
    grid-area: 1 / 1 / 3 / 2;
  }

  .block-2 {
    grid-area: 3 / 1 / 4 / 2;
  }

  .block-3 {
    grid-area: 4 / 1 / 5 / 2;
  }

}

/* banner ad */
.banner-ad {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.banner-ad.blue {
  background: #e6f3fb;
}

.banner-ad .swiper-pagination {
  bottom: 40px;
  left: 0;
  right: 0;
}

.banner-ad .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 4px;
  background: #fff;
  opacity: 1;
  transition: background 0.3s ease-out;
}

.banner-ad
.swiper-pagination
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #00b2c4;
}

.banner-ad .swiper-slide {
  min-height: 630px;
  display: flex;
}

/* .banner-ad .banner-content {
padding: 52px;
}
.banner-ad.large .banner-content {
padding: 90px;
} */
.banner-ad .banner-content .categories {
  font-family: "Garamond";
  font-size: 37px;
  text-transform: capitalize;
  color: var(--dark-color);
}

.banner-ad .banner-content .sale {
  position: relative;
  display: inline-block;
}

.banner-ad .banner-content .sale:before {
  content: "";
  width: 80px;
  border-bottom: 1px solid #111;
  position: absolute;
  bottom: 6px;
}

.banner-ad .banner-content .sale:after {
  content: "SALE";
  font-family: var(--body-font);
  position: absolute;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #252525;
  bottom: 0;
  right: 0;
}

.banner-ad .banner-content .banner-title {
  letter-spacing: 0.02em;
  font-size: 33px;
}

.banner-ad.large .banner-content .categories {
  color: var(--accent-color);
}

.banner-ad.large .banner-content .banner-title {
  font-size: 54px;
}

/* Swiper carousel */
.swiper-prev, .swiper-next {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background: #f1f1f1;
  color: #222222;
  padding: 0;
  text-align: center;
  border-radius: 15px;
  --bs-btn-border-color: transparent;
  --bs-btn-active-bg: #ec9b22;
  --bs-btn-active-border-color: transparent;
  --bs-btn-hover-bg: #00b2c4;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-disabled-color: #ccc;
  --bs-btn-disabled-bg: #eaeaea;
  --bs-btn-disabled-border-color: #eaeaea;
}

.swiper-prev:hover, .swiper-next:hover {
  background: #3ab2c4;
}

.swiper-prev:hover img, .swiper-next:hover img {
  mix-blend-mode: plus-darker;
  filter: brightness(0) invert(1);
}

.btn-link {
  margin-right: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  text-transform: capitalize;
  color: #787878;
}

/* category carousel */
.category-carousel .category-item {
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  text-align: center;
  padding: 60px 20px;
  margin: 20px 0;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

.category-carousel .category-item:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}

.category-carousel .category-item .category-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  margin-top: 20px;
}

/* brand carousel (homepage featured vehicles slider) */
.brand-carousel.swiper {
  overflow: hidden;
  width: 100%;
}

.brand-carousel .swiper-wrapper {
  align-items: stretch;
}

.brand-carousel .swiper-slide {
  height: auto;
}

.brand-carousel .brand-item {
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 16px;
}

.brand-carousel .brand-item img {
  width: 100%;
  border-radius: 12px;
}

.brand-carousel .brand-item .brand-details {
  margin-left: 15px;
}

.brand-carousel .brand-item .brand-title {
  margin: 0;
}
.swiper-button-disabled {
  display: none !important;
}

/* product tabs */
.product-tabs .nav-tabs {
  justify-content: flex-end;
  border: none;
  --bs-nav-link-hover-color: #111;
  --bs-nav-link-color: #555;
  --bs-nav-tabs-link-border-color: #fff;
  --bs-nav-tabs-link-hover-border-color: transparent;
  --bs-nav-tabs-link-active-border-color: #fff;
}

.product-tabs .nav-tabs .nav-link.active, .product-tabs .nav-tabs .nav-item.show .nav-link {

  /* border: none; */
  border-bottom: 3px solid var(--accent-color);
}

/* product-grid */

/* .product-grid {
gap: 25px;
} */
.product-item {
  position: relative;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease-out;
}

.product-item:hover {
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}

.product-item h3 {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color: #333333;
  margin: 0;
}

.product-item figure {
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
}

.product-item figure img {
  max-height: 210px;
  height: auto;
}

.product-item .btn-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d8d8d8;
  transition: all 0.3s ease-out;
}

.product-item .btn-wishlist:hover {
  background: rgb(240, 56, 56);
  color: #fff;
}

.product-item .qty {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9d9d9d;
}

.product-item .rating {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-transform: capitalize;
  color: #222222;
}

.product-item .rating iconify-icon {
  color: #00b2c4;
}

.product-item .price {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  color: #222222;
}

.product-item .product-qty {
  width: 85px;
}

.product-item .btn-link {
  text-decoration: none;
}

.product-item #quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}

.product-item .btn-number {
  width: 26px;
  height: 26px;
  line-height: 1;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}

/* cart */
.cart .product-qty {
  min-width: 130px;
}

/* floating image */
.image-float {
  margin-top: -140px;
  margin-bottom: -140px;
}

/******************** New CSS ************************/
.nav-link {
  color: #fff;
  font-size: 18px;
}

.navbar {
  padding-bottom: 0;
}

.nav-item.active {
  border-bottom: 4px solid #1db0c2;
}

.nav-link:focus, .nav-link:hover {
  color: #00b2c4;
}

.navbar-toggler {
  color: #fff;
  background-color: #fff;
  margin-bottom: 0;
  padding: 7px;
  border-radius: 7px;
}

.support-box a, .cart a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.support-box a:hover, .cart a:hover {
  color: #00b2c4;
}

.support-box a:hover svg, .cart a:hover svg {
  fill: #00b2c4;
}

.support-box a svg, .cart a svg {
  margin-right: 5px;
}

.border-bottom {
  border-bottom: 1px solid #525252 !important;
}

.srch-btn {
  border-radius: 0 15px 15px 0;
  background: #00b2c4;
  padding: 9px 23px;
}

.main-logo img {
  max-width: 80%;
}

#search-form input {
  padding: 12px 15px;
}

.auth-vehc {
  background: url(images/auth-bg-im.png) no-repeat;
  min-height: 240px;
  border-radius: 15px;
  background-size: cover;
  display: flex;
  align-items: end;
  padding: 20px;
  background-position: center center;
  transition: transform 0.4s ease;
}

a.vehcl-zom {
  overflow: hidden;
  display: block;
  border-radius: 15px;
  text-decoration: none !important;
}

a.vehcl-zom .auth-vehc:hover {
  transform: scale(1.04);
}

a.vehcl-zom .auth-vehc:hover small svg {
  fill: #00b2c4;
}

a.vehcl-zom .auth-vehc:hover small {
  color: #00b2c4;
}

.comc-vehc {
  background: url(images/comc-bg-im.png) no-repeat;
  background-size: cover;
}

.usd-vehc {
  background: url(images/usd-veh-img.png) no-repeat;
  background-size: cover;
}

.armod-vehc {
  background: url(images/armed-veh-img.png) no-repeat;
  background-size: cover;
}

.duba-vehc {
  background: url(images/duba-veh-img.png) no-repeat;
  background-size: cover;
}

.weekl-vehc {
  background: url(images/wekl-veh-img.png) no-repeat;
  background-size: cover;
}

.auth-vehc h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.auth-vehc p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 8px;
}

.auth-vehc small {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.nw-arival h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 42px;
}

.nw-arival h2 span {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  display: block;
}

.vehicle-crd {
  position: relative;
  padding: 10px;
  border-radius: 25px;
  overflow: hidden;
}

.vehicle-crd img {
  width: 100%;
  transition: transform 0.4s ease;
}

.vehicle-crd img:hover {
  transform: scale(1.1);
}

.vehicle-crd .card-body {
  border-radius: 20px;
  border: 1px solid #00b2c4;
  padding: 20px 10px;
}

.veh-price {
    position: absolute;
    top: 10px;
    left: 0px;
    background: #00b2c4;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 0 30px 30px 0;
    padding: 4px 15px;
    z-index: 999;
}

.vehicle-crd h5 {
  color: #222732;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.veh-ftrs {
  display: flex;
  justify-content: center;
}

.veh-ftrs p {
  font-size: 13px;
  color: #222732;
  font-weight: 400;
  margin: 0;
}

.veh-ftrs p img {
  vertical-align: sub;
  width: 16px;
}

.footer-menu h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}

.footer-menu .nav-link {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.copyright p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.footer-menu p {
  color: #eee;
  font-size: 14px;
  text-align: left;
  font-weight: 300;
  line-height: normal;
}

footer {
  background: url(images/Logo_Large.png) no-repeat;
}

h4.ftr-h4-tit {
  color: #fff;
  font-family: "Bebas Neue";
  font-size: 32px;
  font-weight: normal;
  line-height: normal;
}

.lets-talk-section {
  margin-bottom: 50px;
}

.lets-talk-section h1 {
color: #fff;
    font-family: Poppins;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-transform: uppercase;
}

.lets-talk-section small {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.email-input {
  background: transparent;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 0 !important;
  color: #fff;
  padding-right: 40px !important;
  padding-left: 5px !important; 
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  box-shadow: none;
  border-bottom-color: #fff;
  background: none;
}

.submit-btn {
  background: none;
  border: none;
  color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

.social-links ul li {
  margin-right: 15px;
}

.mid-section {
  background: #fff;
}

.vehicle-card {
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #dddddd;
}

.vehicle-card h4 {
  color: #111;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}

.vehicle-card p {
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.vehicle-card h5 {
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.badge-floating {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #35b6c9;
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 16px;
  white-space: nowrap;
}

.spec-list li {
  margin-bottom: 10px;
  color: #676767;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.spec-list li img {
  margin-right: 4px;
}

.btn-view {
  background-color: #35b6c9;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 300;
}

.btn-view:hover {
  background-color: #2aa1b3;
}

.hero-section.compr-hero {
  padding-top: 110px;
}

.hero-section.compr-hero p {
  margin-bottom: 120px;
}

.breadcram {
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.breadcram a {
  color: #fff;
  text-decoration: none;
}

.breadcram span {
  color: #00b2c4;
}

.car-categ {
  display: inline-flex;
  padding: 2px 10px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
  background-color: rgba(0, 178, 196, 0.4);
  font-size: 14px;
  font-weight: 300;
  color: #00b2c4;
  margin-bottom: 10px;
}

.car-categ-grn {
  background-color: rgba(23, 200, 56, 0.46);
  color: #0ce234;
}

.hot-del {
  display: flex;
  width: 147.783px;
  height: 29.19px;
  transform: rotate(-41.963deg);
  align-items: center;
  position: absolute;
  left: -32px;
  top: 23px;
  font-size: 13px;
  background: #00b2c4;
  z-index: 9;
  color: #fff;
  justify-content: center;
  z-index: 1;
}

/* Search results only: recommended “Ready in Dubai” badge (green + red corner accent) */
.car-card-search-ready-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 12;
  padding: 7px 14px 7px 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  background: #1b8f4a;
  border-radius: 6px 10px 6px 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.car-card-search-ready-badge::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent #c62828 transparent transparent;
  border-radius: 0 6px 0 0;
}

/******************** New CSS ************************/

/******************** Sanjay ************************/

.hero-section {
  padding: 120px 0 20px;
  color: #fff;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section p {
  color: var(--White, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 0px;
}

.hero-section h1 {
  color: var(--White, #fff);
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 14px;
}

.hero-filter {
  border-radius: 38px;
  border: 24px solid rgba(255, 255, 255, 0.17);
  margin-top: 40px;
}

.search-bar {
  background: #fff;
  border-radius: 15px;
}

.search-bar.header-search form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-field {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.filter-field label {
  margin-bottom: 2px;
  color: var(--Body-Main, #676767);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filter-field .form-control {
  border: none;
  padding: 0;
  box-shadow: none;
  color: var(--Title---Yacht, #0a152f);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  appearance: auto !important;
  border: 1px solid #e7edf3;
  padding: 10px;
}

.filter-field .form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn-search {
  border-radius: 12px;
  background: #00b2c4;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 9px 20px;
  margin: 10px 0;
}

.btn-search svg.me-1 {
  margin-right: 0 !important;
}

.btn-search:hover {
  background: var(----primary, #0a91a0);
}

.brand-dropdown {
  position: relative;
  width: 100%;
  font-family: inherit;
  border: none;
}

.brand-selected {
  border: 1px solid #2cb4ff;
  border: 1px solid #e7edf3;
  padding: 7px 14px;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.brand-selected .arrow {
  font-size: 16px;
}

.brand-list {
  position: absolute;
  top: 110%;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  z-index: 999;
}

.brand-list li {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  color: #000;
}

.brand-list li:hover {
  background: #f5f7fa;
}

.brand-list .count {
  color: #8a8a8a;
}

/* scrollbar */
.brand-list::-webkit-scrollbar {
  width: 5px;
}

.brand-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.brand-dropdown.active .brand-list {
  display: block;
}

/* Model dropdown disabled until brand is selected */
.hero-filter .brand-dropdown.hero-filter-model-disabled .brand-selected {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* FAVORITES */
.favorites-section {
  padding: 30px 0;
}

.section-title h2 {
  color: var(--Title, #111);
  font-family: "Bebas Neue";
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.section-title {
  margin-bottom: 40px;
}

.section-title p {
  color: var(--Body-Main, #676767);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0px;
}

.car-card {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--Stroke-3, #dbdbdb);
  background: var(--White, #fff);
  box-shadow: 0 4px 24px 0 rgba(225, 225, 225, 0.25);
  position: relative;
}

.car-img {
  position: relative;
}

.car-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 9;
  color: var(--White, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.car-info {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  align-items: anchor-center;
}

.car-info h5 {
  color: var(--Title, #111);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 230px;
}

.price {
  color: #00b2c4;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.car-footer {
  padding: 12px 0px;
  border-top: 1px solid #dbdbdb;
  display: flex;
  justify-content: space-between;
  margin: 0px 15px;
  color: var(--Color-Dark, #222732);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.car-footer a {
  color: #222732;
  text-decoration: none;
}

.car-img-slider {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.car-img-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #00000061 0%, rgba(102, 102, 102, 0) 100%);
  width: 100%;
  height: 100%;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.slider-track img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.truck-card:hover .slider-track {
  transform: scale(1.1);
}

.car-card:hover .slider-track {
  transform: scale(1.1);
}

.car-card:hover .car-footer a {
  color: #00b2c4;
}

.car-card:hover .car-footer a svg path {
  fill: #00b2c4;
}

.car-footer a svg {
  background: #f1f1f1;
  width: 20px;
  height: 20px;
  border-radius: 30px;
  padding: 2px;
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 9;
}

.slider-dots span.active {
  border-radius: 50px;
  background: var(--Background-colored, #00b2c4);
  width: 13.333px;
}

.slider-dots span {
  cursor: pointer;
  border-radius: 10px;
  background: var(--Stroke-3, #dbdbdb);
  width: 4px;
  height: 4px;
  flex-shrink: 0;
}

.car-footer img {
  margin-right: 5px;
}

@media (max-width:991px) {
  .btn-search {
    border-radius: 15px;
  }

}

.filter-box {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  background: var(--White, #fff);
  box-shadow: 0 4px 24px 0 rgba(225, 225, 225, 0.25);
}

.filter-box h6 {
  color: var(--Title, #111);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filter-box h4 {
  color: var(--Title, #111);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.filter-box .search-input {
  border-radius: 15px;
  border: 1px solid var(--Stroke-2, #f4f4f4);
  background: var(--Body-Light-2, #f5f5f5);
  padding: 15px;
  color: var(--Body-Main, #676767);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  padding: 12px 0;
  cursor: pointer;
  color: var(--Title, #111);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-top: 1px solid #f4f4f4;
  transition: all 0.5s;
}

.category-list li.active, .category-list li:hover {
  background: #1fb6c1;
  color: #fff;
  padding-left: 12px;
}

.view-toggle button {
  border: none;
  border-radius: 5px;
  margin-left: 5px;
  display: inline-flex;
  width: 45px;
  height: 45px;
  padding: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.view-toggle .active {
  background: #1fb6c1;
  color: #fff;
}

.truck-card {
  padding: 15px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9f9f9;
}

.truck-card img {
  border-radius: 10px;
}

.truck-info {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  color: var(--Body-Main, #676767);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.truck-info li img{
  border-radius: 0;
}
.track-loc-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0px;
}

.card-footer-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.truck-card .car-img-slider {
  border-radius: 10px;
  overflow: hidden;
}

.location-trk {
  display: flex;
  align-items: center;
  color: var(--Body-Main, #676767);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.truck-card .price {
  color: #00b2c4;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
}

.btn-theme {
  border-radius: 30px;
  background: var(----primary, #00b2c4);
  display: flex;
  width: 273px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.list-view .list-view-top .price {
  display: block;
}

.list-view .card-footer-custom .location-trk {
  display: block;
}

.list-view .track-loc-bx {
  display: none;
}

.grid-view .list-view-top .price {
  display: none;
}

.grid-view .card-footer-custom .location-trk {
  display: none;
}

.grid-view .track-loc-bx {
  display: flex;
}

/* LIST VIEW */
.list-view-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-view .col-lg-4 {
  flex: 0 0 100%;
  max-width: 100%;
}

.list-view .truck-card {
  display: grid;
  grid-template-columns: 30% 65%;
  gap: 20px;
}

.list-view-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.truck-card h6 {
  color: var(--Title, #111);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  margin: 15px 0px;
}

.power-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 🔹 CUSTOM CHECKBOX */
.custom-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  user-select: none;
  color: var(--Span-color, #828282);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.custom-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--Stroke-3, #dbdbdb);
  background: var(--Body-Light-2, #f5f5f5);
  position: relative;
  transition: 0.2s;
}

.custom-check input:checked ~ .checkmark {
  background: #1fb6c1;
  border-color: #1fb6c1;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-check input:checked ~ .checkmark::after {
  display: block;
}

.custom-check .checkmark::after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.list-view .truck-card .car-img-slider {
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 300px;
}

.view-toggle .active img {
  filter: brightness(0) invert(1);
}

.search-filter span {
  position: absolute;
  right: 2px;
  top: 2px;
  height: 49px;
  width: 50px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 15px 15px 0;
}

.search-filter {
  position: relative;
}

/******************** Sanjay ************************/

/******************** Vehicle Details ************************/

.car-details-hero {
  background: #fff;
  padding: 30px 0 10px;
}

.car-details-hero h1 {
  color: #111;
  font-family: "Bebas Neue";
  font-size: 32px;
  font-weight: normal;
  line-height: normal;
}

.car-details-hero span, .car-details-hero p {
  color: #676767;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}

.car-details-hero p img {
  margin-bottom: 3px;
  margin-right: 3px;
}

.compr-btn {
  border-radius: 5px;
  background: #f2f7f6;
  color: #676767;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 15px;
  text-decoration: none;
}

.carousel-indicators img {
  width: 180px;
  border-radius: 10px !important;
  display: block;
}

.carousel-item img {
  border-radius: 10px !important;
  /*max-height: 500px;*/
  object-fit: contain;
}

.carousel-indicators button {
  width: max-content !important;
  justify-content: flex-start !;
}

.carousel-indicators {
  position: unset;
  justify-content: flex-start;
  margin-left: 0% !important;
  margin-right: 1% !important;  /* overflow-x: scroll; */
  white-space: nowrap;
  height: 130px;
  margin-top: 16px;
  margin-bottom: 0px;
}

.carousel-control-next, .carousel-control-prev {
  height: 83% !important;
  width: 10%;
}

.specfictn h3 {
  color: #111 !important;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 15px;
  position: relative;
  margin-top: 30px;
}

.specfictn h3:after {
  content: "";
  width: 20px;
  height: 4px;
  background: #00b2c4;
  position: absolute;
  top: 36px;
  left: 0px;
}

.specfictn p {
  color: #676767;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 20px;
}

.specfictn ul.specfictn-list {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.specfictn ul.specfictn-list li {
  display: inline-flex;
  width: 16.2%;
  gap: 10px;
  color: #676767;
  font-size: 13.5px;
  font-weight: 300;
  line-height: normal;
  align-items: center;
  margin-bottom: 20px;
}

.vido-sec {
  text-align: center;
}

.car-vdo {
  border-radius: 10px;
}

.vido-sec video {
  width: 60%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.accordion {
  margin-top: 20px;
}

    .accordion-button {
        align-items: flex-start;
    }
.accordion-button::after {
  background-image: url("images/FAQ-Expand-icon.svg");
  transition: all 0.5s;

}

.accordion-button:not(.collapsed)::after {
  background-image: url("images/FAQ-Collapse-icon.svg");
  rotate: 180deg;

}

.accordion-button::after {
  transition: all 0.5s;
}

.accordion-button {
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  background-color: transparent !important;
  padding: 22px 20px;
}

.accordion-button:not(.collapsed) {
  color: #111;
}

.accordion-body {
  color: #676767;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.article a {
  text-decoration: none;
  color: #127384;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
}

/* Vehicle description: match admin editor table and block styling */
.vehicle-description-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
  border: 1px solid #ddd;
}

.vehicle-description-content th, .vehicle-description-content td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: left;
}

.vehicle-description-content th {
  background: #f5f5f5;
  font-weight: 600;
}

.vehicle-description-content tbody tr:nth-child(even) {
  background: #fafafa;
}

.vehicle-description-content caption {
  padding: 8px 0;
  font-weight: 600;
  text-align: left;
}

.moretext {
  display: none;
}

.navbar-toggler {
  display: none;
}

.favorites-section.mid-section .car-footer {
  justify-content: center;
  font-size: 18px;
}

@media only screen and (max-width:500px) {
  .carousel-control-next, .carousel-control-prev {
    height: 100% !important;
  }

}

/******************** Vehicle Details ************************/

/* ====================== about us css  ==================== */

.about-us-pg {
  padding: 120px 0 120px;
  color: #fff;
  position: relative;
}

.value-card {
  background: rgba(0, 178, 196, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
}

.value-card h6 {
  color: #222;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.value-card p {
  color: #222732;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.txt-cntr h3 {
  color: #00b2c4;
  font-family: "Bebas Neue";
  font-size: 42px;
  font-weight: 300;
  line-height: normal;
}

.txt-cntr small {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.main-p {
  color: rgba(33, 37, 41, 0.75);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.carousel-caption {
  max-width: 700px;
  left: 5%;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(67px);
  border-radius: 20px 20px 0 20px;
}

.carousel-caption small {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.carousel-caption h4 {
  color: #fff;
  font-family: "Bebas Neue";
  font-size: 32px;
  font-weight: normal;
  line-height: normal;
  margin: 12px 0;
}

.carousel-caption p {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  line-height: normal;
}

@media (max-width:768px) {
  .carousel-caption {
    position: static;
    margin-top: 10px;
  }

}

.about-us-page h2 {
  color: #222;
  font-family: "Bebas Neue";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

/* ====================== about us css  ==================== */
.icon-circle {
  width: 42px;
  height: 42px;
  background-color: #3bb6c4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.form-control {
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #c4cee8;
}

.btn-send {
  background-color: #3bb6c4;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-weight: 500;
}

.btn-send:hover {
  background-color: #2fa3b0;
}

.conct-us h2 {
  color: #222732;
  font-family: "Bebas Neue";
  font-size: 42px;
  font-weight: normal;
  line-height: normal;
}

.conct-us h3 {
  color: #222732;
  font-family: "Bebas Neue";
  font-size: 32px;
  font-weight: normal;
  line-height: normal;
}

.conct-us p {
  color: #222732;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.conct-us p strong {
  color: #222732;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.conct-us .form-label {
  color: #0b2025;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* Top header main menu active state */
.main-menu .menu-list .nav-link {
  color: #fff;
  font-weight: 500;
}

.main-menu .menu-list .nav-item.active .nav-link {
  color: #00b2c4;
}

/*model-card-css-start*/
.models-section {
  padding: 40px 0;
  background-color: #f7f7f7;
}
.models-section .swiper-horizontal {
    touch-action: none;
}
.models-head {
  margin-bottom: 30px;
}

.models-head h2 {
  color: #111;
  font-family: "Bebas Neue";
  font-size: 42px;
  font-weight: 500;
}

.models-head h6 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.models-main {
  padding-top: 1px;
  padding-bottom: 5px;
  margin-bottom: 50px;
  height: auto;
}

.models-cards {
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  padding: 24px 16px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 4px 0px;
  border: 1px solid transparent;
  transition: 0.3s;
  height: 100%;
}

.models-cards:hover {
  border-color: #000;
}

.models-cards h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.models-cards h3 {
  font-size: 24px;
  font-weight: 700;
  color: #00b2c4;
}

.models-cards-img {
  margin: 15px 0;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.models-cards-img img {
  width: 100%;
  transition: 0.3s;
}

.models-cards:hover .models-cards-img img {
  transform: scale(1.1);
}

.models-pointers {
  padding-left: 0;
  margin-bottom: 0;
}

.models-pointers li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.models-pointers li:nth-last-child(1) {
  margin-bottom: 0;
}

.models-pointers li img {
  width: 35px;
}

.models-pointers li span {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #111;
}

.modelsSwiper .swiper-button-next, .modelsSwiper .swiper-button-prev {
  display: none;
}

.modelsSwiper .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  transition: 0.3s;
}

.modelsSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00b2c4;
  width: 25px;
  border-radius: 25px;
}
/*.modelsSwiper .swiper-pagination .swiper-pagination-bullet:nth-last-child(1){
  display: none;
}*/

/*gallery-css-start*/
.gallery-sec {
  padding: 40px 0;
  background-color: #fff;
}

.gallery-cards {
  margin-bottom: 20px;
}

.gallery-cards img {
  width: 100%;
  height: 100%;
}

.gallery-cards a {
  display: block;
  height: 250px;
  width: 100%;
}

/*footer-css-start*/
.ftr-logo img {
  width: 200px;
  margin-bottom: 20px;
}

.ftr-contact, .ftr-bttm-menu {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.ftr-contact li a {
  display: inline-block;
  color: #00b2c4;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.ftr-contact li a:hover {
  text-decoration: underline;
}

.ftr-bttm {
  padding: 5px 0;
  background-color: #f9f9f9;
  margin-top: 20px;
}

.ftr-bttm-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ftr-bttm-menu li {
  color: #222732;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  gap: 5px;
  align-items: center;
}

.ftr-bttm-menu li img {
  width: 16px;
}

/*========================Contact Us =======================*/
@media screen and (max-width:1600px) {
  .support-box a, .cart a {
    font-size: 14px;
  }

}

@media screen and (max-width:1440px) {

  /*header{
    padding: 0px 20px;
  }*/
  .nav-link {
    font-size: 18px;
  }

  .support-box a svg, .cart a svg {
    width: 16px;
  }

  .srch-btn {
    padding: 9px 5px;
  }

  .btn-search {
    padding: 9px 15px;
  }

}

@media screen and (max-width:1200px) {
  .nav-link {
    font-size: 15px;
  }

  .carousel-indicators {
    display: none;
  }

  .carousel-control-next, .carousel-control-prev {
    height: 100% !important;
  }

  .vido-sec video {
    width: 90%;
  }

  .btn-search {
    padding: 9px 10px;
  }

  .support-box a, .cart a {
    display: grid;
    justify-items: center;
  }

}

@media screen and (max-width:1024px) {
}

/*@media screen and (max-width: 1000px) {
.btn-search {
  margin-left: 10px;
}

}*/

/* post item */
.post-item .post-meta {
  font-size: 0.8rem;
  line-height: 1;
}

.post-item .post-meta svg {
  margin-right: 5px;
}

/* Top header main menu active state */
.main-menu .menu-list .nav-link {
  color: #fff;
  font-weight: 500;
}

.main-menu .menu-list .nav-item.active .nav-link {
  color: #00b2c4;
}
.main-menu .offcanvas-header .btn-close{
      background-color: #00b2c4;
      opacity: 1;
}

@media(max-width:1024.98px) {
  .auth-vehc h3 {
    font-size: 20px;
  }

  .auth-vehc p {
    font-size: 16px;
  }

  .auth-vehc small {
    font-size: 16px;
  }

  .auth-vehc {
    padding: 20px;
  }

}

@media screen and (max-width:991px) {
  .image-float {
    margin: 0;
  }

  .nav-link {
    color: #000;
  }

  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }

  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }

  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }

  .dropdown-menu a {
    padding-left: 0;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 21px;
  }

  .auth-vehc {
    margin-bottom: 30px;
    padding: 25px;
  }

  .specfictn ul.specfictn-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .specfictn ul.specfictn-list li {
    width: auto;
    gap: 5px;
  }

  .specfictn ul.specfictn-list li img {
    width: 50px;
  }

  .navbar-toggler {
    display: block;
  }

  .border-bottom {
    position: relative;
  }

  .navbar-toggler {
    position: absolute;
    top: 23px;
    right: -4px;
  }

  .carousel-inner {
    min-height: auto;
  }

  .carousel-item {
    min-height: auto;
  }

  .main-menu .menu-list .nav-link {
    color: #000;
  }

  .nav-item.active .nav-link::after {
    bottom: -2px;
  }

  .carousel-caption {
    display: none;
  }

  .btn-search {
    width: 97%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .models-cards h3 {
    font-size: 18px;
  }

  .models-cards h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .ftr-bttm p {
    font-size: 13px;
  }

  .ftr-bttm-menu li {
    font-size: 13px;
    gap: 2px;
  }

  .ftr-contact li a {
    font-size: 16px;
  }

  .ftr-bttm {
    margin-top: 10px;
  }

  .models-pointers li {
    margin-bottom: 2px;
  }

  .models-pointers li span {
    font-size: 13px;
  }

  .models-cards-img {
    height: 300px;
  }
  .nav-item.active .nav-link::after{
        bottom: -2px !important;
  }
  #search-form input {
    padding: 12px 5px 12px 15px;
    font-size: 13px;
}

}

@media screen and (max-width:768px) {
  .search-bar {
    margin-top: 25px !important;
  }

  .footer-menu h4 {
    margin-top: 20px;
  }

  .lets-talk-section hr {
    padding-bottom: 0px !important;
  }

  .lets-talk-section h1 {
    font-size: 40px;
  }

  .vehicle-card {
    margin-bottom: 25px;
  }

  .hero-section {
    padding: 60px 0 20px;
  }

  .hero-section.compr-hero {
    padding-top: 60px;
  }

  .hero-section.compr-hero p {
    margin-bottom: 60px;
  }

  .hero-section h1 {
    font-size: 38px;
  }

  .favorites-section {
    padding: 0;
    padding-bottom: 40px;
  }

  .list-view .truck-card {
    display: block;
  }

  .truck-info {
    justify-content: start;
  }

  .hero-filter {
    border-radius: 38px;
    border: 0;
    margin-top: 0;
    padding: 0;
  }

  .car-details-hero span, .car-details-hero p {
    margin-bottom: 10px;
  }

  .specfictn ul.specfictn-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .vido-sec video {
    width: 100%;
  }

  /* .carousel-control-next img,
  .carousel-control-prev img {
    width: 70px;
  } */
  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-caption {
    display: none;
  }

  .navbar-toggler {
    top: 41px;
    right: -4px;
  }

  .ftr-bttm p {
    text-align: center !important;
  }

  .ftr-bttm-menu {
    justify-content: center;
  }

}

@media screen and (max-width:575px) {
  .specfictn ul.specfictn-list {
    grid-template-columns: 1fr 1fr;
  }

  .ftr-bttm-menu {
    gap: 8px;
    row-gap: 0;
  }

  .models-head h2 {
    font-size: 30px;
  }

  .models-head h6 {
    font-size: 16px;
  }

  .models-section {
    padding: 20px 0;
  }
.accordion-button{
  padding: 18px 10px;
}
    .carousel-item img {
        height: 100%;
    }
      /*  .carousel-item {
        min-height: 200px;
    }*/
    .txt-cntr small{
      margin-bottom: 20px;
              display: inline-block;
    }
    .txt-cntr h3 {
    margin-bottom: 0;
}

}

/* single product */

/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 740px;
}

@media screen and (max-width:992px) {
  .product-thumbnail-slider {
    margin-top: 20px;
    height: auto;
  }

}

@media screen and (min-width:992px) {
  .product-thumbnail-slider {
    height: 520px;
  }

}

@media screen and (min-width:1200px) {
  .product-thumbnail-slider {
    height: 740px;
  }

}

/* ============================================
 GRID / LIST VIEW TOGGLE SYSTEM
 ============================================ */

/* View Toggle Buttons */
.view-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
}

.view-toggle button {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-toggle button:hover {
  border-color: #1db0c2;
  background: #fafafa;
}

.view-toggle button.active {
  background: #1db0c2;
  border-color: #1db0c2;
}

.view-toggle button.active img {
  filter: brightness(0) invert(1);
}

.view-toggle button img {
  width: 20px;
  height: 20px;
}

/* Grid/List View - no extra overrides needed, original CSS above handles it */

/* ============================================
 WEEKLY DEAL BADGE
 ============================================ */

.badge-floating {
  position: absolute;
  right: 15px;
  background: #3eb4c7;
  color: #fff;
  width: 100%;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 12px #3eb4c7;  /* animation: badgePulse 2s ease-in-out infinite; */
  width: max-content;
}

.weekly-deal-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

}

/* ============================================
 BREADCRUMBS NAVIGATION
 ============================================ */
.breadcrumbs {
  background: #f5f5f5;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: #d4af37;
}

.breadcrumbs span {
  color: #111;
  font-weight: 600;
  font-size: 14px;
}

.breadcrumbs .separator {
  margin: 0 10px;
  color: #999;
  font-weight: normal;
}

.breadcrumb-home-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

@media screen and (max-width:768px) {
  .breadcrumbs {
    padding: 10px 0;
  }

  .breadcrumbs a, .breadcrumbs span {
    font-size: 12px;
  }

  .breadcrumbs .separator {
    margin: 0 5px;
  }

  .psgn-relti {
    position: relative;
  }

  .swiper-buttons {
        position: absolute;
        top: 16%;
        right: 10px;
  }

 /* .swiper-next {
    position: absolute;
    right: 30px;
  }

  .swiper-prev {
    position: absolute;
    left: -10px;
  }*/

  .swiper-slide .vehicle-crd .card-body {
    max-width: 100%;
  }

  .border-bottom {
    border-bottom: none !important;
  }

}

/* ============================================
 ACTIVE MENU HIGHLIGHTING
 ============================================ */
.nav-item.active .nav-link {
  color: #00b2c4 !important;
  font-weight: 600;
}

.nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: #00b2c4;
  border-radius: 2px;
}

.nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-item .nav-link:hover {
  color: #00b2c4;
}

.nav-item .nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: #00b2c4;
  border-radius: 2px;
}

/* ============================================
 SIDEBAR FILTERS
 ============================================ */

/* ============================================
 NOTE: Using original filter-box styles from lines 1532-1680
 ============================================ */

/* ============================================
 LISTING PAGE - Minimal overrides only
 ============================================ */

.listing-page {
  background: #fff;
}

/* ============================================
 DETAIL PAGE BADGE & PRICE
 ============================================ */
.detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 20px;
  background: #00b2c4;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  animation: badgePulse 2s ease-in-out infinite;
}

.detail-price {
  color: #00b2c4;
  font-size: 28px;
  font-weight: 700;
  margin: 5px 0 10px;
  line-height: 1.2;
}

.detail-price-old {
  font-size: 18px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}

@media screen and (max-width:768px) {
  .detail-price {
    font-size: 22px;
  }

  .detail-price-old {
    font-size: 15px;
  }

  .detail-badge {
    font-size: 11px;
    padding: 4px 12px;
  }

  .for-mob-mnu {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

}

.car-details-hero .detail-badge {
  color: #00b2c4;
  padding: 2px 20px;
  font-weight: 500;
  border: 1px solid #00b2c4;
  background: #00b2c440;
}

.card.vehicle-card .card-img-top {
  max-height: 200px;
  object-fit: contain;
}

.form-control:focus {
  box-shadow: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  height: auto;
  padding: 0;
  width: 180px !important;
  max-width: 180px !important;
  height: 120px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 0;
  border-bottom: 0;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

/* ============================================
 SRS §12 – UI interaction rules
 Vehicle cards: slight image zoom, shadow elevation, button hover
 ============================================ */
.car-card, .truck-card, .card.vehicle-card {
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.car-card:hover, .truck-card:hover, .card.vehicle-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.car-card .car-img-slider .slider-track, .truck-card .car-img-slider .slider-track, .card.vehicle-card .card-img-top {
  transition: transform 0.35s ease;
}

.card.vehicle-card:hover .card-img-top {
  transform: scale(1.05);
}

.btn-view:hover, .btn-theme:hover, .btn-send:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-view, .btn-theme, .btn-send {
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Floating WhatsApp button – visible on every page */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* Contact form: Name, Email, Phone in single row; Message below */
.contact-form-fields .form-control {
  border-radius: 10px;
  border: 1px solid #e0e6ed;
  background: #fff;
}

.contact-form-row-single {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.no-results h2 {
  color: #fff;
}
.filter-box-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.filter-toggle-btn{
  height: 40px;
  width: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #00b2c4;
  color: #fff;
  border-radius: 8px;
  outline: none;
  border: 0;
}
.filter-toggle-btn img{
  width: 24px;
}

.contact-form-row-single .form-control {
  flex: 1;
  min-width: 0;
}

@media (max-width:767.98px) {
  .contact-form-row-single {
    flex-direction: column;
  }

  .models-cards-img {
    height: auto;
  }
  .view-toggle{
    display: none;
  }
  .filter-toggle-btn{
    display: flex;
  }
  .filter-box-listing{
    display: none;
  }

}

@media (max-width:575px) {
  .card-footer-custom .btn-theme {
    width: auto;
  }

  .auth-vehc {
    padding: 10px;
  }

  .specfictn ul.specfictn-list li img {
    width: 40px;
  }

  .specfictn ul.specfictn-list li {
    font-size: 14px;
  }
  


}

.contact-form-submit {
  text-align: right;
}

.contact-form-submit .btn-send {
  border-radius: 10px;
  padding: 10px 24px;
}

/* Contact page: clickable phone numbers */
.contact-phone-link {
  color: inherit;
  text-decoration: none;
}

.contact-phone-link:hover {
  text-decoration: underline;
}

/* Search form: "Please enter text" validation message */
.search-validation-msg {
  display: none;
  font-size: 13px;
  color: #c00;
  margin-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
}

/* Search results: no results block - visible text */
.no-results-visible, .no-results-visible h2, .no-results-visible p {
  color: #fff;
}

.no-results-visible a {
  color: #fff;
}

.auto-motion-search-form .position-relative {
  position: relative;
  width: 100%;
}

.text-muted {
  color: #fff !important;
}

.grid-view .truck-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid-view .truck-card .list-view-box {
  flex: 1
}

.grid-view .card-footer-custom {
  margin-top: auto;
  justify-content: center;
}

.mid-section .vehicle-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mid-section .vehicle-card .position-relative, .mid-section .vehicle-card .card-body {
  flex: 1;
}

.mid-section .vehicle-card .d-flex.align-items-center.justify-content-between {
  margin-top: auto;
}

.vehicle-img-cards img {
  height: 200px;
}

@media(max-width:1099px) {
  /*.lets-talk-section h1 {
    font-size: 38px;
  }*/

  .navbar-nav {
    gap: 0px !important;
  }

  .lets-talk-section small {
    font-size: 14px;
  }

}

@media(max-width: 575px){
  .lets-talk-section h1 {
        font-size: 22px;
    }
    .about-us-page{
      padding: 30px 0;
    }
}
@media(max-width: 1100px){
  .ftr-contact li a {
    font-size: 16px;
}
.footer-menu h4 {
    font-size: 16px;
}
    .lets-talk-section h1 {
        font-size: 25px;
    }
.ftr-bttm .text-end{
  text-align: center !important;
}
}