/* Experts Section Styles */
.experts-section {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 40px 22px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.10));
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.experts-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.experts-section p {
  color: #475569;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
  align-items: center;
}

.trust-points {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}

.our-experts {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 18px 0 30px;
}

.our-experts p {
  font-size: 25px;
  font-weight: 600;
  color: #1e3a8a;
}

/* Experts Carousel */
.experts-carousel-wrapper {
  position: relative;
  margin-top: 30px;
}

.experts-carousel {
  overflow: hidden;
  margin: 0 20px;
}

.experts-track {
  display: flex;
  gap: 38px;
  justify-content: center;
  transition: transform 0.4s ease;
}

/* Expert Cards */
.trust-expert-card {
  width: 450px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.trust-expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.25);
}

.trust-expert-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid rgba(37, 99, 235, 0.35);
}

.trust-expert-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.expert-role {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 12px;
}

.expert-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* Carousel Navigation */
.experts-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.experts-carousel-nav:hover:not(.disabled) {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  transform: translateY(-50%) scale(1.15);
}

.experts-carousel-nav.disabled {
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  cursor: not-allowed;
  opacity: 0.4;
}

.experts-carousel-prev {
  left: -55px;
}

.experts-carousel-next {
  right: -55px;
}

/* Carousel Dots */
.experts-carousel-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.experts-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.experts-carousel-dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.experts-carousel-dot.active {
  background: #2563eb;
  width: 32px;
  border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trust-points {
    flex-direction: column;
    gap: 12px;
  }

  .experts-carousel {
    overflow: hidden;
    padding: 0 20px;
    margin: 0 auto;
  }

  .experts-track {
    justify-content: normal;
  }

  .trust-expert-card {
    width: 100%;
    min-width: 100%;
    max-width: 340px;
  }

  .trust-expert-card img {
    width: 160px;
    height: 160px;
  }

  .experts-carousel-nav {
    display: flex;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .experts-carousel-prev {
    left: -20px;
  }

  .experts-carousel-next {
    right: -10px;
  }

  .experts-carousel-dots {
    display: flex;
  }
}