/* ================= INDIA HERO SECTION ================= */
:root {
  --Primary: rgba(15, 23, 42, 1);
  --Secondary:rgba(51, 65, 85, 1);
  --neutral-On-brnad: rgba(209, 213, 219, 1);
  /* --Buttons: rgba(37, 99, 235, 1); */
    --Buttons:rgba(46, 132, 121, 1);
  --Background: rgba(255, 255, 255, 1);
  --neutral-primary:rgba(17, 24, 39, 1);
}

.india-hero-section {
  margin-top: 50px;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
 
}

/* ================= SUPPORT STATS SECTION ================= */

.support-stats-section {
  padding: 90px 0;
  background: #ffffff;
}



/* Gradient Box */
.support-stats-box {
  max-width: 1280px;
  width: 100%;

  margin: 0 auto;
  padding: 32px 48px;

  border-radius: 40px;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.support-stats-box {
  animation: zoomOutOnce 0.8s ease-out forwards;
}

@keyframes zoomOutOnce {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* Gradient with opacity */

.support-stats-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    91.95deg,
    #2E8479 1.12%,
    #E6E7E9 100%
  );

  opacity: 0.3;
  border-radius: 40px;
  z-index: 0;
}

/* Content above background */
.support-stats-box > * {
  position: relative;
  z-index: 1;
}

/* Each Stat */
.stat-item {
  flex: 1;
  text-align: center;
}

/* Numbers */
.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Labels */
.stat-item p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
.india-hero-section{
  text-align: center;
margin-top: 20%;
}
  .support-stats-section {
    padding: 60px 0;
  }

  .support-stats-box {
    width: 80%;
    flex-direction: column;
    gap: 24px;

    padding: 24px 20px;
    border-radius: 20px;
  }
 .support-stats-box::before {
    background: linear-gradient(
      180deg,
      #2E8479 0%,
      #E6E7E9 100%
    );
  }
  .stat-item h3 {
    margin-top: 10px;
    font-size: 32px;
  }

}





/* ================= TIMELINE ================= */
.tax-steps-section {
  padding: 100px 0;
  background: #ffffff;
}

.steps-timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* LINE */
.timeline-line {
  position: absolute;
  top: 22px;
  left: 70px;
  right: 70px;
  height: 2px;
  background: #cbd5e1;
  z-index: 1;
}

/* START + END */
.timeline-start,
.timeline-end {
display: flex;
padding: 8px 12px;
 align-items: center;
border-radius: 100px;
border: 1px solid #2E8479;
background: #FFF; 
 gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #2E8479;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}

.start-icon,
.flag-icon {
  width: 23px;
  height: 23px;
  /* border-radius: 999px; */
  /* background: #f1f5f9; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STEPS */
.step {
  width: 220px;
  text-align: center;
 position: relative;
  z-index: 5;}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2E8479;
  border-color: #2E8479;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 14px;
  color: #ffffff;
}

.step.active .step-circle {
  background: #2E8479;
  color: #ffffff;
  border-color: #2E8479;
}

.step h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.step p {
  font-size: 16px;
  line-height: 1.5;
}

/* ================= MOBILE ================= */
/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .steps-timeline {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-left: 50px;
  }
  
  /* vertical line */
  .steps-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 17px;
    width: 2px;
    background: #cbd5e1;
    z-index: 1;
  }
  
  .timeline-line {
    display: none;
  }
  
  /* START & END */
  .timeline-start,
  .timeline-end {
    margin-left: -50px;
    align-self: flex-start;
    position: relative;
    z-index: 5;
  }
  
  /* each step */
  .step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    text-align: left;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    align-items: flex-start;
  }
  
  .step-circle {
    margin: 0;
    min-width: 36px;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-left: -50px;
  }
  
  .step-content {
    flex: 1;
    padding-top: 4px;
  }
  
  .step h4 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 4px;
  }
  
  .step p {
    margin-bottom: 0;
  }
}
/* ===============================
   EXPERIENCE SECTION
================================ */


.experience-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

/* ===============================
   CARD GRID
================================ */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.experience-grid2{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.experience-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 15px;
  color: #64748b;
}

.experience-card {
  background: rgba(255, 255, 255, 1);
  border: 2px solid #2E8479;
  border-radius: 24px;
  /* padding: 28px 26px 30px; */
  /* color: #ffffff; */
  position: relative;
  min-height: 350px;
  max-width: 392px;
  margin: auto;
}
.experience-grid2 .experience-card {
    border-radius: 8px;

}
/* ===============================
   ICON BOX
================================ */

.icon-box {
  position: relative;
  width: 91px;
height: 90px;


  display: flex;
  align-items: center;
  justify-content: center;

}

/* ✅ WHITE BORDER (RIGHT + BOTTOM ONLY) */
/* .icon-box::after {
  content: "";
  position: absolute;

  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;

  border-bottom-right-radius: 16px;

  pointer-events: none;
} */

/* SVG ICON */
.exp-icon-card{
background: #2E8479;
padding: 10px;
border-radius: 200px;
}
.icon-box svg {
    /* background: #ffffff; */
  
  width: 30px;
  height: 30px;
  /* fill: #0f172a; */
}
.exp-card-content{
  margin: 0 auto;
  padding: 8px 26px 30px;
  max-width: 328px;
}
.exp

.experience-card h4 {
  /* color: #FFF; */
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 32px; /* 133.333% */
letter-spacing: -1px;
}

.experience-card p {
  line-height: 26px;
  /* color: rgba(255, 255, 255, 0.75); */
font-size: 16px;
font-style: normal;
font-weight: 400;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .experience-grid,.experience-grid2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .experience-title {
    font-size: 28px;
  }
}


/* FAQS */
.faq-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* CATEGORY CARDS */
.faq-categories {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.faq-card {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 16px 20px;
    cursor: pointer;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
    transition: 0.2s;
    color: #0f172a;
    text-align: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 24px;
    height: 24px;
}

/* Default state - dark icons */
.faq-icon svg path,
.faq-icon svg g {
    stroke: #0f172a !important;
}

/* Active state - white icons and background */
.faq-card.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.faq-card.active .faq-icon {
    background: transparent;
}

.faq-card.active .faq-icon svg path,
.faq-card.active .faq-icon svg g {
    stroke: #ffffff !important;
}

/* Hover effect */
.faq-card:hover {
    border-color: #0f172a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* QUESTIONS */
.accordion-item {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-item:not(:first-of-type) {
    border: 1px solid #cbd5e1 !important;
}

.accordion-button {
    font-weight: 600;
    font-size: 14px;
}

.accordion-button:not(.collapsed) {
    background: #0f172a;
    color: #fff;
}

.accordion-button::after {
    filter: invert(1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .faq-card {
        min-width: calc(50% - 7px);
        flex: 1;
    }
}

@media (max-width: 480px) {
    .faq-card {
        min-width: 100%;
    }
}


.team-card {
  text-align: center;
  

}
.team-card .text-start{
  max-width: 280px;
  align-self: center;
  margin: auto;
  font-size: 14px;
  text-align: center !important;
}
.team-img {
  width: 170px;
  height: 170px;
  border-radius: 28px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.role {
  color: var(--Primary-700, #6941C6);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 125% */

}
.shaping-section{
  background: rgba(245, 249, 253, 1);
}
.exp-icon-card2{
padding: 10px;
border-radius: 32px;
background: #D1D5DB;
}

.shaping-section .experience-card{
  width: 495px;
  height: 372px;
}
.shaping-section .icon-box{
  width: 145px;
}



/* RIGHT FORM CARD */

.contact-section{
  margin: 0 10%;
}

.contact-section .experience-card {
    min-width: 300px;
    min-height: 240px;
}
.contact-form-card {
  border: 2px solid black;
  border-radius: 12px;
  padding: 14%;
  height: 100%;
}

.contact-form-card .form-control {
  border-radius: 6px;
}

.contact-form-card button {
  padding: 12px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 767px) {
  .contact-form-card {
    padding: 24px;
  }
}

.calendly-section {
  background: #ffffff;
}

.calendly-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

/* Mobile height adjustment */
@media (max-width: 767px) {
  .calendly-wrapper .calendly-inline-widget {
    height: 680px !important;
  }
}






.privacy-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

.privacy-date {
  font-size: 14px;
  color: #475569;
  margin-top: 6px;
}

.privacy-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(75, 85, 99, 1);
  margin-bottom: 16px;
}

.privacy-wrapper h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy-wrapper h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 20px;
  margin-bottom: 8px;
}

.privacy-list {
  padding-left: 18px;
  margin-bottom: 16px;
}

.privacy-list li {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 6px;
}

.privacy-wrapper hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 28px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 28px;
  }

  .privacy-wrapper {
    padding: 0 10px;
  }
}


.privacy-wrapper hr {
  border-top: 2px solid black!important;
}
.ca-led-card li{
  font-weight: 400;
  font-size: 14px;
}
.ca-led-card .experience-card {
    border-radius: 8px;
      min-height: 320px ;

}

.features-section {
  background: #f9fafb;
}

.feature-col {
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.feature-col:nth-child(3),
.feature-col:nth-child(5) {
  border-right: none;
}

.feature-box {
  padding: 60px 40px;
}

.feature-box .icon-box {
  width: 56px;
  height: 56px;
  background: #111827;
  color: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-box p {
  color: #6b7280;
  max-width: 420px;
  margin: 0 auto;
  font-size: 15px;
}
