
  html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
    .hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: #0e2a1f;
  letter-spacing: -1px;
}

/* First line */
.hero-title br:first-of-type {
  display: none;
}

/* Keep only one break */
.hero-title br:last-of-type {
  display: none;
}

.green {
  color: #FF9933;
  position: relative;
}

.underline-green::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 8px;
  background: #18a558;
  border-radius: 6px;
  opacity: 0.2;
}

.gold {
  display: none; /* Hide "Powerfully." to keep it 2 lines */
}


.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(24,165,88,0.1);
  color: #18a558;
  font-size: 13px;
  border-radius: 30px;
  font-weight: 600;
}

.section-h {
  font-size: 40px;
  margin: 15px 0 10px;
  color: #0e2a1f;
}

.section-h .g {
  color: #18a558;
}

.section-sub {
  color: #5f6f66;
  font-size: 16px;
}

/* ===== FAQ SECTION ===== */
.section-faq {
  padding: 80px 0;
}

.faq-wrapper {
  max-width: 850px;
  margin: 40px auto 0;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #e6f3ec;
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(24,165,88,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0e2a1f;
}

.faq-icon {
  font-size: 22px;
  color: #18a558;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #5f6f66;
  font-size: 15px;
  line-height: 1.6;
}

/* Active */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .section-h {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .section-faq {
    padding: 60px 0;
  }

  .section-h {
    font-size: 26px;
  }

  .section-sub {
    font-size: 14px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-h {
    font-size: 22px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-icon {
    font-size: 18px;
  }
}
.section-why{
  padding:clamp(60px,8vw,100px) 0;
  
  text-align:center;
}

.section-label{
  display:inline-block;
  padding:6px 14px;
  background:rgba(255,153,51,0.12);
  color:#FF9933;
  font-size:13px;
  border-radius:30px;
  font-weight:600;
}

.section-h{
  font-size:clamp(24px,4vw,40px);
  margin:15px 0 10px;
  color:#0e2a1f;
}

.section-h span{
  color:#FF9933;
}

.section-sub{
  color:#5f6f66;
  font-size:clamp(14px,2vw,16px);
  max-width:700px;
  margin:0 auto 50px;
  line-height:1.6;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:30px;
}

/* CARD */
.why-card{
  background:#ffffff;
  border-radius:20px;
  padding:30px;
  border:1px solid #ffe6cc;
  transition:all 0.35s ease;
  position:relative;
  text-align:left;
}

.why-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:#FF9933;
}

.why-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(255,153,51,0.25);
}

.why-icon{
  width:55px;
  height:55px;
  background:rgba(255,153,51,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-size:22px;
  margin-bottom:18px;
}

.why-card h5{
  font-size:18px;
  margin-bottom:10px;
  color:#0e2a1f;
}

.why-card p{
  font-size:14px;
  color:#5f6f66;
  line-height:1.6;
}

.clients-section{
  padding:70px 8%;
  background:#fff8f2;
  text-align:center;
}

.tag{
  display:inline-block;
  background:#ffe6cc;
  color:#FF9933;
  padding:6px 18px;
  border-radius:50px;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:15px;
}




/* ===== Grid ===== */
.clients-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:25px;
  max-width:1000px;
  margin:auto;
}

/* ===== Card ===== */
.client-card{
  background:#ffffff;
  padding:25px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.client-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* ===== Image ===== */
.client-card img{
  width:100%;
  max-width:170px;
  height:100px;
  object-fit:contain;
}

/* ===== Mobile Optimization ===== */
@media(max-width:576px){

  .clients-section{
    padding:50px 6%;
  }

  .clients-section h2{
    font-size:24px;
  }

  .clients-section p{
    font-size:14px;
  }

  /* 2 column layout on mobile */
  .clients-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:15px;
  }

  .client-card{
    padding:20px;
  }

  /* 🔥 Increased image size on mobile */
  .client-card img{
    width:100%;
    max-width:200px;
    height:110px;
  }
}

.hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg,#f9fafc,#eef3ff);
  overflow: hidden;
}

/* Modern Title */
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.green { color: #00c896; }
.gold { color: #ffb703; }

/* Description */
.hero-desc {
  font-size: 18px;
  color: #666;
  margin: 20px 0;
}

/* Buttons */
.btn-hero-primary {
  background:#FF9933;
  padding: 14px 28px;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(221,36,118,0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(221,36,118,0.4);
}

.btn-hero-ghost {
  margin-left: 15px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.hero-stats {
  margin-top: 40px;          /* pehle 60px */
  padding: 30px 20px;        /* pehle 45px 30px */
  border-radius: 18px;       /* pehle 25px */
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  box-shadow: 
    0 6px 25px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  overflow: hidden;
}


/* Divider Lines */
.hero-stat {
  position: relative;
}


.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #d1d5db, transparent);
}


/* Numbers chhote */
.hero-stat-num {
  font-size: 28px;      /* pehle 38px */
  font-weight: 700;
  background: linear-gradient(45deg,#16a34a,#22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

/* Labels chhote */
.hero-stat-label {
  font-size: 13px;      /* pehle 15px */
  color: #6b7280;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* Hover Effect */
.hero-stat:hover .hero-stat-num {
  transform: scale(1.1);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .hero-stat:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat::after {
    display: none;
  }
}
/* Glass Card Slider */
.modern-slider {
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.slider-img {
  height: 80vh;
  object-fit: cover;
  transition: transform 4s ease;
}

.carousel-item.active .slider-img {
  transform: scale(1.08);
}

/* Floating Blobs */
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,#ff512f33,#dd247633);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s infinite alternate ease-in-out;
}

.blob-1 { top: -50px; left: -50px; }
.blob-2 { bottom: -50px; right: -50px; }
.blob-3 { top: 50%; left: 60%; }

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(30px); }
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color:#FF9933;
  border: 2px solid rgba(19,136,8,.18); border-radius: 50px;
  padding: 6px 18px; font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
/* ===== Grid ===== */
.clients-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:25px;
  max-width:1000px;
  margin:auto;
}

/* ===== Card ===== */
.client-card{
  background:#ffffff;
  padding:25px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  transition:0.3s ease;
}

.client-card:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* ===== Image ===== */
.client-card img{
  width:100%;
  max-width:170px;
  height:100px;
  object-fit:contain;
}

/* ===== Mobile Optimization ===== */
@media(max-width:576px){

  .clients-section{
    padding:50px 6%;
  }

  .clients-section h2{
    font-size:24px;
  }

  .clients-section p{
    font-size:14px;
  }

  /* 2 column layout on mobile */
  .clients-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:15px;
  }

  .client-card{
    padding:20px;
  }

  /* 🔥 Increased image size on mobile */
  .client-card img{
    width:100%;
    max-width:200px;
    height:110px;
  }
}

        .about-section{
  padding:100px 0;
  background:linear-gradient(180deg,#f9fbff 0%,#ffffff 100%);
}

.about-image-wrapper{
  position:relative;
}

.about-image-wrapper img{
  border-radius:20px;
}

.about-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#FF9933;
  color:#fff;
  padding:8px 16px;
  font-weight:600;
  border-radius:30px;
  font-size:14px;
}

.about-text{
  color:#6b7280;
  font-size:15px;
  line-height:1.8;
  margin-top:15px;
}

.about-card{
  background:#fff;
  padding:10px;
  border-radius:16px;
  border:1px solid #eef2f7;
  transition:0.3s ease;
  text-align:center;
}

.about-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.about-card .icon{
  font-size:24px;
  margin-bottom:10px;
}

.about-card h6{
  font-weight:700;
  margin-bottom:6px;
}

.about-card p{
  font-size:13px;
  color:#6b7280;
  margin:0;
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color:#FF9933;
  border: 2px solid rgba(19,136,8,.18); border-radius: 50px;
  padding: 6px 18px; font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 18px;
  color: #666;
  margin: 20px 0;
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color:#FF9933;
  border: 2px solid rgba(19,136,8,.18); border-radius: 50px;
  padding: 6px 18px; font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 18px;
  color: #666;
  margin: 20px 0;
}

.privacy-modern {
  padding: 100px 0;
  background: white;
}

.privacy-header {
  max-width: 750px;
  margin: auto;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-block;
  background: rgba(255,153,51,0.15);
  color: #FF9933;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.privacy-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.privacy-header h2 span {
  color: #FF9933;
}

.privacy-header p {
  color: #666;
  font-size: 16px;
}

/* Timeline Layout */

.privacy-timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.privacy-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 25px;
  border: 1px solid #ffe6cc;
  transition: 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(255,153,51,0.15);
}

.privacy-icon {
  min-width: 55px;
  height: 55px;
  background: rgba(255,153,51,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.privacy-content h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.privacy-content p,
.privacy-content li {
  color: #5f6f66;
  font-size: 15px;
  line-height: 1.6;
}

.privacy-content ul {
  padding-left: 18px;
  margin: 0;
}

/* Footer */

.privacy-footer {
  margin-top: 50px;
}

.privacy-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #FF9933;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.privacy-btn:hover {
  background: #e6831f;
  color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
  .privacy-card {
    flex-direction: column;
  }

  .privacy-header h2 {
    font-size: 28px;
  }
}
.hero-desc {
  font-size: 18px;
  color: #666;
  margin: 20px 0;
}



@media (max-width: 768px) {
  .page-hero-title {
    font-size: 28px;
    line-height: 1.3;
    padding: 0 15px;
  }
}
.responsive-img{
  width:100%;
  height:auto;
  border-radius:12px;
}