/* hero section start  */
.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url("/assets/images/home-slidder-3.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

/* Dark overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  opacity: 0.3;

}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 16px;
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  color: #ffffff;
}

.about-hero-title {
  font-size: clamp(4.2rem, 3vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

.about-hero-breadcrumb {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
}

.about-hero-link,
.about-hero-breadcrumb-text {
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.about-hero-link-home {
  color: #ffc933; /* Yellow Home */
  font-weight: 500;
}

.about-hero-link:hover {
  opacity: 0.8;
}

.about-hero-breadcrumb-separator {
  margin: 0 4px;
  color: #ffffff;
  opacity: 0.8;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 220px;
  }

  .about-hero-content {
    padding: 30px 16px;
  }
}

@media (min-width: 1200px) {
  .about-hero-section {
    min-height: 300px;
  }
}

/* about hero section end  */
/* our client section strat  */
.our-client-section {
  position: relative;
  background-image: url("your-image.jpg"); /* yaha tumhari BG image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* BLACK OVERLAY ONLY ON BG IMAGE */
.our-client-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* <-- Adjust darkness (0.3–0.7) */
  z-index: 2;
}

/* CONTENT ABOVE OVERLAY */
.our-client-container,
.our-client-left,
.our-client-carousel-wrap {
  position: relative;
  z-index: 3;
}

.our-client-section {
  padding: 48px 24px;
  background-image: url(https://kfkit.rometheme.pro/boile/wp-content/uploads/sites/47/2023/02/young-asian-engineer-using-digital-tablet-to-worki.jpg);
  background-position: center center;
  background-size: cover;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.our-client-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.our-client-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-client-border {
  width: 80px;
  height: 4px;
  background: #f7c500;
}

.our-client-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #fffefe;
}

.our-client-carousel-wrap {
  width: 100%;
  overflow: hidden;
}

.our-client-carousel {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
}

.our-client-item {
  flex: 0 0 auto;
  width: auto;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-client-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Mobile 1 */
@media (max-width: 639px) {
  .our-client-container {
    grid-template-columns: 1fr;
  }

  .our-client-title {
    font-size: 24px;
  }

}

/* our client section end  */

/* testimonial section strat  */
.our-testimonial-section {
  padding: 70px 6%;
  background: #ffffff;
  box-sizing: border-box;
}

.our-testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TOP HEADER (TEXT + LINE + BUTTON) ===== */

.our-testimonial-header {
  display: flex;
  align-items: center; /* heading ke align me line + button */
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.our-testimonial-header-left {
  max-width: 520px;
}

.our-testimonial-eyebrow {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 8px;
}

.our-testimonial-eyebrow-line {
  width: 120px;
  height: 2px;
  background: #ffc800;
  margin-top: 6px;
}

.our-testimonial-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 18px 0 0;
}

.our-testimonial-title span {
  display: block;
}

.our-testimonial-header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 220px;
}

.our-testimonial-header-border {
  flex: 1;
  height: 2px;
  background: #ffc800;
  max-width: 420px;
}

.our-testimonial-view-btn {
  border: none;
  background: #ffc800;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  white-space: nowrap;
}

.our-testimonial-view-btn:hover {
  filter: brightness(0.92);
}

/* ===== CARDS AREA ===== */

.our-testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.our-testimonial-card {
  background: #f9f9f9;
  padding: 32px 30px 26px;
  box-sizing: border-box;
  border-top: 2px solid #ffc800; /* top border */
  border-left: 2px solid #ffc800; /* left border */
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.our-testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555555;
  margin: 0 0 24px;
}

.our-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.our-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #ffc800;
}

.our-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-testimonial-person {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.our-testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  color: #222222;
}

.our-testimonial-role {
  font-size: 0.85rem;
  color: #ffc800;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .our-testimonial-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-testimonial-header {
    align-items: flex-start;
  }

  .our-testimonial-header-right {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .our-testimonial-section {
    padding: 50px 5%;
  }

  .our-testimonial-cards {
    grid-template-columns: 1fr;
  }

  .our-testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .our-testimonial-header-right {
    width: 100%;
  }

  .our-testimonial-header-border {
    max-width: 100%;
  }
}

/* testimonial section end  */
.about-hero-content{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 0px;
  text-align: left;
}
.about-hero-content .about-hero-title {
    font-size: 32px;
    margin: 0 0 0px;
    letter-spacing: 0.03em;
}
.about-hero-breadcrumb {
    margin: 0;
    font-size: 13px;
}