:root {
  --brand-dark: #0f3d2e;
  --brand-green: #1b6b4f;
}

/* GLOBAL */
body {
  font-family: "Segoe UI", system-ui, sans-serif;
}

/* NAVBAR */
.navbar-brand img {
  height: 48px;
}
.navbar-toggler{
	
	background-color: white;
}
.navbar-transparent {
  background: transparent;
}

.navbar-dark .nav-link {
  color: rgb(255 255 255) !important;
  font-weight: 500;
}

.navbar-dark .nav-link:hover {
  color: rgb(255 255 255)!important;
}
.navbar {
    z-index: 1050;
}
/* ================= MOBILE NAV FIX ================= */

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-register {
  background: var(--brand-green);
  color: #fff;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
}

.btn-register:hover {
  background: #14543e;
  color: #fff;
}

/* HERO */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(
      90deg,
      rgba(15,61,46,0.88) 0%,
      rgba(15,61,46,0.75) 45%,
      rgba(15,61,46,0.4) 75%,
      rgba(15,61,46,0.15) 100%
    ),
    url("../images/hero-banner.png") center/cover no-repeat;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 520px;
  opacity: 0.95;
}

.hero-actions .btn {
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
}

/* TRUST */
.trust-section {
  background: #fff;
  padding: 60px 0;
}

.trust-section h3 {
  color: var(--brand-green);
  font-weight: 700;
}

.trust-section p {
  margin-top: 5px;
  color: #555;
}

/* FOOTER */
.footer {
  background: var(--brand-dark);
  color: #cfd8d3;
  padding: 60px 0 30px;
}

.footer h5,
.footer h6 {
  color: #fff;
}

.footer a {
  display: block;
  color: #cfd8d3;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer hr {
  border-color: #2b5d4a;
}
/* ================= FEATURE BOX ================= */

.feature-box {
    background: #cfeb58;
    border-radius: 14px;
    padding: 22px 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box h6 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #2f4f3f;
}

.feature-box img {
    margin-bottom: 10px;
    max-width: 40px;
}

.feature-box strong {
    font-size: 15px;
    color: #1f6b4d;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(31, 107, 77, 0.18);
    border-color: rgba(31, 107, 77, 0.3);
}

/* Highlight box (for 600+ conditions) */
.feature-box.bg-light {
    background: linear-gradient(135deg, #e9f7f1, #f4fffb);
    border: 1px solid #bde6d3;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .feature-box {
        padding: 18px 12px;
    }

    .feature-box h6 {
        font-size: 14px;
    }
}

/* ================= GLASSMORPHISM PRODUCT CARD ================= */

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(31, 107, 77, 0.35);
}

/* Image section */
.product-img {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    padding: 25px;
    text-align: center;
}

.product-img img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.12);
}

/* Content section */
.product-content {
    padding: 22px;
    text-align: center;
}

.product-content h6 {
    font-size: 17px;
    font-weight: 700;
    color: #214c3a;
}

.product-content p {
    font-size: 14px;
    color: #4f6f61;
    margin: 10px 0 16px;
}

/* Button */
.product-content .btn {
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 14px;
}

/* Glass background section */
.glass-bg {
    background: linear-gradient(
        135deg,
        rgba(31, 107, 77, 0.85),
        rgba(20, 40, 30, 0.85)
    );
    position: relative;
}

.glass-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/images/hero-banner.png") center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.glass-bg > * {
    position: relative;
    z-index: 1;
}


