/* 🌅 Inner Banner Section */
.inner-banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

/* 🏞️ Background Image Container */
.inner-baner-container {
  position: relative;
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 4px solid #00a651;
}

/* Remove overlay for crystal-clear image */
.inner-baner-container::before {
  content: none;
}

/* 🎯 Banner Text Container */
.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;
}

/* ✨ Main Title Styling */
.inner-title {
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(90deg, #ffffff, #d1fff0, #a8ffe0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  font-family: "Poppins", "Montserrat", sans-serif;
  position: relative;
  transition: all 0.4s ease;
}

/* Subtle glowing animation on hover */
.inner-title:hover {
  transform: scale(1.03);
  text-shadow: 0 0 25px rgba(0, 255, 170, 0.6);
}

/* 🌈 Stylish underline effect */
.inner-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #00a651, #00e6cc, #0099cc);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 166, 81, 0.5);
  animation: lineGlow 2.5s infinite alternate;
}

/* ✨ Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGlow {
  from {
    box-shadow: 0 0 8px rgba(0, 166, 81, 0.4);
  }
  to {
    box-shadow: 0 0 18px rgba(0, 230, 204, 0.8);
  }
}

/* 📱 Responsive Adjustments */
@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;
  }
}












































/* ✅ Base Section */
.testimonial-section {
  background: linear-gradient(135deg, #f7faff, #f0fffa);
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* ✨ Header */
.section-header .divider {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #00a651, #0099cc);
  border-radius: 5px;
  margin: 0 auto 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #024b40;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 💎 Testimonial Card */
/* 🌟 Equal Height for All Cards */
.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 153, 204, 0.1);
  border: 1px solid rgba(0, 153, 204, 0.1);
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 1;

  /* 👇 NEW CODE */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* ✨ Make columns equal height */
.row.g-4 > [class*="col-"] {
  display: flex;
}

.row.g-4 > [class*="col-"] .testimonial-card {
  flex: 1;
}


.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 153, 204, 0.2);
}

/* 🎨 Animated Gradient Border */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, #00a651, #0099cc, #00a651);
  background-size: 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease, background-position 2s linear;
}

.testimonial-card:hover::before {
  opacity: 1;
  background-position: right center;
}

/* 🗨️ Quote Icon */
.testimonial-quote {
  font-size: 2.5rem;
  color: #00a651;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 25px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #024b40;
  line-height: 1.8;
  margin-top: 20px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* 👤 Author Info */
.testimonial-footer {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #00a651;
  object-fit: cover;
  transition: all 0.4s ease;
}

.testimonial-card:hover .author-img {
  transform: scale(1.1);
  border-color: #0099cc;
}

.author-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #024b40;
}

.author-info span {
  font-size: 0.9rem;
  color: #0099cc;
}

/* 🌀 Smooth Fade Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  animation: fadeUp 1s ease forwards;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}
