* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: fixed;
  top: 0;
  z-index: 100;
}
.navbar-logo img {
  height: 80px;     /* adjust if needed */
  width: 80px;
  display: block;
}


.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #1f9d7a;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #1f9d7a;
}

.quote-btn {
  padding: 10px 20px;
  background: #1f9d7a;
  border: none;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 600px;
  color: white;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.call-btn {
  padding: 12px 30px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}

.call-btn:hover {
  background: white;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hero {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}
.hero {
  height: 100vh;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 60px;
}
.features {
  background: #eef7f1;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature-box {
  max-width: 260px;
  margin: auto;
}

.feature-box .icon {
  width: 60px;
  height: 60px;
  background: #3f4a54;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.about-section {
  padding: 100px 40px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

/* Content */
.about-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1f9d7a;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0 20px;
  color: #0f172a;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* List */
.about-list {
  list-style: none;
  margin-bottom: 30px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #111;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1f9d7a;
  font-weight: bold;
}

/* Button */
.learn-btn {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #1f2937;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.learn-btn:hover {
  background: #1f2937;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-image img {
    height: 300px;
  }
}
.services-section {
  background: #eef7f1;
  padding: 100px 40px;
  text-align: center;
}

.services-title {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
  line-height: 1.2;
}

/* Grid */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Icon */
.service-icon {
  font-size: 26px;
  color: #1f9d7a;
}

/* Text */
.service-card h3 {
  font-size: 20px;
  color: #0f172a;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Image */
.service-card img {
  margin-top: auto;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }
}
.commitment-section {
  background: linear-gradient(135deg, #0b132b, #0f1b3d);
  padding: 100px 40px;
  font-family: 'Poppins', sans-serif;
}

.commitment-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.commitment-content h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.2;
}

.commitment-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.star {
  font-size: 32px;
  color: #1f9d7a;
  line-height: 1;
}

.commitment-item h4 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.commitment-item p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 30px 0;
}

/* RIGHT IMAGE */
.commitment-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .commitment-container {
    grid-template-columns: 1fr;
  }

  .commitment-content h2 {
    font-size: 36px;
  }

  .commitment-image img {
    height: 280px;
  }
}
.gallery-section {
  padding: 100px 40px;
  background: #ffffff;
  text-align: center;
}

.gallery-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: #0f172a;
  margin: 0 auto 60px;
}

/* Grid */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

/* Images */
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 32px;
  }

  .gallery-grid img {
    height: 180px;
  }
}
.counter-section {
  padding: 80px 40px;
  background: #ffffff;
}

.counter-box {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e5e7eb;
}

.counter-item {
  padding: 50px 20px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.counter-item:last-child {
  border-right: none;
}

.counter-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: #b91c1c; /* red like screenshot */
  margin-bottom: 10px;
}

.counter-item p {
  font-size: 16px;
  color: #111827;
  margin-bottom: 15px;
}

.counter-item .line {
  display: block;
  width: 40px;
  height: 3px;
  background: #e5e7eb;
  margin: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .counter-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-item {
    border-bottom: 1px solid #e5e7eb;
  }
}
.quote-section {
  padding: 60px 20px; /* minimal spacing */
  background: #ffffff;
  text-align: center;
}

.quote-text {
  max-width: 800px;
  margin: auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #111827;
}

.quote-mark {
  font-size: 48px;
  color: #9ca3af;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .quote-text {
    font-size: 18px;
  }
}
.testimonial-section {
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: #ffffff;
}

/* Left */
.small-title {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-left h2 {
  font-size: 42px;
  margin-top: 10px;
  color: #0f172a;
}

/* Right card */
.testimonial-right {
  position: relative;
}

.slider {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-height: 220px;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 25px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d1d5db;
}

.author span {
  font-weight: 600;
  color: #111827;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.dot.active {
  background: #2563eb;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-left h2 {
    font-size: 32px;
  }
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  overflow: hidden; /* 🔑 IMPORTANT */
}

/* Image perfectly fits circle */
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer {
  background: #000;
  color: #ffffff;
  padding: 80px 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
}

/* Logo */
.footer-logo {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Text */
.footer-text {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Social icons */
.social-icons a {
  margin-right: 15px;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}

/* Headings */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Right column text */
.footer-col p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Bottom line */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-logo-img {
  width: 140px;        /* adjust if needed */
  max-width: 100%;
  margin-bottom: 20px;
  display: block;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.navbar-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* matches logo background */
}

.navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* white icons for dark footer */
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
  opacity: 0.85;
}
.counter-section{
  padding:40px 15px;
}

.counter-box{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:20px;
}

.counter-item{
  text-align:center;
  padding:20px;
  box-sizing:border-box;
}

.counter-item h2{
  font-size: clamp(30px, 6vw, 52px); /* 🔥 MAIN FIX */
  color:#c62828;
  margin:0;
  line-height:1.1;
  word-break: break-word;
}

.counter-item p{
  font-size:14px;
  margin-top:8px;
}

.line{
  display:block;
  width:40px;
  height:3px;
  background:#ddd;
  margin:10px auto 0;
}
@media (max-width:480px){
  .counter-item h2{
    font-size:34px;
  }
}










* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: fixed;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #1f9d7a;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #1f9d7a;
}

.quote-btn {
  padding: 10px 20px;
  background: #1f9d7a;
  border: none;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url("hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 600px;
  color: white;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.call-btn {
  padding: 12px 30px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}

.call-btn:hover {
  background: white;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hero {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}
.hero {
  height: 100vh;
  background-image: url("f");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 60px;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero{
  position: relative;
  background-color: #EEF7F1;
  padding: 120px 20px 100px;
}
@media (max-width: 768px){
  .hero{
    background-size: contain;      /* 🔥 IMAGE FULL DIKHEGI */
    background-position: top center;
    padding: 60px 16px 40px;        /* section chhota */
  }

  .hero-content h1{
    font-size: 22px;               /* text chhota */
    line-height: 1.3;
  }

  .hero-content p{
    font-size: 14px;
  }
}

.overlay{
  background: rgba(0, 0, 0, 0.45); /* professional blue */
  padding-bottom: 10px; 
}
.hero{
  padding-bottom: 1px;   /* pehle zyada tha */
}
.call-btn{
  margin-bottom: 0;      /* ya 6px */
}
.hero-content{
  padding-bottom: 100px;  /* pehle zyada hoga */
}
@media (max-width: 768px){
  .hero{
    padding-bottom: 14px;   /* 🔥 half grey cut */
  }

  .hero-content{
    margin-bottom: 0;
  }
}


.call-btn{
  margin-bottom: 0;
}
.call-btn{
  margin-bottom: 0 !important;
}
.hero-content{
  padding-bottom: 8px;
  margin-bottom: 0;
}
@media (max-width: 768px){
  .hero{
    padding-bottom: 8px;   /* 🔥 this cuts EXACT extra part */
  }
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 78%;                 /* 🔥 CUT OVERLAY HERE */
  background: rgba(0,0,0,0.35);
}
.inline-flag{
  height: 1em;              /* 🔥 same height as text */
  width: auto;
  vertical-align: middle;  /* align with text */
  margin-left: 6px;        /* little gap from text */
}
.hero-slider {
  width: 100%;
  height: 500px;        /* 🔥 REQUIRED */
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 260px;
  }
}
  .hero-slider {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000; /* side space aaye to clean lage */
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 🔥 MAIN FIX */
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 260px;
  }
}
.hero-slider {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 1.2s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 260px;
  }
}
.hero-slider {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  background: #f3f3f3; /* fallback */
}

.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 BLURRED BACKGROUND IMAGE */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  filter: blur(25px);
  transform: scale(1.2);
  opacity: 0.6;
  z-index: 0;
}

/* MAIN IMAGE */
.slide img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 260px;
  }
}












.hero{
  position: relative;
  background-color: #EEF7F1;
  padding: 120px 20px 100px;
}

.hero-content h1{
  color: #000000;   /* black */
}
.hero-content button{
  color: #000000;
  background-color: #25D366;   /* black */
}
.hero-content p{
  color: #000000;   /* black */
}

.inline-flag{
  height: 1em;              /* 🔥 same height as text */
  width: auto;
  vertical-align: middle;  /* align with text */
  margin-left: 6px;        /* little gap from text */
}
.inline-flag{
  height: 1em;              /* 🔥 same height as text */
  width: auto;
  vertical-align: middle;  /* align with text */
  margin-left: 6px;        /* little gap from text */
}
.icon{
  width: 60px;
  height: 60px;
  background: #3f4a4f;   /* same dark circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rupee-icon{
  height: 24px;          /* 🔥 same size as $ symbol */
  width: auto;
}

.icon{
  width: 60px;
  height: 60px;
  background: #3f4a4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 🔥 important */
}

.rupee-icon{
  width: 60%;
  height: 60%;
  object-fit: contain;  /* 🔥 keeps proportions */
  display: block;
}
.icon{
  width: 60px;
  height: 60px;
  background: #3f4a4f;   /* dark circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rupee-icon{
  width: 90%;            /* 🔥 fills the circle */
  height: 90%;
  object-fit: contain;  /* keeps full coin visible */
  display: block;
}
.icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;       /* 🔥 crop image into circle */
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* ❌ remove dark background */
}

.rupee-icon{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 🔥 fills circle fully */
  display: block;
}

.hero{
  padding-bottom: 110px;   /* 🔥 white part cut */
}

.hero-content{
  margin-bottom: 0;
  padding-bottom: 0;
}

.call-btn{
  margin-bottom: 0;
}
@media (max-width: 768px){
  .hero{
    padding-bottom: 6px;   /* bas itna hi gap rahe */
  }
}
.call-btn{
  margin-bottom: 0 !important;
}
.hero{
  padding-bottom: 0;
}

.hero-content{
  padding-bottom: 0;
  margin-bottom: 0;
}

.hero-content > *:last-child{
  margin-bottom: 0;   /* 🔥 key line */
}
.call-btn{
  margin-bottom: 10%;
}


.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.name-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.name {
  font-weight: 600;
  color: #111827;
  font-size: 15px;
}

.verified {
  font-size: 14px;
  color: #22c55e;
}

.stars {
  font-size: 14px;
  color: #facc15;
  letter-spacing: 1px;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.name-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.name {
  font-weight: 600;
  color: #111827;
  font-size: 15px;
}

.verified {
  font-size: 14px;
  color: #22c55e;
}

.stars {
  font-size: 14px;
  color: #facc15;
  letter-spacing: 1px;
}
.testimonial-section {
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: #ffffff;
}

/* Left */
.small-title {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-left h2 {
  font-size: 42px;
  margin-top: 10px;
  color: #0f172a;
}

/* Right card */
.testimonial-right {
  position: relative;
}

.slider {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-height: 220px;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 25px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d1d5db;
}

.author span {
  font-weight: 600;
  color: #111827;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.dot.active {
  background: #2563eb;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-left h2 {
    font-size: 32px;
  }
}
.slide {
  display: none;
}

.slide.active {
  display: block;
}
.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.slide.active {
  display: block;
}
.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fade 0.6s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fade 0.6s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inline-flag{
  height: 2em;              /* 🔥 same height as text */
  width: auto;
  vertical-align: middle;  /* align with text */
  margin-left: 10px;        /* little gap from text */
}
.inline-flag {
  height: 1em;              /* 👈 EXACT text height */
  width: auto;
  display: inline-block;    /* 👈 important */
  vertical-align: middle;   /* 👈 text ke center me */
  margin-left: 8px;         /* 👈 thoda gap */
}
/* ===== Testimonials Section ===== */
.testimonial-section {
  padding: 80px 10%;
  background: #ffffff;
}

.testimonial-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT TEXT */
.testimonial-left {
  flex: 1;
}

.testimonial-left .small-title {
  color: #6b7280;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
  line-height: 1.2;
}

/* RIGHT SLIDER CARD */
.testimonial-right {
  flex: 1;
  position: relative;
}

.slider {
  position: relative;
}

/* SLIDE CARD */
.slide {
  display: none;
  background: #ffffff;
  padding: 35px 40px;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  max-width: 520px;
}

.slide.active {
  display: block;
}

/* TEXT */
.slide p {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
}

/* AUTHOR */
.author {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.avatar {
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 12px;
}

.author-info .name-line {
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-info .verified {
  color: #2563eb;
  font-size: 14px;
}

.stars {
  color: #fbbf24;
  font-size: 14px;
  margin-top: 2px;
}

/* DOTS */
.dots {
  margin-top: 18px;
  text-align: left;
}

.dot {
  height: 8px;
  width: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #64748b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-section {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-left h2 {
    font-size: 32px;
  }

  .slide {
    margin: auto;
  }

  .dots {
    text-align: center;
  }
}

.testimonial-right {
  max-width: 520px;
  position: relative;
}

.slider {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.slide {
  display: none;
  animation: fade 0.6s ease;
}

.slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.slider p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eaf6f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.name-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.name {
  font-weight: 600;
}

.verified {
  color: #1abc9c;
  font-size: 14px;
}

.stars {
  color: #f1c40f;
  font-size: 14px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.dot.active {
  width: 16px;
  border-radius: 6px;
  background: #1abc9c;
}
.review-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.review-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.review-slider {
  max-width: 700px;
  margin: auto;
  position: relative;
  height: 120px;
}

.review {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.review.active {
  opacity: 1;
  transform: translateY(0);
}

.review p {
  font-size: 18px;
  color: #333;
}

.review h4 {
  margin-top: 10px;
  color: #555;
}
.testimonial-section {
  display: flex;
  gap: 40px;
  padding: 80px 10%;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}

.testimonial-left {
  flex: 1;
}

.testimonial-right {
  flex: 1;
  position: relative;
}

.slider {
  position: relative;
  height: 220px;
}

.slide {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.author {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.avatar {
  font-size: 30px;
}

.dots {
  margin-top: 20px;
}

.dots span {
  height: 10px;
  width: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
  cursor: pointer;
}

.dots span.active {
  background: #2e7d32;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
  }
}
.review-section {
  background: #f4f7f6;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.review-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.review-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
  height: 140px;
}

.review {
  position: absolute;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.review.active {
  opacity: 1;
  transform: translateY(0);
}

.review p {
  font-size: 18px;
  color: #333;
}

.review h4 {
  margin-top: 10px;
  color: #555;
  font-weight: normal;
}























































