/* Shared Base Style */
.floating-call,
.floating-money {
  position: fixed;
  z-index: 9999;
}
.floating-call {
  bottom: 20px;
  left: 20px;
}
.floating-money {
  bottom: 90px;
  left: 20px;
}
.floating-call a,
.floating-money a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}
/* Icon Common Style */
.floating-call i,
.floating-money i {
  background-color: #22673e;
  color: white !important;
  font-size: 24px;
  padding: 14px;
  border-radius: 50%;
  animation: zoomTilt 2s infinite ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
/* Tooltip Common */
.call-tooltip,
.money-tooltip {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  white-space: nowrap;
  transition: all 0.4s ease;
  pointer-events: none;
  font-size: 14px;
  line-height: 1.2;
}
.floating-call:hover .call-tooltip,
.floating-money:hover .money-tooltip {
  opacity: 1;
  left: 70px;
}
/* Zoom + Tilt Animation */
@keyframes zoomTilt {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-10deg);
  }
  50% {
    transform: scale(0.95) rotate(10deg);
  }
  75% {
    transform: scale(1.05) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Shared Styles */
.floating-money,
.floating-call {
  position: fixed;
  z-index: 9999;
}
.floating-money {
  bottom: 90px;
  left: 20px;
}
/* Icon Box */
.floating-money a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
/* Icon Styling */
.floating-money i {
  background-color: #22673e;
  color: white !important;
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: zoomTilt 2s infinite ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
/* Tooltip Styling */
.money-tooltip {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  white-space: nowrap;
  transition: all 0.4s ease;
  pointer-events: none;
  font-size: 14px;
  line-height: 1.2;
}
.floating-money:hover .money-tooltip {
  opacity: 1;
  left: 70px;
}
@keyframes zoomTilt {
  0% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(-10deg);
  }
  50% {
    transform: scale(0.95) rotate(10deg);
  }
  75% {
    transform: scale(1.05) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.breadcrumb-banner {
  height: 65px;
  background: #22673e;
  position: relative;
  overflow: hidden; /* border-bottom-left-radius: 80px; */ /* border-bottom-right-radius: 80px; */
}
.breadcrumb-banner h1 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 32px;
    font-family: "Poppins", sans-serif;
}
.breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  display: inline-flex;
}
.breadcrumb-item a {
  color: #f8f9fa;
  transition: color 0.3s;
}
.breadcrumb-item a:hover {
  color: #ffd700;
} /* About Image */
.about-img img {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-img img:hover {
  transform: scale(1.05);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
}
.side-menu {
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #22673e !important;
}
.side-menu ul li {
    margin-bottom: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom: 2px solid #22673e;
    BORDER-RADIUS: 10PX;
}
.side-menu ul li a {
    display: block;
    padding: 12px 18px;
    border-radius: 10px;
    color: #333 !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}
.side-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #22673e;
  border-radius: 10px;
  z-index: -1;
  transition: width 0.3s ease;
}
.side-menu ul li a:hover::before {
  width: 100%;
}
.side-menu ul li a:hover {
  color: #fff;
  padding-left: 22px;
  font-size: 16px;
}
.side-menu ul li.active a {
  background: #22673e;
  color: #fff!important;
} /* Content Card */
.content-card {
  border-radius: 20px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #22673e !important;
}
.side-menu ul li.active a {
  background: #22673e;
  color: #fff;
  border-bottom: 2px solid #22673e;
}
.about-section {
  font-family: "Poppins", sans-serif;
  color: #333;
}
.about-block {
  background: #fff;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-block:hover {
  transform: translateY(-5px);
}
.section-title {
  font-size: 24px;
  color: #22673e;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.subtitle {
  display: block;
  font-size: 15px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.about-block p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 1px;
}
.about-block ul.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}
.about-block ul.about-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 1px;
  transition: all 0.3s ease;
  font-size: 15px;
}
.about-block ul.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22673e;
  font-weight: bold;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.about-block ul.about-list li:hover::before {
  transform: scale(1.3);
  color: #ffb400;
}
.activities-section {
  background: #f9f9f9;
}
.activities-section .section-title {
  color: #22673e;
  display: inline-block;
  position: relative;
}
.activities-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #22673e;
  margin: 5px auto 0;
  border-radius: 2px;
}
.activity-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  width: 180px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.activity-card i {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.activity-card h6 {
  font-weight: 600;
  color: #333;
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.activity-card:hover i {
  color: #ffb400;
  transform: scale(1.2) rotate(10deg);
} /* Responsive */
@media (max-width: 768px) {
  .activity-card {
    width: 120px;
    padding: 20px 10px;
  }
}
.about-section {
  font-family: "Poppins", sans-serif !important;
  color: #333;
}
.about-block {
  background: #fff;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-block:hover {
  transform: translateY(-5px);
}
.section-title {
  font-size: 24px;
  color: #22673e;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.subtitle {
  display: block;
  font-size: 15px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.about-block p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 1px;
}
.about-block ul.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}
.about-block ul.about-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 1px;
  transition: all 0.3s ease;
  font-size: 15px;
}
.about-block ul.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22673e;
  font-weight: bold;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.about-block ul.about-list li:hover::before {
  transform: scale(1.3);
  color: #ffb400;
}
.activities-section {
  background: #f9f9f9;
}
.activities-section .section-title {
  color: #22673e;
  display: inline-block;
  position: relative;
}
.activities-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #22673e;
  margin: 5px auto 0;
  border-radius: 2px;
}
.activity-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  width: 180px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.activity-card i {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.activity-card h6 {
  font-weight: 600;
  color: #333;
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.activity-card:hover i {
  color: #ffb400;
  transform: scale(1.2) rotate(10deg);
}
/* Responsive */
@media (max-width: 768px) {
  .activity-card {
    width: 120px;
    padding: 20px 10px;
  }
}
.about-section {
  font-family: "Poppins", sans-serif !important;
  color: #333;
}
body {
  padding-top: 90px; /* adjust to navbar total height (top links + menu) */
}

.footer-widget-area {
  position: relative;
  background-color: #22673e;
  padding: 60px 0;
  color: white;
  overflow: hidden;
  z-index: 999;
}

/* ===== Multi-level dropdown styles ===== */
.navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
}
.navbar-nav .nav-item:hover > .dropdown-menu {
  display: block;
}/* Multi-level dropdown positioning */
/* Default submenu position (desktop) */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none; /* hide by default */
}

/* Show submenu on hover (desktop) */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Mobile view - make submenu stack vertically */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static !important;
    display: none;
  }
  .dropdown-submenu > .dropdown-menu.show {
    display: block; /* allow toggle on mobile */
  }
}

.dropdown-submenu.show > .dropdown-menu {
  display: block;
}

.navbar-nav .dropdown-item {
  font-size: 15px;
  color: #22673e;
  transition: all 0.3s;
  font-weight: 500;
}
.navbar-nav .dropdown-item:hover {
  background: #22673e;
  color: #fff;
  padding-left: 25px;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: white;
  border-bottom: 2px solid white;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    background: #22673e;
    color: white;
  }
  .navbar-light .navbar-nav .nav-link {
    color: white;
    font-family: "Poppins", sans-serif;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    background: #22673e;
    color: white;
    /* border-radius: 25px; */
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 500;
  }
}

.logo-img {
  height: 90px;
  transition: transform 0.3s ease-in-out;
}
.logo-img:hover {
  transform: scale(1.05);
}

.info-strips .info-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0px;
}
.info-strips .info-item a {
  text-decoration: none;
  color: #22673e;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.info-strips .info-item i {
    font-size: 18px;
    color: #22673e ! IMPORTANT;
    transition: all 0.3s ease;
}

.info-strips .info-item:hover a {
  color: #22673e;
}
.header-top:after,
.about-area:after,
.newsletter-area:after {
  border-width: 0px 0px !important;
}

.navbar {
  display: initial;
}

.navbar-light .navbar-nav .nav-link {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  padding: 5px 13px;
  font-weight: 500;
}
.navbar-expand-lg .navbar-collapse {
  padding: 6px;
}
/* Responsive text */
@media (max-width: 767.98px) {
  .info-strips .info-item {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    border: none !important;
    border-bottom: 1px solid #ddd;
  }
} /* Only add arrow to links with .dropdown-toggle */
/* Only show arrow for dropdowns that actually have a submenu */

/* Remove arrow from normal dropdown items */
.dropdown-menu .dropdown-item:not(.dropdown-toggle)::after {
  content: none !important;
}
/* Desktop strip visible only on large */
.info-strips {
    display: flex;
    justify-content: right;
}
.info-marquee {
  background: #f9f9f9;
  padding: 8px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.info-marquee a {
  text-decoration: none;
  color: #22673e;
  font-weight: 600;
  margin: 0 15px;
  font-size: 14px;
  white-space: nowrap;
}

.navbar-brand img {
  height: 60px; /* mobile par thoda chhota */
}

@media (min-width: 992px) {
  .navbar-brand img {
    height: 80px; /* desktop par bada */
  }
}

/* Default mobile collapse hidden (slide from left) */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%; /* kitna width lena hai */
    height: 100vh;
    background: #22673e; /* dark green background */
    padding: 20px;
    transition: all 0.4s ease-in-out;
    z-index: 9999;
  }

  /* When collapse is shown */
  .navbar-collapse.show {
    left: 0;
  }

  /* Nav links styling inside mobile menu */
  .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 16px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}
@media (max-width: 991px) {
    #menuCloseBtn {
        filter: invert(1);
        font-size: 1.5rem;
        float: right;
        color: white;
    }
    .navbar-brand>img{
        height:40px !important;
        margin-top:0px !important;
    }

    .breadcrumb-banner h1 {
 white-space: nowrap;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}


.about-section {
  
    padding: 0px;
}
tr td {
    border: 1px solid #000;
    padding: 5px;
    font-weight: 400;
    font-size: 12px;
}

.p-4 {
    padding: 0.3rem !important;
}
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 50%;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}