/* style.css */

body {
      font-family: "Open Sans", sans-serif;
      background: linear-gradient(135deg, #b9ffde, #d8fff0, #f3fff9);
      margin: 0;
      padding: 0;
      color: #1d2f2f;
      overflow-x: hidden;
    }

    .containerbottomm {
      max-width: 950px;
      margin-top: 200px;
      margin: 60px auto;
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      padding: 20px 40px;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
      animation: fadeIn 1.2s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ========== Header ========== */
    .header {
      text-align: right;
      position: relative;
      margin-bottom: 35px;
      animation: slideIn 1.4s ease-in-out;
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(80px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .line2{
        margin-left: 400px;
    }

    .line1 {
      height: 3px;
       width: 350px;
      background: linear-gradient(90deg, #007868, #0a3c4a);
      margin-top: 4px;
      margin-left: 300px;
    }
    .line2 {
      height: 3px;
      width: 500px;
      background: linear-gradient(90deg, #007868, #0a3c4a);
      margin-top: 4px;
      margin-left: 220px;

      
    }

    .line3 {
      height: 3px;
      width: 350px;
      background: linear-gradient(90deg, #007868, #0a3c4a);
      margin-top: 4px;
      margin-left: 300px;
    }


    
    .header h2 {
      font-family: "Montserrat", sans-serif;
      color: #0a3c4a;
      font-weight: 700;
      font-size: 26px;
      background: #ffffff;
      display: inline-block;
      padding: 8px 24px;
      border-radius: 10px;
      margin-top: 20px;
      margin-right: 100px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      animation: fadeUp 1.5s ease-in-out;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .header h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: #0a3c4a;
      border-radius: 3px;
    }

    .header h2 span {
      font-weight: 400;
      font-family: "Blackadder ITC", cursive;
      color: #1c7a68;
    }

    /* ========== Content ========== */
    .content {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 30px;
    }

    .image-box img {
      width: 240px;
      height: 270px;
      object-fit: cover;
      border: 3px solid #0a3c4a;
      border-radius: 25px;
      padding: 10px;
      background: linear-gradient(145deg, #e7fff1, #caffdd);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
      animation: fadeUp 1.6s ease-in-out;
    }

    .image-box img:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .text-box {
      flex: 1;
      min-width: 260px;
      animation: fadeUp 1.7s ease-in-out;
    }

    .text-box h3 {
      font-family: "Montserrat", sans-serif;
      font-size: 38px;
      color: #0a3c4a;
      font-weight: 700;
      margin: 0 0 6px 100px;
    }

    .text-box .designation {
      color: #1a7b68;
      font-size: 15px;
      margin-left: 100px;
      font-weight: 600;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }

    .text-box .intro {
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      margin-left: 100px;
      max-width: 420px;
      text-align: justify;
      text-justify: inter-word;
    }

    /* ========== Final Message ========== */
    .message {
      margin-top: 30px;
      font-size: 15.5px;
      line-height: 1.8;
      color: #1d2f2f;
      text-align: justify;
      animation: fadeUp 1.9s ease-in-out;
    }

    .message b {
      color: #0a3c4a;
    }

    /* ===== Responsive ===== */
    @media (max-width: 992px) {
      .line2 { width: 400px; }
      .text-box h3 { font-size: 34px; margin-left: 60px; }
      .text-box .intro, .text-box .designation { margin-left: 60px; }
    }

    @media (max-width: 768px) {
      .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .header {
        text-align: center;
      }

      .line1, .line2, .line3 {
        margin-right: auto;
        margin-left: auto;
      }

      .header h2 {
        margin-right: 0;
        font-size: 24px;
        padding: 8px 20px;
      }

      .text-box h3 {
        font-size: 32px;
        margin-left: 0;
      }

      .text-box .designation,
      .text-box .intro {
        margin-left: 0;
        max-width: 90%;
      }

      .image-box img {
        width: 220px;
        height: 250px;
      }

      .line1, .line3 { width: 200px; }
      .line2 { width: 300px; }
    }

    @media (max-width: 480px) {
      .header h2 {
        font-size: 20px;
        padding: 6px 14px;
      }

      .text-box h3 {
        font-size: 28px;
      }

      .text-box .intro,
      .message {
        font-size: 14.5px;
        line-height: 1.6;
      }

      .image-box img {
        width: 180px;
        height: 200px;
      }

      .line1, .line3 { width: 160px; }
      .line2 { width: 220px; }
    }








































































/* 🌅 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;
  }
}
