
.white { color: #ffffff; }
.black { color: #000000; }
.doh-green { background-color: #0f5132; }  /* Dark Green */
.doh-yellow { background-color: #f4c430; } /* Yellow */

/* =========================
   TOP NAVBAR
========================= */
.top-navbar {
  background-color: #0f5132;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
}
.top-navbar span { font-weight: 600; }

/* NAVBAR DIVIDER */
.nav-divider { height: 6px; background-color: #f4c430; }

/* MAIN NAVBAR */
.main-navbar {
  background-color: #0f5132;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 1rem;
}
.main-navbar .navbar-brand { font-weight: 700; color: #ffffff; font-size: 0.9rem; }
.main-navbar .nav-link { font-weight: 600; color: #ffffff; font-size: 0.85rem; padding: 0.5rem 0.75rem; }
.main-navbar .nav-link:hover { color: #f4c430; }
.main-navbar .nav-link.active { color: #f4c430; border-bottom: 2px solid #f4c430; }

/* BRAND TEXT */
.brand-text { line-height: 1.1; }
.brand-title { font-size: 0.9rem; font-weight: 700; color: #ffffff; margin: 0; }
.brand-sub { font-size: 0.65rem; font-weight: 500; color: rgba(255,255,255,0.8); margin: 0; }

/* NAVBAR SEARCH */
.nav-search { min-width: 100%; }
.search-group { width: 100%; }

/* BUTTONS */
.btn-doh {
  background-color: #0f5132; /* Dark green */
  color: #ffffff;             /* White text */
  font-weight: 600;
  font-size: 0.8rem;          /* Smaller font */
  padding: 0.35rem 0.8rem;    /* Comfortable padding */
  border: 2px solid #0f5132;
  border-radius: 0.35rem;
  transition: all 0.3s ease;
}
.btn-doh:hover {
  background-color: #0b3a26;
  border-color: #0b3a26;
  color: #ffffff;
}

/* SECONDARY MENU NAVBAR */
.menu-bar {
  background-color: #0f5132;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menu-bar .nav-link { color: #ffffff; font-weight: 600; font-size: 0.75rem; }
.menu-bar .nav-link:hover,
.menu-bar .nav-link.active { color: #f4c430; border-bottom: 2px solid #f4c430; }

/* HERO BANNER */
.hero-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(5,67,36,0.7), rgba(16,107,7,0.7)),
              url('/npgwp/public/images/bg1.jpg') center/cover no-repeat;
  background-blend-mode: overlay;
  padding: 1rem;
}
.hero-banner h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.75rem; }
.hero-banner p { font-size: 0.95rem; max-width: 90%; margin: 0 auto 1rem; line-height: 1.5; }
.hero-banner .btn { font-weight: 600; border-radius: 0.5rem; transition: all 0.3s ease; }
.hero-banner .btn:hover { transform: translateY(-2px); }

/* Decorative shapes */
.hero-banner .shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; }
.hero-banner .shape-1 { width: 200px; height: 200px; background: #ffffff; top: -40px; left: -40px; }
.hero-banner .shape-2 { width: 250px; height: 250px; background: #0f5132; bottom: -80px; right: -80px; }
.hero-banner .shape-3 { width: 150px; height: 150px; background: #f8f8f8; top: 15%; right: 8%; }

/* =========================
   EVIDENCE-BASED SECTION
========================= */
.evidence-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.evidence-section h5 { font-size: 1rem; font-weight: 600; margin-top: 0.75rem; }
.evidence-section p { font-size: 0.75rem; line-height: 1.4; }

/* CONTACT CARDS */
.contact-card .card-body h6 { font-size: 0.85rem; font-weight: 600; }
.contact-card .card-body p { font-size: 0.75rem; line-height: 1.4; }
.contact-card .card-body small { font-size: 0.65rem; }

/* CARDS */
.card {
  border-radius: 0.35rem;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
}

/* FOOTER */
footer.doh-green { background-color: #0f5132; padding: 1rem 0; }
footer a.text-white:hover { color: #f4c430; text-decoration: underline; font-weight: 500; }

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 992px) {
  .hero-banner h1 { font-size: 1.6rem; }
  .hero-banner p { font-size: 0.85rem; }
}

@media (max-width: 576px) {
  .hero-banner { min-height: 350px; padding: 0.75rem; }
  .hero-banner h1 { font-size: 1.4rem; }
  .hero-banner p { font-size: 0.8rem; max-width: 95%; }
  
  .brand-title { font-size: 0.8rem; }
  .brand-sub { font-size: 0.6rem; }

  .main-navbar .nav-link { font-size: 0.75rem; }
  .menu-bar .nav-link { font-size: 0.7rem; }

  .btn-doh { font-size: 0.75rem; padding: 0.3rem 0.7rem; }

  .contact-card .card-body h6 { font-size: 0.8rem; }
  .contact-card .card-body p { font-size: 0.7rem; }
  .contact-card .card-body small { font-size: 0.6rem; }

  .evidence-section h2 { font-size: 1.1rem; }
  .evidence-section h5 { font-size: 0.9rem; }
  .evidence-section p { font-size: 0.7rem; line-height: 1.3; }

  .hero-banner .shape-1, .hero-banner .shape-2, .hero-banner .shape-3 { filter: blur(40px); }
}
/* Remove default body margin/padding and prevent horizontal overflow */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Make navbar, header image, and main containers full-width */
.navbar, .top-navbar, .main-navbar, .hero-banner, .container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* For images like header/banner */
img, .hero-banner img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure rows and cards inside container don’t exceed viewport */
.row {
  margin-right: 0;
  margin-left: 0;
}
.col-12, .col-sm-6, .col-md-4 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;

}
.transition-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}
.bg-success-subtle { background-color: #e7f3ef; }
/* Matching the dark green button from your image */
.btn-doh-action {
    background-color: #054226; /* Dark forest green */
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-doh-action:hover {
    background-color: #0a5a35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 66, 38, 0.2);
}

/* Subtitle/Developer Styling */
.text-muted {
    font-size: 0.95rem;
}

/* Card Hover Effect */
.guideline-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1) !important;
}

/* Adjusting pill colors to match image */
.bg-success-subtle {
    background-color: #e8f5ef !important;
    color: #208e5a !important;
}

.border-success-subtle {
    border-color: #c3e6d5 !important;
}
