.hero {
  background: linear-gradient(90deg, #D0E8FF 0%, #FFFFFF 100%);
  padding: 120px 0 80px;
}
.about .whole-wrapper {
  position: relative;
  /* min-height: 100vh;  */
  overflow: hidden;
}
.about .site-header{
  background: transparent !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  align-items: center;
}

.hero-content h1 {
  margin: 20px 0;
  font-size: 52px;
  font-weight: 600;
}

.hero-content p {
  color: #9A9A9A;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  background: #e0edff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.hero-image img {
  /* width: 100%; */
  /* max-width: 600px; */
  /* height: 640px; */
  display: block;
  margin-left: auto;
}


.introducers {
  background: #ffffff;
  padding: clamp(40px, 5vw, 50px) 0;
}

.intro-label {
  background: linear-gradient(90.49deg, #0088FF 2.97%, #603CFF 99.75%);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display:inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.intro-title {
  font-size: 30px;
  font-weight: 600;
  margin: 12px 0 50px;
  color: #111827;
}

/* CARDS */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.intro-card {
  text-align: left;
}

.intro-card .icon {
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.intro-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.intro-card p {
  font-size: 16px;
  color: #6B7280;
  font-weight: 400;
  line-height: 1.6;
}

/* LEFT */
.about-content h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 16px;
}

.about-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Arrow */
.arrow-icon {
  transition: transform 0.2s ease;
}

/* Hover animation */
.view-all-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Mobile safe */
@media (max-width: 576px) {
  .view-all-btn {
    margin: auto;
  }
  .hero{
    padding:70px 0 10px;
  }
}


/* ================== RESPONSIVE ================== */

/* Tablets */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 0;
  }

  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .primary-btn {
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-content h2 {
    font-size: 24px;
  }

  .providers-grid {
    grid-template-columns: 1fr;
  }

  .provider-card {
    height: 90px;
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .intro-title {
    font-size: 26px;
  }

  .intro-cards {
    grid-template-columns: 1fr;
  }
}


/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
.offerSwiper .offer-card {
  width: 100%;
  max-width: 90%;
}
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-image img {
    margin: 30px auto 0;
  }
    .narm-row {
    grid-template-columns: 1fr !important;
  }

  .narm-img-wrap {
    order: -1;
  }

  .narm-success-section .narm-img-wrap {
    order: 1;
  }


  section.narm-success-section{
    padding-top: 20px;
  }

}
@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    /* text-align: center; */
  }
}
/* ================= FEATURES ================= */
.features-section {
  padding-top: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(0px, 5vw, 80px);
}

.features-intro .tag {
  background: linear-gradient(90.49deg, #0088FF 2.97%, #603CFF 99.75%);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display:inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

.features-intro h2 {
  font-size: 30px;
  font-weight: 600;
  color: #111827;
  margin: 12px 0;
}

.features-intro p {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item img {
  width:48px;
  height:48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 500;
  color:#111827;
  margin-bottom: 0;
  margin-top: clamp(0px, 1vw, 15px);
}

.feature-item p {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 0;
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
  background: #F3F4F6;
  padding: clamp(40px, 5vw, 60px) 0;
}

.testimonial-card {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.ventura-logo {
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 32px;
  color: #111827;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-user h5 {
  font-size: 16px;
  font-weight: 500;
}

.testimonial-user span {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 10px !important;
  }
}

@media (max-width: 576px) {
  .features-intro h2 {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}

/* ================= INTRODUCER ================= */

.introducer-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(0px, 5vw, 80px);
  align-items: center;
}

.introducer-left {
  max-width: 340px;
}

.introducer-left .label {
  color: #2563EB;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.introducer-left h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.introducer-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

/* ===== Timeline ===== */
.introducer-right {
  position: relative;
  margin-left: 100px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 58px;
  margin-top: 8px;
  align-items: flex-start;
}

.step::before {
  content: "";
  position: absolute;
  left: 24px; 
  top: 48px;
  height: calc(100% - 1px);
  width: 1px;
  background: #cccccc;
}

.step:last-child::before {
  display: none;
}

.dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}


/* ================= CTA ================= */

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 90px 60px;
  background: linear-gradient(90deg, #D0E8FF 0%, #FFFFFF 100%);
  display: grid;
  grid-template-columns: 360fr 1fr;
  align-items: center;
}

.cta-box::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 313px;
  height: 313px;
 background: #8A40F9;
  filter: blur(70px);
 opacity: 0.69;
 border-radius: 500px;
}

/* CENTER CONTENT */
.cta-text {
  display: flex;
  justify-content: flex-end;
}

.cta-center {
  text-align: center;
  max-width: 360px;
}

.cta-center h2 {
  font-size: 34px;
  font-weight: 500;
  color:#2F2F2F;
  margin-bottom: 0;
}

.cta-center h2  span {
  font-family: Instrument Serif;
  font-style: italic;
  background: linear-gradient(90.49deg, #0088FF 2.97%, #603CFF 99.75%);
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display:inline-block;
    margin-top: 0;
    letter-spacing: -3px;
}

.cta-center p {
  font-size: 14px;
  font-weight: 400;
  color: #505050;
  margin: 16px 0 10px;
}
a.cta-btn-search{
  color: #226DFF;
    border: 1px solid ;
  border-color: #226DFF;
  background-color: transparent;
  padding: 12px 31px !important;
}
a.cta-btn-search,a.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px; 
    padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
}
.cta-center a.cta-btn {
  border: none !important;
  background: linear-gradient(180deg, #6D6D6D 0%, #171717 100%);
  color: #fff;
}
.cta-btn-search,
.cta-btn i {
  font-size: 15px;
}

.cta-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.cta-image img {
  max-width: 387px;
}


@media (max-width: 992px) {
  .introducer-grid {
    grid-template-columns: 1fr;
    gap: 0 !important;
  }

  .introducer-left {
    max-width: 100%;
  }

  .introducer-right {
    margin-left: 0;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 24px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 10px;
  }
.cta-text{
    justify-content: center;
}
  .cta-image {
    display: none;
  }
}

@media (max-width: 576px) {
  .introducer-left h2 {
    font-size: 26px;
  }

  .cta-center h2,
  .cta-center span {
    font-size: 24px;
  }

  .cta-btn {
    font-size: 12px;
  }
}

.about-providers {
  background: linear-gradient(90.49deg, #0088FF 2.97%, #603CFF 99.75%);
  overflow: hidden;
  margin-top: clamp(0px, 5vw, 50px);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-content h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

.about-content p {
  color: #e5e7eb;
  /* max-width: 420px; */
  line-height: 1.6;
}


/* RIGHT SCROLL AREA */
/* WRAPPER */
.providers-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 420px;             
  overflow: hidden;
}

/* COLUMN */
.scroll-column {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.provider-card {
  width: 178px;
  height: 168px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE FIX */
.provider-card img {
  width: 168px;
  height: 168px;
  object-fit: contain; /* no stretch */
  display: block;
}

/* ANIMATIONS */
.scroll-up .scroll-track {
  animation: scrollUp 5s linear infinite;
}

.scroll-down .scroll-track {
  animation: scrollDown 5s linear infinite;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
  }

  .providers-scroll {
    display:none;
  }
}

@media (max-width: 576px) {
  .providers-scroll {
    display: none;
  }

}
/* new */
/* ================= HERO BASE ================= */

.hero {
  background: linear-gradient(90deg, #D0E8FF 0%, #FFFFFF 100%);
  /* padding: clamp(70px, 10vw, 140px) 0 clamp(40px, 8vw, 80px); */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* gap: clamp(24px, 6vw, 80px); */
}

/* ---------------- TEXT ---------------- */

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 28px;
  max-width: 520px;
}


/* ---------------- IMAGE ---------------- */

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.hero-image img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}


/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-image img {
    max-width: 860px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 1068px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

 .hero-image {
    justify-content: center;
    margin-top: 40px;
  }

  .hero-image img {
    width: min(95vw, 520px);
    max-width: none;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-image img {
    max-width: 480px;
  }
}
  section.narm-success-section{
margin-top: clamp(20px,5vw,70px);
  }
.narm-layout{
    padding: clamp(30px,5vw,80px) 0;
}
.narm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px,5vw,40px);
  align-items: center;

}

.narm-content h2 {
  font-size:44px;
  line-height: 1.3;
}

.narm-content p {
  color: #666666;
  line-height: 1.6;
  font-size: 18px;
  margin: 0;
}

.narm-img-wrap img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.offer-section {
  padding-top: clamp(30px,5vw,70px);
}

h2.offer-title {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
}

.offerSwiper {
  width: 100%;
}

.offer-card {
  background: #F9F9F9;
  border-radius: 10px;
  padding: 20px 15px;
  min-height: 200px;
  max-width: 370px;
}

.offer-card h3 {
  font-size:24px;
  margin: 0;
}

.offer-card p {
  font-size: 18px;
  color: #6E6E6E;
  line-height: 1.5;
  margin-bottom: 0;
}

.offer-pagination .swiper-pagination-bullet {
  background: #666;
}

.offer-pagination .swiper-pagination-bullet-active {
  background: #000;
}
