:root{
  --g:#034C2B;
  --lime:#93C242;
  --y:#FED336;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
} 

 #site-content{
  padding-top:220px;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

.wrap-7xl{
  max-width: 1280px;
  margin: 0 auto;
}

.top-logos-strip{ background: rgba(3, 76, 43, 0.05); }

.logo-left{
  height: 56px; /* h-14 */
  width: auto;
  max-width: 70%;
  object-fit: contain;
}
.logo-right{
  height: 48px; /* h-12 */
  width: auto;
  max-width: 40%;
  object-fit: contain;
}

/* Divider h-1 */
.divider-lime{ height: 4px; background: var(--lime); }

/* Nav background */
.nav-green{ background: var(--g); }

.top-row{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-col{
  display: flex;
  align-items: center;
  width: 100%;
}

.brand-avatar-img-only{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-avatar{
  width: 32px; height: 32px;
  border-radius: 999px;
  background: #e5e7eb;
  flex: 0 0 auto;
}
.brand-title{
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.15; 
}



.search-col{
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  height: 35px;
  min-height: 35px;
  width: 100%;
}

.search-icon{
  color: #6b7280;
  margin-left: 10px;
  font-size: 0.95rem;
}

.search-input{
  flex: 1;
  border: 0;
  outline: 0;
  padding: 8px 10px;
  font-size: 0.875rem;
  color: #111827;
  min-width: 0;  
}
  
.search-btn{
  background: #FED336;
  border: 0;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
}
.search-btn:hover{ filter: brightness(0.95); }


.login-col{
  width: 100%;
}

.login-btn{
  display: inline-block;
  width: 100%; 
  text-align: center;
  background: #93C242;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.login-btn:hover{
  background: #7aac34;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.border-top-soft{ border-top: 1px solid rgba(229,231,235,0.3); }

/* Links */
.text-smish{ font-size: 0.875rem; }
.navlink{
   color: #fff;
   text-decoration: none;
   transition: .2s ease;
}
.navlink:hover{
   color: var(--y);
   text-decoration: underline;
   text-underline-offset: 4px;
}
.navlink-active{
   color: var(--y);
   text-decoration: underline;
   text-underline-offset: 4px;
}

.pst-label{ font-size: 0.75rem; } /* text-xs */
.pst-time{
   font-size: 0.875rem; /* sm:text-sm */
   font-weight: 600; /* font-semibold */
   word-break: break-word;
}

 /* HERO SECTION */

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section {
  /* margin-top: 220px; */
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

.hero-title {
  font-family: inherit; /* or your font-primary */
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hero-description {
  max-width: 72rem; /* max-w-6xl */
  color: #e5e7eb;   /* text-gray-200 */
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #FED336;
  color: #2B2B2B;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.hero-btn:hover {
  background: #e5c22d;
  color: #2B2B2B;
}


/* Standards Section */
.standards-section {
  background: rgba(3, 76, 43, 0.05);
  padding: 1rem 0;
}

.standards-title {
  color: #034C2B;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.standards-description {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.standards-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.standards-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.standards-item p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.standards-image {
  width: 100%;
  max-width: 420px;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  margin: 3rem 0;
}

.icon-primary {
  color: #034C2B;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-accent {
  color: #FED336;
  font-size: 1.5rem;
  flex-shrink: 0;
}


/* SECTION */

/* EMPTY STATE */
.empty-state {
  max-width: 420px;
  /* margin: 2rem auto; */
  /* padding: 2rem 1.5rem; */
  text-align: center;
  /* border: 1px dashed #d1d5db; */
  border-radius: 0.75rem;
  /* background: #f9fafb; */
}
.cards-container .empty-state {
  grid-column: 1 / -1;   /* span entire grid width */
  justify-self: center;  /* center horizontally */
}
.empty-state {
  margin: 3rem auto;
}

/* Icon */
.empty-icon {
  font-size: 2.5rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

/* Title */
.empty-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}

/* Subtitle */
.empty-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
}

.featured-section {
  padding: 3rem 1rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.featured-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #034C2B;
  margin-bottom: 1rem;
}
.featured-subtitle {
  max-width: 64rem;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #6b7280;
}

.featured-label {
  font-size: 1.1rem;
  font-weight: 500;
}
.featured-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.featured-link:hover {
  text-decoration: underline;
}

 .cards-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;

  /* responsive columns */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.guideline-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.guideline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-weight: 500;
}

.tag-type {
  background: #dcfce7;
  color: #166534;
}
.tag-topic {
  background: #ecfeff;
  color: #155e75;
}

/* CONTENT */
/* .guideline-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
} */

.guideline-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;

  /* 👇 REQUIRED for 2-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
  max-height: 2.7em; /* 2 lines × line-height */
}


.guideline-dev {
  font-size: 0.8rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* HEADER ROW */
.featured-header {
  max-width: 1280px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guideline-meta {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: auto;
  margin-bottom: 0.75rem;
}


/* BUTTON */
.guideline-btn {
  display: block;
  text-align: center;
  background: #034C2B;
  color: #fff;
  padding: 0.55rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.25rem;
}

.guideline-btn:hover {
  background: #023d22;
}



/* SECTION */
.carousel-section {
  background: rgba(3, 76, 43, 0.05);
  padding: 4rem 0;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  will-change: transform;
}

.carousel-card {
  width: 220px;
  flex-shrink: 0;
  transform: scale(0.8);
  opacity: 0.6;
  transition: transform 0.4s ease, opacity 0.4s ease;
  text-align: center;
}

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
/* ACTIVE CARD */
.carousel-card.active {
  transform: scale(1.15);
  opacity: 1;
  z-index: 2;
}

/* INFO */
.carousel-info {
  margin-top: 0.75rem;
}

.carousel-info h4 {

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;

  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 1.3;
  max-height: 2.6em;   /* 2 lines × line-height */

  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.carousel-info p {
  font-size: 0.75rem;
  color: #555;
}


 


/* BUTTONS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: #034C2B;
  z-index: 5;
}

.carousel-btn.prev {
  left: -10px;
}

.carousel-btn.next {
  right: -10px;
}

.carousel-btn:hover {
  color: #023d22;
}


/* Contact Section */
.contact-section {
  background: rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  padding: 3rem 1.5rem 6rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: end; 
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #034C2B;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d1d5db;
}

.contact-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dcfce7;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #034C2B;
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: #374151;
}

.contact-note {
  font-size: 0.8rem;
  color: #6b7280;
  font-style: italic;
  margin-top: 0.25rem;
}

.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  gap: 2rem;      
}

.contact-right h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #034C2B;
  margin-bottom: 0.75rem;
}

.contact-awards img {
  max-width: 260px;
  width: 100%;
}

.contact-sitemap {
  align-self: flex-end;
  width: 100%;
  max-width: 500px;    
  margin-left: -4rem; 
} 

.contact-sitemap iframe {
   width: 100%;
  display: block;
  
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d1d5db;
  background-image: url("../../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

@media (min-width: 576px){

  .logo-left{ height: 64px; max-width: 320px; }
  .logo-right{ height: 64px; max-width: 150px; }

  .top-row{
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .brand-col{
    width: auto;
    flex: 0 0 auto;
  }

  .brand-avatar,
  .brand-avatar-img-only{
    width: 35px;
    height: 35px;
  }

  .brand-title{ font-size: 1rem; }

  .search-col{
    flex: 1 1 auto;
    min-width: 420px;
  }

 .login-col{
    width: auto;
    flex: 0 0 auto;
  }

  .login-btn{
    width: auto;       
    white-space: nowrap;
  }

  .pst-label{ font-size: 0.875rem; font-weight: 400; } 
  .hero-title { font-size: 1.875rem; }
  .hero-description { font-size: 1rem; }
  .hero-section { height: 80vh; }
  .standards-title { font-size: 1.875rem; }
  .standards-description { font-size: 1rem; }
  .standards-item h4 { font-size: 1.125rem; }
}

@media (max-width: 640px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: left;
  }

}

@media (max-width: 768px) {

  .social-container {
    flex-direction: column;
    text-align: center;
  }

  .social-left {
    justify-content: center;
  }

  .hero-btn { font-size: 1rem; }
  .hero-title { font-size: 2.25rem; }
  .hero-description { font-size: 1.125rem; }
  .hero-section { height: 90vh; }
  .standards-title { font-size: 2.25rem; }
  .standards-image {
    margin: 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-right {
    text-align: left;
    align-items: flex-start;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .contact-sitemap iframe {
    width: 100%;
  }

  .contact-sitemap {
    transform: none;
  }
}

@media (min-width: 992px) {
  .hero-title { font-size: 3rem; } /* lg:text-5xl */
}

@media (max-width: 1024px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 640px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer */

.footer-divider {
  height: 4px;
  background: #93C242;
}

.footer {
  background: #034C2B;
  padding: 3rem 1.5rem 4rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #ffffff;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #93C242;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #93C242;
  text-decoration: underline;
}

.footer-col .highlight {
  color: #93C242;
  font-weight: 500;
}





/* Social Footer */
.social-footer {
  background: #f5f8f6;
  border-top: 8px solid #034C2B;
  padding: 1.5rem 1.5rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.social-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.50rem;
}

.social-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
}

.copyright {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.3;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icons a {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.facebook { color: #1877F2; }
.twitter { color: #1DA1F2; }
.youtube { color: #FF0000; }
.instagram { color: #E4405F; }
.tiktok { color: #000000; }
.linkedin { color: #0077B5; }





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

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

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

}
.bg-success-subtle { background-color: #e7f3ef; } */
/* Matching the dark green button from your image */
/* .btn-doh-action {
    background-color: #054226;
    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;
} */
