/* 🌅 Inner Banner Section */
.inner-banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

/* 🏞️ Background Container */
.inner-baner-container {
  position: relative;
  width: 100%;
  height: 420px;
  background: #2c786c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 4px solid #c97b8b;
}

/* Remove any overlay or shadow */
.inner-baner-container::before {
  content: none;
}

/* 🎯 Centered Content */
.inner-banner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out;
}

/* ✨ Title Styling — LIGHT premium color */
.inner-title {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  color: #c97b8b !important; /* ✅ lighter shade of #a75265 */
  font-family: "Poppins", "Montserrat", sans-serif;
  position: relative;
  opacity: 0;
  animation: titleLoad 1.8s ease forwards;
  transition: all 0.4s ease;
  background: none !important;
  -webkit-text-fill-color: #f05171 !important;
  -webkit-background-clip: initial !important;
}

/* 🔠 Scale Animation (200px → 100px) */
@keyframes titleLoad {
  0% {
    opacity: 0;
    transform: scale(2);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 🌿 Underline in same color */
.inner-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin: 18px auto 0;
  background: #c97b8b;
  border-radius: 10px;
  opacity: 0.9;
  animation: lineGlow 3s infinite alternate;
}

/* ✨ Underline animation */
@keyframes lineGlow {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* 🎬 Fade-in effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .inner-baner-container {
    height: 340px;
  }

  .inner-title {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 600px) {
  .inner-baner-container {
    height: 260px;
  }

  .inner-title {
    font-size: 1.9rem;
    letter-spacing: 1px;
  }

  .inner-title::after {
    width: 70px;
    height: 3px;
  }
}
