/* ==================================================
    Proof  SECTION
   ================================================== */

.proof-strip {
  border-top: 1px solid #eaeaea;
  
  padding: 32px 0;
}

.proof-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proof-icon {
   width: 22px;
  height: 22px;
  
  color: #555;
  margin-top: 2px; 
  flex-shrink: 0;
}
.proof-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.proof-item p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* Desktop vertical dividers */
@media (min-width: 1025px) {
  .proof-item {
    position: relative;
    padding-right: 24px;
  }

  .proof-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 4px;
    width: 1px;
    height: calc(100% - 8px);
    background-color: #eaeaea;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .proof-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .proof-container {
    grid-template-columns: 1fr;
  }

  .proof-item {
    align-items: flex-start;
  }

   .proof-icon {
    width: 20px;
    height: 20px;
  }
}

/* ==============================
   Clients Section
   ============================== */



.clients-section {
  padding: 90px 0;
  background: #ffffff;
}

.clients-inner {
  max-width: 1320px;
  padding: 0 24px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.clients-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px;
}

.clients-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.clients-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.clients-metrics div {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 18px;
}

.clients-metrics strong {
  display: block;
  font-size: 22px;
  color: #207de9;
}

.clients-metrics span {
  font-size: 13px;
  color: #666;
}

.clients-cta {
  display: inline-block;
  padding: 14px 28px;
  background: #c7f000;
  color: #000;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

/* Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  max-height: 420px;
  overflow-y: auto;

  padding-top: 8px;     /* hover buffer */
  padding-right: 6px;

}

/* Scrollbar styling – clients logos */
.clients-grid::-webkit-scrollbar {
  width: 6px;
}

.clients-grid::-webkit-scrollbar-thumb {
  background: #dbe3f0;
  border-radius: 6px;
}

.clients-grid::-webkit-scrollbar-track {
  background: transparent;
}

.client-card {
  position: relative;
  background: #fff;
  height: 140px;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5ebf3;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center bottom;
}

.client-card img {
  max-width: 180px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Optical height fix for tall / emblem logos */
.logo-tall img {
  max-height: 100px;
}

.logo-wide img {
  max-width: 200px;
}


.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.client-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,30,60,0.92);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: center;
  padding: 20px;
}

.client-card:hover .client-overlay {
  opacity: 1;
}

.client-overlay h4 {
  margin-bottom: 6px;
}

.client-overlay p {
  font-size: 14px;
  margin-bottom: 4px;
}

.client-overlay span {
  font-size: 12px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .clients-inner {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .client-card:hover .client-overlay {
    opacity: 0;
  }
}
/* ==============================
   CLIENT TESTIMONIALS – FINAL
   ============================== */

/* Section head */
.section-head-center h2 {
    margin: 0 auto;
    max-width: 90%;
    color: rgba(0, 0, 0, 0.87);
}

.section-head-center h2 span {
    color: rgb(29, 37, 148);
    font-size: 1.5rem;
}
/* Section background */
.section-body {
  background: #f6f9ff;
  padding: 30px 0;
  margin-top: 30px;
  border-radius: 28px;
  overflow: visible;

}

/* Wrapper */
.reviews-wrapper {
  position: relative;
  margin-top: 20px;
  overflow: visible;
}

/* ==============================
   SWIPER CORE
   ============================== */

.reviews-carousel.swiper {
  position: relative;
  padding: 24px 0 96px;
  overflow: hidden;
  margin: 0 auto;  
}

.reviews-carousel-wrapper,
.swiper {
  overflow: hidden;
}

.reviews-carousel-wrapper {
  position: relative;
  overflow: visible;
  
}

.reviews-carousel .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
}

.reviews-carousel .swiper-slide {
   height: auto !important;
  display: flex;
  height: auto;
  align-items: stretch;
  justify-content: center;   /* 🔴 REQUIRED */
  flex-shrink: 0;
}

/* ==============================
   SWIPER NAVIGATION (CLEAN FINAL)
   ============================== */

.reviews-carousel-wrapper {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
}

/* arrows (circle) */
.reviews-carousel-wrapper .swiper-button-prev,
.reviews-carousel-wrapper .swiper-button-next {
  position: absolute;

  top: 50% !important;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;

  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--brand-primary-soft);

  box-shadow: 0 4px 14px rgba(0,0,0,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--brand-primary);

  margin: 0;
  z-index: 50;
}

/* arrow icon (SVG) */
.reviews-carousel-wrapper .swiper-button-prev svg,
.reviews-carousel-wrapper .swiper-button-next svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* 🔴 Hide arrows on touch devices (mobile + tablets) */
@media (pointer: coarse) {
  .reviews-carousel-wrapper .swiper-button-prev,
  .reviews-carousel-wrapper .swiper-button-next {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .reviews-carousel-wrapper {
    overflow: visible;
  }
}

/* outside positioning */
.reviews-carousel-wrapper .swiper-button-prev {
  left: -52px !important;
}

.reviews-carousel-wrapper .swiper-button-next {
  right: -52px !important;
}

/* hover */
.reviews-carousel-wrapper .swiper-button-prev:hover,
.reviews-carousel-wrapper .swiper-button-next:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  background-color: var(--brand-primary-soft);
}

/* disabled */
.reviews-carousel-wrapper .swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* swiper reset (only needed override) */
.swiper-button-prev,
.swiper-button-next {
  top: 50% !important;
}




/* ==============================
   REVIEW CARD
   ============================== */

.review-item {
  position: relative;
    flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
 
  width: 100%;
  max-width: 360px; /* ⬅ correct width for 3-up layout */

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Industry capsule – SINGLE SOURCE */
.review-item::before {
  content: attr(data-industry);
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Header row */
.cust-img-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px; /* space below capsule */
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #0b1720;
  word-break: break-word;
}

.review-role span {
  font-size: 13px;
  color: #6b7280;
}

.review-rating {
  background: #eef4ff;
  color: #1a4cff;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ==============================
   REVIEW TEXT
   ============================== */

.review-item p {
font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin-top: 12px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.review-item.expanded p {
  -webkit-line-clamp: unset;
  display: block;
  overflow: hidden;
}

/* Read more */
.review-item .read-more {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #207DE9;
  cursor: pointer;
  align-self: flex-start;
  user-select: none;
}

.review-item .read-more:hover {
  text-decoration: underline;
}

/* =====================================
   FORCE DISABLED STATE – FINAL FIX
   ===================================== */

.reviews-carousel-wrapper
.swiper-button-disabled {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  background-color: #f1f5f9 !important;
  border-color: #e5e7eb !important;
}

.reviews-carousel-wrapper
.swiper-button-disabled::after {
  opacity: 0.6 !important;
}


/* ==============================
   TESTIMONIALS – PROGRESS INDICATOR
   ============================== */

.reviews-progress {
  max-width: 260px;
  margin: 24px auto 0;
  text-align: center;
}

.reviews-progress-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.reviews-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #1a4cff;
  border-radius: inherit;
  transition: width 0.3s ease;
}

.reviews-progress-text {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
}

/* FIX: Hide arrows on mobile and tighter space */
@media (max-width: 767px) {

  .reviews-progress {
    margin-top: 20px;
  }

.review-item {
  padding: 20px;
  width: 100%;          /* 🔴 FULL WIDTH */
}
  .reviews-carousel {
   padding: 24px 16px 96px; /* 🔴 left-right padding added */
  }
  .reviews-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  /* 🔴 FIX: Hide arrows on mobile */
  .reviews-carousel-wrapper .swiper-button-prev,
  .reviews-carousel-wrapper .swiper-button-next {
    display: none !important;
  }

}

/* ======================================
   TESTIMONIALS – TABLET & iPAD PRO
   Stack rating below user info
   ====================================== */

@media (min-width: 768px) and (max-width: 1366px) and (pointer: coarse) {

  /* Stack image + name + rating vertically */
  .cust-img-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Keep avatar + name aligned nicely */
  .review-user {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Rating below user info (same as mobile) */
  .review-rating {
    margin: 0;
    align-self: flex-start;
    white-space: nowrap;
  }
}

/* ==============================
   MOBILE
   ============================== */

@media (max-width: 767px) {
  .review-item {
    max-width: 100%;
    padding: 20px;
  }

  .review-item p {
    font-size: 14px;
  }
}

/* =================================================
   TESTIMONIALS – MOBILE FIXES
   ================================================= */

@media (max-width: 640px) {

  /* Card spacing cleanup */
  .review-item {
    padding: 20px;
  }

  /* Stack header instead of side-by-side */
  .cust-img-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 35px; /* space below industry pill */
  }

  /* User block */
  .review-user {
    width: 100%;
  }

  .review-name {
    font-size: 15px;
    line-height: 1.3;
  }

  .review-role span {
    font-size: 12px;
  }

  /* Move rating below name */
  .review-rating {
    align-self: flex-start;
    font-size: 12px;
    padding: 4px 8px;
    margin-top: 4px;
  }

  /* Text spacing */
  .review-item p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  /* Read more spacing */
  .review-item .read-more {
    margin-top: 10px;
  }
}

/* 🔴 Hide arrows on touch devices (mobile + tablets) */
@media (pointer: coarse) {
  .reviews-carousel-wrapper .swiper-button-prev,
  .reviews-carousel-wrapper .swiper-button-next {
    display: none !important;
  }
}

/* ===============================
FAQs Section
   =============================== */

   .faq-wrapper {
  background: #fafafa;
  padding: 80px 0;
}

   .faq-section {
  max-width: 1000px;
  background: #f6f9ff;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #006e60;
}

.faq-icon {
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

