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

:root {
  --primary-blue: #3772ff;
  --dark-text: #1e1e2d;
  --gray-text: #444e5a;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border-gray: #e2e8f0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  background: #f2f5f9;
}
.main-contianer {
  max-width: 1242px;
  border-width: 0px, 1px, 0px, 1px;
  border: 1px solid #d9deec;
  background-color: #ecf2f9;
  margin: auto;
  /* padding: 36px 42px 100px; */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-heading {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.hero-sub-heading {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 17px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%); */
  padding: 36px 42px 100px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 0 auto;
  align-items: start;
}

.hero-content-header {
  display: block;
}
.hero-content-small {
  display: none;
}
.hero-content-small-logo {
  border-bottom: 1px solid #d9deec;
  /* padding-bottom: 4px; */
  padding-bottom: 15px;
  margin-bottom: 1rem;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--dark-text);
}

.hero-left h1 .brand {
  color: var(--primary-blue);
}

.dealer-network {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.dealer-network img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-text);
}

.dealer-network-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.dealer-network-text p {
  font-size: 0.875rem;
  color: var(--gray-text);
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 2rem;
  letter-spacing: 0%;
  vertical-align: middle;
}

.why-register {
  margin-top: 3rem;
}

.why-register h2 {
  font-family: Montserrat;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-bottom: 47px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 1rem;
  border-bottom: 1px solid #71738133;
  margin-bottom: 1rem;
  color: var(--dark-text);
  font-family: Montserrat;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.benefit-dot {
  min-width: 10px;
  min-height: 10px;
  height: 10px;
  width: 10px;
  opacity: 1;
  border-radius: 50%;
  background-color: #767a82;
}
.hero-right {
  height: 100%;
}
/* Registration Form */
.registration-form {
  background: var(--white);
  /* padding: 40px; */
  border-radius: 0px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding-top: 37px;
  padding-right: 36px;
  padding-bottom: 37px;
  padding-left: 36px;
  gap: 10px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.registration-form h2 {
  margin-bottom: 2.5rem;
  font-family: Montserrat;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
}

.user-type {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.radio-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Style radio buttons to look like checkboxes */
.user-type input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px; /* makes it square like checkbox */
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}

.user-type input[type="radio"]:checked {
  border-color: #007bff; /* highlight color */
  background-color: #007bff;
}

.user-type input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.user-type label {
  cursor: pointer;
  user-select: none;
  font-family: Montserrat;
  font-weight: 400;
  font-style: Medium;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
}

.checkbox-wrapper label {
  cursor: pointer;
  font-family: Montserrat;
  font-weight: 400;
  font-style: Medium;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group-data  {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-data  label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
}

.form-group-data  label .required {
  color: #ef4444;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 12px;
  color: var(--gray-text);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.form-group-data  input,
.form-group-data  select {
  width: 100%;
  padding: 16px 12px 16px 44px;
  /* border: 1px solid var(--border-gray); */
  border: none;
  background: #e9eef457;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.form-group-data  input:focus,
.form-group-data  select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group-data  input::placeholder {
  color: var(--gray-text);
}

.captcha-wrapper {
  margin: 20px 0;
}

.privacy-policy {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 20px;
}
.privacy-policy-label {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0px;
}

.privacy-policy a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.submit-btn {
  /* width: 100%; */
  padding: 14px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  padding-top: 16px;
  padding-right: 34px;
  padding-bottom: 16px;
  padding-left: 34px;
  gap: 14px;
  border-radius: 32px;

  gap: 8px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #1d4ed8;
}

/* Why Dealers Section */
.why-dealers {
  padding: 20px 0px;
  /* background: var(--white); */
  text-align: center;
}

.why-dealers h2 {
  margin-bottom: 60px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
}

.why-dealers h2 .highlight {
  color: var(--primary-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  /* max-width: 1200px; */
  margin: 0 auto;
  border-top: 1px solid #d9deec;
  border-bottom: 1px solid #d9deec;
}

.feature-card {
  text-align: left;
  border-right: 1px solid #d9deec;
  padding: 2rem 2rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  line-height: 117%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
}

.feature-card p {
  color: var(--gray-text);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* Brands Section */
.brands-section {
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #d9deec;
}
.brands-marquee {
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  gap: 40px; /* space between logos */
  width: max-content;
  animation: scroll 15s linear infinite;
}

.brand-logo {
  /* height: 120px; bigger logos */
  width: auto;
}

/* smooth continuous scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* scroll half of the track */
  }
}

.heading-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* space between lines and heading */
  margin-bottom: 40px;
  overflow: hidden;
}

.line {
  height: 1px;
  background-color: #d9deec; /* change to desired color */
}

.line-left {
  flex: 0 0 10%; /* 20% width */
}

.line-right {
  flex: 0 0 77%; /* 70% width */
}
.brands-section h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
  gap: 8px;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-logo {
  height: 80px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.brand-logo:hover {
  opacity: 1;
}

/* Regions Section */
.regions-section {
  padding: 80px 0px;
  text-align: center;
}

.regions-section h2 {
  margin-bottom: 60px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
}

.map-container {
  /* max-width: 1000px; */
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  height: auto;
}

/* Why Choose Section */
.why-choose {
  padding: 0px 0px;
  /* background: var(--light-bg); */
  text-align: center;
}

.why-choose h2 {
  margin-bottom: 60px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.why-choose h2 .highlight {
  color: var(--primary-blue);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 10px; */
  border-top: 1px solid #d9deec;
  border-bottom: 1px solid #d9deec;
}

.benefit-card {
  text-align: left;
  border-right: 1px solid #d9deec;
  border-bottom: 1px solid #d9deec;
  padding: 2rem 2rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.benefit-card h3 {
  margin-bottom: 12px;
  margin-top: 1rem;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  line-height: 117%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: left;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 100px 20px;
  color: var(--white);
  text-align: center;
  background: url("../img/workTogather.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* semi-transparent overlay with blur */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ecf2f9e3; /* dark overlay with 60% opacity */
  /* backdrop-filter: blur(1px);  */
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1; /* make text appear above overlay */
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1e1e2d;
}

.cta-section h2 .highlight {
  color: var(--primary-blue);
}

.cta-btn {
  padding: 16px 40px;
  background: var(--dark-text);
  color: var(--white);
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Footer */
footer {
  padding: 40px 20px;
  background: #0f172a;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-item {
  display: flex;
  align-items: start;
  gap: 12px;
}

.footer-icon {
  color: var(--primary-blue);
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #29293c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.footer-icon-width {
  width: 28px;
  height: 28px;
}

.footer-item h4 {
  margin-bottom: 8px;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer-item p {
  color: var(--white);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}

.footer-bottom {
  text-align: center !important;
  padding-top: 30px;
  color: var(--white);
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
}
.feature-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content > :first-child {
    order: 2;
  }
  .hero-content > :last-child {
    order: 1;
  }
  .hero-content-header {
    display: none;
  }
  .hero-content-small {
    display: block;
    text-align: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .registration-form {
    padding: 30px 20px;
    height: fit-content;
  }
  .registration-form h2 {
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
  }
  .hero-heading {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-align: center;
  }
  .hero-sub-heading {
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 17px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .brand {
    color: var(--primary-blue);
  }
  .dealer-networks {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }

  .dealer-network-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .dealer-network-text p {
    font-size: 0.875rem;
    color: var(--gray-text);
    font-family: Montserrat;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 2rem;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 1rem;
  }
  .why-dealers h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 40px;
  }

  .highlight {
    color: var(--primary-blue);
  }
  .feature-card h3 {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 18px;
    line-height: 117%;
    text-align: left;
  }

  .feature-card p {
    color: var(--gray-text);
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .regions-section h2 {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 24px;
  }
  .regions-section {
    padding: 40px 0px;
  }
  .brands-section {
    padding: 40px 0px;
  }
  .why-choose h2 {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
  }
  .benefit-card h3 {
    font-size: 18px;
  }
  .benefit-card p {
    font-size: 16px;
  }
  .cta-section h2 {
    font-size: 1.9rem;
  }
  .container {
    padding: 0px;
  }
  .footer-item h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .registration-form {
    padding: 30px 20px;
    height: fit-content;
  }
  .checkbox-wrapper label {
    font-size: 14px;
    font-weight: 500;
  }
  .user-type label {
    font-size: 14px;
    font-weight: 500;
  }
  .registration-form h2 {
    margin-bottom: 2.5rem;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
  }
  .form-group-data  label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
  }
  .submit-btn {
    padding-top: 12px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    overflow: hidden;
  }
  .feature-card {
    border-top: 1px solid #d9deec;
  }
  .benefit-card {
    border-top: 1px solid #d9deec;
    border-bottom: none;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brands-grid {
    gap: 30px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
  .hero-section {
    padding: 26px 19px 32px;
  }
  .hero-heading {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-align: center;
  }
  .hero-sub-heading {
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .why-register h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    margin-bottom: 2rem;
  }
  .benefit-item {
    font-size: 16px;
  }
  .why-dealers h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
  }
  .feature-card h3 {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
    line-height: 117%;
    text-align: left;
  }
  .feature-card p {
    color: var(--gray-text);
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
  }

  .regions-section h2 {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 20px;
  }
  .why-choose h2 {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
  }
  .benefit-card h3 {
    font-size: 16px;
  }
  .benefit-card p {
    font-size: 14px;
  }
  .footer-item h4 {
    font-size: 16px;
  }
  .footer-item p {
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .hero-left h1 {
    font-size: 1.75rem;
  }

  .registration-form {
    padding: 24px 16px;
  }

  .why-dealers h2,
  .regions-section h2,
  .why-choose h2 {
    font-size: 1.5rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}


.form-group-data.typeahead .twitter-typeahead{
  width: 100%!important;
}

.form-group-data.typeahead .input-icon{
  z-index: 999;
}