@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
body,
html {
  overflow-x: hidden;
  font-family: "Clash Display", sans-serif;
}
:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --tertiary-color: #050b20;
  --line-color: #405ff2;
  --card-color: #06201d;
  --btn-color: #00b67a;
  --footer-color: #06201d;
  --looking: #00b67a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1320px !important;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  display: inline-block;
}
ul {
  list-style-type: none;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
nav,
.navbar-collapsed,
.navbar-collapsed > ul {
  display: flex;
  align-items: center;
}
.btn-nav {
  position: relative;
  padding: 15.5px 31.5px;
  color: var(--secondary-color);
  background: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  border-radius: 33px;
  border: none;
  font-size: 20px;
  font-weight: 500;
  overflow: hidden;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  cursor: pointer;
}
.btn-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: var(--btn-color);
  transition: width 0.5s ease;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 33px;
}

.btn-nav:hover {
  color: var(--primary-color);
}

.btn-nav:hover::before {
  width: 100%;
}
/* Header-Section */
.hdr-sec {
  padding: 30px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10; /* navbar upore thakbe */
}
.navbar-brand {
  width: 166px;
}
.navbar {
  background: none !important;
}
.nav-logo {
  margin-right: 79px;
}
.navbar-brand > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar-nav {
  border: 1px solid var(--primary-color);
  width: 662px !important;
  padding: 17px 27px 17px 0;
  margin: 0 auto;
  align-items: center;
  border-radius: 68px;
}
.navbtn {
  margin-left: 79px;
}
.offcanvas {
  flex-direction: row !important;
  align-items: center;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  backdrop-filter: blur(20px); /* blur intensity for glass effect */
  -webkit-backdrop-filter: blur(20px); /* for Safari support */
  border: 1px solid rgba(255, 255, 255, 0.1); /* optional: subtle glass border */
}
.nav-link {
  padding: 0 !important;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 400;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
}
.first-link {
  margin-left: 27px;
}
.nav-item {
  margin-right: 27px;
}
.navbar-nav > li > .nav-item:last-child {
  margin: 0 !important;
}
/* hover-effect nav-link*/
.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--btn-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
  border-radius: 5px;
}
.nav-link::before {
  top: -6px;
}
.nav-link::after {
  bottom: -6px;
}
.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::before,
.nav-link:hover::after {
  transform: scaleX(1);
}
/* modal */
.modal {
  padding-right: 0 !important;
}
.ca-modal {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: none;
}

/* LEFT */
.ca-left {
  width: 50%;
  background: url(../assets/moda-back.png) center/cover no-repeat;
  padding: 60px 40px;
  position: relative;
  text-align: center;
}

.ca-left h1 {
  font-size: 49px;
  font-weight: 500;
  margin-bottom: 38px;
  color: var(--primary-color);
}

.ca-left .sub-txt {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 38px;
  font-family: "DM Sans", sans-serif;
}

.left-btn {
  border: 1px solid var(--primary-color);
  background: transparent;
  padding: 20px 97px;
  border-radius: 43px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

.ca-car {
  width: 411px;
  position: absolute;
  bottom: -6px;
  left: 12%;
}
.ca-car > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT */
.ca-right {
  width: 50%;
  background: var(--btn-color);
  padding: 60px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ca-right h1 {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Social icons */
.social-icons i {
  font-size: 30px;
  background: var(--primary-color);
  padding: 10px;
  width: 48px;
  height: 48px;
  line-height: 28px;
  border-radius: 50%;
  margin: 0 8px;
  color: var(--btn-color);
  cursor: pointer;
}

.small-text {
  margin-top: 18px;
  margin-bottom: 25px;
  color: var(--primary-color);
  opacity: 0.8;
  font-size: 14px;
}

/* Inputs */
.input-line {
  width: 340px;
  background: #c8ffd9;
  padding: 12px 15px;
  border-radius: 7px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.input-line input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
}

.right-btn {
  background: var(--primary-color);
  color: var(--btn-color);
  padding: 14px 55px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  border: none;
  font-family: "DM Sans", sans-serif;
}
.close-right-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
}

.close-right-btn:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
  transition: 0.3s;
}
.modal-dialog {
  margin: 40px auto !important;
}
.left-btn,
.right-btn {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

/* Hover Effect Background Fill */
.left-btn::before,
.right-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 100%;
  background: var(--btn-color);
  transition: width 0.5s ease;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: inherit;
}

/* Text color change on hover */
.left-btn:hover,
.right-btn:hover {
  color: var(--primary-color) !important;
  border-color: var(--btn-color);
}

/* Fill animation */
.left-btn:hover::before,
.right-btn:hover::before {
  width: 100%;
}
/* Banner-Section */
.banner-sec {
  position: relative;
  min-height: 100vh;
  padding: 0 0 100px;
  background: url(../assets/vehicles/vehicle-banner.png) no-repeat center/cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  z-index: 1;
}
.banner-cntn {
  position: relative;
  z-index: 2;
}
.banner-heading {
  font-size: 70px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 0 !important;
}
.banner-sub-heading {
  font-size: 70px;
  font-weight: 400;
  color: var(--primary-color);
}
/* select-section */
.select-sec {
  padding: 100px 0 100px;
}
.select-heading {
  text-align: center;
  margin-bottom: 70px;
}
.select-heading > h2 {
  font-size: 70px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.2;
}
.select-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 100px;
}
.select-btn {
  padding: 13px 32.5px;
  border-radius: 29px;
  font-size: 16px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s ease;
}
.select-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
} /* ===== Browse Buttons ===== */
.browse-btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 25px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.3s ease;
}
.browse-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.browse-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.card {
  max-width: 425px !important;
  min-height: 575px !important;
  border-radius: 29px;
}
.card-img {
  margin-left: 339px;
  margin-top: 20px;
}
.first {
  background: url(../assets/vehicles/car-1.png) no-repeat center/cover;
}
.second {
  background: url(../assets/vehicles/car-2.png) no-repeat center/cover;
}
.third {
  background: url(../assets/vehicles/car-3.png) no-repeat center/cover;
}
.four {
  background: url(../assets/vehicles/car-4.png) no-repeat center/cover;
  margin-top: 25px;
}
.five {
  background: url(../assets/vehicles/car-5.png) no-repeat center/cover;
  margin-top: 25px;
}
.six {
  background: url(../assets/vehicles/car-6.png) no-repeat center/cover;
  margin-top: 25px;
}
.seven {
  background: url(../assets/vehicles/car-7.png) no-repeat center/cover;
  margin-top: 25px;
}
.eight {
  background: url(../assets/vehicles/car-8.png) no-repeat center/cover;
  margin-top: 25px;
}
.nine {
  background: url(../assets/vehicles/car-9.png) no-repeat center/cover;
  margin-top: 25px;
}
.card-img-top {
  width: 36px;
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: var(--primary-color);
}
.card-text {
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  color: var(--primary-color);
}
.card-cntn {
  font-size: 15px;
  font-family: 400;
  font-family: "DM Sans", sans-serif;
  color: var(--primary-color);
}
.card-price {
  font-size: 20px;
  font-family: 700;
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
} /* .card-text{ margin-top: 40px; } */
.card-text:last-child {
  margin-bottom: 0 !important;
  margin-top: 308px;
}
.first-row,
.second-row {
  margin-bottom: 30px;
}
.card-img {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover .card-img {
  opacity: 1;
  pointer-events: auto;
}
.card-img {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card:hover .card-img {
  opacity: 1;
  transform: translateY(0);
}
/* premimum-section */
.premium-sec {
  padding-bottom: 62px;
}
.premum-head > h5 {
  font-size: 40px;
  font-weight: 500;
  color: var(--tertiary-color);
}
.premimum-seco {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border: 1px solid black;
  padding: 10px 18px;
  border-radius: 48px;

  font-size: 18px;
  font-weight: 400;
  color: black;

  background: white;
  position: relative;
  overflow: hidden; /* important */
}

/* SLIDING GREEN BACKGROUND */
.btn-tertiary::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00b67a;
  z-index: 0;
  transition: left 0.45s ease;
  border-radius: inherit;
}

/* ON HOVER — slide to right */
.btn-tertiary:hover::before {
  left: 0;
}

/* TEXT & ICON ABOVE ANIMATION */
.btn-tertiary * {
  position: relative;
  z-index: 2;
}

/* TEXT COLOR CHANGE */
.btn-tertiary:hover {
  color: white;
}

/* ICON WRAP */
.icon-wrap {
  width: 42px;
  height: 42px;
  background: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  transition: background 0.4s ease, border 0.4s ease;
  position: relative;
  z-index: 2;
}

/* ARROW DEFAULT */
.arrow-icon {
  transition: transform 0.4s ease, stroke 0.4s ease;
}

/* HOVER – CIRCLE WHITE + BORDER */
.btn-tertiary:hover .icon-wrap {
  background: white;
  border: 2px solid black;
}

/* HOVER – ARROW ROTATE + BLACK */
.btn-tertiary:hover .arrow-icon {
  stroke: black;
  transform: rotate(45deg);
}
/* brand-section */
:root {
  --animation-duration: 6s; /* Faster speed */
  --services-totalItems: 6;
  --item-gap: 10px; /* Closer spacing */
}

.brand-sec {
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}

.brand-slider {
  width: 100%;
  height: 130px;
  position: relative;
  overflow: hidden;
}

.brand-item {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;

  animation: slideLeft linear infinite;
  animation-duration: var(--animation-duration);
}

/* auto indexing for delay */
.brand-item:nth-child(1) {
  --i: 1;
}
.brand-item:nth-child(2) {
  --i: 2;
}
.brand-item:nth-child(3) {
  --i: 3;
}
.brand-item:nth-child(4) {
  --i: 4;
}
.brand-item:nth-child(5) {
  --i: 5;
}
.brand-item:nth-child(6) {
  --i: 6;
}

.brand-item {
  animation-delay: calc(
    var(--animation-duration) / var(--services-totalItems) *
      ((var(--services-totalItems) - var(--i)) * -1)
  );
}

/* image size same */
.b1 {
  width: 100px;
  object-fit: contain;
}

.b4 {
  width: 151px;
  object-fit: contain;
}

/* smoother & closer movement */
@keyframes slideLeft {
  0% {
    left: 110%;
  }

  100% {
    left: calc(-100px - var(--item-gap));
  }
}
/* footer-section */
.footer-sec {
  background: var(--footer-color);
  padding-top: 34px;
}
.footer-logo {
  width: 168px;
}
.footer-top {
  margin-bottom: 61px;
}
.footer-logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.address-logo {
  width: 40px;
}
.address-logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.address-logo:hover {
  transform: translateY(-4px);
}
.footer-para {
  font-size: 20x;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0 !important;
  margin-left: 12px;
  font-family: "DM Sans", sans-serif;
}
.footer-1 {
  max-width: 291px;
}
.footer-1 > h5 {
  font-size: 20px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  line-height: 27.8px;
  color: var(--primary-color);
  line-height: 27.8px;
  margin-bottom: 32px;
}
.socal-logo {
  width: 34px;
}
.socal-logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.socal-logo:hover {
  transform: translateY(-4px);
}
.footer-2 {
  width: 110px;
}
.footer-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  margin-bottom: 15px;
}
.footer-link > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  margin-bottom: 6px;
}
.footer-link > a:hover {
  color: var(--btn-color);
}
.download-heading {
  font-size: 20px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  line-height: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.store {
  width: 171px;
}
.google-play {
  margin-bottom: 10px;
}
.store > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-last {
  border-top: 1px solid var(--primary-color);
  margin-top: 40px;
  padding: 20px 0;
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copy {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: var(--primary-color);
  flex: 1;
  text-align: left;
}

.terms {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  display: flex;
  justify-content: center;
  flex: 1;
}

.terms li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 15px;
}

.terms li span {
  color: var(--primary-color);
}

.scroll-top {
  flex: 1;
  text-align: right;
}

.scroll-top a {
  background-color: var(--btn-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s;
}

.scroll-top a:hover {
  background-color: var(--btn-color);
}
.scroll-top {
  width: 54px;
}
.scroll-top > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* meddia query */
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 1200px) {
  /* Header-Section */
  .offcanvas {
    flex-direction: column !important;
  }
  .navbar-nav,
  .navbtn,
  .nav-item {
    margin: 0 !important;
    text-align: center !important;
  }
  .navbar-nav {
    border: none;
  }
  .nav-link {
    margin: 6px 0 !important;
  }
  /* modal */
  .modal-dialog {
    margin: 35px auto !important;
  }
  .ca-left h1 {
    font-size: 42px;
  }
  .ca-right h1 {
    font-size: 36px;
  }
  .left-btn {
    padding: 18px 70px;
  }
  .ca-car {
    width: 411px;
    position: absolute;
    bottom: -6px;
    left: -3%;
  }
  /* select-section */
  .select-heading > h2 {
    font-size: 60px;
  }
  /* select-section */
  .card {
    max-width: 425px !important;
    min-height: 575px !important;
    margin: 0 auto;
  }
  .select-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .first-row,
  .second-row {
    margin-bottom: 15px;
  }
  /* premimum-sec */
  .premum-head h5 {
    font-size: 36px;
  }
  .brand-slider {
    height: 110px;
  }
  .b1 {
    width: 85px;
  }
  .b4 {
    width: 125px;
  }
  /* footer-section */
  .footer-top,
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .footer-2 {
    width: auto;
  }
}
@media screen and (max-width: 992px) {
  /* header-Section */
  .offcanvas {
    flex-direction: column !important;
  }
  .navbar-nav,
  .navbtn,
  .nav-item {
    margin: 0 !important;
    text-align: center !important;
    padding: 0 !important;
  }
  /* modal */
  .modal-dialog {
    margin: 30px auto !important; /* space top + bottom */
    padding: 0 10px; /* little side gap */
  }
  .modal-dialog {
    max-width: 90%;
    margin: auto;
  }

  /* Modal becomes full width 1-column */
  .ca-modal {
    flex-direction: column;
  }

  .ca-left,
  .ca-right {
    width: 100%;
    padding: 40px 25px;
    position: relative;
  }

  /* car image stays bottom center ALWAYS */
  .ca-left {
    padding-bottom: 180px;
    min-height: 420px;
  }

  .ca-car {
    bottom: -26px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: 65%;
    max-width: 350px;
  }
  .close-right-btn {
    position: absolute;
    top: -457px;
    right: 3px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
  }

  .input-line {
    width: 85%;
    max-width: 350px;
  }
  /* select-section */
  .select-heading > h2 {
    font-size: 50px;
  }

  .select-sec {
    padding: 80px 0;
  }
  .select-heading {
    text-align: center;
    margin-bottom: 35px;
  }

  .browse-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  /* explore-section */
  .card {
    max-width: 425px !important;
    min-height: 575px !important;
  }
  .card {
    max-width: 425px !important;
    min-height: 575px !important;
    margin: 3px auto;
  }
  /* premimum-sec */
  .premimum-seco {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .premum-head h5 {
    font-size: 32px;
    line-height: 38px;
  }
  /* brand-section */
  . .brand-slider {
    height: 100px;
  }
  .b1 {
    width: 75px;
  }
  .b4 {
    width: 110px;
  }
  /* footer-section */
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    text-align: center;
  }
  .logo-social {
    margin: 0 auto;
  }
  .store {
    text-align: center;
    margin: 0 auto;
  }

  .footer-cntn {
    justify-content: center !important;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
  }

  .footer-1 {
    max-width: 100%;
    text-align: center;
  }

  .footer-2 {
    width: 45%;
    text-align: center;
  }

  .footer-3 {
    width: 100%;
    text-align: center;
  }

  .download-heading {
    margin-top: 20px;
  }
  .google-play {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 768px) {
  /* modal */
  .modal-dialog {
    margin: 25px auto !important;
  }
  .close-right-btn {
    position: absolute;
    top: -403px;
    right: 21px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 78;
  }
  .ca-left {
    padding: 35px 20px 160px;
    min-height: 380px;
  }

  .ca-right {
    padding: 35px 20px;
  }

  .ca-car {
    width: 80%;
    max-width: 300px;
  }

  .ca-left h1,
  .ca-right h1 {
    font-size: 30px;
  }

  .social-icons i {
    width: 42px;
    height: 42px;
    font-size: 22px;
    padding: 8px;
  }
  /* select-section */
  .select-heading > h2 {
    font-size: 42px;
  }

  .select-sec {
    padding: 70px 0;
  }

  .select-list {
    gap: 15px;
  }

  .browse-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
  /* premimum-section */
  .premum-head > h5 {
    font-size: 28px;
    line-height: 34px;
  }

  /* brand-section */
  .brand-slider {
    height: 90px;
  }
  .b1 {
    width: 60px;
  }
  .b4 {
    width: 90px;
  }
  /* footer-sec */
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-cntn {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-2 {
    width: 100%;
  }

  .footer-last {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .copy {
    order: 3;
  }

  .terms {
    order: 1;
    justify-content: center;
  }

  .scroll-top {
    order: 2;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .icon-wrap {
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.4s ease, border 0.4s ease;
    position: relative;
    z-index: 2;
  }
  .btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    border: 1px solid black;
    padding: 6px 9px;
    border-radius: 48px;
    font-size: 12px;
    font-weight: 400;
    color: black;
    background: white;
    position: relative;
    overflow: hidden;
  }
  /* Header-section */
  .navbar-brand {
    width: 90px;
  }
  /* MODAL */
  .modal-dialog {
    margin: 20px auto !important;
  }
  .ca-left {
    padding-bottom: 150px;
    min-height: 360px;
  }

  .ca-car {
    width: 85%;
    max-width: 270px;
  }

  .input-line {
    width: 100%;
    padding: 10px 12px;
  }

  .input-line input {
    font-size: 14px;
  }

  .right-btn {
    padding: 10px 35px;
    font-size: 16px;
  }

  .social-icons i {
    width: 43px;
    height: 41px;
    font-size: 24px;
  }
  /* banner-sec */
  .banner-heading {
    font-size: 53px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0 !important;
  }
  .banner-sub-heading {
    font-size: 53px;
    font-weight: 400;
    color: var(--primary-color);
  }
  /* select-section */
  .select-heading > h2 {
    font-size: 34px;
  }

  .select-sec {
    padding: 60px 0;
  }

  .select-list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 100px;
  }

  .browse-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  .select-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  /* select-section */
  .card-title {
    font-size: 17px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--primary-color);
  }
  .card-text {
    font-size: 13px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    color: var(--primary-color);
  }
  .card-price {
    font-size: 17px;
    font-family: 700;
    color: var(--primary-color);
    font-family: "DM Sans", sans-serif;
  }
  .card-text:last-child {
    margin-bottom: 0 !important;
    margin-top: 271px;
  }
  .card {
    max-width: 425px !important;
    min-height: 523px !important;
  }
  .select-list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
  }
  .btn-tertiary {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
    border: 1px solid var(--secondary-color);
    padding: 0px 0 0px 9px;
  }

  /* Brand-section */
  .brand-sec {
    padding-bottom: 50px;
    overflow: hidden;
    position: relative;
  }
  .brand-slider {
    height: 80px;
  }
  .b1 {
    width: 50px;
  }
  .b4 {
    width: 75px;
  }
  /* footer-section */
  .footer-sec {
    padding-top: 25px;
  }

  .footer-logo {
    width: 140px;
  }

  .footer-para {
    font-size: 14px;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-1 h5 {
    font-size: 15px;
    line-height: 24px;
  }

  .socal-logo {
    width: 28px;
  }

  .store {
    width: 150px;
  }

  .terms li a {
    font-size: 13px;
  }

  .copy {
    font-size: 13px;
  }

  .scroll-top {
    width: 45px;
  }
}
@media screen and (max-width: 400px) {
  /* modal */
  .modal-dialog {
    margin: 15px auto !important;
  }
  .close-right-btn {
    position: absolute;
    top: -354px;
    right: 7px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 78;
  }
  .ca-left,
  .ca-right {
    padding: 25px 15px;
  }

  .ca-left {
    padding-bottom: 140px;
    min-height: 340px;
  }

  .ca-car {
    width: 90%;
  }

  .ca-left h1,
  .ca-right h1 {
    font-size: 24px;
  }

  .left-btn {
    padding: 10px 30px;
    font-size: 15px;
  }

  .social-icons i {
    width: 43px;
    height: 41px;
    font-size: 24px;
  }
  /* banner-section */
  .banner-heading {
    font-size: 40px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0 !important;
  }
  .banner-sub-heading {
    font-size: 40px;
    font-weight: 400;
    color: var(--primary-color);
  }

  /* select-sect */
  .select-heading > h2 {
    font-size: 28px;
  }

  .browse-btn img {
    width: 20px;
    height: 20px;
  }

  .browse-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .select-btn {
    font-size: 14px;
  }
  /* brand-section */
  .brand-slider {
    height: 70px;
  }
  .b1 {
    width: 45px;
  }
  .b4 {
    width: 65px;
  }
  /* footer-section */
  .footer-top {
    gap: 15px;
  }

  .footer-logo {
    width: 120px;
  }

  .address-logo {
    width: 28px;
  }

  .footer-para {
    font-size: 13px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-last {
    padding: 15px 0;
  }

  .scroll-top {
    width: 40px;
  }
}
@media (max-width: 375px) {
  /* modal */
  .modal-dialog {
    margin: 12px auto !important;
  }
  .ca-left {
    padding-bottom: 130px;
    min-height: 320px;
  }

  .ca-car {
    width: 95%;
  }

  .input-line {
    padding: 8px 10px;
  }

  .left-btn,
  .right-btn {
    font-size: 14px;
    padding: 8px 22px;
  }
  .banner-heading {
    font-size: 30px;
  }

  .small-heading {
    font-size: 16px;
  }

  .btn-secondary {
    padding: 2px 8px;
  }

  .btn-secondary > span {
    padding-left: 20px;
    padding-right: 18px;
  }
  /* modal */
  .ca-left h1,
  .ca-right h1 {
    font-size: 20px;
  }

  .input-line {
    padding: 8px 10px;
  }

  .right-btn {
    font-size: 14px;
    padding: 8px 20px;
  }

  .social-icons i {
    width: 43px;
    height: 41px;
    font-size: 24px;
  }
  .select-heading > h2 {
    font-size: 24px;
  }

  .browse-btn {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 30px;
  }

  .select-btn {
    padding: 10px 18px;
  }
  /* brand-section */
  .b1 {
    width: 40px;
  }
  .b4 {
    width: 55px;
  }
}

/* --- 320px and below --- */
@media (max-width: 320px) {
  /* modal */
  .modal-dialog {
    margin: 10px auto !important;
  }
  .ca-left {
    padding-bottom: 120px;
    min-height: 300px;
  }

  .ca-left h1,
  .ca-right h1 {
    font-size: 18px;
  }

  .social-icons i {
    width: 43px;
    height: 41px;
    font-size: 24px;
  }

  .input-line {
    width: 100%;
    font-size: 12px;
  }

  .right-btn {
    padding: 6px 18px;
    font-size: 13px;
  }
  .select-heading > h2 {
    font-size: 20px;
  }

  .browse-btn {
    font-size: 12px;
    padding: 8px 12px;
    width: 100%;
  }

  .select-btn {
    font-size: 12px;
    width: 100%;
  }

  .select-sec {
    padding: 50px 0;
  }
  /* brand-section */
  .brand-img > img {
    width: 125%;
    height: 100%;
    object-fit: cover;
  }
}
