

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Anek Latin", sans-serif !important;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  letter-spacing: 0.3px;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER / FOOTER
========================= */

.site-header,
.site-footer {
  width: 100%;
  overflow: hidden;
}

.site-header img,
.site-footer img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   GLOBAL
========================= */

.saathi-page {
  width: 100%;
  background: #ffffff;
}

.saathi-container {
  width: 100%;
  /* max-width: 1180px; */
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HERO SECTION
========================= */

.saathi-hero-section {
  padding: 55px 30px 35px 30px;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 38% 58%;
  gap: 45px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

.hero-kicker {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
}
.hero-content {
    padding-top: 20px;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 600;
  color: #B92D31;
  margin: 6px 0 14px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #8D8D8D;
  margin-bottom: 30px;
  padding-top: 15px;
}

.hero-points {
  display: grid;
  gap: 30px;
}
strong {
    font-weight: 600;
}
/* .hero-points div {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
} */

.hero-points strong {
  display: block;
  font-size: 18px;
  color: #000000;
  margin-bottom: 4px;
}

.hero-points span {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #8D8D8D;
}
.hero-image {
    margin-top: -90px;
}

.saathi-container.hero-grid {
    border-top: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    border-radius: 20px;
}

/* =========================
   BENEFITS SECTION
========================= */

.saathi-benefits-section {
  padding: 45px 0;
  background: #ffffff;
  text-align: center;
}

.saathi-benefits-section h2 {
  font-size: 32px;
  font-weight: 300;
  color: #222222;
  margin-bottom: 35px;
}


.benefit-card {
  text-align: center;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
  max-width: 170px;
  margin: 0 auto;
}

benefits-grid {
    padding-top: 40px;
}


/* =========================
   WHO SECTION
========================= */



.saathi-info-section {
  width: 100%;
  padding: 20px 0 40px;
  background: #ffffff;
  position: relative;
}

.saathi-info-container {
  width: 100%;
  /* max-width: 1180px; */
  margin: 0 auto;
  padding: 0 80px;
}

.saathi-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.saathi-info-column {
  width: 100%;
}


.saathi-info-heading {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 600;
    color: #000000;
    margin-bottom: 22px;
}

.saathi-info-card {
  width: 100%;
  min-height: 260px;

  background: #ffffff;

  border: 1.5px solid #B92D31;
  border-radius: 28px;

  padding: 14px 24px;
}

.saathi-info-card p {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
    /* margin-bottom: 18px; */
}

.saathi-info-card ul {
  padding-left: 28px;
  /* margin-top: 6px; */
}

.saathi-info-card li {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  /* margin-bottom: 8px; */
}

.saathi-info-bottom-text {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #111111;

  margin-top: 34px;
}


/* DOCUMENTS */



.card-bg{
  background-image:url("img/card-bg.png");
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;

  border-radius:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.document-image{
  width:150px;
  /* height:170px; */
  border-radius:20px;
  overflow:hidden;
  /* margin-bottom:18px; */
}

.document-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.card-bg h3{
  font-size:20px;
  font-weight:600;
  color:#000000;
  text-align:center;
}


.documents-section{
  padding:80px 80px;
  background-image:url("img/bg-img-doc.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  margin-top: 30px;
}

.container{
  width:100%;
  margin:auto;
}

/* Title */

.section-title{
  text-align:center;
  font-size:42px;
  font-weight:300;
  color:#000000;
  margin-bottom:60px;
}

/* Grid */

.documents-wrapper{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

/* Card */

.document-card{
  text-align:center;
}

/* Small Background */

.card-bg{
  background-image:url("img/Rectangle\ 13.png");
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  border-radius:24px;
  padding:50px 10px 30px 10px;
  min-height:220px;

  display:flex;
  align-items:center;
  justify-content:center;
}



/* Inner Image */
/* 
.document-image{
  width:140px;
  height:140px;
  border-radius:20px;
  overflow:hidden;
} */

/* .document-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
} */

/* Text */

.document-card h3{
  margin-top:22px;
  font-size:20px;
  font-weight:600;
  color:#222;
}

/* =========================
   ONBOARDING SECTION
========================= */


.saathi-onboarding-section {
    width: 100%;
    padding: 130px 0;
    background-image: url(img/form.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
  }

.onboarding-box {
  /* background: linear-gradient(135deg, #c91429 0%, #be1d2b 100%); */
  border-radius: 22px;

  padding: 55px;

  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;

  color: #ffffff;

  position: relative;
  overflow: hidden;
}

.onboarding-content h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 500;
}

.step {
  margin-bottom: 30px;
}

.step h4 {
  font-size: 20px;
  /* margin-bottom: 5px; */
  font-weight: 500;
}

.step p {
  font-size: 16px;
  line-height: 1.3;
  opacity: 0.9;
}

/* FORM */

.onboarding-form {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.onboarding-form h3 {
  color: #222222;
  font-size: 15px;
  margin-bottom: 12px;
}

/* =========================
   PARTNER FORM
========================= */

.partner-form-box {
  width: 100%;

  background: #ffffff;

  border-radius: 10px;

 

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
form.partner-form-box {
    padding: 30px 20px 30px 20px;
}
.partner-form-group {
  margin-bottom: 18px;
}

.partner-form-group label {
  display: block;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;

  color: #111111;

  margin-bottom: 10px;
}

.partner-form-group input {
  width: 100%;
  height: 42px;

  border: 1px solid #dddddd;
  border-radius: 8px;

  padding: 0 14px;

  background: #ffffff;

  font-size: 14px;
  color: #111111;

  outline: none;
}

.partner-form-group input::placeholder {
  color: #c5c5c5;
}

.partner-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-top: 4px;
  margin-bottom: 18px;
}

.partner-checkbox-row input {
  margin-top: 3px;
  accent-color: #c63b3b;
}

.partner-checkbox-row label {
  font-size: 11px;
  line-height: 1.5;
  color: #222222;
}

.partner-submit-btn {
  width: 100%;
  height: 40px;

  border: none;
  border-radius: 8px;

  background: #efefef;
  color: #d0d0d0;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
}

/* HOVER */
.partner-submit-btn:hover {
  background: #e3e3e3;
}

/* =========================
   FAQ SECTION
========================= */

.saathi-faq-section {
  padding: 40px 60px 60px 60px;
  background: #ffffff;
  text-align: center;
}

.saathi-faq-section h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 35px;
}

.faq-list {
  /* max-width: 950px; */
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.faq-item {

  background: #ffffff;
    border-bottom: 4px solid #c7d95a;
    border-radius: 5px 5px 5px 5px;
    border-top: 1px solid #f7f4f4;
    border: 1px 5px 10px 20px solid red;
}


/* .faq-item.active {
    border: 1px 5px 10px 20px solid red;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    background-color: #FCF8E3;
} */

.faq-item.active {
    border: 1px 5px 10px 20px solid red;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    background-color: #fdf5ea;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;

  padding: 18px 20px;

  font-size: 16px;
  font-weight: 500;
  color: #000000;

  display: flex;
  justify-content: space-between;

  cursor: pointer;
  text-align: left;
}

.faq-question span {
  color: #c91429;
  font-size: 20px;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.3;
  color: #838383;
}
.faq-item {
    margin-top: 40px;
}
/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .saathi-container {
    padding: 0 24px;
  }

  /* .hero-grid,
  .who-grid,
  .onboarding-box {
    grid-template-columns: 1fr;
  } */

  .hero-content h1 {
    font-size: 36px;
  }

 
  .onboarding-box {
    gap: 30px;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {
    .hero-grid {
        display: grid;
        grid-template-columns: auto;
    }
}

@media (max-width: 576px) {

  .saathi-container {
    padding: 0 14px;
  }

  /* .hero-grid {
  display: grid;
  grid-template-columns: 38% 58%;} */

  /* HERO */

  .saathi-hero-section {
    padding: 30px 0;
  }

  .hero-image {
    margin-top: 20px;
}

  .hero-grid {
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero-points span {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: #8D8D8D;
}

  .hero-desc {
    font-size: 15px;
  }

  .hero-points strong {
    display: block;
    font-size: 16px;}

  /* BENEFITS */

  .saathi-benefits-section h2,
  .saathi-faq-section h2 {
    font-size: 20px;
  }

  .benefit-card p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    max-width: 170px;
    margin: 0 auto;
}



  .benefit-icon {
    width: 58px;
    height: 58px;
  }

  .benefit-card p {
    font-size: 13px;
  }
}

  /* WHO */

  @media(max-width:576px){

  .saathi-who-section{
    padding: 35px 0;
  }

  .who-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .who-title{
    font-size: 24px;
    margin-bottom: 16px;
  }

  .who-card{
    min-height: auto;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .who-card p,
  .who-card li{
    font-size: 15px;
    line-height: 1.45;
  }

  .who-bottom-text{
    font-size: 15px;
    margin-top: 24px;
  }

}

  /* DOCUMENTS */

  .saathi-documents-section {
    padding: 30px 0;
  }

  .documents-banner {
    border-radius: 14px;
  }

  .document-image{
  width:150px;
  /* height:170px; */
  border-radius:20px;
  overflow:hidden;
  /* margin-bottom:18px; */
}

  /* ONBOARDING */

  .saathi-onboarding-section {
    padding: 40px 0;
    background-position: center;
    background-size: cover;
  }

  .onboarding-box {
    /* grid-template-columns: 1fr; */
    gap: 28px;

    padding: 24px 18px;
    border-radius: 16px;
  }

  .onboarding-content h2 {
    font-size: 22px;
  }

  .onboarding-form {
    padding: 18px;
  }

 .onboarding-box {
    /* grid-template-columns: 1fr; */
    gap: 28px;
    padding: 140px 60px;
    border-radius: 16px;
}

section.saathi-onboarding-section {
    margin-top: 40px;
}

  .partner-form-box{
    padding: 20px 16px 18px;
  }

  .partner-form-group label{
    font-size: 13px;
  }

  .partner-form-group input{
    height: 40px;
    font-size: 13px;
  }

 
.saathi-faq-section h2 {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 35px;
}


/* DOCUMENTS MOBILE RESPONSIVE */
@media (max-width: 576px) {

  .documents-section {
    padding: 35px 0;
  }

  .documents-section .container {
    padding: 0 14px;
  }

  .documents-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .document-card {
    width: 100%;
  }

  .card-bg {
    width: 100%;
    padding: 14px 10px;
    border-radius: 14px;
  }

  .document-image {
    width: 100%;
    max-width: 110px;
    margin: 0 auto 10px;
  }

  .document-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .document-card h3 {
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 24px;
    text-align: center;
  }

  .saathi-info-section {
    padding: 35px 0;
  }

  .saathi-info-container {
    padding: 0 14px;
  }

  .saathi-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .saathi-info-heading {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .saathi-info-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .saathi-info-card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .saathi-info-card ul {
    padding-left: 18px !important;
  }

  .saathi-info-card li {
    font-size: 15px;
    line-height: 1.5 !important;
    margin-bottom: 8px;
  }

  .saathi-info-bottom-text {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 22px;
  }

.onboarding-box {
    /* background: linear-gradient(135deg, #c91429 0%, #be1d2b 100%); */
    border-radius: 22px;
    padding: 55px;
    display: grid;
    grid-template-columns: auto;
    gap: 50px;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.onboarding-box {
    /* grid-template-columns: 1fr; */
    gap: 28px;
    padding: 80px 40px;
    border-radius: 16px;
}



}


/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1600px) {

  .saathi-container {
    width: 100%;
    padding: 0 40px;
  }

  /* HERO */

  .hero-content h1 {
    font-size: 70px;
  }

  .hero-kicker {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 22px;
  }

  .hero-points strong {
    font-size: 24px;
  }

  .hero-points span {
    font-size: 22px;
  }

  .hero-image {
    margin-top: 30px;
}

.hero-desc {
  
    margin-bottom: 60px;
    padding-top: 20px;
}

  /* BENEFITS */

  .saathi-benefits-section h2,
  .saathi-faq-section h2 {
    font-size: 46px;
  }

  .benefit-icon {
    width: 130px;
    height: 120px;
  }

  .benefit-card p {
    font-size: 28px;
    max-width: 220px;
    padding-top: 30px;
  }

  .saathi-benefits-section h2 {
    font-size: 42px;
    font-weight: 300;
    color: #222222;
    margin-bottom: 56px;
}

.saathi-info-heading {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 600;
    color: #000000;
    margin-bottom: 22px;
}

  /* WHO */

 

  .who-title{
    font-size: 46px;
  }

  .who-card{
    min-height: 380px;
    padding: 40px 36px;
    border-radius: 34px;
  }

  .who-card p,
  .who-card li{
    font-size: 26px;
    line-height: 1.45;
  }

  .who-bottom-text{
    font-size: 26px;
    margin-top: 42px;
  }

  .saathi-info-card p {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #000000;
    /* margin-bottom: 18px; */
}

.saathi-info-card li {
    font-size: 22px;
    line-height: 1.3;}

    .saathi-info-container {
    width: 100%;
    /* max-width: 1180px; */
    margin: 0 auto;
    padding: 2px 140px;
}
.saathi-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.saathi-info-bottom-text {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: #111111;
    margin-top: 34px;
}

  /* DOCUMENTS */

.document-image {
    width: 250px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    /* margin-bottom: 18px; */
}
.card-bg{
  background-image:url("img/Rectangle\ 13.png");
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
  border-radius:24px;
  padding:70px 20px 50px 20px;
  min-height:220px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.section-title {
    text-align: center;
    font-size: 52px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 60px;
}
.document-card h3 {
    margin-top: 30px;
    font-size: 26px;
    font-weight: 600;
    color: #000000;
}

documents-section {
    padding: 120px 100px;
    background-image: url(img/bg-img-doc.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 30px;
}


  /* ONBOARDING */

  .saathi-onboarding-section {
    padding: 90px 0;
  }

  .onboarding-box {
    padding: 60px;
    grid-template-columns: 1fr 430px;
  }

  .onboarding-content h2 {
    font-size: 60px;
  }

  .step h4 {
    font-size: 32px;
  }

  .step p {
    font-size: 20px;
  }

 

section.saathi-onboarding-section {
    margin-top: 136px;
}

  /* FAQ */

  .faq-question {
    font-size: 22px;
  }

  .faq-answer p {
    font-size: 20px;
  }

  .saathi-faq-section {
    padding: 60px 80px 80px 80px;
    background: #ffffff;
    text-align: center;
}





  .partner-form-box{
    padding: 28px 34px 28px;
    border-radius: 16px;
  }

  .partner-form-group{
    margin-bottom: 24px;
  }

 

  .partner-form-group label {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

  .partner-form-group input{
    height: 40px;
    font-size: 18px;
    border-radius: 12px;
    font-weight: 500;
  }

  .partner-checkbox-row label{
    font-size: 14px;
  }

  .partner-submit-btn{
    height: 45px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 500;
  }
  .faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 30px 40px
}

.faq-answer {
    display: none;
    padding: 0 40px 40px;
}

}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
}

/* Mobile & Tablet */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}