.ocs-carousel-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: 60px 30px;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px auto;
  background:
    linear-gradient(rgba(18, 12, 32, 0.78), rgba(8, 8, 18, 0.88)),
    url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.ocs-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(180,120,255,0.10), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(100,180,255,0.08), transparent 30%);
  pointer-events: none;
}

.ocs-carousel {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
}

.ocs-slide {
  display: none;
  align-items: center;
  gap: 50px;
  min-height: 580px;
  animation: fadeIn 0.7s ease;
}

.ocs-slide.active {
  display: flex;
}

.ocs-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ocs-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.12);
}

.ocs-content {
  flex: 1;
  color: #f5f2ff;
  padding: 20px;
}

.ocs-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
    /* orange -> white gradient text */
  background: linear-gradient(90deg, #ff8c1a 0%, #ffd9a3 45%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  text-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.ocs-content p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.8;
  max-width: 550px;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.ocs-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.ocs-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(253, 253, 253, 0.35);
  border: 2px solid rgba(255,255,255,0.75);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ocs-dot.active {
  background: #e65e03;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .ocs-carousel-section {
    padding: 30px 18px;
    min-height: auto;
  }

  .ocs-slide {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    min-height: auto;
  }

  .ocs-content p {
    max-width: 100%;
  }

  .ocs-image img {
    max-width: 320px;
  }
}