:root {
  --syv-blue: #2d78c3;
  --syv-violet: #6959be;
  --syv-heading: #2b2a29;
  --syv-text: #4c4c4c;
  --syv-deep-blue: #1f58b6;
  --syv-light-blue: #339de0;
  --syv-yellow: #ffd05a;
  --syv-gold: #edad0c;
  --syv-salmon: #ffa6a0;
  --syv-border: #ad71f6;
  --syv-card-border: #c4a091;
  --syv-stat-border: rgba(197, 213, 246, 0.66);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: var(--syv-heading);
}

.sellyourvehicle-page {
  overflow: clip;
}

/* .sellyourvehicle-page img {
  display: block;
  max-width: 100%;
} */

.sellyourvehicle-page .syv-section {
  padding: 3rem 0;
}

.sellyourvehicle-page .syv-section-heading {
  max-width: 72rem;
  margin: 0 auto 3rem;
}

.sellyourvehicle-page .syv-section-heading h2 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.18;
  color: var(--syv-heading);
}

.sellyourvehicle-page .syv-section-heading p,
.sellyourvehicle-page p {
  color: var(--syv-text);
  font-size: 1.35rem;
  line-height: 1.55;
  margin: 0px auto;
}

.sellyourvehicle-page .syv-hero {
  padding: 3.15rem 0 3.5rem;
  background: linear-gradient(
    260deg,
    var(--syv-violet) 15.2%,
    var(--syv-blue) 80.98%
  );
}

.sellyourvehicle-page .syv-hero-copy {
  max-width: 43rem;
  color: #ffffff;
}

.sellyourvehicle-page .syv-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.24;
}

.sellyourvehicle-page .syv-hero-copy h1 span {
  color: #ffd700;
}

.sellyourvehicle-page .syv-hero-copy p {
  margin: 1.35rem 0 0;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.55;
}

.sellyourvehicle-page .syv-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 19rem;
  min-height: 4rem;
  margin-top: 1rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid #f8b51a;
  border-radius: 0.8rem;
  background: linear-gradient(
    90deg,
    var(--syv-gold) 0%,
    var(--syv-salmon) 100%
  );
  box-shadow: 0 4px 9.4px rgba(0, 0, 0, 0.15);
  color: #191919;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    background-position 0.32s ease;
}

.sellyourvehicle-page .syv-hero-cta:hover {
  transform: translateY(-2px);
  background-image: linear-gradient(90deg, #ffa6a0 0%, #edad0c 100%);
  color: #191919;
}

.sellyourvehicle-page .syv-hero-cta-arrow {
  font-size: 1.35rem;
  line-height: 1;
}

.sellyourvehicle-page .syv-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.sellyourvehicle-page .syv-feature-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--syv-stat-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

.sellyourvehicle-page .syv-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.45rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.13);
}

.sellyourvehicle-page .syv-stat-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.sellyourvehicle-page .syv-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.55rem;
  height: 3.55rem;
  flex: 0 0 3.55rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3.8px rgba(0, 0, 0, 0.15);
}

.sellyourvehicle-page .syv-stat-icon img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.sellyourvehicle-page .syv-stat-item strong,
.sellyourvehicle-page .syv-stat-item span {
  display: block;
  color: #ffffff;
}

.sellyourvehicle-page .syv-stat-item strong {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.sellyourvehicle-page .syv-stat-item span {
  font-size: 0.92rem;
  line-height: 1.35;
}

.sellyourvehicle-page .syv-form-card {
  overflow: hidden;
  border: 1px solid #975be2;
  border-radius: 1.6rem;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
}

.sellyourvehicle-page .syv-form-head {
  padding: 0.5rem 1rem;
  text-align: center;
  background: linear-gradient(84deg, #f3e9ff 2.32%, #daebff 97.32%);
}

.sellyourvehicle-page .syv-form-head h2 {
  margin: 0;
  color: #000000;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.4;
}

.sellyourvehicle-page .syv-form-head p {
  margin: 0rem 0 0;
  color: #000000;
  font-size: 0.96rem;
}

.sellyourvehicle-page .syv-form {
  padding: 1.2rem 1.45rem 0;
}

.sellyourvehicle-page .syv-form .form-label {
  margin-bottom: 0.4rem;
  color: #4b4b4b;
  font-size: 0.88rem;
}

.sellyourvehicle-page .syv-form .form-control,
.sellyourvehicle-page .syv-form .form-select {
  min-height: 2.5rem;
  border: 1px solid #7d7d7d;
  border-radius: 0.5rem;
  color: #2f2f2f;
  font-size: 0.9rem;
  box-shadow: none;
}

.sellyourvehicle-page .syv-form .form-select {
  padding-right: 2.5rem;
}

.sellyourvehicle-page .syv-form .form-control::placeholder,
.sellyourvehicle-page .syv-form .form-select {
  color: #9f9f9f;
}

.sellyourvehicle-page .syv-textarea {
  min-height: 5.85rem;
  resize: none;
  background: #f9f9f9;
}

.sellyourvehicle-page .syv-captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid #b0d2de;
  border-radius: 0.5rem;
  background: #ecfaff;
}

.sellyourvehicle-page .syv-captcha span {
  color: #4b4b4b;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.42rem;
}

.sellyourvehicle-page .syv-refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.sellyourvehicle-page .syv-refresh-btn img {
  width: 1.25rem;
  height: 1.25rem;
}

.sellyourvehicle-page .syv-submit-btn {
  width: 100%;
  min-height: 3.5rem;
  border: 1px solid #f8b51a;
  border-radius: 0.65rem;
  background: linear-gradient(
    90deg,
    var(--syv-yellow) 0%,
    var(--syv-salmon) 100%
  );
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    background-position 0.32s ease;
}

.sellyourvehicle-page .syv-submit-btn:hover {
  transform: translateY(-2px);
  background-image: linear-gradient(90deg, #ffa6a0 0%, #edad0c 100%);
  color: #000000;
}

.sellyourvehicle-page .syv-form-note {
  margin: 0;
  padding: 0.85rem 1.45rem 1.2rem;
  color: #4b4b4b;
  font-size: 0.76rem;
  text-align: center;
}

.sellyourvehicle-page .syv-form-note a {
  color: #00359a;
  text-decoration: none;
}

.sellyourvehicle-page .syv-process-section {
  background: #ffffff;
}

.sellyourvehicle-page .syv-process-card {
  position: relative;
  height: 100%;
  padding: 1.8rem 1.55rem 1.7rem;
  border: 1px solid var(--syv-border);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 4px 9.1px rgba(0, 0, 0, 0.09);
  text-align: center;
}

.sellyourvehicle-page .syv-step-number {
  position: absolute;
  top: 1rem;
  right: 1.55rem;
  color: #d5956d;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.sellyourvehicle-page .syv-process-icon,
.sellyourvehicle-page .syv-advantage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f4ff;
}

.sellyourvehicle-page .syv-process-icon {
  width: 8.5rem;
  height: 8.5rem;
  margin-bottom: 1rem;
}

.sellyourvehicle-page .syv-process-icon img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
}

.sellyourvehicle-page .syv-process-card h3,
.sellyourvehicle-page .syv-advantage-card h3 {
  margin: 0 0 0.75rem;
  color: #191919;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.45;
}

.sellyourvehicle-page .syv-process-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
}

.sellyourvehicle-page .syv-advantage-section {
  background: linear-gradient(257deg, #fff2ec 7.09%, #f0f5ff 93.29%);
}

.sellyourvehicle-page .syv-advantage-section .syv-section-heading h2,
.sellyourvehicle-page .syv-achievement-section .syv-section-heading h2 {
  background: linear-gradient(90deg, #2047a9 0%, #339de0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sellyourvehicle-page .syv-advantage-card {
  height: 100%;
  padding: 1.4rem 1.35rem 1.45rem;
  border: 1px solid var(--syv-card-border);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 4px 10.7px rgba(0, 0, 0, 0.08);
}

.sellyourvehicle-page .syv-advantage-icon {
  width: 5.1rem;
  height: 5.1rem;
  margin-bottom: 1rem;
  border: 1px solid #d5d7e0;
  background: #ffffff;
}

.sellyourvehicle-page .syv-advantage-icon img {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
}

.sellyourvehicle-page .syv-advantage-card h3 {
  font-size: 1.05rem;
  line-height: 1.45;
}

.sellyourvehicle-page .syv-advantage-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.sellyourvehicle-page .syv-achievement-section {
  background: #ffffff;
}

.sellyourvehicle-page .syv-achievement-card {
  height: 100%;
  min-height: 15.25rem;
  padding: 1.45rem 1rem 1.25rem;
  border: 1px solid #bec5e0;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 3px 9px 10.1px rgba(42, 47, 69, 0.12);
  text-align: center;
}

.sellyourvehicle-page .syv-achievement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.95rem;
  height: 5.95rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb21f 0%, #ff8617 100%);
}

.sellyourvehicle-page .syv-achievement-icon img {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
}

.sellyourvehicle-page .syv-achievement-card strong,
.sellyourvehicle-page .syv-achievement-card span {
  display: block;
}

.sellyourvehicle-page .syv-achievement-card strong {
  color: #4a6eb7;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
}

.sellyourvehicle-page .syv-achievement-card span {
  color: #364153;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 0.25rem;
}

.sellyourvehicle-page .everytype-section {
  background: linear-gradient(265.26deg, #f2f6ff 10.23%, #edf8ff 92.52%);
  padding: 2rem 0;
}
.sellyourvehicle-page .everytype-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 13.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  border-radius: 1.45rem;
  box-shadow: 0px 4px 10.7px rgba(0, 0, 0, 0.08);
  background: #fafbff;
  border: 1px solid #b2bce6;
}
.sellyourvehicle-page .everytype-service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}
.sellyourvehicle-page .everytype-service-card h3 {
  font-size: 1rem;
  font-weight: 400;
}
.sellyourvehicle-page .everytype-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef5ff, #d6e8ff);
  color: var(--aboutus-blue-deep);
  font-size: 1.2rem;
}
.sellyourvehicle-page .everytype-heading {
  max-width: 60rem;
  margin: 0 auto 2rem;
}
.sellyourvehicle-page .everytype-heading h2 {
  background: linear-gradient(90deg, #1147ae 0%, #0f85c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.sellyourvehicle-page .everytype-heading p {
  margin: 0.8rem 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.sellyourvehicle-page .container {
  cursor: default !important;
}
.sellyourvehicle-page .container input {
  position: relative !important;
  width: 100% !important;
  opacity: 1 !important;
  cursor: initial !important;
}

.journey-head {
  text-align: center;
  margin-bottom: 38px;
}

.journey-title {
  margin: 0;
  font-size: 36px !important;
  line-height: 1.2;
  font-weight: 600 !important;
  color: #1e5faf;
}

.journey-subtitle {
  margin: 12px auto 0;
  max-width: 920px;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1.45;
  color: #444b57;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.journey-track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 66px;
  height: 3px;
  background: linear-gradient(90deg, #c7d8eb 0%, #cfcbf0 100%);
  border-radius: 99px;
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journey-icon-wrap {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #b9d1ea;
  box-shadow: 0 8px 18px rgba(28, 57, 103, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 24px;
}

.journey-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}

.journey-step-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #21242d;
}

.journey-step-desc {
  margin: 10px 0 0;
  max-width: 250px;
  font-size: 14px;
  line-height: 1.42;
  color: #4a515d;
}

@media (max-width: 1200px) {
  .journey-title {
    font-size: 40px !important;
  }
}

@media (max-width: 992px) {
  .buying-journey-section {
    padding: 56px 16px 50px;
  }

  .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .journey-track::before {
    display: none;
  }

  .journey-title {
    font-size: 34px !important;
  }
}

@media (max-width: 680px) {
  .journey-title {
    font-size: 30px !important;
  }

  .journey-subtitle {
    font-size: 15px !important;
  }

  .journey-step-title {
    font-size: 21px !important;
  }

  .journey-step-desc {
    font-size: 13px !important;
  }
}

@media (max-width: 520px) {
  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-icon-wrap {
    width: 120px;
    height: 120px;
    padding: 20px;
  }

  .journey-icon {
    width: 68px;
    height: 68px;
  }

  .journey-title {
    font-size: 26px !important;
  }
}

/* ---Our Achievements Styles Start Here--- */
.our-achievements .block-title {
  text-align: center;
  font-family: "RobotoBold";
}
.our-achievements .block-wrap {
  flex-wrap: wrap;
  justify-content: center;
}
.our-achievements .block-wrap .block {
  color: #2b2a29;
  align-items: center; /*width:396px;*/
  width: calc(33.33% - 20px); /*height:138px;*/
  height: 100px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0px 1px 4px #00000029; /*margin:0px 45px 42px 0px;*/
  margin: 0 12px 24px;

  width: 190px;
  height: 244px;
  angle: 0 deg;
  opacity: 1;
  border-radius: 20px;
  border-width: 1px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0.2rem;
}
.our-achievements .block-wrap .block:nth-child(3n) {
  margin-right: 0;
}
.our-achievements .block-wrap .block .icon {
  padding: 0 34px;
  width: 95px;
  height: 95px;
  top: 4557px;
  left: 200px;
  angle: 0 deg;
  opacity: 1;
  border-width: 1px;
  background: linear-gradient(180deg, #fdb813 0%, #f97316 100%);
  border: 1px solid;
  border-radius: 50%;
  border-image-source: linear-gradient(180deg, #e59c00 0%, #d9680d 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.our-achievements .block-wrap .block .icon .icon-img {
  width: auto;
  height: 47px;
}
.our-achievements .block-wrap .block .text .count {
  /*font-size:32px;*/
  color: #4a6eb7;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-top: 1rem;
}
.our-achievements .block-wrap .block .text .achievement {font-size: 16px;font-weight: 500;text-align: center;}