/* ========= Base / Resets ========= */
:root {
  --brand-green: #087436;
  --text-base: 13px;      /* Global base font size (reduced) */
  --text-sm: 12px;
  --text-xs: 11px;
  --h1: clamp(24px, 3.5vw, 34px);
  --h2: clamp(20px, 2.8vw, 28px);
  --h3: clamp(16px, 2.2vw, 22px);
}


.text-justify{
    text-align: justify!important;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings — scaled down */
h1, .h1 { font-size: var(--h1); line-height: 1.2; margin: 0 0 .6em; }
h2, .h2 { font-size: var(--h2); line-height: 1.25; margin: 0 0 .6em; }
h3, .h3 { font-size: var(--h3); line-height: 1.3; margin: 0 0 .6em; }

/* ========= Utilities ========= */
.bg-green { background-color: var(--brand-green) !important; }
.text-green { color: var(--brand-green) !important; }

/* ========= Header / Navbar ========= */
.header_menu .navbar-brand { max-width: 200px; }

.navbar .nav-link,
.dropdown-item {
  font-size: 12.5px;
  line-height: 1.4;
}

a.text-white.text-decoration-none {
  font-size: 12.5px;
}

/* ========= Hero Section ========= */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 0 16px;
}

.video-container {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 67.5vw;
  max-width: none;
  transform: translate(-50%, -50%);
}

@media (max-aspect-ratio: 16/9) {
  .video-container iframe {
    width: 177.78vh;
    height: 100vh;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content { z-index: 1; }

.hero-content .display-4,
.hero-content h1 {
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 700;
  margin-bottom: .4em;
}

.hero-content .lead,
.hero-content p {
  font-size: 13px;
  max-width: 760px;
  margin: 0 auto .75rem;
}

/* ========= Product Cards ========= */
.product-card { display: none; }
.product-card.show { display: block !important; }

.filter-btn {
  font-size: 12px;
  line-height: 1.2;
}

.filter-btn.active {
  font-weight: 700;
  border-bottom: 2px solid #000;
}

/* ========= Contact ========= */
.contact-wrap {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
  font-size: 12.5px;
}

.contact-title {
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 16px;
}

.contact-lead {
  color: #6c757d;
  font-size: 12px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: .75rem;
  display: grid;
  place-items: center;
  background: #e9f5ff;
  color: #0d6efd;
  font-size: 1rem;
}

.map-embed {
  min-height: 400px;
  border: 0;
}

/* ========= Footer ========= */
.footer,
.site-footer {
  font-size: 12.5px;
}

/* ========= Responsive ========= */
@media (max-width: 991.98px) {
  .navbar .nav-link,
  .dropdown-item,
  a.text-white.text-decoration-none {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .hero-content .lead,
  .contact-wrap { font-size: 12px; }
  .map-embed { min-height: 280px; }
  .hero-section { padding: 0 12px; }




}



.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: green;
    border-color: green;
}