/* 🌅 Inner Banner Section */
.inner-banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: -80px;
}

/* 🏞️ 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;
  }
}

































/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    padding: 0;
    background-color: #f0f4f8;
   
}

/* Section Styling */
.single-post-section {
    padding: 60px 0;
     margin-top: 50px;
}

/* Card Styling */
.post-card {
    background: linear-gradient(135deg, #00b894, #0984e3);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Images Row */
.images-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.images-row .feature-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.images-row img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.images-row img:hover {
    transform: scale(1.05);
}

/* Text Styling */
.single-content-wrap p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .images-row {
        flex-direction: column;
    }
    .post-card {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .single-content-wrap p {
        font-size: 1rem;
    }
}






.single-post-section2{
    margin-top: -150px;
    margin-bottom: 30px;
}




















