* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

/********** Template CSS **********/
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "unset", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #03201f;
}

p {
  text-align: justify !important;
  font-family: sans-serif;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 26px;
  bottom: 84px;
  z-index: 99;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/

.sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: #00000012;

  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    transform 0.35s ease;
}

/* SCROLL KE BAAD */

.sticky-top.bg-white {
  background-color: rgba(
    255,
    255,
    255,
    0.82
  ) !important; /* same as #ffffffd1 */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Remove container-fluid default padding */
.navbar-section {
  padding: 0;
  margin: 0px 15px;
}

/* Logo */
.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Common image rule */
.logos img {
  width: 100%;
  height: auto;
}

/* Left logo */
.logos .left-logo img {
  max-width: 140px;
}

/* Right logo wrapper */
.logos .right-logo a {
  display: flex;
  align-items: center;
}

/* Right logo images */
.logos .right-logo img {
  max-width: 80px;
}

/* Vertical line after first right logo */
.logos .right-logo img:first-child {
  position: relative;
  top: 6px;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 2px solid #ffffff;
}

.logos .right-logo img:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}

/* Small devices (mobile) */
@media (max-width: 576px) {
  .logos .left-logo img {
    max-width: 100px;
  }

  .logos .right-logo img {
    max-width: 60px;
  }

  .logos .right-logo img:first-child {
    padding-right: 8px;
    margin-right: 8px;
  }

  .navbar-section {
    margin: 0px 0px;
  }
}
/* Hide animation */
.logos {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

/* Hidden state */
.logos.hide-on-scroll {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

/* HR Line */
.menu-line {
  margin: 0 0 0 0;
  margin-top: 15px;
}

/* Navbar styling */
.navbar {
  padding: 10px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
}

.navbar .navbar-nav .nav-link {
  margin-left: 5px;
  color: var(--bs-dark);
}
/* active menu */
.navbar .nav-link.active,
.navbar .nav-link.parent-active {
  color: var(--bs-primary) !important;
}

/* dropdown me active item */
.dropdown-menu .dropdown-item.active {
  background: var(--bs-primary);
  color: #fff;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
  color: var(--bs-white);
  background: var(--bs-primary);
}
.navbar-collapse {
  justify-content: center;
}

/* Desktop dropdown animation */
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}

/* Mobile fix */
@media (max-width: 991.98px) {
  .navbar {
    font-size: 14px;
  }
  .navbar .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

/* Tablet fix */
@media (max-width: 1024px) {
  .navbar {
    font-size: 14px;
  }
  .navbar-nav .nav-link {
    margin-left: 10px;
  }
  .navbar-nav {
    flex-wrap: wrap !important;
  }
  .hero-text-item h1 {
    font-size: 3.9rem !important;
}
}

/*** Hero Header ***/
.hero-header {
  margin-top: 0px;
  padding-top: 150px;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.header-carousel {
  position: relative;
  padding: 45px 90px 45px 0;
}

.header-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: calc(50% + 45px);
  height: 100%;
  background: var(--bs-primary);
  z-index: -1;
}

.header-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  width: 15px;
  height: 15px;
  border: 2px solid var(--bs-white);
  transition: 0.5s;
}

.header-carousel .owl-dot.active {
  height: 30px;
  background: var(--bs-white);
}

/* Optional: make text carousel items same height */
.hero-text-carousel .hero-text-item {
  min-height: 300px; /* adjust as needed */
}

.hero-stats {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 25px;
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 180px;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  position: relative;
}

.stat-box h3::after {
  content: "+";
  font-size: 22px;
  font-weight: 800;
  margin-left: 4px;
  color: #ffd60a;
  position: absolute;
}

.stat-box p {
  font-size: 14px;
  color: #eee;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-box {
    width: 46%;
    padding: 12px;
  }
  .stat-box h3 {
    font-size: 28px;
  }
  .stat-icon {
    font-size: 24px;
  }
}

/*** About ***/
.about-img {
  position: relative;
  overflow: hidden;
}

.about-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-about-img.png) top left no-repeat;
  background-size: contain;
}

.about-section {
  background: #f9fbff;
}

.about-desc {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.about-graphic img {
  border-radius: 18px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
    text-align: center;
  }
  .about-desc {
    font-size: 16px;
    text-align: center;
  }
}

/*** Mission & Vision ***/
.mission-vision .mv-card {
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-left: 5px solid #007bff;
}

.mission-vision .mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mission-vision .mv-icon i {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 50%;
  display: inline-block;
}

/*** Project ***/
.govt-projects {
  padding: 80px 0;
  /* background: #f7f7f7; */
}

.title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
}

.subtitle {
  /* font-size: 18px; */
  color: #555;
  font-family: sans-serif;
  text-align: center !important;
}

.gov-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
  cursor: pointer;
}

.gov-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.gov-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.gov-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.gov-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #11a2d7;
}

.numbers {
  font-weight: 600;
  color: #131a2f;
  margin-bottom: 8px;
}

.tagline {
  color: #555;
  font-size: 15px;
}

/* Modal */
.modal-open .modal {
  z-index: 12000 !important;
}
.project-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: #fff;
  width: 80%;
  margin: 8% auto;
  padding: 30px;
  border-radius: 18px;
  animation: fadeIn 0.4s ease;
}

.close {
  float: right;
  font-size: 30px;
  cursor: pointer;
  text-align: end;
  color: #444;
}
#modalDetails ol,
ul {
  padding-left: 1rem !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*** Achievements ***/
/* Grid Section */
.achievements-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

/* Single Card (equal height) */
.achievement-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon */
.ach-icon img {
  width: 110px;
  object-fit: contain;
  height: 110px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

/* Card Box with fixed height */
.ach-box {
  background: #f7fffb;
  border: 2px solid #b6e9d4;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

  /* ⭐ Important for same card height */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Text */
.ach-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ach-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* Number + sign */
.count::after {
  content: "+";
  margin-left: 4px;
  color: #11a2d7;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 992px) {
  .achievements-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .achievements-wrapper {
    grid-template-columns: 1fr;
  }

  .ach-icon img {
    width: 90px;
  }

  .ach-box {
    padding: 20px;
  }
}

/*** Service ***/

.service-card img {
  height: 160px;
  object-fit: cover;
}
.service-card {
  transition: all 0.3s ease;
  border-radius: 10px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}
.contact-box {
  border-left: 4px solid #11a2d7;
}

.service-item {
  position: relative;
  padding: 30px 25px;
  transition: 0.5s;
}

.service-item.bg-primary:hover {
  background: var(--bs-light) !important;
}

.service-item.bg-primary p {
  color: var(--bs-light);
  transition: 0.5s;
}

.service-item.bg-primary:hover p {
  color: var(--bs-secondary);
}

.service-item.bg-light:hover {
  background: var(--bs-primary) !important;
}

.service-item.bg-light p {
  color: var(--bs-secondary);
  transition: 0.5s;
}

.service-item.bg-light:hover p {
  color: var(--bs-light);
}

.service-item .service-img h3 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
  background: var(--bs-primary);
  color: var(--bs-white);
  transition: 0.5s;
}

.service-item.bg-primary:hover .service-img h3 {
  background: var(--bs-light);
  color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
  background: var(--bs-light);
  color: var(--bs-dark);
  transition: 0.5s;
}

.service-item.bg-light:hover .service-img h3 {
  background: var(--bs-primary);
  color: var(--bs-white);
}

/*** Our Team ***/
:root {
  --primary-color: #0056b3;
  --secondary-color: #11a2d7;
  --bg-light: #f8f9fa;
}

.section-title {
  font-weight: 800;
  letter-spacing: -1px;
  color: #222;
}

.leader-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--secondary-color);
}

.leader-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}

.accordion-button:not(.collapsed) {
  background-color: #f0f7ff;
  color: var(--primary-color);
  box-shadow: none;
}
.accordion-header {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.program-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.program-list li {
  font-size: 0.9rem;
  padding: 5px 10px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
}

.btn-contact {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .leader-img {
    height: 280px;
  }
}
/*** Logo Slider ***/
.logo-slider {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}

.logo-track {
  display: flex;
  width: calc(4 * 16.6666%);
  animation: logoScroll 20s linear infinite;
}

.logo-track img {
  flex: 0 0 16.6666%;
  height: 80px;
  object-fit: contain;
}

/* Seamless scroll keyframes */
@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tablet: 4 logos visible */
@media (max-width: 992px) {
  .logo-track img {
    flex: 0 0 25%; /* 4 logos visible */
    height: 70px;
  }
}

/* Mobile: 2 logos visible */
@media (max-width: 576px) {
  .logo-track img {
    flex: 0 0 50%; /* 2 logos visible */
    height: 60px;
  }
}

/*** Testimonial ***/
.testimonial-img {
  position: relative;
  padding: 45px 0 45px 90px;
}

.testimonial-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(50% + 45px);
  height: 100%;
  background: var(--bs-primary);
  z-index: -1;
}

.testimonial-text h5 {
  position: relative;
  padding-left: 45px;
}

.testimonial-text h5::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
  position: absolute;
  height: 17px;
  bottom: 0;
  right: 0;
  left: auto;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  width: 15px;
  height: 15px;
  background: var(--bs-white);
  border: 2px solid var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-primary);
}

@media (max-width: 768px) {
  .testimonial-carousel .owl-dots {
    left: 0;
    right: auto;
  }

  .testimonial-carousel .owl-dot {
    margin-right: 10px;
    margin-left: 0;
  }
}

/*** Newsletter ***/
.newsletter {
  background: url(../img/hero-bg.png) bottom right no-repeat;
  background-size: cover;
}
.newsletter .lead {
  /* color: rgba(255, 255, 255, 0.95); */
  font-size: 18px;
  line-height: 1.45;
}

/* White subscribe button with paper-plane icon */
.btn-white-subscribe {
  background: #ffffff;
  border: none;
  color: #0d3b3a;
  padding: 12px 18px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn-white-subscribe:hover,
.btn-white-subscribe:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.18);
  outline: none;
}

/* Input styling */
.newsletter .form-control {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #0d3b3a;
  font-size: 16px;
}

/* small screens: stack vertically */
@media (max-width: 767.98px) {
  .newsletter .p-5 {
    padding: 30px !important;
  }
  .newsletter .form-control {
    margin-bottom: 12px;
  }
  .newsletter .btn-white-subscribe {
    width: 100%;
  }
  .newsletter .btn-white-subscribe .d-md-inline {
    display: none !important;
  }
}

/* Accessibility helper */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Small subtle text */
.text-white-50 {
  color: rgba(255, 255, 255, 0.75);
}

/*** Footer ***/
/* MODERN FOOTER STYLES */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding-top: 80px;
  font-family: "Poppins", sans-serif;
}

.footer .footer-logo {
  /* filter: brightness(0) invert(1);  */
  transition: transform 0.3s ease;
}

.footer .footer-logo:hover {
  transform: scale(1.05);
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px !important;
}

/* Heading ke niche modern underline */
.footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 2px;
}

.footer p,
.footer a {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer .btn-link {
  display: block;
  margin-bottom: 12px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .btn-link::before {
  content: "→"; /* Modern arrow */
  margin-right: 10px;
  color: var(--bs-primary);
  transition: 0.3s;
}

.footer .btn-link:hover {
  color: #fff !important;
  padding-left: 10px;
  letter-spacing: 0.5px;
}

/* Social Icons Styling */
.footer .social-links .btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.footer .social-links .btn:hover {
  background: var(--bs-primary);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(var(--bs-primary-rgb), 0.4);
}

.footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .contact-item i {
  margin-top: 5px;
  color: var(--bs-primary);
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
  background: rgba(0, 0, 0, 0.2);
}
/* -----css---mayank--------- */
.text-justify {
  text-align: justify;
}
.hero-text-item h1 {
  font-size: 4.9rem;
}

@media (max-width: 600px) {
  .hero-text-item h1 {
    font-size: calc(1.625rem + 4.5vw);
  }
}

/* Features section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.feature {
  flex: 1 1 45%;
  background-color: #fff;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}
.feature:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 24px;
  color: #0b5b58;
  margin-right: 15px;
  margin-top: 3px;
}
.feature-text {
  font-size: 1rem;
  font-weight: 500;
}

/* Presence & states */
.section-title {
  font-size: 1.5rem;
  color: #11a2d7;
  margin-bottom: 15px;
  text-align: center;
}
:root {
  --jitm-blue: #1e3a8a;
  --jitm-light-blue: #11a2d7;
  --soft-bg: #f8fafc;
}

.presence-container {
  padding: 80px 0;
  overflow: hidden;
}

.ui-card-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 40px;
  position: relative;
}

.ui-card-title span {
  color: var(--jitm-light-blue);
  border-bottom: 4px solid var(--jitm-light-blue);
}

/* Modern List Styling */
.modern-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.modern-list li {
  background: #ffffff;
  color: #475569;
  padding: 15px 20px;
  font-size: 14px;
  border-radius: 12px;
  border-left: 5px solid var(--jitm-light-blue);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  height: 100%;
}

.modern-list li:hover {
  transform: scale(1.03) translateY(-5px);
  background: var(--jitm-light-blue);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(17, 162, 215, 0.3);
}

/* Mobile Specific Slider Logic */
@media (max-width: 600px) {
  .modern-list {
    display: flex;
    padding: 20px 0;
    gap: 20px;
    /* Infinite Scroll setup */
    width: max-content;
    animation: infiniteScroll 25s linear infinite;
  }

  .presence-section,
  .states-section {
    overflow: hidden; /* Container ke bahar na jaye */
    padding-bottom: 30px;
  }

  .modern-list li {
    width: 200px; /* Fixed width for mobile slider */
    white-space: normal;
    flex-shrink: 0;
    text-align: center;
    justify-content: center;
  }

  @keyframes infiniteScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

/* Roadmap CSS */
:root {
  --primary: #11a2d7;
  --dark: #1e293b;
  --gray: #64748b;
  --bg-light: #f8fafc;
}
/* Main Container with Flex */
.hub-main-wrapper {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  gap: 30px;
  padding: 40px 20px;
}

/* Sidebar (col-md-4 equivalent) */
.sidebar-filters {
  flex: 0 0 300px; /* Fixed width for sidebar */
  position: sticky;
  top: 40px;
  height: fit-content;
}

.filter-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.filter-card h3 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

/* Filter List */
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.3s ease;
  text-align: left;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(17, 162, 215, 0.2);
  transform: translateX(5px);
}

/* Content Area (col-md-8 equivalent) */
.content-area {
  flex: 1;
}

.ui-header {
  margin-bottom: 30px;
}

.ui-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.ui-header h1 span {
  color: var(--primary);
}

/* Centres Grid */
.centres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* Centre Card */
.centre-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.centre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.state-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(17, 162, 215, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 12px;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-info {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hub-main-wrapper {
    flex-direction: column;
  }
  .sidebar-filters {
    flex: none;
    width: 100%;
    position: static;
  }
  .filter-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Team Section */
/* MAIN CARD */
.team-h-card {
  display: flex;
  flex-direction: row;
  gap: 15px;
  background-image: url(/img/hero-bg.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  height: 100%; /* Equal height */
}

/* HOVER */
.team-h-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.team-h-img img {
  width: 140px;
  height: 180px; /* Fixed height */
  object-fit: cover;
  border-radius: 10px;
}

/* RIGHT CONTENT */
.team-h-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Align button bottom */
  flex: 1;
}

/* TEXTS */
.team-h-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.team-role {
  color: #0b5b58;
  font-weight: 600;
  margin: 4px 0 8px;
}

.team-desc {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 0px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team-h-card {
    flex-direction: column;
    text-align: center;
    height: auto; /* Mobile automatic height */
  }

  .team-h-img img {
    width: 100%;
    height: 260px;
  }

  .team-h-btn {
    align-self: center;
  }
}

/* --why-choose  */
.why-choose {
  font-family: "Poppins", sans-serif;
}
.choose-section {
  min-height: 500px;
}
.choose-section img {
  max-height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .choose-section {
    text-align: center;
  }
  .choose-section .col-lg-6 {
    order: unset !important;
    margin-bottom: 2rem;
  }
}

/* Programs */

/* Container and Card Styling */
.program-item-card {
    background: #ffffff;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.program-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.img-wrapper {
    overflow: hidden;
    height: 200px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-item-card:hover .img-wrapper img {
    transform: scale(1.1);
}

/* Content Area */
.program-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.short-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Scheme List */
.scheme-list {
    margin-top: 15px;
    border-top: 1px dashed #ddd;
    padding-top: 15px;
}

.scheme-list li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.scheme-list i {
    color: var(--bs-primary); /* Bootstrap primary color */
    margin-right: 10px;
    font-size: 1rem;
}

/* Read More Button Styling */
.btn-read-more {
    margin-top: auto;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: var(--bs-primary);
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Arrow Animation when Open */
.btn-read-more[aria-expanded="true"] i {
    transform: rotate(90deg);
}

.btn-read-more:hover {
    color: #0b5b58;
}


/* Contact-us Css */

.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 12px;
  border: 1px solid #dee2e6;
  padding: 1rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25 red rgba(13, 110, 253, 0.1);
  border-color: #0d6efd;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.contact-link {
  text-decoration: none;
  color: #495057;
  transition: color 0.3s;
  font-weight: 500;
}

.contact-link:hover {
  color: #0d6efd;
}

.map-container {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

/* retail */

.retail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.retail-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.retail-card:hover {
  transform: translateY(-10px);
}

.retail-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.retail-content {
  padding: 30px;
}

.retail-icon {
  font-size: 42px;
  margin-bottom: 10px;
}

.retail-content h3 {
  font-size: 22px;
  color: #0d47a1;
  margin-bottom: 12px;
}

.retail-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.retail-content ul {
  padding-left: 18px;
  margin-top: 10px;
}

.retail-content ul li {
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #444;
}

.career-box {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  font-size: 14.5px;
  margin-top: 15px;
}

/* Section */
.success-modern {
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

/* Card */
.success-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.25);
}

/* Image */
.img-wrap {
  height: 240px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.success-card:hover img {
  transform: scale(1.08);
}

/* Content */
.card-body {
  padding: 20px;
}

.card-body h6 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile {
  display: inline-block;
  font-size: 14px;
  color: #0d6efd;
  font-weight: 500;
  margin-bottom: 10px;
}

.desc {
  font-size: 13.5px;
  color: #6c757d;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 575px) {
  .img-wrap {
    height: 200px;
  }
}

.collab-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.focus-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.impact-box h3 {
  color: #11a2d7;
  font-weight: 700;
  margin-bottom: 15px;
}
..impact-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}
.philosophy-card i {
  font-size: 32px;
  margin-bottom: 12px;
}

.impact-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 18px;
}

.philosophy-card {
  background: #000;
  padding: 20px;
  border-radius: 12px;
  text-align: center;

  /* height fix ka best solution */
  min-height: 220px;
  height: auto;

  /* content alignment */
  display: flex;
  flex-direction: column;
  justify-content: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.philosophy-card h6 {
  color: #11a2d7;
  font-weight: 600;
  font-size: 1.2rem; /* responsive */
  margin-bottom: 12px;
  line-height: 1.6;
  border-bottom: 1px solid #11a2d7;
  padding-bottom: 8px;
}

.philosophy-card p {
  color: #ddd;
  font-size: 0.95rem;
  margin: 0;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .philosophy-card {
    min-height: 200px;
    padding: 16px;
  }

  .philosophy-card h6 {
    font-size: 1.1rem;
  }
}

/* Breaking News Ticker */
.breaking-news {
  background: #fff;
  padding: 10px 0;
}
.ticker-label {
  color: white;
  padding: 5px 15px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

/* News Cards */
.news-card {
  background: white;
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
  border-bottom: 4px solid transparent;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-image-wrapper {
  position: relative;
  overflow: hidden;

  height: 220px;
}
.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffffff;
  color: #11a2d7;
  padding: 2px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.news-title {
  color: #333;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 10px;
}
.news-date {
  color: #888;
  font-size: 0.85rem;
}

/* Sidebar Styles */
.sidebar-title {
  padding: 10px 15px;
  font-size: 1.1rem;
}
.trending-item {
  display: flex;
  gap: 12px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #ccc;
}
.trending-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}
.trending-item h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* Modal Customization */
.modal-header {
  color: white;
}
.read-more-btn {
  color: var(--jitm-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Responsive Marquee */
.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Sidebar Section Styling */
.sidebar-section {
  overflow: hidden; /* Important to hide the items moving out */
}

.trending-container {
  height: 400px; /* Fixed height for the scrolling area */
  overflow: hidden;
  position: relative;
  background: #fff;
}

.trending-scroll-wrapper {
  position: absolute;
  width: 100%;
  animation: scroll-up 20s linear infinite;
}

/* Pause animation on hover so user can read */
.trending-container:hover .trending-scroll-wrapper {
  animation-play-state: paused;
}

@keyframes scroll-up {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  } /* Adjust based on total height of items */
}

.trending-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  border-bottom: 1px solid #eee;
  align-items: center;
  transition: background 0.3s;
}

.trending-item:hover {
  background: #f9f9f9;
}

.trending-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.trending-item h6 {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
  color: var(--jitm-green);
}

.media-spotlight {
  background: #11a2d7;
  color: #fff;
}

.media-spotlight .highlight {
  background: #fff;
  color: #11a2d7;
  padding: 0 10px;
}

.spotlight-badge {
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
}

.media-timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  padding-left: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline-item .dot {
  width: 12px;
  height: 12px;
  background: #ffcc00;
  border-radius: 50%;
  position: absolute;
  left: -27px;
  top: 6px;
}

.spotlight-feature {
  background: #fff;
  color: #000;
  border-radius: 18px;
  overflow: hidden;
}

.spotlight-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.feature-content {
  padding: 20px;
}

.feature-content span {
  color: #11a2d7;
  font-weight: 600;
}

.quick-bites {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
}

.spotlight-slider {
  position: relative;
  height: 430px;
}

.spotlight-feature {
  position: absolute;
  inset: 0;
  background: #fff;
  color: #000;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.98);
  transition: all 0.8s ease;
}

.spotlight-feature.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.spotlight-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.feature-content {
  padding: 20px;
}

.feature-content span {
  color: #11a2d7;
  font-weight: 600;
}

.read-more-text {
  color: #11a2d7;
  font-weight: 600;
  cursor: pointer;
}

/* Gallery Section Styling */
:root {
  --primary: #002e5b;
  --accent: #11a2d7;
  --soft-bg: #f4f7f9;
  --road-color: #dee2e6;
  --white: #ffffff;
}

/* Header Refinement */
.gallery-header {
  background:
    linear-gradient(rgba(17, 162, 215, 0.85), rgba(12, 122, 165, 0.85)),
    url(/img/center-office.jpg) center / cover;

  color: var(--white);
  padding: 80px 0;
  text-align: center;
  border-radius: 0 0 50px 50px; /* Creative curved bottom */
  margin-bottom: 50px;
}

/* --- ROADMAP SIDEBAR --- */
.roadmap-container {
  position: relative;
  padding-left: 20px;
}

.roadmap-container::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--road-color);
  z-index: 1;
}

.roadmap-step {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 20px;
  border-radius: 40px 10px 10px 40px;
  background: transparent;
}

.roadmap-step:hover {
  background: rgba(255, 255, 255, 0.5);
}

.step-icon {
  width: 42px;
  height: 42px;
  min-width: 42px; /* Prevent shrinking */
  background: var(--white);
  border: 2px solid var(--road-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 15px;
  transition: 0.4s;
  color: #adb5bd;
}

.step-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
  transition: 0.3s;
}

/* Active Roadmap Step */
.roadmap-step.active {
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.roadmap-step.active .step-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(13, 107, 104, 0.3);
}

.roadmap-step.active .step-text {
  color: var(--primary);
  font-weight: 700;
}

/* --- FLEX GALLERY ENGINE --- */
.gallery-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.filter-item {
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.filter-item.show {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.gallery-img {
  flex: 0 0 calc(33.33% - 10px);
  max-width: calc(33.33% - 10px);
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gallery-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .gallery-img {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .gallery-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Button Styling */

/* Responsive */
@media (max-width: 991px) {
  .gallery-img {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .gallery-img {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@keyframes premiumShow {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Section Title Refinement */
.section-title {
  color: var(--primary);
  font-weight: 800;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

/* Normal Button */
#view-more-btn {
  cursor: pointer;
}

/* Disabled State Style */
.disabled-btn {
  background: #e5fefa !important; /* Gray color */
  color: #838383 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
  color: #838383 !important;
  background-color: #e5fefa !important;
  border-color: #11a2d7;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Impact Section */

/* SECTION */
.impact-section {
  padding: 70px 20px;
  background: #11a2d7;
  color: #fff;
}

/* LEFT CONTENT */
.impact-content h1 {
  font-size: 36px;
  font-weight: 700;
}

.impact-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #e8f6f5;
  max-width: 620px;
}

.impact-points {
  list-style: none;
}

.impact-points li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  gap: 10px;
}

.impact-points li::before {
  content: "✔";
  color: #ffd966;
  font-weight: bold;
}

/* TV SCREEN */
.tv-wrapper {
  display: flex;
  justify-content: center;
}

.tv-screen {
  background: #000;
  padding: 16px;
  border-radius: 22px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
}

.tv-screen::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 12px;
  background: #222;
  border-radius: 0 0 10px 10px;
}

.tv-screen iframe {
  width: 100%;
  height: 300px;
  border-radius: 14px;
  border: none;
}

/* TICKER */
.video-ticker {
  margin-top: 12px;
  background: #0b1f1e;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 35s linear infinite;
}

.ticker-content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
}

.ticker-content span {
  color: #ffd966;
  font-size: 14px;
  font-weight: 500;
}

.ticker-content span strong {
  color: #ffffff;
  font-weight: 600;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .impact-content h1 {
    font-size: 28px;
  }

  .tv-screen iframe {
    height: 220px;
  }
}

:root {
  --primary: #002147;
  --accent: #11a2d7;
  --text: #1f2937;
  --warning: #f59e0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.content-section {
  padding: 60px 8%;
}
.section-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}
.text-danger {
  color: var(--accent) !important;
}
.text-muted {
  color: #6b7280;
  /* text-align: center; */
  margin-top: 10px;
}

.media-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 50px;
}

/* Sidebar & Filters */
.media-sidebar {
  flex: 0 0 280px;
  position: sticky;
  top: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.filter-btn {
  width: 100%;
  text-align: left;
  padding: 12px 15px;
  margin-bottom: 8px;
  border: none;
  background: #f1f5f9;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}
.filter-btn.active {
  background: var(--accent);
  color: white;
}
.filter-btn:hover:not(.active) {
  background: var(--warning);
  color: white;
}

/* Grid */
.press-grid-wrapper {
  flex: 1;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card & Loader */
.press-item {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
.press-item.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
.press-item:hover .hover-loader {
  opacity: 1;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.press-item img {
  width: 100%;
  height: 210px;
  border-bottom: 3px solid var(--accent);
}
.press-info {
  padding: 20px;
}
.press-date {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.press-desc {
  font-size: 0.75rem;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.4;
}

/* View More & Disabled State */
.view-more-container {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}
.btn-view-more {
  padding: 14px 40px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.btn-view-more:hover:not(:disabled) {
  background: var(--accent);
  transform: scale(1.05);
}

/* Button Disabled Styling */
.btn-view-more:disabled {
  background: #cbd5e1 !important;
  color: #64748b !important;
  cursor: not-allowed;
  transform: none !important;
}

.no-more-msg {
  color: #11a2d7;
  font-weight: 700;
  font-style: italic;
  margin-top: 15px;
  display: none;
}

/* Responsive */
.filter-toggle-wrap {
  display: none;
  margin-bottom: 20px;
  text-align: center;
}
.filter-toggle-btn {
  padding: 12px 25px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .filter-toggle-wrap {
    display: block;
  }
  .media-container {
    flex-direction: column;
  }
  .media-sidebar {
    display: none;
    width: 100%;
    position: static;
  }
  .media-sidebar.show-filters {
    display: block;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .media-container {
    display: unset;
    gap: unset;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.96);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.3s;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  transform: scale(0.7);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 8px;
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 50px;
  cursor: pointer;
}
/* --- SECTION 3: INFO HUB --- */
.info-hub {
  background: white;
  padding: 80px 8%;
}
.info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.info-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 20px;
  border-left: 5px solid var(--warning);
}
.info-list {
  list-style: none;
  margin-top: 20px;
}
.info-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* knowledge-gallery */
.pillar-card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s;
  height: 100%;
}
.pillar-card:hover {
  transform: translateY(-10px);
}
.article-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.badge-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0d6efd;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}
.article-card {
  transition: 0.3s;
  border-radius: 15px;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.badge-category {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  color: #fff;
  z-index: 10;
}

/* Modal 95% width and internal scroll */
.modal-95w {
  width: 95%;
  max-width: 95%;
  margin: 1.5rem auto;
}
.dynamic-modal-body {
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
}

/* Resource Download Section */

/* Premium Resource Cards */
.resource-card {
  border: none;
  border-radius: 24px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.resource-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: 0.3s;
}
.resource-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Buttons Styling */
.btn-download-main {
  background: #1e3a8a;
  color: white;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  border: none;
  width: 100%;
}

/* Impact Section */
.impact-box {
  background: white;
  border-radius: 40px;
  padding: 80px 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.meta-info {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.border-gradient {
  border-left: 6px solid #1e3a8a;
}

/* ---career-section-css---  */
.apply-card {
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.required::after {
  content: " *";
  color: #dc3545;
}

/* SCROLLING JOB LIST */
.job-container {
  height: 500px;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.job-scroll-wrapper {
  display: flex;
  flex-direction: column;
  animation: scrollUp 20s linear infinite;
}

.job-container:hover .job-scroll-wrapper {
  animation-play-state: paused;
}

.job-container:hover {
  overflow-y: auto;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.job-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
  border-radius: 8px;
  margin-bottom: 8px;
}

.job-item:hover {
  background: #eef2ff;
}

/* MODAL CSS */
.custom-modal-95 {
  max-width: 95% !important;
  width: 95%;
  margin: 10px auto;
}

.modal-content {
  height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-body {
  overflow-y: auto;
  flex-grow: 1;
  padding: 30px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.benefit-list h6 {
  color: #0b5b58;
}
/* Whatsapp-icon-css */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* gov-partner-section home page */
.gov-partner-section {
  overflow: hidden;
}

.gov-partner-section .logo-slider {
  overflow: hidden;
  width: 100%;
}

.gov-partner-section .logo-track {
  display: flex;
  align-items: center;
  gap: 20px; /* Fixed gap */
  animation: scroll 30s linear infinite;
}

.gov-partner-section .logo-track img {
  height: 150px;
  flex-shrink: 0;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.gov-partner-section .logo-track img:hover {
  filter: grayscale(0);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-250%);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .gov-partner-section .logo-track img {
    height: 60px;
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .gov-partner-section .logo-track img {
    height: 110px;
    gap: 60px;
  }
}
@media (max-width: 480px) {
  .gov-partner-section .logo-track img {
    /* height: 40px; */
    gap: 40px;
  }
}

div:where(.swal2-container).swal2-top, div:where(.swal2-container).swal2-center, div:where(.swal2-container).swal2-bottom {
    z-index: 130000 !important;
}
