@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-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(--looking);
}

/* 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/about/about-banner.png) no-repeat center/cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  z-index: 1;
}

.banner-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.banner-cntn {
  position: relative;
  z-index: 2;
}

.banner-heading {
  font-size: 70px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Breadcrumb styling */
.banner-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.banner-breadcrumb .breadcrumb-item a {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
  text-decoration: none;
}

.banner-breadcrumb .breadcrumb-item.active {
  font-size: 40px;
  font-weight: 400;
  color: var(--primary-color);
}

/* slash styling */
.banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--primary-color);
  font-size: 40px;
  padding: 0 8px;
}
/* extraordinary-section */
.extraordinary-sec {
  padding: 160px 0 160px;
}
.oridinary-head > h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--secondary-color);
  line-height: 40px;
}
.ordinary-sub > h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: var(--secondary-color);
}
.ordinary-para {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.8px;
  color: var(--secondary-color);
  margin-block: 20px;
  font-family: "DM Sans", sans-serif;
}
.video-sec {
  padding-bottom: 160px;
}

.video {
  max-width: 1296px;
  min-height: 600px;
  background: url(../assets/about/video-background.png) no-repeat center/cover;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.video-icon {
  width: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-icon:hover {
  transform: scale(1.1);
}

.video-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* counter-car */
.count-car {
  text-align: center;
}
.counter-cntn > h1 {
  font-size: 80px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: var(--tertiary-color);
}
.counter-cntn > p {
  font-size: 20px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: var(--secondary-color);
}
/* iphone-section */
.iphone-sec {
  padding: 320px 0 140px;
}
.iphone-back {
  background: var(--footer-color) no-repeat center/cover;
  width: 1296px;
  height: 417px;
  border-radius: 40px;
  position: relative;
  margin: 0 auto;
}
.iphone {
  width: 267px;
  height: 540px;
  position: absolute;
  bottom: 19.5px;
  left: 163px;
}
.iphone > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iphone-cntn {
  padding: 80px 136px 180px 560px;
}
.iphone-cntn > p {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.iphone-cntn > h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--primary-color);
}
.iphone-para {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
}
.iphone-heading {
  margin-bottom: 20px;
}
.iphone-sub {
  margin-bottom: 5px;
}
.playstore {
  width: 171px;
  margin-right: 24px;
}
.appstore {
  width: 171px;
}
.playstore > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appstore > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* customer=section */
.customer-sec {
  padding-bottom: 100px;
  position: relative;
}
.cutomer-left-heading > h6 {
  font-size: 40px;
  font-weight: 500;
  color: var(--tertiary-color);
}
.cutomer-right-heading > h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--tertiary-color);
  font-family: "DM Sans", sans-serif;
  line-height: 24px;
}
.customer-top {
  margin-bottom: 45px;
}
.customer-background {
  border-radius: 21px;
  max-width: 1320px;
  min-height: 683px;
  background: url(../assets/customer-big.png) no-repeat center/cover;
  overflow: visible; /* allow arrows outside */
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 286px !important;
  height: 216px;
  background: var(--primary-color);
  margin-top: 450px;
  /* margin-inline: 17px; */
  border-radius: 22px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* chat */
.review-card {
  background-color: #e9fef3;
  border-radius: 16px;
  padding: 25px 23px;
  width: 286px;
  height: 216px;
  font-family: "Poppins", sans-serif;
  color: #111;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.review-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}

.verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #555;
  margin-left: 66px;
}
.verified > img {
  width: 17px;
  height: 17px;
  object-fit: cover;
}

.check {
  color: var(--line-color);
  font-size: 14px;
}

.stars {
  color: #f9b935;
  font-size: 16px;
}

.review-title {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0 5px;
  font-family: "DM Sans", sans-serif;
  color: var(--tertiary-color);
}

.review-text {
  font-size: 16px;
  color: var(--tertiary-color);
  line-height: 16px;
  font-weight: 300;
  font-family: "DM Sans", sans-serif;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  bottom: 0; /* Arrows move to bottom */
  top: 93% !important;
  transform: translateY(50%);
  color: var(--secondary-color);
  font-weight: bold;
  z-index: 99;
}
.custom-prev {
  left: 50%;
  width: 20px !important;
  height: 18px !important;
}
.custom-next {
  right: 44%;
  width: 20px !important;
  height: 18px !important;
}
/* question-section */

.question-sec {
  padding-bottom: 170px;
}

.question-heading {
  margin-bottom: 83px;
}

.question-heading > h4 {
  font-size: 40px;
  font-weight: 500;
  color: var(--secondary-color);
}

/* Accordion Styling */
.question-sec {
  padding-bottom: 170px;
}

.question-heading {
  margin-bottom: 83px;
}

.question-heading > h4 {
  font-size: 40px;
  font-weight: 500;
  color: var(--secondary-color);
}

/* Accordion Styling */
.custom-accordion-item {
  margin-bottom: 83px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.custom-btn {
  background-color: var(--primary-color);
  box-shadow: none;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 24px;
  font-family: "DM Sans", sans-serif;
  border-radius: 10px;
  padding: 18px 25px;
  position: relative;
}

/* Remove Bootstrap default arrow */
.custom-btn::after {
  display: none !important;
}

/* Custom right-side "+" button (like screenshot) */
.custom-btn::before {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00c389; /* green background */
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 6px; /* rectangle with slight round edges */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Change to "-" when open */
.accordion-button:not(.collapsed)::before {
  content: "–";
  background-color: var(--looking);
}

/* Keep open button styling consistent */
.accordion-button:not(.collapsed) {
  background-color: #d4f3ef;
  color: #000;
  box-shadow: none;
}

.accordion-body {
  background-color: #ffffff;
  border-top: 1px solid #d4f3ef;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
}
/* looking-section */
.looking-sec {
  padding-bottom: 170px;
}

.looking-card {
  width: 100%;
  max-width: 1276px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}

.looking-left {
  background: var(--looking) no-repeat center/cover;
  padding: 80px 60px;
  display: flex;
  align-items: center;
}

.looking-heading h5 {
  font-size: 48px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.looking-heading h6 {
  font-size: 48px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.looking-heading p {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  font-family: "DM Sans", sans-serif;
  margin-bottom: 16px;
  max-width: 500px;
}

.btn-looking {
  padding: 12px 30px;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-looking:hover {
  background-color: var(--primary-color);
  color: var(--tertiary-color);
}
.looking-back {
  width: 709px;
  height: 427px;
}
.looking-back > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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: #00c28c; /* green arrow */
  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: #00a876;
}
.scroll-top {
  width: 54px;
}
.scroll-top > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Media Query */
@media screen and (max-width: 1330px) {
  /* iphopne-sec */
  .iphone-cntn {
    padding: 56px 64px 72px 478px;
  }
  .looking-back {
    width: 709px;
  }
  .looking-back > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .iphone-back {
    background: var(--footer-color) no-repeat center / cover;
    width: 952px;
    height: 417px;
    border-radius: 40px;
    position: relative;
    margin: 0 auto;
  }
  .iphone {
    width: 227px;
    height: 479px;
    position: absolute;
    bottom: 80.5px;
    left: 105px;
  }
  .iphone-cntn > h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--primary-color);
  }
}
@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%;
  }
  /* Cutomer-section */
  .cutomer-left-heading > h6 {
    font-size: 40px;
    font-weight: 500;
    color: var(--tertiary-color);
    text-align: center;
  }
  .cutomer-right-heading > h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--tertiary-color);
    font-family: "DM Sans", sans-serif;
    line-height: 24px;
    text-align: center;
  }
  .customer-sec {
    padding-bottom: 60px;
  }
  .team-heading > h6 {
    font-size: 40px;
    font-weight: 500;
    color: var(--tertiary-color);
    text-align: center;
  }
  .custom-next {
    right: 40%;
    width: 20px !important;
    height: 18px !important;
  }
  .custom-prev {
    left: 35%;
    width: 20px !important;
    height: 18px !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    bottom: 0;
    top: 97% !important;
    transform: translateY(50%);
    color: var(--secondary-color);
    font-weight: bold;
    z-index: 99;
  }
  /* question-section */
  .question-sec {
    padding-bottom: 52px;
  }
  /* looking-section */
  .looking-heading h5,
  .looking-heading h6 {
    font-size: 40px;
  }
  .looking-sec {
    padding-bottom: 100px;
  }
  .looking-back {
    width: 540px;
  }
  /* premimum-sec */
  .premum-head h5 {
    font-size: 36px;
  }
  /* Brand-section */
 .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;
  }
  /* extraordinary-section */
  .oridinary-head > h2 {
    font-size: 30px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 40px;
  }
  .extraordinary-sec {
    padding: 71px 0 76px;
  }
  .ordinary-sub > h2 {
    font-size: 27px;
    font-weight: 500;
    line-height: 38px;
    color: var(--secondary-color);
  }
  .ordinary-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 27.8px;
    color: var(--secondary-color);
    margin-block: 14px;
    font-family: "DM Sans", sans-serif;
  }
  /* video-section */
  .video-sec {
    padding-bottom: 50px;
  }
  .video {
    max-width: 1119px;
    min-height: 441px;
    background: url(../assets/about/video-background.png) no-repeat center /
      cover;
  }
  .video-icon {
    width: 60px;
  }
  /* count-car-section */
  .counter-cntn > h1 {
    font-size: 67px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--tertiary-color);
  }
  .counter-cntn > p {
    font-size: 16px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--secondary-color);
  }
  /* iphone-section */
  .iphone {
    width: 153px;
    height: 307px;
    position: absolute;
    bottom: 265.5px;
    left: 54px;
  }
  .iphone-back {
    background: var(--footer-color) no-repeat center / cover;
    width: 735px;
    height: 417px;
    border-radius: 40px;
    position: relative;
    margin: 0 auto;
  }
  .iphone-cntn {
    padding: 40px 51px 61px 273px;
  }
  /* question-section */
  .custom-btn {
    background-color: var(--primary-color);
    box-shadow: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
    border-radius: 10px;
    padding: 18px 25px;
    position: relative;
  }
  /* looking-section */
  .looking-heading h5,
  .looking-heading h6 {
    font-size: 34px;
  }

  .looking-heading p {
    font-size: 15px;
  }

  .looking-left {
    padding: 60px 40px;
  }
  .looking-back {
    width: 540px;
    height: 361px;
  }
  /* 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;
  }
  /* video-section */
  .video {
    max-width: 1119px;
    min-height: 354px;
    background: url(../assets/about/video-background.png) no-repeat center /
      cover;
  }
  /* count-car-section */
  .counter-cntn > h1 {
    font-size: 40px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--tertiary-color);
  }
  .counter-cntn > p {
    font-size: 13px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--secondary-color);
  }
  /* iphone-section */
  .iphone-back {
    background: var(--footer-color) no-repeat center / cover;
    width: 750px;
    height: 386px;
    border-radius: 40px;
    position: relative;
    margin: 0 auto;
  }
  .iphone-back {
    background: var(--footer-color) no-repeat center / cover;
    width: 555px;
    height: 386px;
    border-radius: 40px;
    position: relative;
  }
  /* question-section */
  .custom-btn {
    background-color: var(--primary-color);
    box-shadow: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    border-radius: 10px;
    padding: 18px 0px;
    position: relative;
  }
  .custom-accordion-item {
    margin-bottom: 49px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--primary-color);
  }
  .question-heading {
    margin-bottom: 49px;
  }
  /* looking-section */
  .looking-card .row {
    flex-direction: column;
  }

  .looking-left,
  .looking-right {
    width: 100%;
  }

  .looking-left {
    text-align: center;
    padding: 50px 25px;
  }
  .looking-back {
    width: 752px;
  }

  .looking-heading h5,
  .looking-heading h6 {
    font-size: 28px;
  }

  .looking-heading p {
    font-size: 14px;
    max-width: 90%;
    margin: 0 auto 20px;
  }

  .looking-btn {
    text-align: center;
  }
  /* 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-section */
  .banner-heading {
    font-size: 43px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  .banner-sub-heading {
    font-size: 39px;
    font-weight: 400;
    color: var(--primary-color);
  }
  /* Extra-ordinary-section */
  .oridinary-head > h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 40px;
  }
  .ordinary-sub > h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--secondary-color);
  }
  .ordinary-para {
    font-size: 12px;
    font-weight: 400;
    line-height: 19.8px;
    color: var(--secondary-color);
    margin-block: 10px;
    font-family: "DM Sans", sans-serif;
  }
  .extraordinary-sec {
    padding: 47px 0 47px;
  }
  /* count-car-section */
  .counter-cntn > h1 {
    font-size: 30px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--tertiary-color);
  }
  .counter-cntn > p {
    font-size: 12px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--secondary-color);
  }
  /* iphone-section */
  .iphone {
    width: 102px;
    height: 207px;
    position: absolute;
    bottom: 274.5px;
    left: 417px;
  }
  .iphone-cntn {
    padding: 64px 15px 15px 14px;
  }
  .iphone {
    width: 75px;
    height: 154px;
    position: absolute;
    bottom: 338.5px;
    left: 147px;
  }
  .iphone-back {
    background: var(--footer-color) no-repeat center / cover;
    width: 378px;
    height: 386px;
    border-radius: 40px;
    position: relative;
  }
  .store-sec {
    margin-top: 72px;
  }
  .iphone-cntn > .iphone-sub {
    font-size: 17px;
  }
  .iphone-cntn > h2 {
    font-size: 19px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 17px;
  }
  .iphone-para {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 400;
  }
  .iphone-cntn > .iphone-heading {
    font-size: 25px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 17px;
  }
  .iphone-sec {
    padding: 137px 0 140px;
  }
  /* customer-section */
  .cutomer-left-heading > h6 {
    font-size: 28px;
    font-weight: 500;
    color: var(--tertiary-color);
    text-align: center;
  }
  .cutomer-right-heading > h5 {
    font-size: 14px;
    font-weight: 500;
    color: var(--tertiary-color);
    font-family: "DM Sans", sans-serif;
    line-height: 24px;
    text-align: center;
  }
  .review-card {
    background-color: #e9fef3;
    border-radius: 16px;
    padding: 24px 23px;
    width: 231px;
    height: 216px;
    font-family: "Poppins", sans-serif;
    color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  .review-text {
    font-size: 13px;
    color: var(--tertiary-color);
    line-height: 12px;
    font-weight: 300;
    font-family: "DM Sans", sans-serif;
  }
  .review-title {
    font-size: 13px;
    font-weight: 500;
    margin: 10px 0 5px;
    font-family: "DM Sans", sans-serif;
    color: var(--tertiary-color);
  }
  .verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #555;
    margin-left: 11px;
  }
  .swiper-slide {
    width: 240px !important;
    height: 216px;
    background: var(--primary-color);
    margin-top: 450px;
    /* margin-inline: 17px; */
    border-radius: 22px;
  }
  /* question-sec */
  .custom-btn::before {
    content: "+";
    position: absolute;
    right: 5px;
    top: 18%;
    transform: translateY(-50%);
    background-color: var(--looking);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    width: 22px;
    height: 21px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .question-heading > h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--secondary-color);
  }
  .question-heading {
    margin-bottom: 20px;
  }
  .custom-accordion-item {
    margin-bottom: 17px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--primary-color);
  }
  /* looking-section */
  .looking-left {
    padding: 40px 20px;
  }

  .looking-heading h5,
  .looking-heading h6 {
    font-size: 24px;
  }
  .looking-back {
    width: 560px;
    height: 358px;
  }
  .btn-looking {
    font-size: 14px;
    padding: 8px 22px;
  }
  /* premimum-sec */
  .premium-sec {
    padding-bottom: 45px;
  }
  .premimum-seco {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .premum-head h5 {
    font-size: 24px;
    line-height: 30px;
  }
  /* 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) {
  .banner-breadcrumb .breadcrumb-item a {
    font-size: 30px;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
  }
  .banner-breadcrumb .breadcrumb-item.active {
    font-size: 30px;
    font-weight: 400;
    color: var(--primary-color);
  }

  .banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--primary-color);
    font-size: 30px;
    padding: 0 8px;
  }
  /* 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;
  }
  /* video-secton */
  .video {
    max-width: 1115px;
    min-height: 162px;
    background: url(../assets/about/video-background.png) no-repeat center /
      cover;
  }
  /* count-car-section */
  .counter-cntn > p {
    font-size: 9px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--secondary-color);
  }
  .counter-cntn > h1 {
    font-size: 26px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    color: var(--tertiary-color);
  }
  /* iphone-section */
  .iphone {
    width: 102px;
    height: 207px;
    position: absolute;
    bottom: 274.5px;
    left: 42px;
  }
  .iphone-cntn {
    padding: 64px 15px 15px 14px;
  }
  .iphone {
    width: 64px;
    height: 134px;
    position: absolute;
    bottom: 338.5px;
    left: 114px;
  }
  .iphone-back {
    background: var(--footer-color) no-repeat center / cover;
    width: 292px;
    height: 386px;
    border-radius: 40px;
    position: relative;
  }
  .store-sec {
    margin-top: 72px;
  }
  .iphone-cntn > .iphone-sub {
    font-size: 11px;
  }
  .iphone-cntn > h2 {
    font-size: 19px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 17px;
  }
  .iphone-para {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 400;
  }
  .iphone-cntn > .iphone-heading {
    font-size: 19px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 17px;
  }
  .iphone-sec {
    padding: 137px 0 140px;
  }
  .looking-back {
    width: 384px;
    height: 252px;
  }
  /* premum-sec */
  .premum-head > h5 {
    font-size: 22px;
    line-height: 28px;
  }
  .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;
  }
    .brand-slider { height: 55px; }
  .b1 { width: 38px; }
  .b4 { width: 50px; }
}
@media screen and (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;
  }
  /* looking-section */
  .looking-left {
    padding: 30px 15px;
  }

  .looking-heading h5,
  .looking-heading h6 {
    font-size: 20px;
  }

  .looking-heading p {
    font-size: 13px;
  }

  .btn-looking {
    font-size: 13px;
    padding: 7px 18px;
  }
  .looking-back {
    width: 304px;
    height: 198px;
  }
  /* premimum-sec */
  .premum-head h5 {
    font-size: 20px;
    line-height: 26px;
  }
   .brand-slider { height: 50px; }
  .b1 { width: 35px; }
  .b4 { width: 48px; }
}
