/* 🌅 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;
  }
}






































































@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=Poppins:wght@400;500;600&display=swap');

.cbse-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f3f8ff, #ffffff);
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.cbse-wrapper {
  max-width: 1100px;
  margin: auto;
}

.cbse-content h2 {
  font-family: 'Lora', serif;
  color: #004aad;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
}

.cbse-content h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #00b3ff;
  margin: 12px auto 0;
  border-radius: 3px;
}

.cbse-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 25px;
  text-align: justify;
  animation: fadeIn 0.6s ease-in-out;
}

.cbse-content p strong {
  color: #004aad;
}

.cbse-note {
  background: #e9f4ff;
  border-left: 5px solid #00b3ff;
  padding: 15px 20px;
  border-radius: 8px;
  color: #004aad;
  font-weight: 500;
  margin-top: 40px;
}

.cbse-image {
  text-align: center;
  margin-top: 50px;
}

.cbse-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.cbse-image img:hover {
  transform: scale(1.03);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







































































