/* ===== Hero Slideshow — 30/70 Split ===== */
.hero-slideshow {
  display: flex;
  min-height: 100vh;
  padding-top: 112px;
}

/* Left content panel — 30% */
.hero-slideshow__panel {
  width: 30%;
  min-width: 0;
  background: linear-gradient(160deg, #1a3a5c 0%, #0d2240 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
  z-index: 1;
}

/* Text items (one per slide) */
.hero-slideshow__text-item {
  display: none;
}

.hero-slideshow__text-item.active {
  display: block;
  animation: fadeSlideUp 0.6s ease-out;
}

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

.hero-slideshow__slide-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4db8ff;
  margin-bottom: 14px;
}

.hero-slideshow__slide-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 16px;
}

.hero-slideshow__slide-desc {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
}

/* Dot indicators inside panel */
.hero-slideshow__indicators {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.hero-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slideshow__dot.active {
  background: #4db8ff;
  border-color: #4db8ff;
  transform: scale(1.2);
}

.hero-slideshow__dot:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.3);
}

/* Right image area — 70% */
.hero-slideshow__images {
  width: 70%;
  position: relative;
  overflow: hidden;
}

.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow__slide.active {
  opacity: 1;
}

.hero-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Nav arrows */
.hero-slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-slideshow__arrow:hover {
  background: rgba(255,255,255,0.3);
  border-color: #fff;
}

.hero-slideshow__arrow--prev { left: 16px; }
.hero-slideshow__arrow--next { right: 16px; }

/* Progress bar */
.hero-slideshow__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #4db8ff;
  z-index: 3;
  transition: width linear;
}

/* ===== Service Sectors Grid ===== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sector-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  border: 1px solid #e8edf3;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sector-card:hover {
  box-shadow: 0 8px 32px rgba(13,34,64,0.12);
  transform: translateY(-4px);
}

.sector-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.sector-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 8px;
}

.sector-card__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ===== Why Choose Us Grid ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8edf3;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 8px 32px rgba(13,34,64,0.12);
  transform: translateY(-4px);
}

.why-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.why-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1.4;
  margin: 0;
}

/* ===== Services Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-grid__item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.06);
}

/* ===== About — tighter CTA connection ===== */
.about-content .btn {
  margin-top: 8px;
  display: inline-block;
}

.about-content .about-text:last-of-type {
  margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-slideshow {
    flex-direction: column-reverse;
    min-height: 0;
    padding-top: 60px;
  }

  .hero-slideshow__panel {
    width: 100%;
    padding: 28px 20px 32px;
  }

  .hero-slideshow__images {
    width: 100%;
    min-height: 260px;
  }

  .hero-slideshow__slide-title { font-size: 22px; }
  .hero-slideshow__slide-desc { font-size: 13px; }
  .hero-slideshow__arrow { width: 36px; height: 36px; }
  .hero-slideshow__arrow--prev { left: 10px; }
  .hero-slideshow__arrow--next { right: 10px; }

  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-slideshow { padding-top: 60px; }
  .hero-slideshow__images { min-height: 220px; }
  .hero-slideshow__slide-title { font-size: 20px; }
  .hero-slideshow__indicators { margin-top: 20px; }

  .sectors-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
}
