
/* ===== Testinomial Section ===== */
.reports-section {
  padding: 60px 20px 40px 20px;
  text-align: center;
}

.reports-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #062433;
  margin-bottom: 60px;
  display: inline-block;
  text-align: center;
}

/* 3D Carousel */
.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1200px;
  overflow: visible;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.carousel-item {
  flex: 0 0 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: scale(0.85) rotateY(0deg) translateZ(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  backface-visibility: hidden;
}

.carousel-item.active {
  transform: scale(1) rotateY(0deg) translateZ(60px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  z-index: 5;
}

.carousel-item.prev {
  transform: scale(0.8) rotateY(25deg) translateZ(0);
  z-index: 1;
}

.carousel-item.next {
  transform: scale(0.8) rotateY(-25deg) translateZ(0);
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.carousel-btn {
  background: rgba(69, 124, 187, 0.85);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 4px 8px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s ease;
}
.carousel-btn:hover {
  background: #00c6ff;
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: -25px; }
.carousel-btn.next { right: -25px; }

/* Responsive adjustments */
@media (max-width: 1000px) {
  .carousel-item { flex: 0 0 260px; }
}
@media (max-width: 768px) {
  .carousel-item { flex: 0 0 220px; }
}
@media (max-width: 480px) {
  .carousel-item { flex: 0 0 180px; }
  .carousel-btn { font-size: 1.5rem; padding: 8px 12px; }
}



/* ==========================
   client Section
   ========================== */
.client-section {
  padding: 100px 50px;
  background: #d8f9ff;
  text-align: center;
}

.client-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.reports-carousel {
  overflow: hidden;
  position: relative;
}

.reports-track {
  display: flex;
  gap: 30px;
  animation: slideReports 20s linear infinite;

}

.report-item {
  flex: 0 0 200px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
}

.report-item img {
 /* width: 100%;  
  height: auto;*/
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  
  width: auto;
  height: 100px;
  max-width: 100%;
  object-fit: contain; 
 
}

/* Hover effect */
.report-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

/* Slide animation */
@keyframes slideReports {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .report-item { flex: 0 0 150px; }
  .reports-section { padding: 70px 20px; }
}

@media (max-width: 480px) {
  .report-item { flex: 0 0 120px; }
  .client-section {
  padding: 100px 0px;
  }
}


/* ==========================
   client Feedback Section
   ========================== */

  
.case-cards-section {
  padding: 80px 20px;
  background: #d8f9ff; /* pale background similar to your screenshot */
  text-align: center;
}

.case-cards-section .section-title-2 {
  display: inline-block;
  text-align: center;
  margin-bottom: 28px;
  font-size: 1.9rem;
  color: var(--ink);
}

/* Carousel wrapper */
.case-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* viewport (masks overflow) */
.case-viewport {
  width: 100%;
  max-width: 1050px;
  overflow: hidden;
}

/* track */
.case-track {
  display: flex;
  gap: 24px;
  transition: transform 600ms var(--ease);
  align-items: stretch;
  padding: 10px 0;
}

/* individual card */
.case-item {
  display: flex;
  background: #fffbe8; /* inner card bg */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(8, 24, 48, 0.06);
  min-width: 520px;         /* large desktop card width */
  max-width: 520px;
  align-items: stretch;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

/* left text area */
.case-body {
  padding: 30px 28px;
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Quote mark */
.case-quote {
  display: flex;
  font-size: 4rem;
  color: rgba(8,24,48,0.18);
  line-height: 0.9;
  margin-bottom: 6px;
}

/* text block */
.case-text p {
  font-size: .8rem;
  color: #394b56;
  margin: 6px 0 18px 0;
  line-height: 1.4;

    text-align: start;
}

/* divider */
.case-body::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(8,24,48,0.06);
  margin-top: 12px;
  margin-bottom: 12px;
}

/* footer area */
.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.learn-more {
  color: #1b5ed6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.7rem;
}
.case-info h4 {
  color: #0067b8;
  margin: 0;
  font-size: .9rem;
  text-align: start;
}
.case-info small {
  display: block;
  color: #4d768f;
  margin-top: 4px;
}

.Bold-Name {
  font-weight: 530;
}

/* photo area */
.case-photo {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.case-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(8,24,48,0.12);
}

/* buttons */
.case-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #222;
  cursor: pointer;
  padding: 8px 12px;
  transition: transform 150ms ease;
}
.case-btn:hover { transform: scale(1.08); }

/* pager */
.case-pager {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #222;
}
.case-counter { font-weight: 600; }

/* Hover effect for card */
.case-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(8,24,48,0.12);
}

/* responsive: show two cards on wide screens, one card on smaller */
@media (max-width: 1150px) {
  .case-item { min-width: 480px; max-width: 480px; }
  .case-photo { width: 180px; min-width: 180px; max-width: 180px; }
}
@media (max-width: 900px) {
  .case-item { min-width: 420px; max-width: 420px; }
  .case-photo { width: 160px; min-width: 160px; max-width: 160px; }
}
@media (max-width: 720px) {
  .case-carousel { gap: 10px; }
  .case-item {
    flex-direction: column-reverse;
    min-width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    align-items: stretch;
  }
  .case-photo {
    width: 100%;
    min-width: auto;
    padding: 20px;
    justify-content: center;
  }
  .case-photo img { width: 96px; height: 96px; }
  .case-body { padding: 18px; }
  .case-quote { font-size: 3rem; }
  .case-btn.prev { left: 10px; }
  .case-btn.next { right: 10px; }
}


