:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: var(--dark-text);
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: 120px;
  animation: pulse 1.5s infinite;
  margin-bottom: 20px;
}

.loader-logo img {
  aspect-ratio: 1/1;
}
.loader-text {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.2rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Header Styles */
.top-bar {
  background-color: var(--primary-blue);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.header-main {
  padding: 5px 0;
  background-color: white;
  border-bottom: 1px solid #eaeaea;
}

.header-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 100px;
}

.header-center {
  text-align: center;
}

.header-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--primary-blue);
}

.header-subtitle {
  font-size: 1rem;
  color: var(--primary-green);
}

.navbar {
  background-color: #006007 !important;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: white !important;
  padding: 12px 25px !important;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: lightgreen !important;
}

.navbar-nav .nav-link.active {
  color: #e0a603 !important;
  font-weight: 600;
}

.dropdown-menu {
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 0;
}

.dropdown-item {
  color: var(--dark-text);
  padding: 10px 20px;
  transition: all 0.3s;
}

.dropdown-item:hover {
  background-color: rgb(73, 132, 7);
  color: white;
}
/* 1) Underline only for non-dropdown nav links */
.navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 3px;
  background-color: #e0a603;
}

/* 2) Explicit caret for dropdown-toggle (uses currentColor for automatic contrast) */
.navbar-nav .nav-link.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  border-top: 0.3em solid currentColor;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  position: relative;
}

/* 3) Ensure caret is visible when active / open / aria-expanded */
.navbar-nav .nav-link.dropdown-toggle.active::after,
.navbar-nav .nav-link.dropdown-toggle.show::after,
.navbar-nav .nav-link.dropdown-toggle[aria-expanded="true"]::after {
  border-top-color: #fff;
  opacity: 1;
}

/* Mobile Menu */
.offcanvas {
  background-color: white;
  color: var(--dark-text);
}

.offcanvas-header {
  background-color: var(--primary-blue);
  color: white;
}

.offcanvas-body .nav-link {
  color: var(--dark-text);
  padding: 12px 15px;
  border-bottom: 1px solid #eaeaea;
  transition: all 0.3s;
}

.offcanvas-body .nav-link:hover {
  background-color: rgba(2, 26, 132, 0.05);
  padding-left: 20px;
}

/* Hero Section with Swiper */
.hero-slider {
  height: 550px;
  position: relative;
  width: 75%;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  height: 550px;

  align-items: center;
  color: white;
}

.btn-hero {
  background-color: var(--accent-yellow);
  border: none;
  color: #333;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-hero:hover {
  background-color: #d69900;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Styling for the Main Image Slider (mySwiper) */
.hero-slider {
  width: 100%;
  height: 100%;
}

.swiper.mySwiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-blue);
  color: white;
  padding: 70px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-yellow);
}

.stat-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Initiatives Section */
.initiative-card {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-top: 4px solid var(--primary-green);
}

.initiative-card:hover {
  transform: translateY(-5px);
}

.initiative-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

/* Footer */
/* footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 60px 0 20px;
} */

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: var(--accent-yellow);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
  display: flex;
  text-align: center;
  justify-content: space-between;
  color: #ccc;
}
a {
  text-decoration: none;
}

/* Quick Links Section */
.quick-links-section {
  background-color: var(--light-bg);
  padding: 50px 0;
}

.quick-link-item {
  background: white;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  border-left: 4px solid var(--accent-red);
}

.quick-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-link-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: #021572;
  border-color: #021572;
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-success:hover {
  background-color: #005105;
  border-color: #005105;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-title {
    font-size: 1.4rem;
  }

  .header-subtitle {
    font-size: 0.9rem;
  }

  .header-logo {
    height: 50px;
  }

  .hero-slider {
    height: 450px;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content {
    padding: 0 20px;
  }

  .leader-img-container {
    height: 200px;
  }
}

.logo-head {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.logo-head h3 {
  color: #021a84;
}

.logo-head span {
  color: #006007;
  font-size: 24px;
  padding: 0 auto;
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

/* Hero Section with Swiper */
.hero-section {
  display: flex;
  height: 550px;
  position: relative;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-slider {
  height: 550px;
  position: relative;
  width: 75%;
}

.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  height: 550px;
  align-items: center;
  color: white;
}

.swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.4); */
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 50px;
}

.slide-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-hero {
  background-color: var(--accent-yellow);
  border: none;
  color: #333;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-hero:hover {
  background-color: #d69900;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Leadership Cards Section */
.leadership-cards {
  width: 24%;
  height: 550px;
  background-color: var(--light-bg);
  overflow-y: hidden;
  position: relative;
  padding: 30px 15px;
}

/* For Webkit browsers (Chrome, Edge, Safari) */
.leadership-cards::-webkit-scrollbar {
  width: 8px; /* vertical scrollbar thickness */
  height: 30px; /* horizontal scrollbar thickness */
}

.leadership-cards::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

.leadership-cards::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.leader-card {
  display: flex;
  align-items: center;
  padding: 15px;
  margin-bottom: 15px;
  background-color: white;
  /* border-left: 4px solid var(--primary-blue); */
  transition: all 0.3s;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.leader-card:hover {
  background-color: rgba(2, 26, 132, 0.03);
  transform: translateX(5px);
}

.leader-img-container {
  flex-shrink: 0;
  width: 70px;
  margin-right: 15px;
}

.leader-img-container img {
  height: 70px;
  width: 70px;
}

.leader-img-small {
  width: 70px;
  height: 70px !important;
  border-radius: 7px;
  object-fit: cover;
  border: 3px solid var(--primary-green);
}

.leader-info {
  flex-grow: 1;
}

.leader-name-small {
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.2;
}

.leader-position-small {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 0.85rem;
}

.leader-department-small {
  color: var(--light-text);
  font-size: 0.8rem;
  line-height: 1.3;
}

.leadership-title {
  padding: 0 15px 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--accent-yellow);
}

.leadership-title h3 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--accent-yellow);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    height: auto;
  }

  .hero-slider {
    width: 100%;
    height: 400px;
  }

  .leadership-cards {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .swiper-slide {
    height: 400px;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content {
    padding: 0 20px;
  }

  .leader-card {
    padding: 12px;
  }

  .leader-img-small {
    width: 60px;
    height: 60px;
  }
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
}

/* News Ticker Section */
.news-ticker-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-green)
  );
  color: white;
  padding: 15px 0;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ticker-container {
  display: flex;
  align-items: center;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
}

.ticker-label {
  background-color: var(--accent-yellow);
  color: #333;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.ticker-label i {
  margin-right: 8px;
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 25px;
}

.ticker-content {
  display: flex;
  position: absolute;
  white-space: nowrap;
  animation: ticker-scroll 100s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-size: 0.95rem;
}

.ticker-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.ticker-item i {
  color: var(--accent-yellow);
  margin-right: 10px;
  font-size: 0.8rem;
}

.ticker-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.ticker-item a:hover {
  color: var(--accent-yellow);
  text-decoration: underline;
}

/* Pause animation on hover */
.ticker-wrapper:hover .ticker-content {
  animation-play-state: paused;
}

/* Keyframes for scrolling */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Alternative Ticker Style */
.ticker-style-2 {
  background: #424242;
  border-left: 5px solid var(--accent-yellow);
}

.ticker-style-2 .ticker-label {
  background-color: var(--accent-red);
  color: white;
}

.ticker-style-3 {
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-green);
}

.ticker-style-3 .ticker-label {
  background-color: var(--primary-green);
  color: white;
}

.ticker-style-3 .ticker-item a {
  color: var(--primary-blue);
}

.ticker-style-3 .ticker-item i {
  color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ticker-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticker-label {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    justify-content: center;
  }

  .ticker-wrapper {
    width: 100%;
  }

  .ticker-item {
    padding: 0 15px;
    font-size: 0.85rem;
  }
}

.section-padding {
  padding: 60px 0;
}

.left-side h3 {
  font-weight: bold;
  font-size: 24px;
}

.acts-section {
  /* background: linear-gradient(135deg, #dcdcdc 0%, #fff6f6 100%); */
  padding: 80px 0;
}

.section-title {
  color: #021a84;
  position: relative;
  padding-bottom: 5px;
  /* margin-bottom: 15px; */
  font-weight: 700;
  font-size: 2.2rem;
}

/* .section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #e0a603;
      } */

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.acts-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.acts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.acts-header {
  background: linear-gradient(135deg, #021a84, #006007);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.acts-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.acts-icon i {
  font-size: 2rem;
  color: white;
}

.acts-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.acts-content {
  padding: 30px;
}

.acts-description {
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Rules & Regulations Styles */
.acts-list {
  margin-bottom: 25px;
}

.act-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.act-item:hover {
  border-color: #021a84;
  background: white;
  transform: translateX(5px);
}

.act-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #021a84, #006007);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 5px;
}

.act-icon i {
  font-size: 1.2rem;
  color: white;
}

.act-details {
  flex: 1;
}

.act-name {
  color: #021a84;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.act-summary {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.act-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.act-date {
  color: #6c757d;
  font-size: 0.85rem;
}

.act-date i {
  color: #e0a603;
  margin-right: 5px;
}

.act-download {
  color: #006007;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.act-download:hover {
  color: #021a84;
}

.act-download i {
  margin-right: 5px;
}

/* Publications Styles */
.publications-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

.publication-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.publication-item:hover {
  border-color: #006007;
  background: white;
  transform: translateX(5px);
}

.pub-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e0a603, #c13416);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pub-icon i {
  font-size: 1.2rem;
  color: white;
}

.pub-details {
  flex: 1;
}

.pub-title {
  color: #021a84;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.pub-desc {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pub-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pub-size {
  color: #6c757d;
  font-size: 0.8rem;
}

.pub-download {
  color: #c13416;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.pub-download:hover {
  color: #021a84;
}

/* Footer Button */
.acts-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.acts-btn {
  display: inline-block;
  background: linear-gradient(135deg, #021a84, #006007);
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.acts-btn:hover {
  background: linear-gradient(135deg, #006007, #021a84);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 26, 132, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .acts-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .acts-header {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .acts-icon {
    width: 60px;
    height: 60px;
  }

  .acts-icon i {
    font-size: 1.5rem;
  }

  .acts-title {
    font-size: 1.4rem;
  }

  .acts-content {
    padding: 20px;
  }

  .act-item,
  .publication-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .act-meta {
    justify-content: center;
  }

  .pub-meta {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 576px) {
  .acts-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

.stats-section {
  background: #006007;
  color: white;
  padding: 70px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  flex: 0 0 80px;
  text-align: center;
  margin-right: 20px;
}

.stat-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-image {
  opacity: 1;
  transform: scale(1.1);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #e0a603;
  line-height: 1;
}

.stat-text {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stat-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .stat-icon {
    margin-right: 0;
    margin-bottom: 15px;
    flex: 0 0 auto;
  }

  .stat-image {
    width: 60px;
    height: 60px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 50px 0;
  }

  .stat-item {
    padding: 10px;
  }
}

.events-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
  padding: 80px 0;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Event Cards */
.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Main Event Card */
/* .main-event {
    border-left: 4px solid #e0a603;
} */

.main-event .event-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.main-event .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-event:hover .event-image img {
  transform: scale(1.05);
}

.event-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #e0a603, #c13416);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-event .event-content {
  padding: 25px;
}

.main-event .event-title {
  color: #021a84;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.main-event .event-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.main-event .event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #495057;
  font-size: 0.9rem;
}

.meta-item i {
  color: #006007;
  width: 16px;
}

.main-event .event-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Side Event Cards */
/* .side-event {
    border-left: 4px solid #006007;
} */

.side-event .event-image {
  height: 160px;
  overflow: hidden;
}

.side-event .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.side-event:hover .event-image img {
  transform: scale(1.05);
}

.side-event .event-content {
  padding: 20px;
}

.side-event .event-title {
  color: #021a84;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.side-event .event-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.side-event .event-meta {
  margin-bottom: 15px;
}

.side-event .event-actions {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #021a84, #006007);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #006007, #021a84);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 26, 132, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #021a84;
  border: 2px solid #021a84;
}

.btn-secondary:hover {
  background: #021a84;
  color: white;
  transform: translateY(-2px);
}

.side-event .btn-secondary {
  padding: 8px 16px;
  font-size: 0.85rem;
  /* width: 100%; */
}

/* View All Button */
.view-all-btn {
  background: transparent;
  color: #021a84;
  border: 2px solid #021a84;
  padding: 12px 35px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-all-btn:hover {
  background: #021a84;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 26, 132, 0.3);
}

.view-all-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .events-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .main-event .event-image {
    height: 220px;
  }

  .main-event .event-content {
    padding: 20px;
  }

  .main-event .event-title {
    font-size: 1.3rem;
  }

  .main-event .event-actions {
    justify-content: center;
  }

  .side-event .event-image {
    height: 140px;
  }
}

@media (max-width: 576px) {
  .events-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .main-event .event-image {
    height: 180px;
  }

  .main-event .event-title {
    font-size: 1.2rem;
  }

  .side-event .event-content {
    padding: 15px;
  }
}

.wings-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-title {
  color: #021a84;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 2.2rem;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wing-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  /* border-top: 4px solid #006007; */
  position: relative;
  overflow: hidden;
}

.wing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* .wing-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #021a84, #006007);
    transform: scaleX(0);
    transition: transform 0.3s ease;
} */

.wing-card:hover:before {
  transform: scaleX(1);
}

.wing-icon {
  text-align: center;
  margin-bottom: 25px;
}

.wing-icon img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 7px;
}

.wing-title {
  color: #021a84;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.wing-description {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.wing-features {
  list-style: none;
  
  margin-bottom: 25px;
}

.wing-features li {
  padding: 8px 0;
  color: #495057;
  display: flex;
  align-items: flex-start;
}

.wing-features li i {
  color: #006007;
  margin-right: 10px;
  margin-top: 3px;
  font-size: 0.9rem;
}

.wing-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.wings-section .stat {
  text-align: center;
  flex: 1;
}

.wings-section .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #021a84;
  line-height: 1;
}

.wings-section .stat-label {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 5px;
}

.wings-section .wing-btn {
  display: inline-block;
  background: linear-gradient(135deg, #021a84, #006007);
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: center;
}

.wing-btn:hover {
  background: linear-gradient(135deg, #006007, #021a84);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 26, 132, 0.3);
}













.wing-features {
  
  
}

.wing-features li {
  position: relative;
  padding-left: 0px; /* space for the icon */
  color: #495057;
  padding: 8px 0;
}

/* Icon before each li */
.wing-features li::before {
  content: "\f00c"; /* Font Awesome check icon (solid) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* required for solid icons */
  color: #006007;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

















/* Responsive Design */
@media (max-width: 768px) {
  .wings-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .wing-card {
    padding: 20px;
    margin-bottom: 30px;
  }

  .wing-icon i {
    font-size: 3rem;
  }

  .wing-title {
    font-size: 1.2rem;
  }

  .wing-stats {
    flex-direction: column;
    gap: 10px;
  }

  .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .stat-number {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .wings-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .wing-card {
    padding: 15px;
  }
}

footer {
  position: relative;
  color: white;
}

.footer-background {
  background-image: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.footer-overlay {
  background: rgba(0, 0, 0, 0.75);
  padding: 60px 0 20px;
  position: relative;
  z-index: 1;
}

footer h5 {
  color: #e0a603;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
}

footer h5:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #006007;
}

footer p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  background: #e0a603;
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 166, 3, 0.3);
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
  padding-left: 15px;
}

.footer-links a:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #006007;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #e0a603;
  padding-left: 20px;
}

.footer-links a:hover:before {
  color: #e0a603;
  left: 5px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  color: #e0a603;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.contact-item strong {
  color: white;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.contact-item p {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Copyright */
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: #999;
}

.copyright p {
  margin-bottom: 5px;
  color: #999;
}

.copyright a {
  color: #e0a603;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Input Group */
.input-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.form-control {
  flex: 1;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control::placeholder {
  color: #ccc;
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: #e0a603;
}

.btn-success {
  background: #006007;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-success:hover {
  background: #004d05;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 96, 7, 0.3);
}

.header-center {
  display: flex;
}

.header-center img {
  height: 120px;
  width: 120px;
  margin: 0 20px;
  object-fit: cover;
  border-radius: 50%;
  /* box-shadow: #333; */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0f2e;
            color: #f0f0f0;
            line-height: 1.6;
        } */

.whats-new {
  padding: 80px 20px;
  background: linear-gradient(135deg, #021a84 0%, #0a0f2e 100%);
  position: relative;
  color: #f0f0f0;
  overflow: hidden;
}

.whats-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23006007' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.whats-new__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.whats-new__header {
  text-align: center;
  margin-bottom: 20px;
}

.whats-new__subtitle {
  color: #b0b8d0;
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.whats-new__slider {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.whats-new__slide {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whats-new__slide:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.whats-new__slide-image {
  /* height: 220px; */
  width: 100%;
  object-fit: cover;
}

.whats-new__slide-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.whats-new__slide-category {
  display: inline-block;
  background-color: var(--primary-blue);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.whats-new__slide-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.whats-new__slide-excerpt {
  color: #b0b8d0;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.whats-new__slide-date {
  color: var(--accent-yellow);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.whats-new__slide-date::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  margin-right: 8px;
}

/* Custom Pagination */
.whats-new__pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.whats-new__pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.whats-new__pagination-bullet--active {
  background-color: var(--accent-yellow);
  /* transform: scale(1.2); */
  width: 20px;
  border-radius: 50px;
}

/* Custom Navigation */
.whats-new__navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.whats-new__button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-yellow);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whats-new__button:hover {
  background-color: var(--accent-yellow);
  color: #021a84;
  /* transform: translateY(-3px); */
  box-shadow: 0 8px 20px rgba(224, 166, 3, 0.4);
}

.whats-new__button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .whats-new__slider {
    height: 480px;
  }
}

@media (max-width: 992px) {
  .whats-new__slider {
    height: 520px;
  }

  .whats-new__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .whats-new {
    padding: 60px 15px;
  }

  .whats-new__slider {
    height: 550px;
  }

  .whats-new__title {
    font-size: 2rem;
  }

  .whats-new__subtitle {
    font-size: 1.1rem;
  }

  .whats-new__slide-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .whats-new__slider {
    height: 580px;
  }

  .whats-new__slide-content {
    padding: 20px;
  }

  .whats-new__button {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .whats-new__slider {
    height: 620px;
  }

  .whats-new__title {
    font-size: 1.8rem;
  }

  .whats-new__subtitle {
    font-size: 1rem;
  }
}

.whats-new__navigation {
  position: absolute;
  top: 47%;
  left: 0;
  right: 0;
  /* transform: translateY(-50%); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.whats-new__button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-yellow);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  pointer-events: all;
}

.whats-new__button:hover {
  background-color: var(--accent-yellow);
  color: #021a84;
  /* transform: translateY(-3px); */
  box-shadow: 0 8px 20px rgba(224, 166, 3, 0.4);
}

.whats-new__button:active {
  transform: translateY(0);
}

/* Adjust for responsive design */
@media (max-width: 768px) {
  .whats-new__navigation {
    padding: 0 15px;
  }

  .whats-new__button {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .whats-new__navigation {
    padding: 0 10px;
  }

  .whats-new__button {
    width: 45px;
    height: 45px;
  }
}

.whats-new__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  position: relative;
  position: absolute;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.whats-new__button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-yellow);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.whats-new__button--prev {
  left: -80px;
  top: 50%;
}

.whats-new__button--next {
  right: -80px;
}

/* Adjust for responsive design */
@media (max-width: 1400px) {
  .whats-new__button--prev {
    left: -60px;
  }

  .whats-new__button--next {
    right: -60px;
  }
}

@media (max-width: 1200px) {
  .whats-new__button--prev {
    left: -40px;
  }

  .whats-new__button--next {
    right: -40px;
  }

  .whats-new__button {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 992px) {
  .whats-new__button--prev {
    left: -30px;
  }

  .whats-new__button--next {
    right: -30px;
  }
}

@media (max-width: 768px) {
  .whats-new__button--prev {
    left: -20px;
  }

  .whats-new__button--next {
    right: -20px;
  }

  .whats-new__button {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .whats-new__navigation {
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }

  .whats-new__button {
    position: static;
    transform: none;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.navbar-toggler {
  border: 2px solid #ffffff !important;
  background: transparent !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 24px !important;
  height: 24px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

/* For light background if needed */

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

.my-breadcum {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.my-breadcum__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bre.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.my-breadcum__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #13151394;
  opacity: 0.85;
  z-index: 2;
}

.my-breadcum__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 1200px;
}

.my-breadcum__heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.my-breadcum__subheading {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.my-breadcum__breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.my-breadcum__breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.my-breadcum__breadcrumb-item a {
  color: var(--accent-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.my-breadcum__breadcrumb-item a:hover {
  color: white;
  text-decoration: underline;
}

.my-breadcum__breadcrumb-item.active {
  color: white;
  font-weight: 600;
}

.my-breadcum__breadcrumb-separator {
  color: var(--accent-yellow);
  margin: 0 0.5rem;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .my-breadcum {
    height: 300px;
  }

  .my-breadcum__heading {
    font-size: 2.5rem;
  }

  .my-breadcum__subheading {
    font-size: 1.2rem;
  }

  .my-breadcum__breadcrumb-item {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .my-breadcum {
    height: 250px;
  }

  .my-breadcum__heading {
    font-size: 2rem;
  }

  .my-breadcum__subheading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .my-breadcum__breadcrumb {
    gap: 0.25rem;
  }

  .my-breadcum__breadcrumb-item {
    font-size: 0.9rem;
  }

  .my-breadcum__breadcrumb-separator {
    margin: 0 0.25rem;
  }
}

@media (max-width: 360px) {
  .my-breadcum {
    height: 200px;
  }

  .my-breadcum__heading {
    font-size: 1.75rem;
  }

  .my-breadcum__subheading {
    font-size: 0.9rem;
  }

  .my-breadcum__breadcrumb {
    flex-direction: column;
    gap: 0.5rem;
  }
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

/* Sidebar Styles */
.sidebar-wrapper {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-nav {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 25px;
}

.sidebar-nav .nav-link {
  padding: 15px 20px;
  color: var(--dark-text);
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.sidebar-nav .nav-link i {
  margin-right: 10px;
  color: var(--primary-green);
  width: 20px;
  text-align: center;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background-color: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  font-weight: 600;
}

.sidebar-nav .nav-link:last-child {
  border-bottom: none;
}

.poster-card {
  background-image: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  color: white;
  padding: 30px 20px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.poster-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.poster-card > * {
  position: relative;
  z-index: 2;
}

.poster-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.poster-card p {
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

.call-btn {
  background-color: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-btn:hover {
  background-color: #d19402;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 166, 3, 0.3);
  color: var(--dark-text);
}

.call-btn i {
  margin-right: 8px;
}

/* Main Content Styles */
.who-we-are-inn {
  background: white;
  border-radius: 10px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  padding: 30px;
  margin-bottom: 30px;
}

.who-we-are-inn__header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-green);
}

.who-we-are-inn__title {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 10px;
}

.who-we-are-inn__subtitle {
  color: var(--light-text);
  font-size: 1.1rem;
}

.who-we-are-inn__content-section {
  margin-bottom: 40px;
}

.who-we-are-inn__section-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.who-we-are-inn__section-title i {
  margin-right: 10px;
  color: var(--primary-green);
}

.who-we-are-inn__text {
  margin-bottom: 20px;
  text-align: justify;
}

.who-we-are-inn__highlight-box {
  background-color: rgba(0, 96, 7, 0.05);
  border-left: 4px solid var(--primary-green);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
}

.who-we-are-inn__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.who-we-are-inn__stat-item {
  text-align: center;
  padding: 20px 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.who-we-are-inn__stat-item:hover {
  transform: translateY(-5px);
}

.who-we-are-inn__stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 5px;
}

.who-we-are-inn__stat-label {
  color: var(--light-text);
  font-size: 0.9rem;
}

.who-we-are-inn__values-list {
  list-style-type: none;
  padding-left: 0;
}

.who-we-are-inn__values-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
}

.who-we-are-inn__values-list li:last-child {
  border-bottom: none;
}

.who-we-are-inn__values-list i {
  color: var(--primary-green);
  margin-right: 10px;
  margin-top: 5px;
}



















.who-we-are-inn__values-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.who-we-are-inn__values-list li {
  position: relative;
  padding: 12px 0 12px 35px; /* space for icon */
  border-bottom: 1px solid #eee;
  color: #495057;
  line-height: 1.6;
}

.who-we-are-inn__values-list li:last-child {
  border-bottom: none;
}

.who-we-are-inn__values-list li::before {
  content: "\f058"; /* fa-check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-green, #006007);
  position: absolute;
  left: -22px;
  top: 17px;
  font-size: 1rem;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .sidebar-wrapper {
    position: static;
    margin-bottom: 30px;
  }

  .who-we-are-inn {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .who-we-are-inn__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-we-are-inn__stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .who-we-are-inn__stats {
    grid-template-columns: 1fr;
  }

  .who-we-are-inn {
    padding: 15px;
  }
}

.who-we-are-inn {
  background: white;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px; */
  margin-bottom: 00px;
  overflow: hidden;
}

.who-we-are-inn__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-green);
  position: relative;
}

.who-we-are-inn__header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--accent-yellow);
}

.who-we-are-inn__title {
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.who-we-are-inn__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.who-we-are-inn__subtitle {
  color: var(--light-text);
  font-size: 1.2rem;
  max-width: 800px;
}

.who-we-are-inn__content-section {
  margin-bottom: 80px;

  position: relative;
}

.who-we-are-inn__section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 2px dashed #eaeaea;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.who-we-are-inn__section-title i {
  margin-right: 15px;
  color: var(--primary-green);
  background: rgba(0, 96, 7, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are-inn__text {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
}

.who-we-are-inn__highlight-box {
  background: linear-gradient(
    135deg,
    rgba(0, 96, 7, 0.05) 0%,
    rgba(2, 26, 132, 0.05) 100%
  );
  border-left: 5px solid var(--primary-green);
  padding: 25px;
  border-radius: 0 10px 10px 0;
  margin: 80px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.who-we-are-inn__highlight-box::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: rgba(0, 96, 7, 0.1);
  z-index: 0;
}

.who-we-are-inn__highlight-box p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark-text);
}

.who-we-are-inn__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.who-we-are-inn__stat-item {
  text-align: center;
  padding: 20px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.who-we-are-inn__stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  /* background: linear-gradient(90deg, var(--primary-green), var(--primary-blue)); */
}

.who-we-are-inn__stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.who-we-are-inn__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.who-we-are-inn__stat-label {
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 500;
}

.who-we-are-inn__values-list {
  list-style-type: none;
  padding-left: 0;
}

.who-we-are-inn__values-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.who-we-are-inn__values-list li:hover {
  background: rgba(0, 96, 7, 0.03);
  padding-left: 10px;
  border-radius: 5px;
}

.who-we-are-inn__values-list li:last-child {
  border-bottom: none;
}

.who-we-are-inn__values-list i {
  color: var(--primary-green);
  margin-right: 15px;
  margin-top: 5px;
  font-size: 1.2rem;
}

.who-we-are-inn__image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  /* margin: 25px 0; */
  transition: all 0.4s ease;
  /* height: 100%; */
}

.who-we-are-inn__image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.who-we-are-inn__image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.who-we-are-inn__image-card:hover img {
  transform: scale(1.05);
}

.who-we-are-inn__image-card-body {
  padding: 20px;
  background: white;
}

.who-we-are-inn__image-card-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.who-we-are-inn__image-card-text {
  color: var(--light-text);
  font-size: 0.95rem;
}

.who-we-are-inn__timeline {
  position: relative;
  margin: 0 0 100px 0;
}

.who-we-are-inn__timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-green);
  border-radius: 3px;
}

.who-we-are-inn__timeline-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.who-we-are-inn__timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 96, 7, 0.3);
}

.who-we-are-inn__timeline-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  flex-grow: 1;
  border-left: 3px solid var(--accent-yellow);
}

.who-we-are-inn__timeline-year {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.who-we-are-inn__timeline-title {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.who-we-are-inn__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.who-we-are-inn__team-member {
  text-align: center;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.who-we-are-inn__team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.who-we-are-inn__team-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-green);
}

.who-we-are-inn__team-info {
  padding: 20px;
}

.who-we-are-inn__team-name {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.who-we-are-inn__team-role {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.who-we-are-inn__team-desc {
  color: var(--light-text);
  font-size: 0.9rem;
}

.who-we-are-inn__cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.who-we-are-inn__cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.who-we-are-inn__cta-content {
  position: relative;
  z-index: 1;
}

.who-we-are-inn__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.who-we-are-inn__cta-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.who-we-are-inn__cta-button {
  background: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.who-we-are-inn__cta-button:hover {
  background: #d19402;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 166, 3, 0.4);
  color: var(--dark-text);
}

.who-we-are-inn__cta-button i {
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .who-we-are-inn {
    padding: 30px;
  }

  .who-we-are-inn__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .who-we-are-inn {
    padding: 25px;
  }

  .who-we-are-inn__title {
    font-size: 2rem;
  }

  .who-we-are-inn__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-we-are-inn__team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .who-we-are-inn {
    padding: 20px;
  }

  .who-we-are-inn__title {
    font-size: 1.8rem;
  }

  .who-we-are-inn__stats {
    grid-template-columns: 1fr;
  }

  .who-we-are-inn__team-grid {
    grid-template-columns: 1fr;
  }

  .who-we-are-inn__cta-section {
    padding: 30px 20px;
  }

  .who-we-are-inn__cta-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .who-we-are-inn {
    padding: 15px;
    border-radius: 10px;
  }

  .who-we-are-inn__title {
    font-size: 1.6rem;
  }

  .who-we-are-inn__section-title {
    font-size: 1.3rem;
  }

  .who-we-are-inn__stat-number {
    font-size: 2.5rem;
  }
}

.mis-vis-inn {
  background: white;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  padding: 30px;
  padding-top: 0;
  margin-bottom: 30px;
  overflow: hidden;
}

.mis-vis-inn__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-green);
  position: relative;
  text-align: center;
}

.mis-vis-inn__header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-yellow);
}

.mis-vis-inn__title {
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.mis-vis-inn__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.mis-vis-inn__subtitle {
  color: var(--light-text);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.mis-vis-inn__mission-section {
  background: linear-gradient(
    135deg,
    rgba(0, 96, 7, 0.03) 0%,
    rgba(2, 26, 132, 0.03) 100%
  );
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.mis-vis-inn__mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  /* height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-green),
    var(--primary-blue)
  ); */
}

.mis-vis-inn__section-title {
  color: var(--primary-blue);
  font-weight: 700;
  /* margin-bottom: 25px; */
  display: flex;
  align-items: center;
  font-size: 1.8rem;
}

.mis-vis-inn__section-title i {
  margin-right: 15px;
  color: var(--primary-green);
  background: rgba(0, 96, 7, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.mis-vis-inn__mission-statement {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.mis-vis-inn__mission-statement::before,
.mis-vis-inn__mission-statement::after {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-green);
  opacity: 0.3;
  font-size: 2rem;
  position: absolute;
  top: 0;
}

.mis-vis-inn__mission-statement::before {
  left: 0;
}

.mis-vis-inn__mission-statement::after {
  right: 0;
  content: "\f10e";
}

.mis-vis-inn__mission-text {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark-text);
}

.mis-vis-inn__vision-section {
  background: linear-gradient(
    135deg,
    rgba(2, 26, 132, 0.03) 0%,
    rgba(0, 96, 7, 0.03) 100%
  );
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.mis-vis-inn__vision-statement {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.mis-vis-inn__vision-statement::before,
.mis-vis-inn__vision-statement::after {
  content: "\f06e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-blue);
  opacity: 0.3;
  font-size: 2rem;
  position: absolute;
  top: 0;
}

.mis-vis-inn__vision-statement::before {
  left: 0;
}

.mis-vis-inn__vision-statement::after {
  right: 0;
}

.mis-vis-inn__vision-text {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark-text);
}

.mis-vis-inn__goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 15px;
  margin: 35px 0 80px;
}

.mis-vis-inn__goal-card {
  background: white;
  border-radius: 8px;
  padding: 30px 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid var(--primary-green);
  border-bottom: 5px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.mis-vis-inn__goal-card:nth-child(2) {
  border-top-color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.mis-vis-inn__goal-card:nth-child(3) {
  border-top-color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}

.mis-vis-inn__goal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mis-vis-inn__goal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.mis-vis-inn__goal-card:nth-child(2) .mis-vis-inn__goal-icon {
  background: rgba(2, 26, 132, 0.1);
  color: var(--primary-blue);
}

.mis-vis-inn__goal-card:nth-child(3) .mis-vis-inn__goal-icon {
  background: rgba(224, 166, 3, 0.1);
  color: var(--accent-yellow);
}

.mis-vis-inn__goal-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.mis-vis-inn__goal-text {
  color: var(--light-text);
  line-height: 1.6;
}

.mis-vis-inn__image-section {
  margin: 40px 0;
}

.mis-vis-inn__image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  transition: all 0.4s ease;
  height: 100%;
}

.mis-vis-inn__image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mis-vis-inn__image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mis-vis-inn__image-card:hover img {
  transform: scale(1.05);
}

.mis-vis-inn__image-card-body {
  padding: 20px;
  background: white;
}

.mis-vis-inn__image-card-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.mis-vis-inn__image-card-text {
  color: var(--light-text);
  font-size: 0.95rem;
}

.mis-vis-inn__timeline {
  position: relative;
  margin: 20px 0 0px;
  padding-left: 30px;
}

.mis-vis-inn__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--primary-green),
    var(--primary-blue)
  );
  border-radius: 3px;
}

.mis-vis-inn__timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.mis-vis-inn__timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-green);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-green);
}

.mis-vis-inn__timeline-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-yellow);
}

.mis-vis-inn__timeline-year {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.mis-vis-inn__timeline-title {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.mis-vis-inn__cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.mis-vis-inn__cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.mis-vis-inn__cta-content {
  position: relative;
  z-index: 1;
}

.mis-vis-inn__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.mis-vis-inn__cta-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.mis-vis-inn__cta-button {
  background: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mis-vis-inn__cta-button:hover {
  background: #d19402;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 166, 3, 0.4);
  color: var(--dark-text);
}

.mis-vis-inn__cta-button i {
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .mis-vis-inn {
    padding: 30px;
  }

  .mis-vis-inn__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .mis-vis-inn {
    padding: 25px;
  }

  .mis-vis-inn__title {
    font-size: 2rem;
  }

  .mis-vis-inn__goals-grid {
    grid-template-columns: 1fr;
  }

  .mis-vis-inn__mission-section,
  .mis-vis-inn__vision-section {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .mis-vis-inn {
    padding: 20px;
  }

  .mis-vis-inn__title {
    font-size: 1.8rem;
  }

  .mis-vis-inn__mission-statement,
  .mis-vis-inn__vision-statement {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .mis-vis-inn__section-title {
    font-size: 1.5rem;
  }

  .mis-vis-inn__cta-section {
    padding: 40px 20px;
  }

  .mis-vis-inn__cta-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .mis-vis-inn {
    padding: 15px;
    border-radius: 10px;
  }

  .mis-vis-inn__title {
    font-size: 1.6rem;
  }

  .mis-vis-inn__section-title {
    font-size: 1.3rem;
  }

  .mis-vis-inn__mission-section,
  .mis-vis-inn__vision-section {
    padding: 20px 15px;
  }

  .mis-vis-inn__goal-card {
    padding: 20px;
  }

  .mis-vis-inn__timeline-content {
    padding: 20px;
  }
}

.org-str {
  /* background: white; */
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  /* padding: 30px; */
  margin-bottom: 30px;
  overflow: hidden;
}

.org-str__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-green);
  position: relative;
  text-align: center;
}

.org-str__header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-yellow);
}

.org-str__title {
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.org-str__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.org-str__subtitle {
  color: var(--light-text);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.org-str__hierarchy {
  /* background: linear-gradient(
    135deg,
    rgba(0, 96, 7, 0.03) 0%,
    rgba(2, 26, 132, 0.03) 100%
  );
  border-radius: 15px;
  padding: 40px; */
  /* margin-bottom: 40px; */
  position: relative;
  overflow: hidden;
}

.org-str__section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
}

.org-str__section-title i {
  margin-right: 10px;
  color: var(--primary-green);
  background: rgba(0, 96, 7, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.org-str__org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 0;
  position: relative;
}

.org-str__level {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;
  position: relative;
}

.org-str__level::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 25px;
  background: var(--primary-green);
}

.org-str__level:last-child::before {
  display: none;
}

.org-str__node {
  background: white;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-width: 250px;
  max-width: 275px;
  transition: all 0.4s ease;
  border-top: 5px solid var(--primary-green);
  position: relative;
}

.org-str__node:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.org-str__node--main {
  border-top-color: var(--primary-blue);
  min-width: 300px;
}

.org-str__node-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
}

.org-str__node--main .org-str__node-icon {
  background: rgba(2, 26, 132, 0.1);
  color: var(--primary-blue);
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

.org-str__node-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.org-str__node--main .org-str__node-title {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.org-str__node-desc {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.org-str__committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.org-str__committee-card {
  background: white;
  border-radius: 7px;
  padding: 30px 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid var(--primary-green);
  border-bottom: 5px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.org-str__committee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.org-str__committee-card:nth-child(2) {
  border-top-color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.org-str__committee-card:nth-child(3) {
  border-top-color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}

.org-str__committee-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.org-str__committee-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.org-str__committee-card:nth-child(2) .org-str__committee-icon {
  background: rgba(2, 26, 132, 0.1);
  color: var(--primary-blue);
}

.org-str__committee-card:nth-child(3) .org-str__committee-icon {
  background: rgba(224, 166, 3, 0.1);
  color: var(--accent-yellow);
}

.org-str__committee-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.org-str__committee-count {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.org-str__committee-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.org-str__committee-item {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.org-str__committee-item:last-child {
  border-bottom: none;
}









.org-str__committee-item i {
  color: var(--primary-green);
  margin-right: 10px;
  font-size: 0.8rem;
}








.org-str__committee-list li{
  list-style: none;
  padding: 0;
  margin: 0;
}

.org-str__committee-list ul{
  padding-left: 0;
}

.org-str__committee-list li {
  position: relative;
  padding: 10px 0 10px 20px; /* space for icon */
  border-bottom: 1px solid #f0f0f0;
  color: #495057;
  font-weight: 500;
  line-height: 1.6;
}

.org-str__committee-list li:last-child {
  border-bottom: none;
}

.org-str__committee-list li::before {
  content: "\f058"; /* fa-check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-green, #006007);
  position: absolute;
  left: 0;
  top:12px;
  /* transform: translateY(-50%); */
  font-size: 0.9rem;
}


















.org-str__stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0 40px 0;
}

.org-str__stat-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.org-str__stat-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.org-str__stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 8px;
}

.org-str__stat-label {
  color: var(--light-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.org-str__image-section {
  margin: 40px 0;
}

.org-str__image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  transition: all 0.4s ease;
  height: 100%;
}

.org-str__image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.org-str__image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.org-str__image-card:hover img {
  transform: scale(1.05);
}

.org-str__image-card-body {
  padding: 20px;
  background: white;
}

.org-str__image-card-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.org-str__image-card-text {
  color: var(--light-text);
  font-size: 0.95rem;
}

.org-str__coordinators {
  background: linear-gradient(
    135deg,
    rgba(2, 26, 132, 0.03) 0%,
    rgba(0, 96, 7, 0.03) 100%
  );
  border-radius: 15px;
  padding: 40px;
  margin: 20px 0 80px;
}

.org-str__coordinator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.org-str__coordinator-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.org-str__coordinator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.org-str__coordinator-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 4px solid var(--primary-green);
}

.org-str__coordinator-name {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.org-str__coordinator-role {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.org-str__coordinator-desc {
  color: var(--light-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.org-str__cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.org-str__cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.org-str__cta-content {
  position: relative;
  z-index: 1;
}

.org-str__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.org-str__cta-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.org-str__cta-button {
  background: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.org-str__cta-button:hover {
  background: #d19402;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 166, 3, 0.4);
  color: var(--dark-text);
}

.org-str__cta-button i {
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .org-str {
    padding: 30px;
  }

  .org-str__title {
    font-size: 2.2rem;
  }

  .org-str__node {
    min-width: 220px;
  }
}

@media (max-width: 991.98px) {
  .org-str {
    padding: 25px;
  }

  .org-str__title {
    font-size: 2rem;
  }

  .org-str__level {
    gap: 20px;
  }

  .org-str__node {
    min-width: 200px;
    padding: 20px 15px;
  }

  .org-str__committee-grid {
    grid-template-columns: 1fr;
  }

  .org-str__hierarchy,
  .org-str__coordinators {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .org-str {
    padding: 20px;
  }

  .org-str__title {
    font-size: 1.8rem;
  }

  .org-str__section-title {
    font-size: 1.5rem;
  }

  .org-str__level {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .org-str__node {
    min-width: 100%;
    max-width: 100%;
  }

  .org-str__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .org-str__coordinator-grid {
    grid-template-columns: 1fr;
  }

  .org-str__cta-section {
    padding: 40px 20px;
  }

  .org-str__cta-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .org-str {
    padding: 15px;
    border-radius: 10px;
  }

  .org-str__title {
    font-size: 1.6rem;
  }

  .org-str__section-title {
    font-size: 1.3rem;
  }

  .org-str__hierarchy,
  .org-str__coordinators {
    padding: 20px 15px;
  }

  .org-str__node {
    padding: 15px;
  }

  .org-str__stats-grid {
    grid-template-columns: 1fr;
  }

  .org-str__stat-number {
    font-size: 2rem;
  }
}

.org-str__hierarchy {
  background: linear-gradient(
    135deg,
    rgba(0, 96, 7, 0.03) 0%,
    rgba(2, 26, 132, 0.03) 100%
  );
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

/* Sidebar Styles */
.sidebar-wrapper {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-nav {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 25px;
}

.sidebar-nav .nav-link {
  padding: 15px 20px;
  color: var(--dark-text);
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.sidebar-nav .nav-link i {
  margin-right: 10px;
  color: var(--primary-green);
  width: 20px;
  text-align: center;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background-color: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  font-weight: 600;
}

.sidebar-nav .nav-link:last-child {
  border-bottom: none;
}

.poster-card {
  background-image: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  color: white;
  padding: 30px 20px;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.poster-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.poster-card > * {
  position: relative;
  z-index: 2;
}

.poster-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.poster-card p {
  margin-bottom: 20px;
  font-size: 1rem;
  opacity: 0.9;
}

.call-btn {
  background-color: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-btn:hover {
  background-color: #d19402;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 166, 3, 0.3);
  color: var(--dark-text);
}

.call-btn i {
  margin-right: 8px;
}

/* RBC Content Styles */
.rbc-inn {
  background: white;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  padding: 30px;
  margin-bottom: 0px;
  overflow: hidden;
}

.rbc-inn__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-green);
  position: relative;
}

.rbc-inn__header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--accent-yellow);
}

.rbc-inn__title {
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.rbc-inn__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.rbc-inn__subtitle {
  color: var(--light-text);
  font-size: 1.2rem;
  max-width: 800px;
}

.rbc-inn__content-section {
  margin-bottom: 50px;
  position: relative;
}

.rbc-inn__section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #eaeaea;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.rbc-inn__section-title i {
  margin-right: 15px;
  color: var(--primary-green);
  background: rgba(0, 96, 7, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rbc-inn__text {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
}

.rbc-inn__highlight-box {
  background: linear-gradient(
    135deg,
    rgba(0, 96, 7, 0.05) 0%,
    rgba(2, 26, 132, 0.05) 100%
  );
  border-left: 5px solid var(--primary-green);
  padding: 25px;
  border-radius: 0 10px 10px 0;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.rbc-inn__highlight-box::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: rgba(0, 96, 7, 0.1);
  z-index: 0;
}

.rbc-inn__highlight-box p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark-text);
}

.rbc-inn__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.rbc-inn__stat-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.rbc-inn__stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border: 5px solid
    linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.rbc-inn__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.rbc-inn__stat-label {
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 500;
}

.rbc-inn__functions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.rbc-inn__function-card {
  background: white;
  border-radius: 7px;
  padding: 30px 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid var(--primary-green);
  border-bottom: 5px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.rbc-inn__function-card:nth-child(2) {
  border-top-color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.rbc-inn__function-card:nth-child(3) {
  border-top-color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}

.rbc-inn__function-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.rbc-inn__function-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.rbc-inn__function-card:nth-child(2) .rbc-inn__function-icon {
  background: rgba(2, 26, 132, 0.1);
  color: var(--primary-blue);
}

.rbc-inn__function-card:nth-child(3) .rbc-inn__function-icon {
  background: rgba(224, 166, 3, 0.1);
  color: var(--accent-yellow);
}

.rbc-inn__function-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.rbc-inn__function-text {
  color: var(--light-text);
  line-height: 1.6;
}

.rbc-inn__image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  transition: all 0.4s ease;
}

.rbc-inn__image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.rbc-inn__image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rbc-inn__image-card:hover img {
  transform: scale(1.05);
}

.rbc-inn__image-card-body {
  padding: 20px;
  background: white;
}

.rbc-inn__image-card-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.rbc-inn__image-card-text {
  color: var(--light-text);
  font-size: 0.95rem;
}

.rbc-inn__process-steps {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
}

.rbc-inn__process-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--primary-green),
    var(--primary-blue)
  );
  border-radius: 3px;
}

.rbc-inn__process-step {
  margin-bottom: 30px;
  position: relative;
}

.rbc-inn__process-step::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-green);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-green);
}

.rbc-inn__process-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-yellow);
}

.rbc-inn__process-number {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.rbc-inn__process-title {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.rbc-inn__cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.rbc-inn__cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.rbc-inn__cta-content {
  position: relative;
  z-index: 1;
}

.rbc-inn__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.rbc-inn__cta-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.rbc-inn__cta-button {
  background: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.rbc-inn__cta-button:hover {
  background: #d19402;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 166, 3, 0.4);
  color: var(--dark-text);
}

.rbc-inn__cta-button i {
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .sidebar-wrapper {
    position: static;
    margin-bottom: 30px;
  }

  .rbc-inn {
    padding: 30px;
  }

  .rbc-inn__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .rbc-inn {
    padding: 25px;
  }

  .rbc-inn__title {
    font-size: 2rem;
  }

  .rbc-inn__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .rbc-inn__functions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .rbc-inn {
    padding: 20px;
  }

  .rbc-inn__title {
    font-size: 1.8rem;
  }

  .rbc-inn__stats {
    grid-template-columns: 1fr;
  }

  .rbc-inn__section-title {
    font-size: 1.3rem;
  }

  .rbc-inn__cta-section {
    padding: 40px 20px;
  }

  .rbc-inn__cta-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .rbc-inn {
    padding: 15px;
    border-radius: 10px;
  }

  .rbc-inn__title {
    font-size: 1.6rem;
  }

  .rbc-inn__section-title {
    font-size: 1.2rem;
  }

  /* .rbc-inn__stat-number {
    font-size: 2.5rem;
  } */
}

/* BMC Content Styles */
.bmc-inn {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.bmc-inn__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-green);
  position: relative;
}

.bmc-inn__header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--accent-yellow);
}

.bmc-inn__title {
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.bmc-inn__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.bmc-inn__subtitle {
  color: var(--light-text);
  font-size: 1.2rem;
  max-width: 800px;
}

.bmc-inn__content-section {
  margin-bottom: 50px;
  position: relative;
}

.bmc-inn__section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #eaeaea;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.bmc-inn__section-title i {
  margin-right: 15px;
  color: var(--primary-green);
  background: rgba(0, 96, 7, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bmc-inn__text {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
}

.bmc-inn__highlight-box {
  background: linear-gradient(
    135deg,
    rgba(0, 96, 7, 0.05) 0%,
    rgba(2, 26, 132, 0.05) 100%
  );
  border-left: 5px solid var(--primary-green);
  padding: 25px;
  border-radius: 0 10px 10px 0;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.bmc-inn__highlight-box::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: rgba(0, 96, 7, 0.1);
  z-index: 0;
}

.bmc-inn__highlight-box p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark-text);
}

.bmc-inn__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.bmc-inn__stat-item {
  text-align: center;
  padding: 30px 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.bmc-inn__stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.bmc-inn__stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.bmc-inn__stat-label {
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 500;
}

.bmc-inn__functions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.bmc-inn__function-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.bmc-inn__function-card:nth-child(2) {
  border-top-color: var(--primary-blue);
}

.bmc-inn__function-card:nth-child(3) {
  border-top-color: var(--accent-yellow);
}

.bmc-inn__function-card:nth-child(4) {
  border-top-color: var(--accent-red);
}

.bmc-inn__function-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.bmc-inn__function-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.bmc-inn__function-card:nth-child(2) .bmc-inn__function-icon {
  background: rgba(2, 26, 132, 0.1);
  color: var(--primary-blue);
}

.bmc-inn__function-card:nth-child(3) .bmc-inn__function-icon {
  background: rgba(224, 166, 3, 0.1);
  color: var(--accent-yellow);
}

.bmc-inn__function-card:nth-child(4) .bmc-inn__function-icon {
  background: rgba(193, 52, 22, 0.1);
  color: var(--accent-red);
}

.bmc-inn__function-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.bmc-inn__function-text {
  color: var(--light-text);
  line-height: 1.6;
}

.bmc-inn__image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  transition: all 0.4s ease;
}

.bmc-inn__image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.bmc-inn__image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bmc-inn__image-card:hover img {
  transform: scale(1.05);
}

.bmc-inn__image-card-body {
  padding: 20px;
  background: white;
}

.bmc-inn__image-card-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.bmc-inn__image-card-text {
  color: var(--light-text);
  font-size: 0.95rem;
}

.bmc-inn__composition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.bmc-inn__composition-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.bmc-inn__composition-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.bmc-inn__composition-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.bmc-inn__composition-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.bmc-inn__composition-desc {
  color: var(--light-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.bmc-inn__success-story {
  background: linear-gradient(
    135deg,
    rgba(2, 26, 132, 0.03) 0%,
    rgba(0, 96, 7, 0.03) 100%
  );
  border-radius: 15px;
  padding: 30px;
  /* margin: 40px 0; */
  position: relative;
  overflow: hidden;
}

/* .bmc-inn__success-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-blue),
    var(--primary-green)
  );
} */

.bmc-inn__award-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-yellow);
  color: var(--dark-text);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bmc-inn__success-content {
  max-width: 800px;
}

.bmc-inn__success-title {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.bmc-inn__success-text {
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bmc-inn__caap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.bmc-inn__caap-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.bmc-inn__caap-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bmc-inn__caap-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.bmc-inn__caap-text {
  color: var(--dark-text);
  font-size: 0.95rem;
}

.bmc-inn__cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.bmc-inn__cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.bmc-inn__cta-content {
  position: relative;
  z-index: 1;
}

.bmc-inn__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.bmc-inn__cta-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.bmc-inn__cta-button {
  background: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.bmc-inn__cta-button:hover {
  background: #d19402;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 166, 3, 0.4);
  color: var(--dark-text);
}

.bmc-inn__cta-button i {
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .bmc-inn {
    padding: 30px;
  }

  .bmc-inn__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .bmc-inn {
    padding: 25px;
  }

  .bmc-inn__title {
    font-size: 2rem;
  }

  .bmc-inn__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .bmc-inn__functions-grid {
    grid-template-columns: 1fr;
  } */

  .bmc-inn__composition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .bmc-inn {
    padding: 20px;
  }

  .bmc-inn__title {
    font-size: 1.8rem;
  }

  .bmc-inn__stats {
    grid-template-columns: 1fr;
  }

  .bmc-inn__section-title {
    font-size: 1.3rem;
  }

  .bmc-inn__composition-grid {
    grid-template-columns: 1fr;
  }

  .bmc-inn__success-story {
    padding: 30px 20px;
  }

  .bmc-inn__cta-section {
    padding: 40px 20px;
  }

  .bmc-inn__cta-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .bmc-inn {
    padding: 15px;
    border-radius: 10px;
  }

  .bmc-inn__title {
    font-size: 1.6rem;
  }

  .bmc-inn__section-title {
    font-size: 1.2rem;
  }

  /* .bmc-inn__stat-number {
    font-size: 2.5rem;
  } */

  .bmc-inn__function-card {
    padding: 20px;
  }
}

.pbr-inn {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.pbr-inn__header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-green);
  position: relative;
}

.pbr-inn__header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--accent-yellow);
}

.pbr-inn__title {
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.pbr-inn__title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.pbr-inn__subtitle {
  color: var(--light-text);
  font-size: 1.2rem;
  max-width: 800px;
}

.pbr-inn__content-section {
  margin-bottom: 50px;
  position: relative;
}

.pbr-inn__section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #eaeaea;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.pbr-inn__section-title i {
  margin-right: 15px;
  color: var(--primary-green);
  background: rgba(0, 96, 7, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pbr-inn__text {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
}

.pbr-inn__highlight-box {
  background: linear-gradient(
    135deg,
    rgba(0, 96, 7, 0.05) 0%,
    rgba(2, 26, 132, 0.05) 100%
  );
  border-left: 5px solid var(--primary-green);
  padding: 25px;
  border-radius: 0 10px 10px 0;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.pbr-inn__highlight-box::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: rgba(0, 96, 7, 0.1);
  z-index: 0;
}

.pbr-inn__highlight-box p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--dark-text);
}

.pbr-inn__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.pbr-inn__stat-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.pbr-inn__stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.pbr-inn__stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pbr-inn__stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.pbr-inn__stat-label {
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 500;
}

.pbr-inn__components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 35px 0;
}

.pbr-inn__component-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.pbr-inn__component-card:nth-child(2) {
  border-top-color: var(--primary-blue);
}

.pbr-inn__component-card:nth-child(3) {
  border-top-color: var(--accent-yellow);
}

.pbr-inn__component-card:nth-child(4) {
  border-top-color: var(--accent-red);
}

.pbr-inn__component-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.pbr-inn__component-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.pbr-inn__component-card:nth-child(2) .pbr-inn__component-icon {
  background: rgba(2, 26, 132, 0.1);
  color: var(--primary-blue);
}

.pbr-inn__component-card:nth-child(3) .pbr-inn__component-icon {
  background: rgba(224, 166, 3, 0.1);
  color: var(--accent-yellow);
}

.pbr-inn__component-card:nth-child(4) .pbr-inn__component-icon {
  background: rgba(193, 52, 22, 0.1);
  color: var(--accent-red);
}

.pbr-inn__component-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.pbr-inn__component-text {
  color: var(--light-text);
  line-height: 1.6;
}

.pbr-inn__image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  transition: all 0.4s ease;
  /* height: 100%; */
}

.pbr-inn__image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pbr-inn__image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pbr-inn__image-card:hover img {
  transform: scale(1.05);
}

.pbr-inn__image-card-body {
  padding: 20px;
  background: white;
}

.pbr-inn__image-card-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.pbr-inn__image-card-text {
  color: var(--light-text);
  font-size: 0.95rem;
}

.pbr-inn__process-steps {
  position: relative;
  margin: 40px 0;
  padding-left: 30px;
}

.pbr-inn__process-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--primary-green),
    var(--primary-blue)
  );
  border-radius: 3px;
}

.pbr-inn__process-step {
  margin-bottom: 30px;
  position: relative;
}

.pbr-inn__process-step::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-green);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-green);
}

.pbr-inn__process-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-yellow);
}

.pbr-inn__process-number {
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.pbr-inn__process-title {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.pbr-inn__digital-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.pbr-inn__feature-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pbr-inn__feature-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
}

.pbr-inn__feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 96, 7, 0.1);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.pbr-inn__feature-title {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.pbr-inn__feature-desc {
  color: var(--light-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pbr-inn__verification-badge {
  background: linear-gradient(
    135deg,
    rgba(2, 26, 132, 0.03) 0%,
    rgba(0, 96, 7, 0.03) 100%
  );
  border-radius: 15px;
  padding: 20px;
  /* margin: 40px 0; */
  position: relative;
  overflow: hidden;
  /* border-left: 5px solid var(--primary-blue); */
}

.pbr-inn__verification-badge::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: rgba(0, 96, 7, 0.1);
  z-index: 0;
}

.pbr-inn__verification-content {
  position: relative;
  z-index: 1;
}

.pbr-inn__verification-title {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pbr-inn__verification-title i {
  color: var(--accent-yellow);
}

.pbr-inn__verification-text {
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pbr-inn__update-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.pbr-inn__update-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.pbr-inn__update-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pbr-inn__update-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 5px;
}

.pbr-inn__update-label {
  color: var(--light-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.pbr-inn__cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 15px;
  padding: 50px 40px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.pbr-inn__cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.pbr-inn__cta-content {
  position: relative;
  z-index: 1;
}

.pbr-inn__cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.pbr-inn__cta-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.pbr-inn__cta-button {
  background: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.pbr-inn__cta-button:hover {
  background: #d19402;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(224, 166, 3, 0.4);
  color: var(--dark-text);
}

.pbr-inn__cta-button i {
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .pbr-inn {
    padding: 30px;
  }

  .pbr-inn__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  .pbr-inn {
    padding: 25px;
  }

  .pbr-inn__title {
    font-size: 2rem;
  }

  .pbr-inn__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .pbr-inn__components-grid {
    grid-template-columns: 1fr;
  } */

  .pbr-inn__digital-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .pbr-inn {
    padding: 20px;
  }

  .pbr-inn__title {
    font-size: 1.8rem;
  }

  .pbr-inn__stats {
    grid-template-columns: 1fr;
  }

  .pbr-inn__section-title {
    font-size: 1.3rem;
  }

  .pbr-inn__digital-features {
    grid-template-columns: 1fr;
  }

  .pbr-inn__verification-badge {
    padding: 30px 20px;
  }

  .pbr-inn__cta-section {
    padding: 40px 20px;
  }

  .pbr-inn__cta-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .pbr-inn {
    padding: 15px;
    border-radius: 10px;
  }

  .pbr-inn__title {
    font-size: 1.6rem;
  }

  .pbr-inn__section-title {
    font-size: 1.2rem;
  }

  .pbr-inn__stat-number {
    font-size: 2.5rem;
  }

  .pbr-inn__component-card {
    padding: 20px;
  }
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

.rul-reg-inn {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

.rul-reg-inn h2 {
  color: var(--primary-green);
  border-bottom: 2px solid var(--accent-yellow);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.rul-reg-inn h3 {
  color: var(--primary-blue);
  margin: 25px 0 15px;
  font-size: 1.4rem;
}

.rul-reg-inn p {
  margin-bottom: 15px;
  color: var(--dark-text);
}

.rul-reg-inn ul {
  /* margin-left: 20px; */
  margin-bottom: 20px;
}

.rul-reg-inn li {
  margin-bottom: 10px;
}

.rul-reg-inn .highlight {
  background-color: rgba(0, 96, 7, 0.1);
  padding: 15px;
  border-left: 4px solid var(--primary-green);
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

.rul-reg-inn table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.rul-reg-inn th {
  background-color: var(--primary-green);
  color: white;
  padding: 12px 15px;
  text-align: left;
}

.rul-reg-inn td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.rul-reg-inn tr:nth-child(even) {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  /* .container {
    padding: 10px;
  } */

  .rul-reg-inn {
    padding: 20px;
  }

  header h1 {
    font-size: 1.8rem;
  }
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

.publications-inn {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

.publications-inn h2 {
  color: var(--primary-green);
  border-bottom: 2px solid var(--accent-yellow);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.publications-inn h3 {
  color: var(--primary-blue);
  margin: 25px 0 15px;
  font-size: 1.4rem;
}

.publications-inn p {
  margin-bottom: 15px;
  color: var(--dark-text);
}

.publications-inn ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.publications-inn li {
  margin-bottom: 10px;
}

.publications-inn .highlight {
  background-color: rgba(0, 96, 7, 0.1);
  padding: 15px;
  border-left: 4px solid var(--primary-green);
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.publication-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fff;
}

.publication-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.publication-card h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.publication-card .pub-type {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--dark-text);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.publication-card .pub-year {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.publication-card .btn {
  display: inline-block;
  background-color: var(--primary-green);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.publication-card .btn:hover {
  background-color: var(--primary-blue);
}

.research-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.research-table th {
  background-color: var(--primary-green);
  color: white;
  padding: 12px 15px;
  text-align: left;
}

.research-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}

.research-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  /* .container {
    padding: 10px;
  } */

  .publications-inn {
    padding: 20px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .publications-grid {
    grid-template-columns: 1fr;
  }
}

.events-section-inn .event-image img {
  height: 200px !important;
}

.events-section-inn .event-image {
  height: 200px;
  overflow: hidden;
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

.events-view-inn {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
}

.events-view-inn .main-content {
  padding: 30px 15px;
}

.events-view-inn .blog-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.events-view-inn .blog-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.events-view-inn .blog-paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.events-view-inn .blog-list {
  margin-bottom: 30px;
  padding-left: 20px;
}

.events-view-inn .blog-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--dark-text);
}

/* .events-view-inn .image-row {
  margin-bottom: 30px;
} */

.events-view-inn .row-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.events-view-inn .image-description {
  margin-top: 15px;
  font-size: 0.95rem;
  color: var(--light-text);
  text-align: center;
}

.events-view-inn .sidebar {
  padding: 30px 20px;
  background-color: var(--light-bg);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.events-view-inn .sidebar-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 10px;
}

.events-view-inn .event-card {
  display: flex;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  text-decoration: none;
  color: inherit;
}

.events-view-inn .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.events-view-inn .event-image-container {
  width: 80px;
  flex-shrink: 0;
}

.events-view-inn .event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-view-inn .event-content {
  padding: 15px;
  flex-grow: 1;
}

.events-view-inn .event-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.events-view-inn .event-description {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 0;
  line-height: 1.4;
}

.events-view-inn .sticky-sidebar {
  position: sticky;
  top: 60px;
}

@media (max-width: 991px) {
  .events-view-inn .sticky-sidebar {
    position: relative;
    top: 100px;
    margin-top: 40px;
  }
}

.event-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .gallery-inn {
  padding: 2rem 0;
} */

.gallery-inn .gallery-item {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.gallery-inn .gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-inn .gallery-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* height: 100%; */
}

.gallery-inn .gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-inn .gallery-heading {
  padding: 1rem;
  text-align: center;
  background-color: #fff;
  margin: 0;
  font-weight: 600;
  color: #333;
}

.gallery-inn a {
  text-decoration: none;
  color: inherit;
}

.gallery-inn a:hover .gallery-heading {
  color: var(--primary-blue);
}

.gallery-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(2, 26, 132, 0.9) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.gallery-info p {
  color: #e0a603;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-btn {
  background: linear-gradient(135deg, #021a84, #006007);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gallery-btn:hover {
  background: linear-gradient(135deg, #006007, #021a84);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 26, 132, 0.3);
}

.gallery-btn:active {
  transform: translateY(0);
}

.gallery-item-hidden {
  display: none;
}

.gallery-item-visible {
  display: block;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fancybox Customization */
.fancybox__toolbar {
  background: rgba(0, 0, 0, 0.8);
}

.fancybox__nav {
  --f-button-color: #e0a603;
  --f-button-hover-color: #ffffff;
}

.fancybox__thumbs {
  --f-thumb-width: 80px;
  --f-thumb-height: 60px;
  --f-thumb-gap: 10px;
  --f-thumb-border-radius: 6px;
}

.fancybox__caption {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  color: white;
  font-size: 1rem;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-overlay {
    padding: 15px;
  }

  .gallery-info h5 {
    font-size: 1rem;
  }

  .gallery-info p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .gallery-item img {
    height: 180px;
  }
}

:root {
  --primary-blue: #021a84;
  --primary-green: #006007;
  --accent-yellow: #e0a603;
  --accent-red: #c13416;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
}

.contact-inn .contact-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-green)
  );
  color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-inn .contact-header h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-inn .contact-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-inn .contact-card {
  background-color: white;
  border-radius: 7px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
  /* height: 100%; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-green);
  border-bottom: 4px solid var(--primary-green);
}

.contact-inn .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-inn .contact-card.blue-card {
  border-top-color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.contact-inn .contact-card.yellow-card {
  border-top-color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}

.contact-inn .contact-card.red-card {
  border-top-color: var(--accent-red);
  border-bottom-color: var(--accent-red);
}

.contact-inn .contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.contact-inn .contact-card.blue-card .contact-icon {
  color: var(--primary-blue);
}

.contact-inn .contact-card.yellow-card .contact-icon {
  color: var(--accent-yellow);
}

.contact-inn .contact-card.red-card .contact-icon {
  color: var(--accent-red);
}

.contact-inn .contact-card h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.contact-inn .contact-card p {
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.contact-inn .contact-card a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-inn .contact-card a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.contact-inn .contact-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin-top: 2rem;
}

.contact-inn .contact-form h2 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-inn .form-label {
  font-weight: 600;
  color: var(--dark-text);
}

.contact-inn .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-inn .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(2, 26, 132, 0.15);
}

.contact-inn .btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-inn .btn-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.contact-inn .map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.contact-inn .map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-inn .contact-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  color: var(--light-text);
}

@media (max-width: 768px) {
  .contact-inn {
    padding: 1rem 0.5rem;
  }

  .contact-inn .contact-header {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .contact-inn .contact-form {
    padding: 1.5rem;
  }
}







@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}