
* { box-sizing: border-box; margin: 0; padding: 0; }

.shantec-hero-banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 65vh;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
}

.carousel-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}

/* Text Overlay */
.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 560px;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 20px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-text h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.95;
}

/* CTA Buttons */
.btn-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  white-space: nowrap;
}

.primary-btn { background: #2A5C8A; }
.email-btn   { background: #28A745; }
.explore-btn { background: #FF8C00; }

.btn:hover { opacity: 0.85; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active-dot {
  background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-slide img { height: 60vh; }
  .hero-text {
    max-width: 90%;
    padding: 14px 14px;
  }
  .hero-text h1 { font-size: 22px; }
  .hero-text p { font-size: 14px; }
  .btn { padding: 8px 14px; font-size: 12px; }
}
