@charset "UTF-8";

@font-face {
  font-family: "Afacad Regular";
  src: url("https://insta.nexteqsol.com/nks-ec-uat/custom_ecommerce_dev/public//uploads/all/nks/Afacad-Regular_98597819-f602-4355-bdcc-d786d0a3fe57.ttf") format("truetype");
}

@font-face {
  font-family: "Afacad Medium";
  src: url("https://insta.nexteqsol.com/nks-ec-uat/custom_ecommerce_dev/public//uploads/all/nks/Afacad-Medium_8d72507b-ab81-4963-afb5-34fa60653d7b.ttf") format("truetype");
}

:root {
  --Afacad-Regular: "Afacad Regular", sans-serif;
  --Afacad-Medium: "Afacad Medium", sans-serif;
  --primary-main-color: #DF3E17;
  --white: #fff;
  --black: #22223C;
}

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

body {
  line-height: 1.2;
  font-family: var(--Afacad-Regular);
  background-color: #FAFAFA;
}

img,
video {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:focus-visible,
img:focus-visible {
  outline: 0 !important;
}

input:focus-visible,
textarea:focus-visible {
  outline: 0px !important;
}

.primary-title {
  color: var(--black);
  font-size: clamp(30px, 4vw, 38px);
  font-family: var(--Afacad-Regular);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.primary-title1 {
  color: var(--black);
  font-size: clamp(30px, 4vw, 32px);
  font-family: var(--Afacad-Regular);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.desc {
  font-size: clamp(14px, 4vw, 17px);
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  line-height: 1.1;
  color: rgba(34, 34, 60, 0.5019607843);
}

.primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: block;
  max-width: fit-content;
}

.primary-btn[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.primary-btn.white {
  background-color: var(--white);
  color: var(--primary-main-color);
}

/* SIDEBAR START STYLE */
body.open-sidebar .sidebar,
body.open-filter .filter-card-main {
  transition-delay: 0.2s;
}

body.open-sidebar .sidebar-bg,
body.open-filter .filter-bg,
body.open-sidebar .sidebar,
body.open-filter .filter-card-main {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.filter-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 102;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 350px;
  background-color: var(--white);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  z-index: 102;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.sidebar .sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
  border-bottom: 1px solid var(--black);
}

.sidebar .sidebar-body {
  overflow: auto;
  height: calc(100% - 80px);
  padding: 15px;
}

.sidebar .sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar .sidebar-body ul li {
  border-bottom: 1px solid var(--black);
}

.sidebar .sidebar-body ul li a {
  display: block;
  padding: 10px;
  color: var(--black);
  font-size: 1.1rem;
}

.sidebar .sidebar-body ul li:last-child {
  border-bottom: none;
}

.sidebar .sidebar-body ul.dropdown {
  padding: 0px;
  display: none;
}

.sidebar .sidebar-body ul.dropdown li {
  border-bottom: none;
  border-top: 1px solid #eee;
}

.sidebar .sidebar-body ul.dropdown li .our-simple-main {
  padding-left: 20px;
  font-size: 16px;
}

/* HEADER STYLE START */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  z-index: 999;
  right: 20px;
}

header {
  position: sticky;
  top: 0;
  padding: 20px 0px;
  z-index: 999;
  background-color: var(--white);
  box-shadow: 0px 2px 4px 0px rgba(34, 34, 60, 0.2);
}

@media screen and (max-width: 992px) {
  header {
    z-index: 9;
  }
}

header .header-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

header .header-menu li {
  position: relative;
}

header .header-menu li a {
  color: var(--black);
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 400;
}

header .header-menu li a.active {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--white);
}

header .header-menu li a.our-brands::after {
  content: "";
  background-image: url("https://insta.nexteqsol.com/nks-ec-uat/custom_ecommerce_dev/public//uploads/all/nks/chevron-down_5d9beea6-7f96-4904-9522-aef67546e91b.svg");
  width: 10px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

header .header-menu li a.our-brands {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

header .header-phone {
  color: var(--primary-main-color);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--Afacad-Medium);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

header div.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
}

header div.custom-dropdown .brand-grid {
  display: flex;
  border-top: 1px solid #E0E0E0;
  overflow: auto;
}

header div.custom-dropdown .brand-grid .brand-card {
  flex: 0 0 228px;
  text-align: center;
  border-radius: 8px;
}

header div.custom-dropdown .brand-grid .brand-card a {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0px;
  border-right: 1px solid #E0E0E0;
}

header div.custom-dropdown .brand-grid .brand-card a .image {
  min-height: 70px;
  line-height: 70px;
  height: 70px;
}

header div.custom-dropdown .brand-grid .brand-card a h3 {
  color: var(--black);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  letter-spacing: -0.5px;
}

header div.custom-dropdown .brand-grid .brand-card a .view-all {
  color: var(--primary-main-color);
  font-size: clamp(14px, 4vw, 16px);
}

.brand-grid::-webkit-scrollbar {
  height: 10px;
}

.brand-grid::-webkit-scrollbar-thumb {
  background-color: var(--primary-main-color);
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  header {
    padding: 20px 0px;
  }

  .menu-open svg {
    fill: var(--primary-main-color);
  }
}

/* HEADER STYLE CLOSE */
/* SLIDER LOGO STYLE START */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.sliderLogo {
  overflow: hidden;
  background: #FAFAFA;
  white-space: nowrap;
  border-top: 1px solid rgba(34, 34, 60, 0.1019607843);
  border-bottom: 1px solid rgba(34, 34, 60, 0.1019607843);
  position: relative;
}

.sliderLogo-slide {
  display: inline-flex;
  animation: 35s slide infinite linear;
}

.logoImage {
  line-height: 150px;
  border-right: 1px solid rgba(34, 34, 60, 0.1019607843);
  padding: 20px;
  text-align: center;
  width: 300px;
}

@media screen and (max-width: 768px) {
  .logoImage {
    line-height: 100px;
    padding: 0px;
    width: 200px;
  }
}

/* SLIDER LOGO STYLE CLOSE */
/* FOOTER STYLE START */
.border-top {
  border-top: 1px solid rgba(34, 34, 60, 0.1019607843);
  margin: 20px 0px;
}

.main-footer {
  background-color: var(--white);
  padding-top: 70px;
  background-image: url("https://insta.nexteqsol.com/nks-ec/custom_ecommerce_dev/public//uploads/all/nks/footer-bg_70815202-bff7-4223-b748-e1698950ad7f.png");
  background-position: top left;
  background-size: 70% auto;
  background-repeat: no-repeat;
}

.main-footer h3 {
  font-size: clamp(18px, 4vw, 24px);
  color: var(--primary-main-color);
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.main-footer ul {
  padding: 0;
  margin: 0;
}

.main-footer ul li {
  list-style: none;
}

.main-footer ul li a {
  font-size: clamp(14px, 4vw, 16px);
  color: var(--black);
  margin-bottom: 5px;
  display: block;
}

.main-footer span {
  color: rgba(34, 34, 60, 0.6980392157);
  font-size: clamp(14px, 4vw, 16px);
}

.main-footer span a {
  color: rgba(34, 34, 60, 0.6980392157);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-family: var(--Afacad-Medium);
}

/* FOOTER STYLE CLOSE */
/* HUSSAIN STYLE START */
.why-choose-us {
  margin: 30px 0px;
}

@media screen and (max-width: 768px) {
  .why-choose-us {
    margin: 15px 0px;
  }
}

.why-choose-us .feature-card {
  border-radius: 4px;
  padding: 46px;
  background: rgba(34, 34, 60, 0.0509803922);
  border: 1px solid rgba(34, 34, 60, 0.1019607843);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .why-choose-us .feature-card {
    padding: 40px 20px;
  }
}

.why-choose-us .feature-card .icon {
  font-size: 24px;
  color: #0d6efd;
}

.why-choose-us .feature-card h5 {
  font-size: clamp(26px, 4vw, 32px);
  margin-bottom: 12px;
  color: var(--black);
}

.why-choose-us .feature-card p {
  font-size: clamp(14px, 4vw, 17px);
  color: rgba(34, 34, 60, 0.8);
}

.why-choose-us .cta-card {
  background-color: var(--primary-main-color);
  border-radius: 4px;
  padding: 46px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .why-choose-us .cta-card {
    padding: 40px 20px;
  }
}

.why-choose-us .cta-card .icon {
  font-size: 24px;
  color: var(--white);
}

.why-choose-us .cta-card h5 {
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 32px);
  color: var(--white);
}

.why-choose-us .cta-card p {
  color: var(--white);
  opacity: 0.9;
  font-size: clamp(14px, 4vw, 17px);
}

.why-choose-us .cta-card .primary-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 8px 20px;
}

.banner-section {
  padding: 30px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .banner-section {
    padding: 30px 0px;
    margin-bottom: 30px;
    background-position: center;
  }
}

.banner-section .banner-text {
  max-width: 570px;
  margin: auto;
  text-align: center;
}

.banner-section h1 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -1px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
}

.banner-section p {
  font-size: clamp(16px, 4vw, 20px);
  color: var(--white);
  margin: 20px 0px;
}

.banner-section .primary-btn {
  font-size: 16px;
  letter-spacing: -0.5px;
  font-family: var(--Afacad-Medium);
  text-transform: capitalize;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-section .primary-btn .playicon{
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid;
}

.banner-section img {
  cursor: pointer;
  border-radius: 5px;
}

.banner-section .form-card-main {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(50px);
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .banner-section .form-card-main {
    padding: 20px;
  }
}

.banner-section .form-card-main form .input {
  position: relative;
  margin-bottom: 20px;
}

.banner-section .form-card-main form .input.error input {
  border: 1px solid #e15837 !important;
}

.banner-section .form-card-main form .input .iti {
  width: 100%;
}

.banner-section .form-card-main form .input .iti .iti__flag-container {
  padding-inline-start: 20px;
}

.banner-section .form-card-main form .input .iti .iti__tel-input {
  padding-left: 105px !important;
}

.banner-section .form-card-main form .input .iti .iti__search-input {
  padding: 10px;
}

.banner-section .form-card-main form .input input {
  background: rgb(255, 255, 255);
  width: 100%;
  padding: 20px 16px 20px 50px;
  border-radius: 36px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5);
  border: 0;
}

.banner-section .form-card-main form .input input::placeholder {
  color: rgba(34, 34, 60, 0.5);
}

.banner-section .form-card-main form .input .error-txt {
  display: block;
  width: 100%;
  color: #e15837;
  font-size: 12px;
  font-family: var(--Afacad-Medium);
}

.banner-section .form-card-main form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}

.banner-section .form-card-main form .primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: unset;
  border: none;
}

#videoModal {
  /* margin-top: 20px; */
}

#videoModal .modal-content {
  background-color: transparent;
  border-radius: 8px;
  max-width: 800px;
  margin: auto;
}

#videoModal .modal-content .video-container {
  border-radius: 8px;
}

#videoModal .modal-content .video-container #bannerVideo {
  border-radius: 8px;
}

#videoModal #closeModalBtn {
  position: absolute;
  top: 40px;
  right: 40px;
}

@media screen and (max-width: 768px) {
  #videoModal #closeModalBtn {
    top: 20px;
    right: 20px;
  }
}

.testimonial-section {
  position: relative;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .testimonial-section {
    margin: 15px 10px;
  }
}

.testimonial-section .testimonial-position {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(50% 50% at 50% 50%, rgba(121, 34, 12, 0.7) 0%, rgba(223, 62, 23, 0.7) 100%);
  max-width: 50%;
  width: 100%;
  padding: 0 100px;
  color: var(--white);
  z-index: 2;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  gap: 70px;
  height: 100%;
}

.testimonial-section .testimonial-position .primary-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.testimonial-section .testimonial-position .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 1192px) {
  .testimonial-section .testimonial-position {
    padding: 0 70px;
    gap: 20px;
    max-width: unset;
  }
}

@media screen and (max-width: 992px) {
  .testimonial-section .testimonial-position {
    padding: 0 30px;
    gap: 20px;
    max-width: unset;
  }
}

.testimonial-section .testimonial-text {
  display: grid;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .testimonial-section .testimonial-text {
    gap: 20px;
  }
}

.testimonial-section .text-name-main p.desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6980392157);
}

.testimonial-section .text-name-main span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: #fff;
}

.testimonial-section .testimonial-arrow {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  gap: 15px;
}

@media screen and (max-width: 768px) {
  .testimonial-section .testimonial-arrow {
    margin-top: 0;
  }
}

.testimonial-section .testimonial-arrow .swiper-button-disabled img {
  cursor: not-allowed !important;
  opacity: 0.5;
}

.testimonial-section .testimonial-arrow .testimonial-prev img,
.testimonial-section .testimonial-arrow .testimonial-next img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.testimonial-section .testimonial-image .swiper-slide img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}

/* HUSSAIN STYLE CLOSE */
/* NOMAN STYLE START */
.closeFilter,
.openFilter {
  cursor: pointer;
}

.product-section {
  margin: 0px 0px;
}

@media screen and (max-width: 768px) {
  .product-section {
    margin: 15px 0px;
  }
}

.product-section .desc {
  max-width: 650px;
}

.product-section .filter-card-main {
  position: sticky;
  top: 0;
  /* Hover effects */
}

.product-section .filter-card-main .filter-panel {
  background: white;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  max-height: 100vh;
  overflow: auto;
}

@media screen and (max-width: 992px) {
  .product-section .filter-card-main .filter-panel {
    margin-bottom: 25px;
  }
}

.product-section .filter-card-main .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.product-section .filter-card-main .filter-title {
  font-family: var(--Afacad-Regular);
  font-size: 22px;
  font-weight: 400;
  color: rgb(34, 34, 60);
}

.product-section .filter-card-main .filter-icon {
  color: var(--primary-main-color);
  font-size: 16px;
  cursor: pointer;
}

.product-section .filter-card-main .filter-section {
  margin-bottom: 20px;
}

.product-section .filter-card-main .filter-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.product-section .filter-card-main .dropdown-arrow {
  color: #666;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.product-section .filter-card-main .dropdown-arrow.active img {
  transform: rotate(0deg);
}

.product-section .filter-card-main .dropdown-arrow img {
  transform: rotate(-90deg);
  transition: 0.3s all;
}

.product-section .filter-card-main .model-options {
  display: block;
  margin-left: 0;
}

.product-section .filter-card-main .model-option {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
}

.product-section .filter-card-main .model-option.hidden {
  display: none;
}

.product-section .filter-card-main .model-option:hover {
  background-color: #f8f9fa;
  border-radius: 6px;
  margin: 0 -8px;
  padding: 8px 8px;
}

.product-section .filter-card-main .checkbox-input {
  display: none;
}

.product-section .filter-card-main .checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(223, 62, 23, 0.1);
  border-radius: 3px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 62, 23, 0.1);
  transition: all 0.2s ease;
}

.product-section .filter-card-main .checkbox-input:checked+.checkbox {
  background-color: var(--primary-main-color);
  border-color: var(--primary-main-color);
}

.product-section .filter-card-main .checkbox-input:checked+.checkbox::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-input.partial-selected:checked+.checkbox::after {
      content: '' !important;
      background: white;
      width: 10px;
      border-top: 2px solid #fff;
}

.product-section .filter-card-main .option-text {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  color: rgb(34, 34, 60);
  font-weight: 400;
  flex: 1;
}

.product-section .filter-card-main .collapsed .model-options {
  display: none;
}

.product-section .filter-card-main .collapsed .dropdown-arrow {
  transform: rotate(-90deg);
}

.product-section .filter-card-main .filter-label span {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  color: rgb(34, 34, 60);
  font-weight: 400;
}

.product-section .filter-card-main .filter-label:hover {
  color: var(--primary-main-color);
}

.product-section .filter-card-main .filter-label:hover .dropdown-arrow {
  color: var(--primary-main-color);
}

@media screen and (max-width: 992px) {
  .product-section .filter-card-main {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 350px;
    background-color: var(--white);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
    z-index: 102;
    transform: translateX(400px);
    visibility: hidden;
    transition: 0.3s;
    opacity: 0;
    overflow: auto;
  }

  .product-section .filter-card-main .filter-panel {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
}

.product-section .heading-main {
  border-bottom: solid 1px rgba(34, 34, 60, 0.1);
  margin-bottom: 30px;
}

.product-section .land-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  z-index: 2;
}

.product-section .land-card-main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200vh;
  height: 100%;
  background-color: #FAFAFA;
  z-index: -1;
}

.product-section .land-card-main.right {
  margin-left: 0;
  right: auto;
}

.product-section .land-card-main.right::after {
  left: 0;
}

@media screen and (max-width: 1300px) {
  .product-section .land-card-main.right {
    margin-right: 0;
  }
}

@media screen and (max-width: 1300px) {
  .product-section .land-card-main {
    margin-left: 0;
  }
}

.product-section .land-card-main .img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-section .land-card-main .product-button-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 1200px) {
  .product-section .land-card-main .product-button-main {
    justify-content: center;
    margin-bottom: 20px;
  }
}

.product-section .land-card-main .product-button-main .arrow-main {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-section .land-card-main .product-button-main .arrow-main a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--primary-main-color);
  border-radius: 100%;
}

.product-section .land-card-main .product-button-main .arrow-main a.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-section .product-slider-main .swiper-slide {
  height: auto;
}

.product-section .product-card-main {
  background-color: rgb(255, 255, 255);
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 32px;
  border-radius: 4px;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.product-section .product-card-main:hover .product-img-main .img-main .eye-img {
  transform: translateY(50px);
  visibility: visible;
  opacity: 1;
}

.product-section .product-card-main .product-img-main .img-main {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  position: relative;
}

.product-section .product-card-main .product-img-main .img-main .land-img {
  border: solid 1px rgba(34, 34, 60, 0.2);
  background: rgb(255, 255, 255);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-section .product-card-main .product-img-main .img-main .eye-img {
  border: solid 1px var(--primary-main-color);
  background: var(--primary-main-color);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  transition: 0.3s all;
  transform: translateY(0);
  visibility: hidden;
  cursor: pointer;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .product-section .product-card-main .product-img-main .img-main .eye-img {
    transform: translateY(50px);
    visibility: visible;
    opacity: 1;
  }
}

.product-section .product-card-main .product-img-main .custom-card-slider {
  position: relative;
  z-index: 0;
}

.product-section .product-card-main .title-link h4 {
  font-family: var(--Afacad-Regular);
  font-size: 24px;
  font-weight: 400;
}

.product-section .product-card-main .title-link  {
  text-align: left;
}

.product-section .product-card-main .card-body .price {
    font-size: 16px;
    color: var(--primary-main-color);
}

.product-section .product-card-main .card-body .price.del {
    font-size: 14px;
    opacity: 0.6;
}

.product-section .product-card-main .title-link a {
  font-family: var(--Afacad-Medium);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-main-color);
  text-decoration: underline;
}

.our-simple-main {
  margin: 80px 0px;
}

.our-simple-main.active svg path {
  fill: var(--white);
}

.our-simple-main.active .counting-circle-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 492px;
  overflow: hidden;
  margin: 0 auto 30px auto;
}

.our-simple-main.active .counting-circle-main .circle-number {
  width: 48px;
  height: 48px;
  display: flex;
  background: var(--primary-main-color);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.our-simple-main.active .counting-circle-main .circle-number::before {
  transition: 0.7s ease all;
  content: "";
  position: absolute;
  top: 50%;
  left: 48px;
  border: dashed 1px var(--primary-main-color);
  width: 110px;
}

.our-simple-main.active .counting-circle-main .circle-number span {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.our-simple-main.active .simple-card-main {
  border: solid 1px var(--primary-main-color);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}

.our-simple-main.active .simple-card-main .svg-main {
  border-bottom: solid 1px rgba(34, 34, 60, 0.05);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.our-simple-main.active .simple-card-main .svg-main .icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--primary-main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-simple-main .heading-main {
  text-align: center;
}

.our-simple-main .counting-circle-main {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  max-width: 492px;
  overflow: hidden;
  margin: 0 auto 30px auto;
}

.our-simple-main .counting-circle-main .circle-number {
  width: 48px;
  height: 48px;
  display: flex;
  background: rgb(240, 240, 240);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.our-simple-main .counting-circle-main .circle-number span {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

.our-simple-main .counting-circle-main .connecting-lines {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  height: 1.5px;
  z-index: -1;
  transform: translateY(-50%);
}

.our-simple-main .counting-circle-main .connecting-line {
  position: absolute;
  top: 0;
  height: 1.5px;
  width: 0;
}

.our-simple-main .counting-circle-main .connecting-line:nth-child(2) {
  background-image: linear-gradient(to right, #dedddd 50%, transparent 50%);
  background-size: 20px 2px;
  width: 100%;
  transition: width 4.5s ease-in-out;
}

.our-simple-main .simple-card-main {
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 36px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  transition: 0.7s ease all;
}

.our-simple-main .simple-card-main .svg-main {
  border-bottom: solid 1px rgba(34, 34, 60, 0.05);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.our-simple-main .simple-card-main .svg-main .icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: rgba(34, 34, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.7s ease all;
}

.our-simple-main .simple-card-main .simple-text-main span {
  font-family: var(--Afacad-Medium);
  font-size: 16px;
  color: var(--primary-main-color);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.our-simple-main .simple-card-main .simple-text-main h5 {
  font-family: var(--Afacad-Regular);
  font-size: 28px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1;
  height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.our-simple-main .simple-card-main .simple-text-main p {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgba(34, 34, 60, 0.6);
  margin-bottom: 0;
}

.modal-product-slider-main {
  position: relative;
  padding-inline: 50px;
}

.modal-product-slider-main .product-img {
  text-align: center;
  position: relative;
  z-index: 0;
}

.modal-product-slider-main .modal-arrow-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}

.modal-product-slider-main .modal-arrow-main a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--primary-main-color);
  border-radius: 100%;
}

.modal-product-slider-main .modal-arrow-main a.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#productModal #closeModalBtn {
  width: 25px;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;
  cursor: pointer;
}

#productModal .modal-content {
  border-radius: 0;
}

.map-section-main {
  margin: 50px 0;
  padding-block: 30px;
}

@media screen and (max-width: 768px) {
  .map-section-main {
    margin: 15px 0px;
  }
}

.map-section-main .heading-main {
  text-align: center;
  margin-bottom: 30px;
}

.map-section-main .heading-main h2 {
  margin-bottom: 10px;
}

.map-section-main .map-slider-main {
  margin-top: -250px;
}

@media screen and (max-width: 992px) {
  .map-section-main .map-slider-main {
    margin-top: -140px;
  }
}

@media screen and (max-width: 768px) {
  .map-section-main .map-slider-main {
    margin-top: -60px;
  }
}

.map-section-main .map-slider-main .swiper-slide {
  height: auto;
}

.map-section-main .map-slider-main .map-card-main {
  position: relative;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.map-section-main .map-slider-main .map-card-main:hover .map-img-main {
  transform: translateY(0);
}

.map-section-main .map-slider-main .map-card-main:hover .map-card {
  background-color: var(--primary-main-color);
}

.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main p {
  color: rgba(255, 255, 255, 0.5);
}

.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main h6 {
  color: rgb(255, 255, 255);
}

.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main span {
  background: rgb(255, 255, 255);
}

.map-section-main .map-slider-main .map-card-main:hover .map-card .icon-text-main span svg path {
  fill: var(--primary-main-color);
}

.map-section-main .map-slider-main .map-card-main:hover .map-card p {
  color: rgba(255, 255, 255, 0.6);
}

.map-section-main .map-slider-main .map-card-main.active .map-card {
  background-color: var(--primary-main-color);
}

.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main p {
  color: rgba(255, 255, 255, 0.5);
}

.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main h6 {
  color: rgb(255, 255, 255);
}

.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main span {
  background: rgb(255, 255, 255);
}

.map-section-main .map-slider-main .map-card-main.active .map-card .icon-text-main span svg path {
  fill: var(--primary-main-color);
}

.map-section-main .map-slider-main .map-card-main.active .map-card p {
  color: rgba(255, 255, 255, 0.6);
}

.map-section-main .map-slider-main .map-card-main .map-card {
  background: var(--white);
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 45px;
  height: 100%;
  transition: 0.4s;
}

.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 99;
}

.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main .flex-size {
  width: 70%;
}

.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main p {
  font-family: var(--Afacad-Medium);
  font-size: 18px;
  color: var(--primary-main-color);
  font-weight: 400;
  text-align: left;
}

.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main h6 {
  font-family: var(--Afacad-Medium);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  text-align: left;
}

.map-section-main .map-slider-main .map-card-main .map-card .icon-text-main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 100%;
  background: rgba(35, 35, 35, 0.1);
  border: solid 1px rgba(35, 35, 35, 0.1);
}

.map-section-main .map-slider-main .map-card-main .map-card p {
  font-family: var(--Afacad-Medium);
  font-size: 16px;
  font-weight: 400;
  color: rgba(34, 34, 60, 0.6);
  margin-bottom: 0;
  position: relative;
  z-index: 99;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.map-section-main .map-slider-main .map-card-main .map-img-main {
  position: absolute;
  top: 0;
  z-index: 0;
  transform: translateY(101%);
  transition: 0.3s all;
  height: 100%;
  width: 100%;
}

.map-section-main .map-slider-main .map-card-main .map-img-main img {
  width: 100%;
  height: 100%;
}

.map-section-main .map-img {
  text-align: center;
  position: relative;
  display: inline-block;
}

.map-section-main .map-img .map-pin-icon {
  position: absolute;
  transition: 0.3s all;
}

.map-section-main .map-img .map-pin-icon:nth-child(2) {
  top: 36%;
  left: 29%;
}

.map-section-main .map-img .map-pin-icon:nth-child(3) {
  top: 29%;
  right: 32%;
}

.map-section-main .map-img .map-pin-icon:nth-child(4) {
  top: 19%;
  right: 25%;
}

.map-section-main .map-img .map-pin-icon:nth-child(5) {
  top: 15%;
  right: 18%;
}

.map-section-main .map-img .map-pin-icon:nth-child(6) {
  top: 0;
  right: 2%;
}

.map-section-main .map-img .map-pin-icon:nth-child(7) {
  top: 40%;
  right: 19%;
}

.map-section-main .map-img .map-pin-icon:nth-child(8) {
  top: 25%;
  right: 4%;
}

.map-section-main .map-img .map-pin-icon.active span {
  background: var(--primary-main-color);
}

.map-section-main .map-img .map-pin-icon.active span svg path {
  fill: #fff;
}

.map-section-main .map-img .map-pin-icon span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 62, 23, 0.1);
  border-radius: 100%;
}

@media screen and (max-width: 992px) {
  .map-section-main .map-img .map-pin-icon span {
    width: 40px;
    height: 40px;
  }

  .map-section-main .map-img .map-pin-icon span svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 768px) {
  .map-section-main .map-img .map-pin-icon span {
    width: 25px;
    height: 25px;
  }

  .map-section-main .map-img .map-pin-icon span svg {
    width: 10px;
    height: 10px;
  }
}

.who-we-are-main {
  margin: 30px 0px;
}

@media screen and (max-width: 768px) {
  .who-we-are-main {
    margin: 15px 0px;
  }
}

@media screen and (max-width: 992px) {
  .who-we-are-main .who-img-main {
    margin-bottom: 15px;
  }
}

.who-we-are-main .who-text-main p {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgba(34, 34, 60, 0.5);
  margin-bottom: 40px;
}

@media screen and (max-width: 992px) {
  .who-we-are-main .who-text-main p {
    margin-bottom: 25px;
  }
}

.who-we-are-main .who-text-main .badge-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.who-we-are-main .who-text-main .badge-main span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(223, 62, 23, 0.08);
  padding: 8px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgb(105, 105, 105);
  border-radius: 4px;
}

.contact-inquiry-main {
  padding: 80px 0 30px 0;
}

@media screen and (max-width: 768px) {
  .contact-inquiry-main {
    padding: 40px 0 30px 0;
  }
}

.contact-inquiry-main .inquiry-card-main {
  margin-bottom: 20px;
}

.contact-inquiry-main .social-icon-main {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-inquiry-main .social-icon-main a {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: solid 1px rgba(34, 34, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-inquiry-main .review-card-main {
  border: solid 1px rgba(34, 34, 60, 0.1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
  height: calc(100% - 25px);
  margin-bottom: 25px;
}

.contact-inquiry-main .review-card-main .review-text-img img {
  margin-bottom: 10px;
}

.contact-inquiry-main .review-card-main .review-text-img h5 {
  font-family: var(--Afacad-Regular);
  font-size: 18px;
  font-weight: 400;
  color: rgb(34, 34, 60);
  margin-bottom: 0;
}

.contact-inquiry-main .review-card-main .review-owner-name span {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-main-color);
}

.contact-inquiry-main .brand-form-main .select-brand-main {
  margin-bottom: 30px;
}

.contact-inquiry-main .brand-form-main .select-brand-main h5 {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgb(18, 17, 19);
  margin-bottom: 8px;
}

.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img {
  width: calc(33.33% - 16px);
  height: 100%;
  border: solid 1px rgba(34, 34, 60, 0.1);
  background: rgba(34, 34, 60, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  height: 125px;
  border-radius: 5px;
  transition: 0.3s all;
  cursor: pointer;
}

.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img.active {
  background: var(--primary-main-color);
}

.contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img.active img {
  filter: brightness(0) invert(1);
  transition: 0.3s all;
}

@media screen and (max-width: 450px) {
  .contact-inquiry-main .brand-form-main .select-brand-main .brand-img-main .brand-img {
    width: calc(50% - 16px);
    max-width: 180px;
  }
}

.contact-inquiry-main .brand-form-main .inquiry-form .input {
  position: relative;
  margin-bottom: 20px;
}

.contact-inquiry-main .brand-form-main .inquiry-form .input label {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgb(18, 17, 19);
  margin-bottom: 5px;
}

.contact-inquiry-main .brand-form-main .inquiry-form .input.error input,
.contact-inquiry-main .brand-form-main .inquiry-form .input.error textarea {
  border: 1px solid var(--primary-main-color) !important;
}

.contact-inquiry-main .brand-form-main .inquiry-form .input .iti {
  width: 100%;
}

.contact-inquiry-main .brand-form-main .inquiry-form .input .iti .iti__flag-container {
  padding-inline-start: 20px;
}

.contact-inquiry-main .brand-form-main .inquiry-form .input .iti .iti__tel-input {
  padding-left: 105px !important;
}

.contact-inquiry-main .brand-form-main .inquiry-form .input .iti .iti__search-input {
  padding: 10px;
}

.contact-inquiry-main .brand-form-main .inquiry-form .input textarea,
.contact-inquiry-main .brand-form-main .inquiry-form .input input {
  background: transparent;
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 16px;
  border-radius: 36px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5);
}

.contact-inquiry-main .brand-form-main .inquiry-form .input textarea::placeholder,
.contact-inquiry-main .brand-form-main .inquiry-form .input input::placeholder {
  color: rgba(34, 34, 60, 0.5);
}

.contact-inquiry-main .brand-form-main .inquiry-form .input .error-txt {
  display: block;
  width: 100%;
  color: var(--primary-main-color);
  font-size: 12px;
  font-family: var(--Afacad-Medium);
}

.contact-inquiry-main .brand-form-main .inquiry-form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}

.contact-inquiry-main .brand-form-main .inquiry-form .primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.contact-inquiry-main .brand-form-main .contact-form {
  background: rgb(255, 255, 255);
  border: solid 1px rgb(224, 224, 224);
  border-radius: 16px;
  padding: 48px;
}

@media screen and (max-width: 768px) {
  .contact-inquiry-main .brand-form-main .contact-form {
    padding: 20px;
  }
}

.contact-inquiry-main .brand-form-main .contact-form .input {
  position: relative;
  margin-bottom: 20px;
}

.contact-inquiry-main .brand-form-main .contact-form .input label {
  font-family: var(--Afacad-Regular);
  font-size: 16px;
  font-weight: 400;
  color: rgb(18, 17, 19);
  margin-bottom: 10px;
}

.contact-inquiry-main .brand-form-main .contact-form .input.error input,
.contact-inquiry-main .brand-form-main .contact-form .input.error textarea {
  border: 1px solid var(--primary-main-color) !important;
}

.contact-inquiry-main .brand-form-main .contact-form .input .iti {
  width: 100%;
}

.contact-inquiry-main .brand-form-main .contact-form .input .iti .iti__flag-container {
  padding-inline-start: 20px;
}

.contact-inquiry-main .brand-form-main .contact-form .input .iti .iti__tel-input {
  padding-left: 105px !important;
}

.contact-inquiry-main .brand-form-main .contact-form .input .iti .iti__search-input {
  padding: 10px;
}

.contact-inquiry-main .brand-form-main .contact-form .input textarea,
.contact-inquiry-main .brand-form-main .contact-form .input input {
  background: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 16px;
  border-radius: 36px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5);
}

.contact-inquiry-main .brand-form-main .contact-form .input textarea::placeholder,
.contact-inquiry-main .brand-form-main .contact-form .input input::placeholder {
  color: rgba(34, 34, 60, 0.5);
}

.contact-inquiry-main .brand-form-main .contact-form .input .error-txt {
  display: block;
  width: 100%;
  color: var(--primary-main-color);
  font-size: 12px;
  font-family: var(--Afacad-Medium);
}

.contact-inquiry-main .brand-form-main .contact-form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}

.contact-inquiry-main .brand-form-main .contact-form .primary-btn {
  background-color: var(--primary-main-color);
  color: var(--white);
  font-family: var(--Afacad-Regular);
  font-size: clamp(14px, 4vw, 16px);
  padding: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

/* NOMAN STYLE CLOSE */
.our-simple-main .counting-circle-main .circle-number {
  transition: 0.7s ease all;
}

.our-simple-main .counting-circle-main .circle-number.active {
  background: #DF3E17;
  transition: 0.7s ease all;
}

.our-simple-main .counting-circle-main .circle-number.active span {
  color: #fff;
}

.our-simple-main .counting-circle-main .connecting-line.smooth-dash.active {
  width: 100%;
  background-image: linear-gradient(to right, #DF3E17 50%, transparent 50%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: 0 0;
  transition: width 4.5s ease-in-out;
  z-index: 2;
}

.simple-process-card svg path {
  transition: 0.7s ease all;
}

.simple-process-card.active .svg-main .icon {
  background: #DF3E17;
  transition: 0.7s ease all;
}

.simple-process-card.active .svg-main .icon svg path {
  fill: #fff;
}

.simple-process-card.active .simple-card-main {
  border: 1px solid #DF3E17;
  transition: 0.7s ease all;
}

/* faq section css */

.law-container {
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  max-width: 1140px;
}

.law-sub-container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.law-collpase-box {
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

.collapsible {
  padding: 18px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  color: #df3e17;
  font-weight: 700;
  background-color: #e3e1e1;
}

.law-collapse-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: transparent;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5019607843);

  p { 
    text-wrap: initial;
    font-weight: 400;
  }
}

.faq-heading {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.collapsible {
  position: relative;
  padding: 15px 40px 15px 15px;
  font-size: clamp(16px, 2vw, 18px);
  width: 100%;
  text-align: left;
  background-color: #e8e6e6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #df3e17;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/* Horizontal bar (always shown) */
.collapsible::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 12px;
  height: 2px;
  background-color: #df3e17;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

/* Vertical bar (shown when not active = plus sign) */
.collapsible::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 2px;
  height: 12px;
  background-color: #df3e17;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

/* Hide vertical bar when active = minus sign */

.collapsible.active::after {
  opacity: 0;
}


/* header */

header .search-icon-main {
  margin-inline-start: 24px;
}
header .search-icon-main span {
  cursor: pointer;
}
header .search-icon-main span img {
  width: 16px;
  height: 16px;
  min-width: 16px;
}
@media screen and (max-width: 500px) {
  header .search-icon-main {
    margin: 0;
  }
}

/* search modal */

.modal-search-main .search-input {
  position: relative;
}

.modal-search-main .search-input input {
  background-color: rgb(249, 249, 249);
  width: 100%;
  padding: 10px 40px 10px 10px;
  border: solid 1px #ccc;
  border-radius: 5px;
}

.modal-search-main .search-input .search-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.modal-search-main .search-input .search-icon img {
  width: 16px;
  height: 16px;
}

.modal-search-main .search-list {
  margin-bottom: 0;
  padding-left: 0;
}

.modal-search-main .search-list li {
  padding: 15px 0;
  list-style: none;
}

.modal-search-main .search-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
}

.modal-search-main .search-list li a img {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 768px) {
  .banner-section {
    padding: 30px 0px;
    margin-bottom: 30px;
    background-position: center;
    max-height: unset;
  }
}
 

.banner-section .form-card-main {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(50px);
  border-radius: 10px;
}


.banner-section .form-card-main form .input input {
  background: rgb(255, 255, 255);
  width: 100%;
  padding: 10px 16px 10px 50px;
  border-radius: 36px;
  font-family: var(--Afacad-Regular);
  font-weight: 400;
  font-size: 16px;
  color: rgba(34, 34, 60, 0.5);
  border: 0;
}

.banner-section .form-card-main form .input .img-main {
  position: absolute;
  top: 10px;
  left: 20px;
}
 
.product-section .pagination-sorting-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.product-section .pagination-sorting-main .custom-pagination {
  display: flex;
  align-items: center;
  justify-content: end;
}
.product-section .pagination-sorting-main .custom-pagination .pagination .page-item.active .page-link {
  background: var(--primary-main-color);
  color: var(--white);
  border-color: var(--primary-main-color);
}
.product-section .pagination-sorting-main .custom-pagination .pagination .page-item .page-link {
  color: var(--primary-main-color);
box-shadow:none;
}
 
.select2-container {
  width: max-content !important;
}
 
.select2-container--default .select2-selection--single {
  border: 2px solid var(--primary-main-color) !important;
  border-radius: 8px !important;
  padding: 5px !important;
  height: 40px !important;
}
 
.select2-results__option--highlighted {
  background-color: var(--primary-main-color) !important;
  color: white !important;
}
 
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--black) !important;
  line-height: 28px !important;
}
 
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px !important;
}
 

/* product child css */

.product-section .filter-card-main .category-option-main .category-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-section .filter-card-main .category-option-main .category-option-head .dropdown-arrow {
  cursor: pointer;
}
.product-section .filter-card-main .category-option-main .category-option-body {
  display: none;
}
.product-section .filter-card-main .category-option-main .category-option-body .model-option {
  padding-left: 18px;
}
.product-section .filter-card-main .category-option-main .category-option-body .model-option:hover {
  margin: 0;
  background: transparent;
}

.category-option-main:has(.category-option-body:empty) .dropdown-arrow{
display:none;
}
