/* *************************************************** *
 * Author:           SE-2
 * Created Date:     2025-06-23
 * Last Modified:    2025-07-28
 * Version:          1.1
 * Project:          Delta Website
 * Company:          Progmize Software Systems
 * Contact:          tech@progmize.com
 * ***************************************************  */
body {
  font-family: "Nexa", sans-serif !important;
}

header .container,
footer .container,
.hero .container {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}

/* Enhanced Dropdown Styles - Hover-based */
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.custom-dropdown {
  background: linear-gradient(135deg, #4c7392 0%, #5a8bb0 100%);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-width: 280px !important;
  top: 100% !important;
  left: 0 !important;
  transform: none !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 8px;
  backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dropdown .dropdown-item {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 4px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.custom-dropdown .dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.custom-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-dropdown .dropdown-item:hover::before {
  left: 100%;
}

.custom-dropdown .dropdown-item:active {
  transform: translateX(3px) scale(0.98);
}

/* Hide dropdown arrow for cleaner look */
.nav-item.dropdown .dropdown-toggle::after {
  display: none;
}

.menu-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Dropdown item icons */
.custom-dropdown .dropdown-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Responsive Dropdown Behavior */
/* Desktop - Hover behavior (992px and above) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    margin-top: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Disable Bootstrap's click behavior on desktop */
  .nav-item.dropdown .dropdown-toggle {
    pointer-events: auto;
  }

  .nav-item.dropdown .dropdown-toggle::after {
    display: none;
  }
}

/* Mobile and Tablet - Click behavior (991px and below) */
@media (max-width: 991px) {
  .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-top: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: none;
  }

  /* Show dropdown arrow on smaller screens */
  .nav-item.dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Style the "View All Services" link for mobile */
  .mobile-services-link .dropdown-item {
    background: linear-gradient(90deg, #004aad 0%, #001e47 100%);
    color: white !important;
    border-radius: 6px;
    margin: 8px 0;
    padding: 12px 16px;
    text-align: center;
    font-weight: bold;
    display: block;
  }

  .mobile-services-link .dropdown-item:hover {
    background: linear-gradient(90deg, #0056cc 0%, #002a5c 100%);
    color: white !important;
    transform: translateY(-1px);
  }

  .mobile-divider {
    margin: 8px 0;
    border-color: rgba(0, 74, 173, 0.2);
  }
}

/* Hide mobile-specific elements on desktop */
@media (min-width: 992px) {
  .mobile-services-link,
  .mobile-divider {
    display: none !important;
  }
}

/* Ensure dropdown doesn't affect header layout */
.navbar-nav .dropdown {
  position: relative;
}

.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050;
}

/* Sign Up Page Styles */
.signup-form-container {
  margin-top: 150px;
  margin-bottom: 100px;
}

.signup-form-container h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #004aad 0%, #001e47 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.signup-form {
  border-radius: 18px;
  border: 2px solid #020202;
  opacity: 0.84;
  background: #fff;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.signup-form .form-group label {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  background: linear-gradient(180deg, #4c4c4c 0%, #585555 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.signup-form .form-group input {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  border-radius: 8px;
  border: none;
  padding: 10px;
  border: 1px solid #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.signup-form .form-group button,
.main-contact-form .form-group button {
  color: #000;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  line-height: 130%;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #7cba02 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none !important;
  margin-top: 30px;
}

.signup-form-container p {
  color: #004aad;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  white-space: nowrap;
}

/* Success Pop Up */
.successModal .modal-content {
  border-radius: 14px;
  border: 4px solid #104f83;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.successModal .modal-content h1 {
  color: #104f83;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.successModal .modal-content p {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.successModal .modal-content button {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  display: flex;
  margin: 0 auto;
  border-radius: 8px;
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* Contact Us Page Styles */
.information-container {
  margin-top: 135px;
  border-top: 3px solid #e4e4e4;
}

.information-container h2 {
  color: #104f83;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(30px, 4vw, 50px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
}

.information-container .info-item {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 18px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.information-container .info-item::before {
  border-radius: 18px;
  width: 100%;
  content: "";
  position: absolute;
  top: -1px;
  bottom: 80px;
  left: -1px;
  right: -2px;
  z-index: -1;
  background: conic-gradient(
    from -50deg,
    #104f83,
    #c5c5c5,
    transparent,
    #104f83
  );
}

.information-container .info-item::after {
  border-radius: 18px;
  width: 100%;
  content: "";
  position: absolute;
  top: 0px;
  bottom: -2px;
  left: -1px;
  right: 0px;
  z-index: -1;
  background: conic-gradient(
    from -50deg,
    #104f83,
    transparent,
    #bfbfbf,
    #bfbfbf,
    transparent,
    #104f83
  );
}

.info-item img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.information-container .info-item a {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
}

/* Download Application Responsive Styles */
.app-buttons {
  display: flex !important;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  visibility: visible !important;
  opacity: 1 !important;
}

.app-buttons a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  width: 280px;
  height: 70px;
  box-sizing: border-box;
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out !important;
}

/* Medium-large screens adjustment (990px to 1200px) */
@media (min-width: 990px) and (max-width: 1199px) {
  .app-buttons a {
    width: 300px;
    height: 75px;
    padding: 16px 28px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .app-buttons a img {
    height: 32px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transition: all 1.2s ease-in-out !important;
  }

  .app-buttons a span {
    font-size: 13px;
    line-height: 1.15;
  }

  .app-buttons a span .bold {
    font-size: 15px;
  }
}

/* Large screens adjustment */
@media (min-width: 1200px) {
  .app-buttons a {
    width: 320px;
    height: 80px;
    padding: 18px 30px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .app-buttons a img {
    height: 35px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transition: none !important;
    animation: none !important;
  }

  .app-buttons a span {
    font-size: 14px;
    line-height: 1.2;
  }

  .app-buttons a span .bold {
    font-size: 16px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .app-buttons a {
    width: 250px;
    height: 65px;
    padding: 12px 20px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .app-buttons a img {
    height: 28px !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transition: none !important;
    animation: none !important;
  }

  .app-buttons a span {
    font-size: 12px;
    line-height: 1.1;
  }

  .app-buttons a span .bold {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .app-buttons a {
    width: 220px;
    height: 60px;
    padding: 10px 15px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .app-buttons a img {
    height: 25px !important;
    margin-right: 10px;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transition: none !important;
    animation: none !important;
  }

  /* WhatsApp Modal Responsive Styles for Mobile - Optimized */
  .stayConnectedModal .modal-dialog {
    max-width: 98vw;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .stayConnectedModal .modal-content {
    max-height: 90vh;
    overflow-y: auto;
    margin: 0;
  }

  .stayConnectedModal .modal-body {
    padding: 0.5rem 0.25rem;
  }

  .stayConnectedModal .modal-body label {
    font-size: clamp(14px, 4vw, 18px) !important;
    margin-bottom: 0.25rem;
  }

  .stayConnectedModal .modal-body button {
    font-size: clamp(11px, 3.5vw, 15px) !important;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.25rem;
    min-height: 40px;
  }

  .stayConnectedModal .modal-body .label-separator {
    margin: 0.2rem 0;
  }

  .stayConnectedModal .modal-body .label-separator img {
    max-width: 80% !important;
    margin: 0.2rem auto !important;
  }

  /* Extra small screens optimization - Maximum fit */
  @media (max-width: 480px) {
    .stayConnectedModal .modal-dialog {
      max-width: 100vw;
      margin: auto;
      position: relative;
      top: 50%;
      transform: translateY(-50%);
    }

    .stayConnectedModal .modal-content {
      max-height: 95vh;
      margin: 0;
    }

    .stayConnectedModal .modal-body {
      padding: 0.3rem 0.15rem;
    }

    .stayConnectedModal .modal-body label {
      font-size: clamp(12px, 5vw, 16px) !important;
      margin-bottom: 0.15rem;
    }

    .stayConnectedModal .modal-body button {
      font-size: clamp(9px, 4vw, 13px) !important;
      padding: 0.25rem 0.5rem;
      margin-bottom: 0.2rem;
      min-height: 35px;
    }

    .stayConnectedModal .modal-body .label-separator {
      margin: 0.1rem 0;
    }

    .stayConnectedModal .modal-body .label-separator img {
      max-width: 70% !important;
      margin: 0.1rem auto !important;
    }
  }
}

/* WhatsApp Button Styles */
.whatsapp-container {
  position: fixed;
  bottom: 0;
  left: 5px;
  border: none;
  outline: none;
  background: transparent;
  z-index: 20;
  transition: all 0.3s ease;
}

.whatsapp-container:hover {
  transform: translateY(-5px) scale(1.1);
  transition: all 0.3s ease;
}

.whatsapp-container:hover img {
  transition: all 0.3s ease;
}

/* Main Contact Form Section Styles*/
.main-contact-form {
  border-radius: 18px;
  background: linear-gradient(263deg, #104f83 -26.62%, #04111d 121.2%);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.main-contact-form .name-container {
  gap: 18px;
}

.main-contact-form .name-container .form-group {
  width: 100% !important;
}

.main-contact-form .form-group input {
  color: #000;
  font-size: clamp(12px, 2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  border-radius: 4px;
  border: 1px solid #888;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.main-contact-form .form-group textarea {
  width: 100%;
}

.main-contact-form .form-group input::placeholder,
.main-contact-form .form-group textarea::placeholder {
  color: #828282;
}

/* Stay Connected Pop Up - No Scroll */
.stayConnectedModal {
  overflow: hidden !important;
}

.stayConnectedModal .modal {
  overflow: hidden !important;
  padding: 30px 20px !important;
  padding-right: 20px !important;
}

.stayConnectedModal .modal-dialog {
  height: auto !important;
  max-height: none !important;
  min-height: auto !important;
  overflow: visible !important;
  margin: 5vh auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 0 !important;
  max-width: min(500px, calc(100vw - 2rem));
  width: 100%;
}

.stayConnectedModal .modal-content {
  border-radius: 8px;
  border: 2px solid #fff;
  background: linear-gradient(
    180deg,
    rgba(16, 79, 131, 0.54) 0%,
    rgba(4, 17, 29, 0.54) 100%
  );
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
  height: auto !important;
  max-height: 90vh !important;
  min-height: auto !important;
  overflow-y: auto !important;
  display: flex;
  flex-direction: column;
  padding-right: 0 !important;
  width: 100%;
}

.stayConnectedModal .modal-body {
  height: auto !important;
  max-height: none !important;
  min-height: auto !important;
  overflow: hidden !important;
  padding: 10px 15px 15px 15px;
  flex: 1 1 auto;
}

/* Override Bootstrap modal overflow */
.stayConnectedModal .modal-open .modal {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.stayConnectedModal .modal-content .modal-header,
.loginModal .modal-content .modal-header {
  border-bottom: none;
  padding: 8px 15px 0 15px;
}

.stayConnectedModal .modal-content .modal-header .btn-close,
.loginModal .modal-content .modal-header .btn-close {
  opacity: 100;
}

.stayConnectedModal .modal-content .modal-header .btn-close:hover,
.loginModal .modal-content .modal-header .btn-close:hover {
  opacity: 0.8;
}

.stayConnectedModal .modal-content .modal-body label {
  display: flex;
  justify-content: center;
  align-items: stretch;
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-style: normal;
  font-weight: 700;
  background: transparent;
  border-radius: 4px;
  margin-bottom: 8px;
}

.label-separator {
  margin: 5px 0;
}

.stayConnectedModal .modal-content .modal-body .label-separator img {
  max-width: 70% !important;
  margin: 8px auto !important;
  display: flex;
}

.stayConnectedModal .modal-content .modal-body button {
  display: flex;
  justify-content: center;
  align-items: stretch;
  color: #104f83;
  background-color: white !important;
  border: 2px solid #104f83 !important;
  font-family: "Nexa", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  box-shadow: 2px 2px 1px 0 rgba(0, 0, 0, 0.25);
  padding: 8px 12px;
  margin: 5px 0;
}

.stayConnectedModal .modal-content .modal-body button a,
.stayConnectedModal .modal-content .modal-body button a:hover,
.stayConnectedModal .modal-content .modal-body button a:visited,
.stayConnectedModal .modal-content .modal-body button a:active {
  text-decoration: none !important;
  color: #104f83 !important;
}

/* Override Bootstrap btn-primary styles for white buttons */
.stayConnectedModal .modal-content .modal-body .btn-primary {
  background-color: white !important;
  background-image: none !important;
  border-color: #104f83 !important;
  color: #104f83 !important;
}

/* Removed all button hover effects as requested */

/* Removed hover effects as requested */

.stayConnectedModal .modal-content .modal-body button img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.stayConnectedModal .modal-content .modal-body .col-md-12 img {
  max-width: 50%;
  margin: 20px auto !important;
  display: flex;
}

/* Banner Image Location */
.banner-image-location {
  margin-top: 100px;
}

.banner-image-location img {
  margin: 0 auto;
  display: flex;
}

.banner-image-title {
  color: #104f83;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  font-style: normal;
  font-weight: 700;
  line-height: 0.7;
  letter-spacing: 1.28px;
}

.banner-image-title span {
  color: #104f83;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
  margin-left: 300px;
}

/* About Us Page Styles */
.about-hero {
  margin-top: 133px;
  border-top: 2px solid #fff;
}

.about-hero h1 {
  color: #fff;
  text-align: center !important;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(40px, 5vw, 50px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
}

/* Default large screen design */
.label-container {
  min-width: 908px;
  max-width: 910px;
  position: absolute;
  left: 0;
  border-radius: 0px 8px 8px 0px;
  background: linear-gradient(90deg, #104f83 0%, #04111d 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.label-container h2 {
  color: #fff;
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 1.08px;
  text-align: start !important;
  margin-left: 20px;
  white-space: nowrap;
  /* ek hi line me rahe */
}

.label-container h2 span {
  color: #aafe05;
}

/* 📱 iPad screen ke liye (768px se 991px tak) */
@media (min-width: 768px) and (max-width: 991px) {
  .label-container {
    position: absolute;
    left: 0;
    right: 0;
    /* dono side stretch ho */
    min-width: auto !important;
    max-width: 90% !important;
    /* force override */
    width: 90% !important;
    border-radius: 0px 8px 8px 0px;
  }

  .label-container h2 {
    font-size: 24px !important;
    white-space: nowrap;
  }
}

.label-container h2 span {
  color: #aafe05;
}

.about-hero .text-container {
  position: absolute;
  left: 20px !important;
  min-width: 680px !important;
  max-width: 900px;
  margin-top: 130px;
  border-radius: 10px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(20px);
}

.text-container p {
  color: #000000;
  text-align: justify;
  font-family: "Nexa", sans-serif;
  font-size: clamp(12px, 2vw, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.9;
}

/* Auction Section Styles */
.auction-section {
  position: relative;
  padding: 60px 0;
  margin-top: 500px;
}

.auction-section .container .row:last-of-type {
  margin-top: 200px;
}

.blue-half-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 150px;
  width: 50vw;
  border-radius: 18px 0px 0px 18px;
  background: linear-gradient(263deg, #104f83 -26.62%, #04111d 121.2%);
  box-shadow: 4px 4px 4px 0px rgba(207, 29, 29, 0.25);
  z-index: 1;
}

.blue-half-img-bg {
  position: absolute;
  left: 0;
  top: 0%;
  transform: translateY(-0%);
  height: 100%;
  max-height: 150px;
  width: 50vw;
  border-radius: 0px 18px 18px 0px;
  background: linear-gradient(263deg, #104f83 -26.62%, #04111d 121.2%);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.auction-card {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  border: 1px solid hwb(0 75% 30%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) -25.55%,
    #fff 99.85%
  );
  backdrop-filter: blur(25px);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 30px;
  max-width: 850px;
  margin: auto;
  top: -280px;
}

.auction-img-card {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  top: -170px;
}

.auction-img-card img {
  width: 100%;
  max-width: 400px;
  margin-left: 120px;
}

.auction-title,
.auction-text {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: clamp(20px, 5vw, 30px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.auction-text {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 300;
  line-height: 1.9;
  text-align: justify;
}

/* Banner Image with Why Choose Us Styles */
.banner-image-road {
  margin-top: -300px;
}

.banner-image-road .container {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
}

.banner-image-road img {
  display: flex !important;
  justify-content: center !important;
  max-width: 1100px !important;
  width: 100% !important;
}

.banner-image-road .why-choose-us {
  margin-top: -80px;
  background: linear-gradient(
    180deg,
    rgba(16, 79, 131, 0.88) 0%,
    rgb(137, 168, 193) 100%
  );
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25);
}

.banner-image-road .why-choose-us .why-choose-us-box {
  border-radius: 20px;
  background: linear-gradient(90deg, #104f83 0%, #04111d 100%);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-width: 65%;
  min-width: 66%;
}

.banner-image-road .why-choose-us .why-choose-us-box h4 {
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: bold;
  line-height: 0%;
  text-align: center;
}

.banner-image-road .why-choose-us .why-choose-us-box ul li {
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  text-align: start;
  list-style: none;
}

.banner-image-road .why-choose-us .why-choose-us-box ul li strong {
  font-weight: 700;
}

.about-faq {
  background: linear-gradient(
    180deg,
    rgb(137, 168, 193) 0%,
    rgba(255, 255, 255, 0.88) 90%
  );
}

.about-faq .container {
  max-width: 100%;
  min-width: 100%;
}

.about-faq .container .col-md-10 {
  margin: auto !important;
}

.about-faq .white-label {
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 100vw !important;
  margin-left: -20px;
}

.about-faq .white-label p {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: clamp(20px, 4vw, 40px);
  font-style: normal;
  font-weight: 700;
}

/* Login Modal Styles*/
.loginModal .modal-content {
  border: none;
  outline: none;
  border-radius: 8px;
  background: linear-gradient(
    263deg,
    rgba(16, 79, 131, 0.79) -26.62%,
    rgba(4, 17, 29, 0.79) 121.2%
  );
  backdrop-filter: blur(13.399999618530273px);
  max-width: 500px;
  width: 100%;
  margin: auto;
}

.loginModal .modal-content h3 {
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.loginModal .modal-content input {
  padding: 10px;
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.loginModal .modal-content .password-field {
  border-radius: 4px !important;
  border: 1px solid #000 !important;
  background: #fff !important;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25) inset !important;
}

.loginModal .modal-content .password-field input,
.input-group-text {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.loginModal .modal-content input::placeholder {
  color: #747474;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 2vw, 14px);
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.remember-me input[type="checkbox"] {
  accent-color: #007bff;
  border-radius: 2px;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
}

.loginModal .modal-content .modal-body button {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-style: normal;
  font-weight: bold !important;
  line-height: normal;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #77b203 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  border: none;
  transition: all 0.3s ease-in-out;
}

.loginModal .modal-content .modal-body button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.loginModal .modal-content a {
  text-decoration: none;
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: bold !important;
  line-height: normal;
  display: block;
}

.loginModal .modal-content a:hover {
  transform: scale(1.04);
  cursor: pointer;
}

.loginSuccessPopUp .modal-content,
.successPopUp .modal-content,
.forgotPasswordModal .modal-content,
.signupModal .modal-content {
  border-radius: 18px;
  background: linear-gradient(
    263deg,
    rgba(16, 79, 131, 0.79) -26.62%,
    rgba(4, 17, 29, 0.79) 121.2%
  );
  backdrop-filter: blur(13.399999618530273px);
  color: #fff;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* Ensure proper modal centering with better spacing */
.signupModal .modal-dialog,
.forgotPasswordModal .modal-dialog,
.loginSuccessPopUp .modal-dialog,
.successPopUp .modal-dialog,
.loginModal .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 1rem);
  margin: 0.5rem auto;
  max-width: min(500px, calc(100vw - 2rem));
  width: 100%;
}

/* Additional responsive modal spacing */
@media (max-width: 768px) {
  .signupModal .modal-dialog,
  .forgotPasswordModal .modal-dialog,
  .loginSuccessPopUp .modal-dialog,
  .successPopUp .modal-dialog,
  .loginModal .modal-dialog,
  .stayConnectedModal .modal-dialog {
    max-width: calc(100vw - 1.5rem);
    margin: 0.75rem auto;
  }
}

@media (max-width: 480px) {
  .signupModal .modal-dialog,
  .forgotPasswordModal .modal-dialog,
  .loginSuccessPopUp .modal-dialog,
  .successPopUp .modal-dialog,
  .loginModal .modal-dialog,
  .stayConnectedModal .modal-dialog {
    max-width: calc(100vw - 1rem);
    margin: 0.5rem auto;
  }

  .signupModal .modal-content,
  .forgotPasswordModal .modal-content,
  .loginSuccessPopUp .modal-content,
  .successPopUp .modal-content,
  .loginModal .modal-content,
  .stayConnectedModal .modal-content {
    margin: 0 0.5rem;
  }
}

/* Error message styling for login modal */
#loginEmailError {
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
  display: none;
  line-height: 1.4 !important;
  max-width: 100% !important;
  word-wrap: break-word !important;
  position: relative !important;
  z-index: 1 !important;
}

#loginPasswordError {
  font-size: 0.875rem !important;
  margin-top: 0.25rem !important;
  display: none;
  line-height: 1.4 !important;
  max-width: 100% !important;
  word-wrap: break-word !important;
  position: relative !important;
  z-index: 1 !important;
}

.loginSuccessPopUp .modal-header,
.successPopUp .modal-header,
.forgotPasswordModal .modal-header,
.signupModal .modal-header {
  border-bottom: none !important;
}

.loginSuccessPopUp .modal-header button,
.successPopUp .modal-header button,
.forgotPasswordModal .modal-header button,
.signupModal .modal-header button {
  opacity: 1;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: bold;
}

.loginSuccessPopUp .modal-header button:hover,
.successPopUp .modal-header button:hover,
.forgotPasswordModal .modal-header button:hover,
.signupModal .modal-header button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Remove any padding-right that causes modal misalignment */
.signupModal,
.signupModal .modal-dialog,
.signupModal .modal-content,
#loginModal,
#loginModal .modal-dialog,
#loginModal .modal-content,
.forgotPasswordModal,
.forgotPasswordModal .modal-dialog,
.forgotPasswordModal .modal-content {
  padding-right: 0 !important;
}

/* Prevent Bootstrap's scrollbar compensation from affecting modal alignment */
body.modal-open {
  padding-right: 0 !important;
}

/* Ensure modals are perfectly centered */
.modal.show .modal-dialog {
  transform: none !important;
}

/* Services Page Styles */
.service-hero {
  margin-top: 133px;
  background-image: url("../img/hero/service-bg.webp");
  background-size: cover;
  background-position: center;
  border-top: 4px solid #2a6290;
}

.service-hero h1 {
  position: relative;
  color: #fff;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
  z-index: 1;
}

/* Blue Shape  */
.blue-shape {
  background: url("../img/hero/blue-shape-0.webp"),
    url("../img/hero/blue-shape-0.webp");
  background-size: 100% 100%, 100% 100%;
  background-position: top center, bottom center;
  background-repeat: no-repeat no-repeat;
  width: 100vw;
  height: 40vh;
  margin-left: calc(-50vw + 50%);
  opacity: 0.9;
  z-index: -1;
}

.services-heading {
  font-size: 35px;
  /* margin-top: 90px; */
  text-align: center;
  display: inline-block;
}

.marquee-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.marquee {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: fit-content;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 10s linear infinite;
  gap: 20px;
}

.marquee-content img {
  height: 50px;
  width: auto;
}

@keyframes marquee {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* ✅ Responsive Fix for Tablets & Mobiles */
@media (max-width: 768px) {
  .services-heading {
    font-size: 28px;
  }

  .marquee-content img {
    height: 35px;
  }

  .marquee-content {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .services-heading {
    font-size: 24px;
  }

  .marquee-content img {
    height: 28px;
  }

  .marquee-content {
    gap: 8px;
  }
}

/* Overlapping Container */
.overlapping-container {
  position: relative;
  border-radius: 129.5px 129.5px 0 0;
  border-top: 1px solid #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  backdrop-filter: blur(40px);
  overflow: visible;

  /* smooth fade from translucent to full white */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.76) 0%,
    rgba(255, 255, 255, 0.9) 60%,
    #ffffff 100%
  );
}

.overlapping-container p {
  color: #104f83;
  text-align: center;
  font-size: clamp(12px, 2vw, 18px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.32px;
}

/* What We Do Section Styles */
.what-we-do h2 {
  color: #104f83;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.what-we-do h2 span {
  color: #aafe05;
}

.what-we-do .service-card {
  border: none !important;
  height: 100%;
  min-height: 100%;
  transition: all 0.5s ease-in-out;
}

.what-we-do .service-card:hover {
  transform: translateY(-10px);
}

.what-we-do .card-body {
  border-radius: 18px;
  border: 1px solid #a4a4a4;
  background: #fff;
  box-shadow: 8px 8px 4px 0px rgba(0, 0, 0, 0.25);
  margin-top: -50px;
  z-index: 10;
  position: relative;
}

.what-we-do .card-body .card-title {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: start;
}

.what-we-do .card-body .card-text {
  color: #1a1a1a;
  text-align: justify;
  font-family: "Nexa", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 2;
}

.what-we-do .card-body a {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: none;
  border: none;
}

.what-we-do .card-body a span {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, #aafe05 0%, #669803 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.what-we-do .card-body a:hover {
  color: #004aad;
}

/* Services Features Section Style */
.services-features {
  padding: 0;
}

.services-features .container-fluid {
  padding: 0%;
  min-width: 100%;
}

.services-features h2 {
  color: #104f83;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.feature-container {
  margin: 0 auto;
  max-width: fit-content;
  border-radius: 48px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top: 1px solid #a4a4a4;
  background: linear-gradient(178deg, #fff -82.47%, #fff 37.61%);
  /* box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25); */
  display: flex;
  flex-wrap: wrap;
  /* border: 1px solid; */

  /* border-image-source: linear-gradient(174.66deg, #A4A4A4 15.93%, #FFFFFF 106.89%); */
}

.towing-btn:hover {
  scale: 1.1;
  transition: transform 0.3s;
}

.feature-content {
  width: 100%;
  max-width: 200px;
  min-width: 200px;
  aspect-ratio: 1 / 1;
  padding: 30px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(16, 79, 131, 0.92) 0%,
    rgba(4, 17, 29, 0.92) 100%
  );
  border: 2px solid #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.feature-content img {
  width: 50px;
  height: 50px;
  display: flex;
  margin: 0 auto;
}

.feature-content:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.feature-box img:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.feature-content h6 {
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: clamp(15px, 2vw, 15px);
  font-style: normal;
  font-weight: 700;
  margin: 0 auto;
  text-wrap: balance;
  white-space: normal;
  word-break: break-word;
  margin-top: 20px;
}

.feature-box-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 48px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top: 1px solid #104f83;
  background: linear-gradient(178deg, #fff -82.47%, #fff 37.61%);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.25);
}

/* ✅ Feature box with original gradient background */
.feature-box {
  border-radius: 20px;
  background: var(
    --DESIGNER2,
    linear-gradient(90deg, #165e99 0.29%, #1f1c1c 102.45%)
  );
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
  color: white;
  padding: 30px 25px;
  text-align: left;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* ✅ Feature box responsive width */
.feature-box {
  flex: 1 1 260px;
  max-width: 360px;
}

/* ✅ Icon styling */
.feature-box img {
  width: 65px;
  height: 65px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  object-fit: contain;
}

/* ✅ Text */
.feature-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #f1f1f1;
  margin: 0;
  max-width: 250px;
  text-align: left;
}
/* ✅ Wrapper grid system */
.inner-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Auction Account Hero Page Styles */
.auction-account-hero {
  background: none;
}

.auction-account-hero h2 {
  color: #104f83;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
}

.auction-account-hero .overlapping-container h3 {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.auction-account-hero .overlapping-container p {
  color: #000;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.key-benefits {
  position: relative;
}

.key-benefits-heading {
  color: #000;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  margin-top: 30px !important;
  z-index: 2;
}

.key-benefits .auction-account-list-box {
  display: flex;
  justify-content: start;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 0px 8px 8px 0px;
  background: linear-gradient(90deg, #104f83 0%, #04111d 100%);
}

.key-benefits .auction-account-list-box ul li,
.working-process .auction-account-list-box ul li {
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-style: normal;
  font-weight: 700;
}

/* 👇 Button ka margin adjust kiya */
.key-benefits .button-row {
  margin-top: 15px !important; /* Upar ka space kam */
  margin-bottom: 135px !important; /* Neeche halka sa space */
}

/* Working Process Section Styles */
.working-process {
  margin-top: 250px;
}

.working-process-h2 {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(40px, 5vw, 50px);
  font-style: normal;
  font-weight: 700;
}

.working-process .coverage {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.working-process .auction-account-list-box {
  top: 100% !important;
  position: absolute;
  left: 0;
  border-radius: 0px 8px 8px 0px;
  background: linear-gradient(90deg, #104f83 0%, #04111d 100%);
}

.key-benefits .auction-account-list-box {
  top: 0px;
}

.towing .auction-account-list-box {
  top: 10% !important;
}

.towing button {
  top: -40px !important;
}

.working-process .working-process-heading {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-style: normal;
  font-weight: 700;
}

.working-process-box {
  border-radius: 18px;
  border: 1px solid #a4a4a4;
  background: #fff;
  box-shadow: 8px 8px 4px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.working-process-box .flag-img {
  margin: auto !important;
  display: flex !important;
}

.working-process-box p,
.working-process-box-item img {
  margin: 0 auto;
}

.working-process-box-item p,
.working-process-box-item li {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin: 10px auto !important;
}

.working-process-box-item img {
  width: clamp(30px, 4vw, 50px);
  height: auto;
}

.working-process-box-item button {
  font-family: "Nexa", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: normal;
  font-weight: 400;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #73ad00 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  outline: none;
  border: none;
}

.working-process-box.auction-support {
  padding-bottom: 40px !important;
}

.working-process-box-item .btn-auction-support {
  margin-top: -10px !important;
}

.working-process-box-item .btn-auction-support:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.working-process .auction-account-list-box + .working-process-box button {
  margin-top: 175%;
}

.button-row:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.button-row .col-md-12 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  top: 220px;
  text-align: center;
}

/* Tablet aur Laptop ke liye (768px se 1366px tak) */
@media (min-width: 768px) and (max-width: 1366px) {
  .button-row .col-md-12 {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 210px;
    text-align: center;
  }
}

.button-row .col-md-12 button {
  text-align: center;
}

.key-benefits button {
  font-family: "Nexa", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: normal;
  font-weight: 400;
  margin: 10px;
  line-height: 23.937px;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #73ad00 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  outline: none;
  border: none;
}

.working-process button a,
.key-benefits button a {
  color: #000;
}

.working-process button span,
.key-benefits button span {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 23.937px;
}

/* Benefit Item */
.benefits h2 {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.benefit-item img {
  width: 700px;
  height: auto;
}

.benefit-item .blue-label {
  border-radius: 4px;
  background: linear-gradient(90deg, #104f83 0%, #04111d 100%);
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

/* FAQs Section Styles */
.faqs h2 {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.faq-box {
  position: relative;
  background: #fff !important;
  border-radius: 18px;
  overflow: hidden;
  z-index: 0;
}

.faq-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: conic-gradient(
    from -0deg,
    #999999,
    transparent,
    transparent,
    #999999
  );
  z-index: -1;
  border-radius: 18px;
  padding: 2px;
  box-sizing: border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.faq-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: #fff;
  z-index: 1;
}

.border-box {
  max-width: max-content;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin: auto !important;
  position: relative;
  z-index: 2;
}

.border-box::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 50px;
  left: 0;
  right: 0px;
  background: conic-gradient(from 50deg, #999999, #999999, #999999, #999999);
  box-sizing: border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: 8px;
}

.faq-item {
  border-radius: 8px;
  margin-bottom: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s;
}

.faq-item:first-of-type,
.faq-item:nth-of-type(2) {
  border-bottom: none;
}

.faq-item:nth-of-type(2),
.faq-item:last-of-type {
  border-top: none;
}

.faq-item:last-of-type {
  margin-bottom: 5px;
  box-shadow: none;
}

.faq-question {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-style: normal;
  font-weight: bold;
  line-height: 130%;
  background-color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: transform 0.4s ease-in-out;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: transform 0.4s ease-in-out;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: bold;
  font-family: "Nexa", sans-serif;
  max-height: 0;
  overflow: hidden;
  outline: none;
  border: none;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

/* Towing Page Styles */
.overlapping-container .towing-text {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 50%;
}

/* Warehousing Page Styles */
.working-process figcaption {
  color: #000000;
  font-family: "Nexa", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.benefits .pricing-item:first-of-type img {
  width: 250px;
  height: auto;
  margin: 0 auto;
  display: flex;
}

.benefits .guar-item img {
  width: 250px;
  height: auto;
  margin: 0 auto;
  display: flex;
}

.benefits .guar-item:first-of-type img,
.benefits .guar-item:last-of-type img {
  width: 200px;
}

.benefits .guar-item:nth-of-type(4) img {
  width: 300px;
}

.benefits .pricing-item:last-of-type img {
  width: 400px;
  height: auto;
  margin: 0 auto;
  display: flex;
}

.benefits .pricing-item .white-label {
  color: #000000;
  font-family: "Nexa", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

/* Showroom Page Styles */
.showroom-hero {
  margin-top: 135px;
  border-top: 3px solid #e4e4e4;
}

.showroom-hero h1 {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(40px, 4vw, 65px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showroom-hero h2 {
  color: #121212;
  text-align: start;
  font-family: "Nexa", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}

.showroom-hero h3 {
  text-align: start;
  font-family: "Nexa", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showroom-hero .btn-order {
  color: #000;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  text-transform: capitalize;
  border-radius: 50px;
  border: none;
  background: linear-gradient(180deg, #aafe05 0%, #669803 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.showroom-hero .btn-order:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.next-page:hover {
  scale: 1.05;
  transition: all 0.3s ease-in-out;
}

/* Cars Collection Section Styles */
.cars-collection h2 {
  color: #212122;
  font-family: "Nexa", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

/* Search Bar Styles*/
.search-bar-wrapper .search-input {
  border-radius: 40px;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.search-bar-wrapper .search-input input,
.search-bar-wrapper .search-input span {
  background: none;
}

.search-bar-wrapper .search-input input {
  color: #676565;
  font-family: "Nexa", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.6px;
}

.search-bar-wrapper .search-input input:focus {
  box-shadow: none;
}

.search-bar-wrapper .search-input span {
  border: none;
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}

/* Dropdowns Styles */
.form-select {
  color: #676565;
  font-family: "Nexa", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.6px;
  border-radius: 40px;
  border: 1px solid #000;
  box-shadow: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.form-select:focus {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  outline: none;
  border: 1px solid #000;
}

/* Price Range Filter */
.price-range-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.price-range-wrapper label {
  color: #000;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.6px;
}

.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #6b6b6b;
  appearance: none;
}

.custom-range::-webkit-slider-thumb {
  appearance: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #000;
  cursor: pointer;
  box-sizing: border-box;
  background-image: linear-gradient(to bottom, #000 0%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 100%);
  background-repeat: no-repeat;
  background-size: 2px 60%;
  background-position: 33% center, 50% center, 70% center;
}

.custom-range::-moz-range-thumb {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #000;
  cursor: pointer;
  box-sizing: border-box;
  background-image: linear-gradient(to bottom, #000 0%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 100%);
  background-repeat: no-repeat;
  background-size: 2px 60%;
  background-position: 33% center, 50% center, 70% center;
}

.price-tooltip {
  position: absolute;
  top: -40px;
  left: 0;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 14px;
  display: none;
  white-space: nowrap;
}

/* Cars Collection Details */
.cars-collection-details .card {
  font-family: "Nexa", sans-serif;
  border-radius: 8px;
  border: 2px solid #004aad;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease-in-out;
}

.cars-collection-details .card:hover {
  transform: translateY(-10px);
}

.cars-collection-details .card-title {
  color: #050b20;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.cars-collection-details .card-text {
  color: #050b20;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.75px;
}

.cars-collection-details .card .btn {
  padding: 5px 25px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  border-radius: 4px;
  background: #104f83;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.cars-collection-pagination .btn-prev,
.cars-collection-pagination .btn-next {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(12px, 1.5vw, 16px);
  font-style: normal;
  font-weight: 700;
  width: clamp(130px, 15vw, 150px);
  border-radius: 400px;
  border: 1px solid #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-in-out;
  white-space: nowrap;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.cars-collection-pagination .btn-next {
  background: #104f83;
  color: #fff;
}

.cars-collection-pagination .btn-prev:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.cars-collection-pagination .btn-num {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 1/1;
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: clamp(12px, 2vw, 20px);
  font-style: normal;
  font-weight: 700;
  text-align: center;
  width: clamp(40px, 4vw, 50px);
  height: clamp(40px, 4vw, 50px);
  border-radius: 50%;
  background-color: #adadad;
  border: 1px solid #000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-in-out;
}

.cars-collection-pagination .btn-num.active {
  background: #104f83;
}

.cars-collection-pagination .btn-num:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.cars-collection-pagination span {
  color: #696666;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}
