.ms-banner-carousel {
  position: relative; overflow: hidden; border-radius: 20px;
}

.ms-banner-track {
  display: flex; transition: transform 0.5s ease;
}

.ms-banner-slide {
  min-width: 100%; min-height: 400px; display: flex; align-items: center;
  background-size: cover; background-position: center; position: relative;
}

.ms-banner-overlay {
  padding: 60px; max-width: 600px;
  background: linear-gradient(90deg, rgba(10,10,35,0.85) 0%, rgba(10,10,35,0) 100%);
  color: white;
}

.ms-banner-subtitle {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.6); margin-bottom: 12px; display: block;
}

.ms-banner-title {
  font-size: 36px; font-weight: 700; margin-bottom: 12px;
}

.ms-banner-text {
  font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 24px;
}

.ms-banner-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 16px; position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.ms-banner-nav button {
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.2); color: white; cursor: pointer;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ms-banner-nav button:hover { background: rgba(255,255,255,0.4); }

.ms-banner-dots {
  display: flex; gap: 8px;
}

.ms-banner-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: background 0.2s;
}
.ms-banner-dot.active { background: white; }

.ms-testimonials-grid { display: grid; gap: 20px; }

@media (max-width: 768px) {
  .ms-banner-slide { min-height: 300px; }
  .ms-banner-overlay { padding: 32px; }
  .ms-banner-title { font-size: 24px; }
}
