/* 🌅 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=Poppins:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');

.circular-page-section {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  padding: 80px 0;
  overflow: hidden;
  margin-top: -50px;
}

.circular-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 50px 40px;
  margin-bottom: 40px;
  position: relative;
  transition: all 0.5s ease;
}

.circular-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.title-divider {
  width: 100px;
  height: 5px;
  margin: 0 auto 25px auto;
  border-radius: 5px;
  background: linear-gradient(90deg, #007bff, #00e1ff);
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
  animation: glow 2s infinite alternate;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #003e9c;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  animation: fadeInDown 1s ease;
}

.section-content {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  animation: fadeIn 1.5s ease;
}

.section-content p {
  margin-bottom: 18px;
}

.greeting {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0056b3;
}

.thanks {
  font-style: italic;
  color: #007bff;
  font-weight: 500;
  text-align: right;
}

@keyframes glow {
  from {
    box-shadow: 0 0 8px #007bff, 0 0 15px #00e1ff;
  }
  to {
    box-shadow: 0 0 20px #00b3ff, 0 0 30px #00e1ff;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





























































@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Playfair+Display:wght@600;700&display=swap');

.mission-section {
  position: relative;
  background: linear-gradient(135deg, #f8fcff, #ffffff);
  padding: 40px 0;
  overflow: hidden;
  margin-top: -90px;
  margin-bottom: 50px;
}

.pattern-overlay {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 183, 255, 0.08), transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.1), transparent 70%);
  animation: floatBg 8s infinite alternate ease-in-out;
  z-index: 0;
}

.mission-heading {
  position: relative;
  z-index: 2;
}

.mission-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease;
}

.mission-content:hover {
  transform: translateY(-5px);
}

.title-divider {
  width: 100px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, #007bff, #00e1ff);
  box-shadow: 0 0 15px rgba(0, 183, 255, 0.4);
  margin-bottom: 20px;
  animation: glowPulse 2.5s infinite alternate;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #003e9c;
  font-size: 2.3rem;
  letter-spacing: 0.5px;
}

.mission-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
  animation: fadeIn 1.2s ease;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px #00b3ff, 0 0 15px #00e1ff;
  }
  to {
    box-shadow: 0 0 25px #007bff, 0 0 30px #00e1ff;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatBg {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(25px);
  }
}































/* 🌈 General Styling */
.school-mission {
  background: linear-gradient(135deg, #f8fffa, #eefbff);
  font-family: "Poppins", sans-serif;
  margin-top: -100px;
}

/* Divider & Headings */
.divider {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #00a651, #0099cc);
  border-radius: 3px;
  margin-bottom: 12px;
}

.mission-heading {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00a651, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-text {
  color: #024b40;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

/* 🌟 Mission Card */
.mission-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 153, 204, 0.1);
  box-shadow: 0 10px 30px rgba(0, 153, 204, 0.1);
  overflow: hidden;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 153, 204, 0.2);
  border-color: rgba(0, 166, 81, 0.3);
}

/* 🧿 Icon */
.mission-icon {
  font-size: 2.5rem;
  color: #00a651;
  margin-top: 25px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.2);
  color: #0099cc;
}

/* 🖼️ Image Inside Same Border */
.mission-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin: 15px 0;
  transition: transform 0.5s ease;
}

.mission-card:hover .mission-image {
  transform: scale(1.05);
}

/* 📄 Text */
.mission-body {
  padding: 0 25px 25px;
}

.mission-body h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #024b40;
  margin-bottom: 10px;
}

.mission-body p {
  color: #024b40;
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.6;
}

/* 🌈 Animated Gradient Border Effect */
.mission-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #00a651, #0099cc, #00a651);
  background-size: 200%;
  opacity: 0;
  transition: opacity 0.4s ease, background-position 2s linear;
  z-index: 0;
}

.mission-card:hover::after {
  opacity: 1;
  background-position: right center;
}

/* Ensure text and icon stay above border effect */
.mission-card * {
  position: relative;
  z-index: 2;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .mission-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mission-image {
    height: 170px;
  }
}
