@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

:root {
  --primary-green: #09793e;
  --primary-green-hover: #06542b;
  --primary-navy: #0c2b48;
  --primary-navy-hover: #071c30;
  --text-dark: #2a353d;
  --text-light: #64748b;
  --bg-light: #f4f7f5;
  --font-main: "Plus Jakarta Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Top & Navigation Styles */
.navbar {
  padding: 0rem 0;
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  z-index: 1000;
}

.navbar-brand img {
  max-height: 130px;
}

.navbar-brand .brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.navbar-brand .brand-subtext {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary-green);
  text-transform: uppercase;
}

/* Navbar Items */
.navbar-nav .nav-item {
  margin: 0 5px; /* Increase or decrease as needed */
}

/*==============================
NAVBAR LINKS
==============================*/

.navbar-nav .nav-link {
  position: relative;
  color: #222;
  font-weight: 600;
  padding: 30px 12px;
  transition: all 0.3s ease;
}

/* Hover & Active Text */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #2e7d32 !important;
}

/* Underline (Hidden by Default) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px; /* Distance from bottom */
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #2e7d32;
  border-radius: 50px;
}

/* Show underline on Hover */
.navbar-nav .nav-link:hover::after {
  width: 70%;
}

/* Show underline on Active Page */
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.btn-donate {
  background-color: var(--primary-green);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
}

.btn-donate:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(9, 121, 62, 0.25);
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  color: #fff;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.65) 25%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.1) 75%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/background/home2.png");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  padding: 160px 0;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  font-family: var(--font-main);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  max-width: 650px;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.btn-custom-green {
  background-color: var(--primary-green);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  border: 2px solid var(--primary-green);
  transition: all 0.3s ease;
}

.btn-custom-green:hover {
  background-color: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-custom-outline {
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-custom-outline:hover {
  background-color: #ffffff;
  color: var(--primary-navy);
  transform: translateY(-2px);
}

/* Stats Bar Widget */
.stats-wrapper {
  position: relative;
  margin-top: -65px;
  z-index: 10;
}

.stats-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 1.8rem 1rem;
}

.stat-item {
  text-align: center;
  border-right: 1px solid #eef2f5;
  padding: 0.5rem;
}

.stat-item:last-child {
  border-right: none;
}

/* Premium Icon */
.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1b8f3d, #2eb85c);
  color: #fff;
  font-size: 30px;
  box-shadow:
    0 10px 25px rgba(27, 143, 61, 0.35),
    inset 0 1px 3px rgba(255, 255, 255, 0.35);
  transition: all 0.35s ease;
}

.stat-number {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.1rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Global Headers */
.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

/* About Us Section */
.about-section {
  padding: 30px 0 75px 0;
}

.about-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-img-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-container:hover .about-img {
  transform: scale(1.03);
}

.key-initiatives {
  padding: 80px 0;
  background: #f8faf8;
}

.initiative-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: block;
}

.initiative-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  padding: 25px;
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.initiative-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.initiative-card img {
  width: 100%;
  height: 240px;
  border-radius: 10px;
  object-fit: cover;
}

.initiative-content {
  /*padding: 25px;*/
  margin-top: 15px;
}

.initiative-content h4 {
  color: #0b7a43;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.initiative-content p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.read-more {
  color: #0b7a43;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.initiative-card:hover .read-more {
  gap: 15px;
  transition: 0.3s;
}
.section-title {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1b2f4b;
  text-transform: uppercase;
  /*letter-spacing: 3px; */
  line-height: 1.2;
  margin-top: 18px;
  margin-bottom: 50px;
  text-align: center;
  /*font-family: "Poppins", sans-serif;*/
}
@media (max-width: 768px) {
  .initiative-card img {
    height: 200px;
  }

  .initiative-content {
    padding: 20px;
  }

  .initiative-content h4 {
    font-size: 20px;
  }
}
/* CTA Banner Section */
.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 380px;
  overflow: hidden;
  color: #fff;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 30%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.1) 80%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../images/background/home1.png");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  padding: 90px 0;
}

.cta-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 0;
}

/* Chairman & Events Section */
.chairman-events {
  background: #f5f7f5;
}

.info-box {
  background: #fff;
  border-radius: 15px;
  padding: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.section-heading {
  color: #1d6b3d;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.chairman-image {
  flex: 0 0 150px;
}

.chairman-image img {
  width: 150px;
  height: 262px;
  object-fit: cover;
}

.chairman-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.chairman-content h5 {
  font-weight: 700;
  color: #222;
}

.designation {
  color: #2b7e04;
  font-size: 14px;
}

.view-link {
  color: #1d6b3d;
  font-weight: 600;
  text-decoration: none;
}

.view-link:hover {
  color: #14502d;
}

.event-mini-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  margin-bottom: 12px;
}

.event-mini-card h6 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.event-mini-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 8px;
}

.event-mini-card span {
  color: #2b7e04;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */

@media (max-width: 991px) {
  .chairman-image {
    flex: 0 0 120px;
  }

  .chairman-image img {
    width: 120px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .info-box .d-flex {
    flex-direction: column;
  }

  .chairman-image {
    margin-bottom: 15px;
  }

  .chairman-image img {
    width: 100%;
    height: auto;
  }
}

/* Dark Badge Footer Bar */
.footer-badge-bar {
  background-color: #081d2f;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 10px;
  padding: 0.5rem;
}

.badge-icon {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

/* Main Footer Copyright styling */
.main-footer {
  background-color: #051421;
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-align: center;
}

/* Extra Responsive adjustments */
@media (max-width: 991px) {
  .stats-wrapper {
    margin-top: -30px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #eef2f5;
    padding: 1rem 0;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .about-img-container {
    margin-top: 2rem;
  }
}
/* footer */
.main-footer {
  background: #071d33;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer p {
  color: #cfd8dc;
  font-size: 15px;
  margin: 0;
}

.footer-links a {
  color: #cfd8dc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2db55d; /* Your theme green */
}

.footer-links span {
  color: #cfd8dc;
}

@media (max-width: 767px) {
  .footer-links {
    margin-top: 10px;
    text-align: center;
  }

  .main-footer p {
    text-align: center;
  }
}

/*==========================================
About page css
==========================================*/
:root {
  --about-primary: #09793e;
  --about-primary-hover: #06542b;
  --about-secondary: #0c2b48;
  --about-secondary-hover: #071c30;
  --about-text-dark: #1e293b;
  --about-text-muted: #64748b;
  --about-bg-light: #f8fafc;
  --about-bg-accent: #f0fdf4;
  --about-font-sans: "Plus Jakarta Sans", sans-serif;
  --about-font-serif: "Playfair Display", serif;
}

.about-pg-body {
  font-family: var(--about-font-sans);
  color: var(--about-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO BANNER */
.about-pg-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.75) 0%,
      rgba(12, 43, 72, 0.9) 100%
    ),
    url("../images/background/about.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px 0;
  color: #ffffff;
  text-align: center;
}

.about-pg-banner h1 {
  font-family: var(--about-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.about-pg-breadcrumbs {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.about-pg-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.about-pg-breadcrumbs a:hover {
  color: var(--about-primary);
}

.about-pg-breadcrumbs .active {
  color: rgba(255, 255, 255, 0.5);
}

/* Common Scoped Section Headers */
.about-pg-section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--about-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.about-pg-section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--about-secondary);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

/* Scoped Custom Component Buttons */
.about-pg-btn-green {
  background-color: var(--about-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.about-pg-btn-green:hover {
  background-color: var(--about-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 121, 62, 0.2);
}

.about-pg-btn-white {
  background-color: #ffffff;
  color: var(--about-secondary);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-pg-btn-white:hover {
  background-color: var(--about-secondary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(12, 43, 72, 0.15);
}

/* 2. ABOUT US DEEP DIVE SECTION */
.about-pg-intro-section {
  padding: 50px 0;
  position: relative;
}

.about-pg-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--about-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-pg-desc {
  font-size: 1rem;
  color: var(--about-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Overlapping Image Collage Layout */
.about-pg-collage-container {
  position: relative;
  padding-bottom: 60px;
}

.about-pg-collage-main {
  width: 80%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 8px solid #ffffff;
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.about-pg-collage-sub {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border: 6px solid #ffffff;
  overflow: hidden;
  z-index: 3;
}

.about-pg-collage-bg-pattern {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(
    var(--about-primary) 1.5px,
    transparent 1.5px
  );
  background-size: 15px 15px;
  opacity: 0.25;
  z-index: 1;
}

/* 3. VISION & MISSION SECTION */
.about-pg-vision-mission-section {
  background-color: var(--about-bg-light);
  padding: 30px 0;
  position: relative;
}

.about-pg-vm-card {
  background-color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.about-pg-vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--about-primary),
    var(--about-secondary)
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.about-pg-vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 43, 72, 0.08);
}

.about-pg-vm-card:hover::before {
  opacity: 1;
}

.about-pg-vm-icon {
  width: 70px;
  height: 70px;
  background-color: var(--about-bg-accent);
  color: var(--about-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.about-pg-vm-card:hover .about-pg-vm-icon {
  background-color: var(--about-primary);
  color: #ffffff;
  transform: rotateY(180deg);
}

.about-pg-vm-title {
  font-family: var(--about-font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--about-secondary);
  margin-bottom: 1.25rem;
}

.about-pg-vm-text {
  font-size: 0.98rem;
  color: var(--about-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* 4. WHY CHOOSE US */
.about-pg-why-choose-us {
  padding: 30px 0;
  background-color: #ffffff;
}

.about-pg-wcu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--about-bg-accent);
  color: var(--about-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-pg-wcu-feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 2.2rem;
  align-items: flex-start;
}

.about-pg-wcu-icon-box {
  width: 54px;
  height: 54px;
  background-color: var(--about-bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--about-primary);
  flex-shrink: 0;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-pg-wcu-feature-item:hover .about-pg-wcu-icon-box {
  background-color: var(--about-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.about-pg-wcu-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--about-secondary);
  margin-bottom: 0.5rem;
}

.about-pg-wcu-info p {
  font-size: 0.92rem;
  color: var(--about-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.about-pg-wcu-collage {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.about-pg-wcu-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pg-wcu-overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

/* 5. TEAM SECTION */
.about-pg-team-section {
  background-color: var(--about-bg-light);
  padding: 50px 0;
}

.about-pg-team-card {
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  border: none;
  height: 100%;
  transition: all 0.35s ease;
}

.about-pg-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(12, 43, 72, 0.08);
}

.about-pg-team-img-box {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.about-pg-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-pg-team-card:hover .about-pg-team-img {
  transform: scale(1.08);
}

/* Hover Overlay for Social Profiles */
.about-pg-team-social-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: linear-gradient(
    360deg,
    rgba(12, 43, 72, 0.9) 0%,
    rgba(12, 43, 72, 0.4) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 1.25rem 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.about-pg-team-card:hover .about-pg-team-social-overlay {
  bottom: 0;
  opacity: 1;
}

.about-pg-team-social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.about-pg-team-social-link:hover {
  background-color: var(--about-primary);
  color: #ffffff;
  transform: scale(1.15);
}

.about-pg-team-info {
  padding: 1.6rem;
  text-align: center;
}

.about-pg-team-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--about-secondary);
  margin-bottom: 0.3rem;
}

.about-pg-team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--about-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* 6. CALL TO ACTION (CTA) */
.about-pg-cta {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--about-secondary) 0%,
    var(--about-secondary-hover) 100%
  );
  padding: 100px 0;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

/* Ambient organic shape graphics inside CTA */
.about-pg-cta::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background-color: var(--about-primary);
  opacity: 0.12;
  border-radius: 50%;
  top: -100px;
  right: -100px;
  filter: blur(50px);
}

.about-pg-cta::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: #ffffff;
  opacity: 0.05;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: -50px;
  left: -50px;
  filter: blur(30px);
}

.about-pg-cta-title {
  font-family: var(--about-font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.about-pg-cta-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.85;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Quick modal styles for events tracking */
.about-toast-container {
  z-index: 1060;
}

@media (max-width: 768px) {
  .about-pg-vm-card {
    padding: 2.2rem 1.8rem;
  }
  .about-pg-collage-container {
    margin-top: 2rem;
  }
  .about-pg-wcu-collage {
    min-height: 280px;
    margin-top: 2rem;
  }
}
/*==========================================
contact page css
==========================================*/
:root {
  --contact-primary: #09793e;
  --contact-primary-hover: #06542b;
  --contact-secondary: #0c2b48;
  --contact-text-dark: #1e293b;
  --contact-text-muted: #64748b;
  --contact-bg-light: #f8fafc;
  --contact-bg-accent: #f0fdf4;
  --contact-border-color: #e2e8f0;
  --contact-font-sans: "Plus Jakarta Sans", sans-serif;
  --contact-font-serif: "Playfair Display", serif;
}

.contact-pg-body {
  font-family: var(--contact-font-sans);
  color: var(--contact-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO BANNER */
.contact-pg-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.8) 0%,
      rgba(12, 43, 72, 0.95) 100%
    ),
    url("../images/background/contact.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px 0;
  color: #ffffff;
  text-align: center;
}

.contact-pg-banner h1 {
  font-family: var(--contact-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact-pg-breadcrumbs {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.contact-pg-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-pg-breadcrumbs a:hover {
  color: var(--contact-primary);
}

.contact-pg-breadcrumbs .active {
  color: rgba(255, 255, 255, 0.5);
}

/* Common Section Headers */
.contact-pg-section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--contact-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.contact-pg-section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--contact-secondary);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

/* Scoped Custom Buttons */
.contact-pg-btn-green {
  background-color: var(--contact-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  width: 100%;
}

.contact-pg-btn-green:hover {
  background-color: var(--contact-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 121, 62, 0.25);
}

/* 2. CONTACT COLUMNS SECTION */
.contact-pg-main-section {
  padding: 90px 0;
  background-color: #ffffff;
}

/* Left Side Info Cards styling */
.contact-pg-info-pane {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-pg-info-card {
  background-color: #ffffff;
  border: 1px solid var(--contact-border-color);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-pg-info-card:hover {
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(12, 43, 72, 0.05);
  transform: translateY(-3px);
}

.contact-pg-info-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: var(--contact-bg-accent);
  color: var(--contact-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-pg-info-card:hover .contact-pg-info-icon-wrapper {
  background-color: var(--contact-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.contact-pg-info-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--contact-secondary);
  margin-bottom: 0.5rem;
}

.contact-pg-info-content p {
  font-size: 0.95rem;
  color: var(--contact-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-pg-info-content a {
  color: var(--contact-text-dark);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.contact-pg-info-content a:hover {
  color: var(--contact-primary);
}

/* Right Side Form Panel styling */
.contact-pg-form-container {
  background-color: var(--contact-bg-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-pg-form-group {
  margin-bottom: 1.5rem;
}

.contact-pg-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--contact-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.contact-pg-form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--contact-border-color);
  background-color: #ffffff;
  font-size: 0.95rem;
  color: var(--contact-text-dark);
  transition: all 0.3s ease;
}

.contact-pg-form-input:focus {
  outline: none;
  border-color: var(--contact-primary);
  box-shadow: 0 0 0 4px rgba(9, 121, 62, 0.12);
}

.contact-pg-form-input::placeholder {
  color: #a0aec0;
  opacity: 0.8;
}

/* 3. MAP SECTION */
.contact-pg-map-section {
  background-color: var(--contact-bg-light);
  padding: 0;
  position: relative;
}

.contact-pg-map-frame {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

.contact-pg-map-overlay {
  position: absolute;
  top: 40px;
  left: 50px;
  background-color: #ffffff;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  z-index: 10;
}

.contact-pg-map-overlay h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--contact-secondary);
  margin-bottom: 0.6rem;
}

.contact-pg-map-overlay p {
  font-size: 0.85rem;
  color: var(--contact-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact-pg-map-overlay-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--contact-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-pg-map-overlay-btn:hover {
  color: var(--contact-primary-hover);
  text-decoration: underline;
}

/* Toast notifications utility */
.contact-toast-container {
  z-index: 1060;
}

@media (max-width: 991px) {
  .contact-pg-form-container {
    margin-top: 3rem;
    padding: 2.2rem 1.8rem;
  }
  .contact-pg-map-overlay {
    position: static;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--contact-border-color);
  }
}

/*==========================================
Board of directors page css
==========================================*/
:root {
  --bod-primary: #09793e;
  --bod-primary-hover: #06542b;
  --bod-secondary: #0c2b48;
  --bod-secondary-hover: #071c30;
  --bod-text-dark: #1e293b;
  --bod-text-muted: #64748b;
  --bod-bg-light: #f8fafc;
  --bod-bg-accent: #f0fdf4;
  --bod-border-color: #e2e8f0;
  --bod-font-sans: "Plus Jakarta Sans", sans-serif;
  --bod-font-serif: "Playfair Display", serif;
}

.bod-pg-body {
  font-family: var(--bod-font-sans);
  color: var(--bod-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO BANNER */
.bod-pg-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.8) 0%,
      rgba(12, 43, 72, 0.95) 100%
    ),
    url("../images/background/board-of-directors-page.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px 0;
  color: #ffffff;
  text-align: center;
}

.bod-pg-banner h1 {
  font-family: var(--bod-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.bod-pg-breadcrumbs {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.bod-pg-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.bod-pg-breadcrumbs a:hover {
  color: var(--bod-primary);
}

.bod-pg-breadcrumbs .active {
  color: rgba(255, 255, 255, 0.45);
}

/* Common Scoped Section Headers */
.bod-pg-section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--bod-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.bod-pg-section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--bod-secondary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* 2. CORPORATE GOVERNANCE INTRO */
.bod-pg-intro-section {
  padding: 90px 0 60px 0;
  background-color: #ffffff;
}

.bod-pg-intro-card {
  background-color: var(--bod-bg-light);
  border: 1px solid var(--bod-border-color);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.bod-pg-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--bod-primary), var(--bod-secondary));
}

.bod-pg-intro-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bod-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bod-pg-intro-text {
  font-size: 0.98rem;
  color: var(--bod-text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* 3. DIRECTORS GRID CARDS */
.bod-pg-directors-section {
  padding: 60px 0 90px 0;
  background-color: #ffffff;
}

.bod-pg-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--bod-border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bod-pg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 43, 72, 0.08);
  border-color: transparent;
}

.bod-pg-img-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: var(--bod-bg-light);
}

.bod-pg-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bod-pg-card:hover .bod-pg-portrait {
  transform: scale(1.05);
}

/* Floating Interactive Elements inside Image */
.bod-pg-expertise-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--bod-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.45rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 5;
}

.bod-pg-social-cluster {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: linear-gradient(
    360deg,
    rgba(12, 43, 72, 0.9) 0%,
    rgba(12, 43, 72, 0) 100%
  );
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 1.5rem 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  z-index: 5;
}

.bod-pg-card:hover .bod-pg-social-cluster {
  bottom: 0;
  opacity: 1;
}

.bod-pg-social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}

.bod-pg-social-link:hover {
  background-color: var(--bod-primary);
  color: #ffffff;
  transform: scale(1.15);
}

/* Card Text Core Information */
.bod-pg-info {
  padding: 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bod-pg-name {
  font-family: var(--bod-font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bod-secondary);
  margin-bottom: 0.35rem;
}

.bod-pg-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bod-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.bod-pg-summary {
  font-size: 0.92rem;
  color: var(--bod-text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.bod-pg-btn-bio {
  background-color: var(--bod-bg-light);
  color: var(--bod-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--bod-border-color);
  transition: all 0.25s;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bod-pg-btn-bio:hover {
  background-color: var(--bod-secondary);
  color: #ffffff;
  border-color: var(--bod-secondary);
  transform: translateY(-2px);
}

/* 4. ADVISORY COUNCIL SECTION */
.bod-pg-advisor-section {
  background-color: var(--bod-bg-light);
  padding: 100px 0;
}

.bod-pg-adv-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--bod-border-color);
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s;
}

.bod-pg-adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border-color: rgba(9, 121, 62, 0.2);
}

.bod-pg-adv-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bod-bg-light);
  flex-shrink: 0;
}

.bod-pg-adv-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bod-secondary);
  margin-bottom: 0.2rem;
}

.bod-pg-adv-desc {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bod-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
}

.bod-pg-adv-bio {
  font-size: 0.85rem;
  color: var(--bod-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* 5. MODAL BIO STYLING */
.bod-pg-modal .modal-content {
  border-radius: 24px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.bod-pg-modal-header {
  background-color: var(--bod-secondary);
  color: #ffffff;
  padding: 2rem 2.5rem;
  border: none;
  position: relative;
}

.bod-pg-modal-header h4 {
  font-family: var(--bod-font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bod-pg-modal-header p {
  font-size: 0.85rem;
  font-weight: 700;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.bod-pg-modal-header .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: 0.8;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.bod-pg-modal-body {
  padding: 2.5rem;
  background-color: #ffffff;
}

.bod-pg-modal-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.bod-pg-modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bod-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bod-pg-modal-title i {
  color: var(--bod-primary);
}

.bod-pg-modal-text {
  font-size: 0.95rem;
  color: var(--bod-text-dark);
  line-height: 1.7;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .bod-pg-img-wrapper {
    height: 320px;
  }
  .bod-pg-intro-card {
    padding: 2rem;
  }
  .bod-pg-adv-card {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
  }
}
/*==========================================
events page css
==========================================*/
:root {
  --event-primary: #09793e;
  --event-primary-hover: #06542b;
  --event-secondary: #0c2b48;
  --event-secondary-hover: #071c30;
  --event-text-dark: #1e293b;
  --event-text-muted: #64748b;
  --event-bg-light: #f8fafc;
  --event-bg-accent: #f0fdf4;
  --event-border-color: #e2e8f0;
  --event-font-sans: "Plus Jakarta Sans", sans-serif;
  --event-font-serif: "Playfair Display", serif;
}

.event-pg-body {
  font-family: var(--event-font-sans);
  color: var(--event-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO BANNER */
.event-pg-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.8) 0%,
      rgba(12, 43, 72, 0.95) 100%
    ),
    url("../images/background/event-page.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px 0;
  color: #ffffff;
  text-align: center;
}

.event-pg-banner h1 {
  font-family: var(--event-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.event-pg-breadcrumbs {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.event-pg-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.event-pg-breadcrumbs a:hover {
  color: var(--event-primary);
}

.event-pg-breadcrumbs .active {
  color: rgba(255, 255, 255, 0.5);
}

/* Common Scoped Section Headers */
.event-pg-section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--event-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.event-pg-section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--event-secondary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* Scoped Buttons */
.event-pg-btn-green {
  background-color: var(--event-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.event-pg-btn-green:hover {
  background-color: var(--event-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(9, 121, 62, 0.2);
}

.event-pg-btn-outline {
  background-color: transparent;
  color: var(--event-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--event-secondary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.event-pg-btn-outline:hover {
  background-color: var(--event-secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* 2. FILTER CONTROLS */
.event-pg-filter-section {
  padding: 60px 0 30px 0;
  background-color: #ffffff;
}

.event-pg-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.event-pg-filter-btn {
  background-color: var(--event-bg-light);
  border: 1px solid var(--event-border-color);
  color: var(--event-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-pg-filter-btn:hover {
  background-color: var(--event-bg-accent);
  color: var(--event-primary);
  border-color: var(--event-primary);
  transform: translateY(-1px);
}

.event-pg-filter-btn.active {
  background-color: var(--event-primary);
  color: #ffffff;
  border-color: var(--event-primary);
  box-shadow: 0 6px 15px rgba(9, 121, 62, 0.2);
}

/* 3. EVENT GRID & CARDS */
.event-pg-grid-section {
  padding: 0 0 90px 0;
  background-color: #ffffff;
}

.event-pg-card {
  background-color: #ffffff;
  border: 1px solid var(--event-border-color);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.event-pg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(12, 43, 72, 0.08);
  border-color: transparent;
}

.event-pg-card-img-box {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.event-pg-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-pg-card:hover .event-pg-card-img {
  transform: scale(1.08);
}

/* Top Left Overlapping Date Badge */
.event-pg-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 5;
  min-width: 65px;
}

.event-pg-date-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--event-secondary);
  line-height: 1.1;
}

.event-pg-date-month {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--event-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Category Tag Overlapping Bottom Left */
.event-pg-cat-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--event-secondary);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.event-pg-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-pg-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--event-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
  min-height: 56px;
}

/* Meta Items Container (Location & Time) */
.event-pg-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-pg-meta-item {
  font-size: 0.88rem;
  color: var(--event-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-pg-meta-item i {
  color: var(--event-primary);
  font-size: 1rem;
}

.event-pg-card-desc {
  font-size: 0.92rem;
  color: var(--event-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Progress Bar for Community Targets */
.event-pg-target-box {
  background-color: var(--event-bg-light);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.event-pg-target-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--event-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.event-pg-progress {
  height: 6px;
  background-color: var(--event-border-color);
  border-radius: 10px;
  overflow: hidden;
}

.event-pg-progress-bar {
  background-color: var(--event-primary);
  border-radius: 10px;
  height: 100%;
}

.event-pg-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--event-border-color);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.event-pg-spots-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e11d48;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Custom Toast Container */
.event-toast-container {
  z-index: 1060;
}
/*==========================================
event-details page css
==========================================*/
:root {
  --evd-primary: #09793e;
  --evd-primary-hover: #06542b;
  --evd-secondary: #0c2b48;
  --evd-secondary-hover: #071c30;
  --evd-text-dark: #1e293b;
  --evd-text-muted: #64748b;
  --evd-bg-light: #f8fafc;
  --evd-bg-accent: #f0fdf4;
  --evd-border-color: #e2e8f0;
  --evd-warning: #f59e0b;
  --evd-font-sans: "Plus Jakarta Sans", sans-serif;
  --evd-font-serif: "Playfair Display", serif;
}

.ev-detail-pg-body {
  font-family: var(--evd-font-sans);
  color: var(--evd-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO BANNER */
.ev-detail-pg-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.85) 0%,
      rgba(12, 43, 72, 0.98) 100%
    ),
    url("../images/events/event_details_page.png");
  background-size: cover;
  background-position: center;
  padding: 110px 0 90px 0;
  color: #ffffff;
}

.ev-detail-pg-cat-tag {
  background-color: var(--evd-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.ev-detail-pg-banner h1 {
  font-family: var(--evd-font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.ev-detail-pg-breadcrumbs {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.ev-detail-pg-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.ev-detail-pg-breadcrumbs a:hover {
  color: var(--evd-primary);
}

.ev-detail-pg-breadcrumbs .active {
  color: rgba(255, 255, 255, 0.4);
}

/* Meta indicators in Banner */
.ev-detail-pg-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 1.8rem;
  font-size: 0.95rem;
}

.ev-detail-pg-banner-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.ev-detail-pg-banner-meta-item i {
  color: var(--evd-primary);
  font-size: 1.15rem;
}

/* 2. GRID DETAILS SECTION */
.ev-detail-pg-container-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Featured Cover Image */
.ev-detail-pg-cover-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
}

.ev-detail-pg-cover-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

/* Rich Typography Content */
.ev-detail-pg-main-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--evd-secondary);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.ev-detail-pg-main-content p {
  font-size: 1.05rem;
  color: var(--evd-text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Grid Icons Highlight Cards */
.ev-detail-pg-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin: 2.2rem 0;
}

.ev-detail-pg-highlight-card {
  background-color: var(--evd-bg-light);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--evd-border-color);
  transition: all 0.3s ease;
}

.ev-detail-pg-highlight-card:hover {
  background-color: var(--evd-bg-accent);
  border-color: var(--evd-primary);
  transform: translateY(-3px);
}

.ev-detail-pg-highlight-icon {
  font-size: 1.8rem;
  color: var(--evd-primary);
  margin-bottom: 0.5rem;
}

.ev-detail-pg-highlight-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--evd-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Timeline / Itinerary Schedule */
.ev-detail-pg-timeline {
  position: relative;
  padding-left: 30px;
  margin: 2.5rem 0;
}

.ev-detail-pg-timeline::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  width: 2px;
  height: calc(100% - 15px);
  background-color: var(--evd-border-color);
}

.ev-detail-pg-timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.ev-detail-pg-timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--evd-primary);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(9, 121, 62, 0.15);
  z-index: 2;
}

.ev-detail-pg-timeline-time {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--evd-primary);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.ev-detail-pg-timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--evd-secondary);
  margin-bottom: 0.4rem;
}

.ev-detail-pg-timeline-desc {
  font-size: 0.92rem;
  color: var(--evd-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Custom Interactive Registration Form Inside Main Frame */
.ev-detail-pg-reg-card {
  background-color: var(--evd-bg-accent);
  border: 1px solid rgba(9, 121, 62, 0.15);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.ev-detail-pg-reg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--evd-primary);
}

.ev-detail-pg-reg-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--evd-secondary);
  margin-bottom: 0.5rem;
}

.ev-detail-pg-form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--evd-border-color);
  background-color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.ev-detail-pg-form-input:focus {
  outline: none;
  border-color: var(--evd-primary);
  box-shadow: 0 0 0 4px rgba(9, 121, 62, 0.12);
}

.ev-detail-pg-btn-submit {
  background-color: var(--evd-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ev-detail-pg-btn-submit:hover {
  background-color: var(--evd-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 121, 62, 0.2);
}

/* 3. SIDEBAR SECTION (col-lg-4) */
.ev-detail-pg-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ev-detail-pg-widget {
  background-color: #ffffff;
  border: 1px solid var(--evd-border-color);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.ev-detail-pg-widget-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--evd-secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--evd-bg-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ev-detail-pg-widget-title i {
  color: var(--evd-primary);
}

/* Spots Counter Styling */
.ev-detail-pg-spots-banner {
  background-color: rgba(245, 158, 11, 0.08);
  border: 1px dashed var(--evd-warning);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.ev-detail-pg-spots-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--evd-warning);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Mini Quick Info List */
.ev-detail-pg-quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ev-detail-pg-quick-item {
  display: flex;
  gap: 15px;
  font-size: 0.92rem;
}

.ev-detail-pg-quick-icon {
  width: 36px;
  height: 36px;
  background-color: var(--evd-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--evd-primary);
  flex-shrink: 0;
}

.ev-detail-pg-quick-lbl {
  font-weight: 700;
  color: var(--evd-secondary);
  margin-bottom: 0.15rem;
}

.ev-detail-pg-quick-val {
  color: var(--evd-text-muted);
}

/* Other Events Widget list items */
.ev-detail-pg-other-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ev-detail-pg-other-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  align-items: center;
}

.ev-detail-pg-other-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.ev-detail-pg-other-item:hover .ev-detail-pg-other-img {
  transform: scale(1.05);
}

.ev-detail-pg-other-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--evd-secondary);
  line-height: 1.35;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}

.ev-detail-pg-other-item:hover h5 {
  color: var(--evd-primary);
}

.ev-detail-pg-other-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--evd-primary);
  text-transform: uppercase;
}

/* Share campaign actions styling */
.ev-detail-pg-share-grid {
  display: flex;
  gap: 10px;
}

.ev-detail-pg-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--evd-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--evd-secondary);
  transition: all 0.25s;
  text-decoration: none;
  background-color: #ffffff;
}

.ev-detail-pg-share-btn:hover {
  background-color: var(--evd-primary);
  color: #ffffff;
  border-color: var(--evd-primary);
  transform: scale(1.05);
}

.ev-detail-pg-btn-copy {
  background-color: var(--evd-bg-light);
  border: 1px solid var(--evd-border-color);
  color: var(--evd-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ev-detail-pg-btn-copy:hover {
  background-color: var(--evd-secondary);
  color: #ffffff;
  border-color: var(--evd-secondary);
}

/* Organizer Snippet card */
.ev-detail-pg-organizer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 1rem;
}

.ev-detail-pg-organizer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--evd-border-color);
}

.ev-detail-pg-organizer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--evd-secondary);
  margin-bottom: 0.1rem;
}

.ev-detail-pg-organizer-desc {
  font-size: 0.78rem;
  color: var(--evd-text-muted);
  margin-bottom: 0;
}

/* Custom notifications settings */
.ev-detail-toast-container {
  z-index: 1060;
}

@media (max-width: 991px) {
  .ev-detail-pg-sidebar {
    margin-top: 3.5rem;
  }
  .ev-detail-pg-reg-card {
    padding: 2.2rem 1.8rem;
  }
}
/*==========================================
services page css
==========================================*/
:root {
  --srv-primary: #09793e;
  --srv-primary-hover: #06542b;
  --srv-secondary: #0c2b48;
  --srv-secondary-hover: #071c30;
  --srv-text-dark: #1e293b;
  --srv-text-muted: #64748b;
  --srv-bg-light: #f8fafc;
  --srv-bg-accent: #f0fdf4;
  --srv-border-color: #e2e8f0;
  --srv-font-sans: "Plus Jakarta Sans", sans-serif;
  --srv-font-serif: "Playfair Display", serif;
}

.srv-pg-body {
  font-family: var(--srv-font-sans);
  color: var(--srv-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO BANNER */
.srv-pg-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.8) 0%,
      rgba(12, 43, 72, 0.95) 100%
    ),
    url("../images/services/services-page.png");
  background-size: cover;
  background-position: center 40%;
  padding: 120px 0 100px 0;
  color: #ffffff;
  text-align: center;
}

.srv-pg-banner h1 {
  font-family: var(--srv-font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.srv-pg-breadcrumbs {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.srv-pg-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.srv-pg-breadcrumbs a:hover {
  color: var(--srv-primary);
}

.srv-pg-breadcrumbs .active {
  color: rgba(255, 255, 255, 0.45);
}

/* Common Scoped Section Headers */
.srv-pg-section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--srv-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.srv-pg-section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--srv-secondary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* Scoped Buttons */
.srv-pg-btn-green {
  background-color: var(--srv-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.srv-pg-btn-green:hover {
  background-color: var(--srv-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 121, 62, 0.2);
}

.srv-pg-btn-outline {
  background-color: transparent;
  color: var(--srv-primary);
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  border: 2px solid var(--srv-primary);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.srv-pg-btn-outline:hover {
  background-color: var(--srv-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* 2. SERVICES CARDS GRID */
.srv-pg-grid-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.srv-pg-card {
  background-color: #ffffff;
  border: 1px solid var(--srv-border-color);
  border-radius: 20px;
  padding: 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.srv-pg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 43, 72, 0.08);
  border-color: transparent;
}

.srv-pg-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.srv-pg-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--srv-bg-accent);
  color: var(--srv-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.srv-pg-card:hover .srv-pg-icon-box {
  background-color: var(--srv-primary);
  color: #ffffff;
  transform: scale(1.05) rotate(5deg);
}

.srv-pg-id-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--srv-secondary);
  background-color: var(--srv-bg-light);
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.srv-pg-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--srv-secondary);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.srv-pg-card-desc {
  font-size: 0.95rem;
  color: var(--srv-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
/* Remove default link styles from the card */
.event-card-link {
  display: block;
  height: 100%;
  text-decoration: none !important;
  color: inherit !important;
}

.event-card-link:hover,
.event-card-link:focus,
.event-card-link:active,
.event-card-link:visited {
  text-decoration: none !important;
  color: inherit !important;
}

/* Ensure title and description inherit normal color */
.event-card-link .event-pg-card-title,
.event-card-link .event-pg-card-desc {
  color: inherit;
  text-decoration: none;
}

/* Optional: Card hover effect */
.event-pg-card {
  transition: all 0.3s ease;
}

.event-pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
/* Scoped Mini Stats Inside Cards */
.srv-pg-card-stats {
  background-color: var(--srv-bg-light);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.srv-pg-card-stat-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--srv-text-muted);
  text-transform: uppercase;
}

.srv-pg-card-stat-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--srv-primary);
}

.srv-pg-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--srv-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.srv-pg-card-link:hover {
  color: var(--srv-primary);
}

/* 3. INTERACTIVE IMPACT & SERVICE CALCULATOR */
.srv-pg-calc-section {
  background-color: var(--srv-bg-light);
  padding: 90px 0;
}

.srv-pg-calc-wrapper {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--srv-border-color);
  overflow: hidden;
}

.srv-pg-calc-sidebar {
  background-color: var(--srv-secondary);
  color: #ffffff;
  padding: 3.5rem 3rem;
  height: 100%;
}

.srv-pg-calc-content {
  padding: 3.5rem 3rem;
}

.srv-pg-calc-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--srv-border-color);
  padding-bottom: 1rem;
}

.srv-pg-calc-tab-btn {
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--srv-text-muted);
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.srv-pg-calc-tab-btn.active {
  color: var(--srv-primary);
}

.srv-pg-calc-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--srv-primary);
}

.srv-pg-slider-group {
  margin-bottom: 2rem;
}

.srv-pg-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.srv-pg-slider-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--srv-secondary);
}

.srv-pg-slider-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--srv-primary);
}

.srv-pg-range {
  accent-color: var(--srv-primary);
  width: 100%;
  height: 6px;
  border-radius: 5px;
}

/* Calculator Results Display */
.srv-pg-result-display {
  background-color: var(--srv-bg-accent);
  border-radius: 16px;
  padding: 2.2rem;
  text-align: center;
  margin-top: 1.5rem;
  border: 1px dashed rgba(9, 121, 62, 0.25);
}

.srv-pg-result-val {
  font-family: var(--srv-font-sans);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--srv-primary);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.srv-pg-result-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--srv-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 4. SERVICE DELIVERY PROCESS SECTION */
.srv-pg-process-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.srv-pg-process-grid {
  position: relative;
}

/* Connecting horizontal line for Desktop */
@media (min-width: 992px) {
  .srv-pg-process-grid::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: var(--srv-border-color);
    z-index: 1;
  }
}

.srv-pg-process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.srv-pg-process-number {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  border: 3px solid var(--srv-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--srv-secondary);
  margin: 0 auto 1.8rem auto;
  box-shadow: 0 10px 25px rgba(9, 121, 62, 0.08);
  transition: all 0.3s;
}

.srv-pg-process-step:hover .srv-pg-process-number {
  background-color: var(--srv-primary);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(9, 121, 62, 0.2);
}

.srv-pg-process-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--srv-secondary);
  margin-bottom: 0.5rem;
}

.srv-pg-process-desc {
  font-size: 0.9rem;
  color: var(--srv-text-muted);
  line-height: 1.6;
}

/* 5. CALL TO ACTION BANNER */
.srv-pg-cta {
  position: relative;
  background-image: linear-gradient(
    135deg,
    var(--srv-secondary) 0%,
    var(--srv-secondary-hover) 100%
  );
  padding: 95px 0;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
}

.srv-pg-cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: var(--srv-primary);
  opacity: 0.1;
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
  filter: blur(60px);
}

.srv-pg-cta-title {
  font-family: var(--srv-font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.srv-pg-cta-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.85;
  line-height: 1.7;
}

/* Scoped custom toast alerts panel */
.srv-toast-container {
  z-index: 1060;
}

@media (max-width: 991px) {
  .srv-pg-calc-sidebar {
    padding: 2.5rem 1.8rem;
  }
  .srv-pg-calc-content {
    padding: 2.5rem 1.8rem;
  }
  .srv-pg-process-step {
    margin-bottom: 3.5rem;
  }
  .srv-pg-process-step:last-child {
    margin-bottom: 0;
  }
}
/*==========================================
service-details page css
==========================================*/
:root {
  --sd-primary: #09793e;
  --sd-primary-hover: #06542b;
  --sd-secondary: #0c2b48;
  --sd-secondary-hover: #071c30;
  --sd-text-dark: #1e293b;
  --sd-text-muted: #64748b;
  --sd-bg-light: #f8fafc;
  --sd-bg-accent: #f0fdf4;
  --sd-border-color: #e2e8f0;
  --sd-font-sans: "Plus Jakarta Sans", sans-serif;
  --sd-font-serif: "Playfair Display", serif;
}

.srv-dtl-body {
  font-family: var(--sd-font-sans);
  color: var(--sd-text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 1. HERO BANNER */
.srv-dtl-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.82) 0%,
      rgba(12, 43, 72, 0.98) 100%
    ),
    url("../images/services/service1-detail-page.png");
  background-size: cover;
  background-position: center 30%;
  padding: 110px 0 90px;
  color: #fff;
  text-align: center; /* Center text */
}

.srv-dtl-cat-tag {
  background-color: var(--sd-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.45rem 1.25rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.srv-dtl-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.srv-dtl-breadcrumbs {
  justify-content: center; /* Center breadcrumb */
}

.srv-dtl-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.srv-dtl-breadcrumbs a:hover {
  color: var(--sd-primary);
}

.srv-dtl-breadcrumbs .active {
  color: rgba(255, 255, 255, 0.4);
}

/* 2. GRID LAYOUT CONTAINER */
.srv-dtl-container-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Main cover visual inside Left Column */
.srv-dtl-cover-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
}

.srv-dtl-cover-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
}

/* Left Column Copywriting Styles */
.srv-dtl-main-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sd-secondary);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.srv-dtl-main-content p {
  font-size: 1.05rem;
  color: var(--sd-text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Pillars of Service Grid */
.srv-dtl-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.srv-dtl-pillar-card {
  background-color: var(--sd-bg-light);
  border: 1px solid var(--sd-border-color);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.srv-dtl-pillar-card:hover {
  border-color: var(--sd-primary);
  background-color: var(--sd-bg-accent);
  transform: translateY(-3px);
}

.srv-dtl-pillar-icon {
  font-size: 1.8rem;
  color: var(--sd-primary);
  margin-bottom: 1rem;
  display: inline-block;
}

.srv-dtl-pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sd-secondary);
  margin-bottom: 0.6rem;
}

.srv-dtl-pillar-desc {
  font-size: 0.9rem;
  color: var(--sd-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Performance Metrics Highlight Grid */
.srv-dtl-metric-grid {
  background-color: var(--sd-secondary);
  border-radius: 20px;
  padding: 2.2rem;
  color: #ffffff;
  margin: 2.5rem 0;
}

.srv-dtl-metric-item {
  text-align: center;
}

.srv-dtl-metric-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  margin-bottom: 0.2rem;
}

.srv-dtl-metric-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Service Application Action Area */
.srv-dtl-app-card {
  background-color: var(--sd-bg-accent);
  border: 1px dashed rgba(9, 121, 62, 0.3);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.srv-dtl-app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--sd-primary);
  border-radius: 24px 0 0 24px;
}

.srv-dtl-app-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sd-secondary);
  margin-bottom: 0.5rem;
}

.srv-dtl-form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--sd-border-color);
  background-color: #ffffff;
  font-size: 0.95rem;
  color: var(--sd-text-dark);
  transition: all 0.3s;
}

.srv-dtl-form-input:focus {
  outline: none;
  border-color: var(--sd-primary);
  box-shadow: 0 0 0 4px rgba(9, 121, 62, 0.12);
}

.srv-dtl-btn-submit {
  background-color: var(--sd-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 10px;
  border: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.srv-dtl-btn-submit:hover {
  background-color: var(--sd-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 121, 62, 0.2);
}

/* 3. SIDEBAR (col-lg-4) */
.srv-dtl-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.srv-dtl-widget {
  background-color: #ffffff;
  border: 1px solid var(--sd-border-color);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.srv-dtl-widget-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sd-secondary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sd-bg-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.srv-dtl-widget-title i {
  color: var(--sd-primary);
}

/* Facts list inside Sidebar Widget */
.srv-dtl-fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.srv-dtl-fact-item {
  display: flex;
  gap: 15px;
  font-size: 0.92rem;
}

.srv-dtl-fact-icon {
  width: 36px;
  height: 36px;
  background-color: var(--sd-bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-primary);
  flex-shrink: 0;
}

.srv-dtl-fact-lbl {
  font-weight: 700;
  color: var(--sd-secondary);
  margin-bottom: 0.15rem;
}

.srv-dtl-fact-val {
  color: var(--sd-text-muted);
}

/* Alternative Services listing */
.srv-dtl-other-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-dtl-other-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  align-items: center;
}

.srv-dtl-other-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.srv-dtl-other-item:hover .srv-dtl-other-img {
  transform: scale(1.05);
}

.srv-dtl-other-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sd-secondary);
  line-height: 1.35;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}

.srv-dtl-other-item:hover h5 {
  color: var(--sd-primary);
}

.srv-dtl-other-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sd-primary);
  text-transform: uppercase;
}

/* Downloads Resource item */
.srv-dtl-download-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--sd-bg-light);
  border: 1px solid var(--sd-border-color);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  color: var(--sd-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: all 0.25s;
}

.srv-dtl-download-btn:last-child {
  margin-bottom: 0;
}

.srv-dtl-download-btn:hover {
  background-color: var(--sd-secondary);
  color: #ffffff;
  border-color: var(--sd-secondary);
  transform: translateY(-1px);
}

.srv-dtl-download-btn i.bi-file-pdf {
  color: #ef4444;
  font-size: 1.25rem;
}

.srv-dtl-download-btn:hover i.bi-file-pdf {
  color: #ffffff;
}

/* Helpline query callback */
.srv-dtl-callback-box {
  background-color: var(--sd-bg-accent);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(9, 121, 62, 0.15);
  text-align: center;
}

/* Notifications toast */
.srv-dtl-toast-container {
  z-index: 1060;
}

@media (max-width: 991px) {
  .srv-dtl-sidebar {
    margin-top: 3.5rem;
  }
  .srv-dtl-app-card {
    padding: 2.2rem 1.8rem;
  }
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: #183153;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  /*letter-spacing: 0.5px;*/
}
/*=========================================
DONATION  page FORM
=========================================*/

.donation-section {
  background: #f7f9fc;
}

.donation-card {
  background: #fff;
  border-radius: 20px;
  padding: 55px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-left: 6px solid var(--primary-green);
}

.section-tag {
  display: inline-block;
  background: #eaf8ef;
  color: var(--primary-green);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-size: 14px;
}

.donation-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.form-label {
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.form-label span {
  color: #dc3545;
}

.form-control,
.form-select {
  height: 56px;
  border-radius: 10px;
  border: 1px solid #d8dde6;
  font-size: 16px;
  padding: 14px 18px;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(34, 160, 90, 0.15);
}

.btn-donate {
  background: var(--primary-green);
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  min-width: 240px;
  transition: 0.3s;
}

.btn-donate:hover {
  background: var(--primary-navy);
  color: #fff;
  transform: translateY(-3px);
}

.secure-note {
  text-align: center;
  color: #6c757d;
  font-size: 15px;
  margin-top: 12px;
}

.secure-note i {
  color: var(--primary-green);
  margin-right: 6px;
}

@media (max-width: 768px) {
  .donation-card {
    padding: 30px 22px;
  }

  .donation-title {
    font-size: 32px;
  }
}
/* Donation Form Container */
.donation-container {
  max-width: 1000px !important;
}

/* Optional: Remove Bootstrap's default xxl width */
@media (min-width: 1400px) {
  .donation-container {
    max-width: 1000px !important;
  }
}
/*==========================================
Gallery page css
==========================================*/
.about-pg-banner {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(12, 43, 72, 0.75) 0%,
      rgba(12, 43, 72, 0.9) 100%
    ),
    url("../images/background/gallery.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px 0;
  color: #ffffff;
  text-align: center;
}
.gallery-section {
  background: #f8faf8;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
}

.section-subtitle {
  max-width: 700px;
  margin: auto;
  color: #666;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-btn {
  border: none;
  background: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #e5e5e5;
}

.gallery-btn.active,
.gallery-btn:hover {
  background: #2e7d32;
  color: #fff;
  border-color: #2e7d32;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-overlay p {
  margin: 0;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-5px) scale(1.08);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    left: 15px;
    bottom: 15px;
    font-size: 28px;
  }
}
/*=========================================
PAGE TITLE / BREADCRUMB
=========================================*/

.page-title {
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
}

.page-title .bg-section {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-title .bg-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark Overlay */
.page-title .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.page-title .container {
  position: relative;
  z-index: 3;
}

.page-title-content {
  color: #fff;
}

.page-title-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.breadcrumb-list li + li::before {
  content: "›";
  color: #fff;
  margin: 0 12px;
  font-size: 22px;
  font-weight: 700;
}

.breadcrumb-list a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-list a:hover {
  color: #2e7d32;
}

/* Responsive */

@media (max-width: 991px) {
  .page-title {
    height: 260px;
  }

  .page-title-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .page-title {
    height: 220px;
  }

  .page-title-content h1 {
    font-size: 32px;
  }

  .breadcrumb-list li {
    font-size: 15px;
  }
}
#page {
  display: none;
}
#loading {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background-image: url("../images/preloader.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 230px;
}
/* ==========================================
   Footer Quick Links
========================================== */

.footer-quick-links {
  background: #081d2f;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-links-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}

.quick-links-nav li {
  position: relative;
}

.quick-links-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
}

.quick-links-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  letter-spacing: 0.3px;
}

.quick-links-nav a:hover {
  color: #8bd46d;
}

@media (max-width: 991px) {
  .quick-links-nav {
    gap: 18px;
  }

  .quick-links-nav li:not(:last-child)::after {
    display: none;
  }

  .quick-links-nav a {
    font-size: 14px;
  }
}
/*==============================
 Page Title
==============================*/

.page-title {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.page-title .bg-section {
  position: absolute;
  inset: 0;
}

.page-title .bg-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 41, 74, 0.72);
}

.page-title .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.page-title-content {
  text-align: center;
}

.page-title-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.breadcrumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li + li::before {
  content: "";
}
.breadcrumb-list li {
  color: #d8d8d8;
  font-size: 17px;
  font-weight: 500;
}

.breadcrumb-list li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-list li a:hover {
  color: #56b96b;
}

.other-services {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.other-services li a {
  color: #000;
  text-decoration: none;
}
.other-services li {
  list-style: none;
  padding: 21px 10px;
  border-bottom: 1px solid;
  position: sticky;
  top: 0;
}
.error {
  color: red !important;
}
/*==============================
footer social icons
==============================*/
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--theme-color, #56b96b);
  border-color: var(--theme-color, #56b96b);
  color: #fff;
  transform: translateY(-3px);
}
/*==============================
 loan page
==============================*/
:root {
  --hdf-blue: #0f3d81;
  --hdf-green: #228b22;
  --hdf-light-green: #eaf5ea;
  --hdf-text-dark: #2b303a;
  --hdf-bg-gray: #f5f8fc;
  --hdf-border-color: #dee2e6;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--hdf-bg-gray);
  color: var(--hdf-text-dark);
  padding: 0;
  margin: 0;
}

/* Professional Top Branding Header */
.brand-header {
  background-color: #ffffff;
  padding: 15px 0;
  border-bottom: 2px solid var(--hdf-blue);
}

.logo-container svg {
  height: 48px;
}

.logo-title {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-title span {
  color: var(--hdf-blue);
}

.logo-title span.green-text {
  color: var(--hdf-green);
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #6c757d;
  margin-top: 2px;
}

.header-slogan {
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  color: #6c757d;
  font-weight: 600;
}

/* Hero Banner Styling */
.hero-banner-container {
  background: linear-gradient(135deg, #ffffff 0%, #edf4fc 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 129, 0.08);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hdf-blue);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hdf-green);
  line-height: 1.4;
}

/* Features Section */
.feature-badge {
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hdf-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
}

.bg-circle-blue {
  background-color: var(--hdf-blue);
}

.bg-circle-green {
  background-color: var(--hdf-green);
}

/* Form Container Styling */
.form-application-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
}

/* Section Headers */
.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hdf-green);
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(34, 139, 34, 0.15);
  padding-bottom: 10px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title i {
  font-size: 1.15rem;
}

/* Custom Input States */
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 6px;
}

.form-label .required-star {
  color: #dc3545;
  margin-left: 2px;
}

.form-control,
.form-select {
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  background-color: #fcfcfd;
  transition: all 0.2s ease-in-out;
}

.form-control:focus,
.form-select:focus {
  background-color: #ffffff;
  border-color: var(--hdf-blue);
  box-shadow: 0 0 0 3.5px rgba(15, 61, 129, 0.12);
  outline: 0;
}

/* Button Layout */
.btn-action-reset {
  border: 2px solid var(--hdf-blue);
  color: var(--hdf-blue);
  background: transparent;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-action-reset:hover {
  background-color: var(--hdf-blue);
  color: #ffffff;
}

.btn-action-draft {
  border: 2px solid var(--hdf-green);
  color: var(--hdf-green);
  background: transparent;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-action-draft:hover {
  background-color: var(--hdf-green);
  color: #ffffff;
}

.btn-action-submit {
  background-color: var(--hdf-blue);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-action-submit:hover {
  background-color: #0b2f64;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 61, 129, 0.2);
}

/* Header Blue/Green Badge Button */
.application-header-badge {
  background-color: var(--hdf-blue);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(15, 61, 129, 0.15);
}

/* Custom Checkboxes Layout Card */
.declaration-card {
  background-color: #f7f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--hdf-blue);
}

/* Magnific Popup Modals CSS Styling */
.white-popup {
  position: relative;
  background: #fff;
  padding: 30px;
  width: auto;
  max-width: 650px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Support Interactive Helper Card */
.interactive-guide-card {
  background-color: var(--hdf-light-green);
  border-radius: 12px;
  border: 1px dashed rgba(34, 139, 34, 0.3);
}

/* Form Layout Adjustment for Mobile and Tablet */
@media (max-width: 768px) {
  .hero-banner-container {
    padding: 2rem 1rem;
    text-align: center;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .form-application-card {
    padding: 1.5rem;
  }
  .badge-container-row {
    gap: 8px;
  }
  .feature-badge {
    width: 100%;
    justify-content: flex-start;
  }
}

/*=========================
   CERTIFICATE SECTION
==========================*/

.certificate-section {
  background: #fdfbf7;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.certificate-section .sub-title {
  color: #2e8b57;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.certificate-section .section-title {
  font-size: 58px;
  font-weight: 800;
  color: #112240;
  margin: 10px 0;
  text-transform: uppercase;
}

.certificate-section .section-desc {
  max-width: 650px;
  margin: 0 auto 60px;
  color: #666;
  line-height: 1.7;
  font-size: 17px;
}

.title-divider {
  width: 70px;
  height: 3px;
  background: #2e8b57;
  margin: 15px auto 25px;
}

/*=========================
   CARD
==========================*/

.certificate-item {
  text-align: center;
  cursor: pointer;
  transition: 0.35s;
}

.certificate-frame {
  background: #fff;
  border: 4px solid #112240;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  overflow: hidden;
}

.certificate-frame img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.certificate-item:hover .certificate-frame {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

/*=========================
   ICON & TITLE
==========================*/

.certificate-info {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  text-align: left;
}

.certificate-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #edf7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e8b57;
  font-size: 22px;
  flex-shrink: 0;
}

.certificate-info h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.certificate-info p {
  margin: 2px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

/*=========================
   MODAL
==========================*/

/* Modal Dialog */
#certificateModal .modal-dialog {
  max-width: 700px; /* Desktop width */
  margin: auto;
}

/* Modal Content */
#certificateModal .modal-content {
  width: 100%;
  border: none;
  border-radius: 12px;
}

/* Header */
#certificateModal .modal-header {
  border: none;
  padding: 10px 20px;
}

/* Body */
#certificateModal .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

/* Image */
#certificateImage {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  #certificateModal .modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
  }

  #certificateModal .modal-body {
    padding: 15px;
  }

  #certificateImage {
    max-width: 100%;
    max-height: 70vh;
  }
}

/*=========================
   RESPONSIVE
==========================*/

@media (max-width: 991px) {
  .certificate-section .section-title {
    font-size: 42px;
  }

  .certificate-frame img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .certificate-section {
    padding: 60px 0;
  }

  .certificate-section .section-title {
    font-size: 34px;
  }

  .certificate-frame img {
    height: 220px;
  }

  .certificate-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .certificate-info h5 {
    font-size: 16px;
  }
}
