/* 🌅 Inner Banner Section */
/* 🌅 Inner Banner Section */
.inner-banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

/* 🏞️ 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;
}

/* 🖤 Dark Premium Bronze Title */
.inner-title {
  font-size: 100px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  background: linear-gradient(90deg, #1a0f0a, #3b2a1a, #5a3c22, #8b5a2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 25px rgba(139, 90, 43, 0.6),
    0 0 50px rgba(58, 40, 25, 0.5),
    0 0 80px rgba(20, 10, 5, 0.4);
  font-family: "Poppins", "Montserrat", sans-serif;
  position: relative;
  opacity: 0;
  background-size: 300%;
  animation: titleLoad 1.8s ease forwards, titleGlow 6s ease-in-out infinite alternate;
}

/* 🎬 Load Animation: starts big (200px) → settles at 100px */
@keyframes titleLoad {
  0% {
    opacity: 0;
    transform: scale(2);
    text-shadow: none;
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 🔥 Deep Brown–Bronze Glow Movement */
@keyframes titleGlow {
  0% {
    background-position: 0% 50%;
    text-shadow:
      0 0 30px rgba(139, 90, 43, 0.8),
      0 0 60px rgba(58, 40, 25, 0.6);
  }
  100% {
    background-position: 100% 50%;
    text-shadow:
      0 0 40px rgba(90, 60, 30, 0.9),
      0 0 80px rgba(139, 90, 43, 0.8);
  }
}

/* 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;
  }
}


















































.nextgen-map-section {
  background: linear-gradient(135deg, #e0f7fa, #f1f8e9, #ffffff);
  padding: 4px 0;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  margin-bottom: 70px;
}

.nextgen-map-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-card {
  position: relative;
  width: 100%;
  max-width: 1200px;
  border-radius: 25px;
  overflow: hidden;
  animation: borderGlow 6s linear infinite;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 4px;
  background: linear-gradient(90deg, #00bfa5, #00e676, #00bfa5);
  background-size: 300% 300%;
  animation: borderGradient 5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}

.map-card iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  filter: brightness(1.05) saturate(1.1);
  transition: transform 0.6s ease, filter 0.5s ease;
}

.map-card:hover iframe {
  transform: scale(1.02);
  filter: brightness(1.15) saturate(1.2);
}

@keyframes borderGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 255, 200, 0.3); }
  50% { box-shadow: 0 0 50px rgba(0, 255, 200, 0.6); }
}










































/* ==========================
   🌈 NEXT-GEN CONTACT SECTION
   ========================== */
.nextgen-contact-section {
  background: linear-gradient(135deg, #e0f7fa, #f1f8e9, #ffffff);
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Layout */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-info-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border-radius: 25px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Animated outer border */
.contact-info-card::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 3px;
  background: linear-gradient(120deg, #00bfa5, #00e676, #00bfa5);
  background-size: 300% 300%;
  animation: borderAnim 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

@keyframes borderAnim {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* -------- Contact Info -------- */
.contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #004b6b, #00bfa5, #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #00bfa5, #00e676);
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 191, 165, 0.4);
}

.contact-subtext {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-list .icon {
  font-size: 1.5rem;
  color: #00bfa5;
  background: rgba(0, 191, 165, 0.1);
  padding: 12px;
  border-radius: 50%;
}

.contact-list .details h5 {
  margin: 0;
  color: #004b6b;
  font-weight: 700;
}

.contact-list .details p,
.contact-list .details a {
  font-size: 0.95rem;
  color: #333;
  margin: 4px 0;
  text-decoration: none;
}

/* -------- Contact Form -------- */
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 12px rgba(0, 191, 165, 0.1);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #00bfa5;
  outline: none;
  box-shadow: 0 0 15px rgba(0, 191, 165, 0.3);
}

.nextgen-btn {
  background: linear-gradient(90deg, #00bfa5, #00e676);
  border: none;
  color: white;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.nextgen-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.5);
}

/* -------- Responsive -------- */
@media (max-width: 992px) {
  .contact-wrapper .row {
    flex-direction: column;
  }

  .contact-info-card,
  .contact-form-card {
    width: 100%;
    margin-bottom: 30px;
  }
}
