body {
    background: #D5D5D5;
    margin: 0; /* remove default browser margin */
}
.custom-header-container {
    margin: 0 auto;
    padding: 0 12px;
    position: relative;
    z-index: 1; /* above overlay */
}
.custom-header {
    background: #728E71;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    padding: 0 0 0 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 7rem;
    flex: 1 1 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-img {
    height: 55px;
    width: 55px;
    object-fit: contain;
}
.logo-text {
    font-size: 1.3rem;
    font-weight: 400;
    color: #222;
    margin-left: 0.2rem;
}
.nav-links {
    display: flex;
    gap: 4rem;
    align-items: center; /* center vertically */
}
.nav-link-custom {
    color: rgba(0, 0, 0, 0.87); /* var(--Black-high, rgba(0, 0, 0, 0.87)); */
    text-align: center;
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    text-decoration: none;
    transition: color 0.2s;
    padding: 0;
}
.nav-link-custom:hover {
    color: #fff;
}
.btn-contact-custom {
    background: #295C2B;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.4rem;
    border: none;
    transition: background 0.2s;
    height: 100%;
    line-height: 64px;
    padding: 0 2.8rem;
    white-space: nowrap;
    margin: 0;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
.btn-contact-custom:hover {
    background: #18381a;
    color: #fff;
}
.nav-links,
.btn-contact-custom {
    /* Show on desktop */
    display: flex;
}
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #295C2B;
    margin-left: 1rem;
    z-index: 2;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}
.navbar-toggler .custom-hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: #295C2B;
    border-radius: 2px;
    position: relative;
}
.navbar-toggler .custom-hamburger::before,
.navbar-toggler .custom-hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: #295C2B;
    border-radius: 2px;
    transition: 0.2s;
}
.navbar-toggler .custom-hamburger::before {
    top: -9px;
}
.navbar-toggler .custom-hamburger::after {
    top: 9px;
}

/* Utility: ensure 75% viewport height */
.min-vh-75 { min-height: 75vh !important; }

/* Hero section (background image + texts) */
.hero-section {
    position: relative;
    width: 100%;
    background: url('../images/headerBG.jpg') center center/cover no-repeat;
    padding-top: 32px; /* controls navbar offset while bg stays at top */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.70);
}
.hero-content {
    position: absolute;
    inset: 0;
    /* z-index: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 16px;
}
.hero-title {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #222;
    font-size: 50px;
    letter-spacing: 0;
    margin: 0;
}
.hero-subtitle {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #222;
    font-size: 50px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: lowercase;
    margin: 0;
}

/* Products */
.products-section {
    background: #e9ecef33;
    overflow: hidden;
}
.products-title {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 48px; /* 96% */
    color: #000;
}
.product-heading {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 40px);
    color: #222;
}
.product-copy {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.8vw, 22px);
    color: #333;
    line-height: 1.7;
}
.product-image {
    width: 316px;
    height: 316px;
    object-fit: cover;
    display: block;
}
.products-ellipse {
    position: absolute;
    top: -11%;
    right: -4%;
    width: min(32vw, 720px);
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    user-select: none;
}
/* tighter horizontal gutter for products row */
.products-row { --bs-gutter-x: 1rem; }
@media (max-width: 991.98px) {
    .custom-header {
    flex-direction: row;
    align-items: center;
    height: 56px;
    min-height: 56px;
    max-height: 56px;
    padding: 0 0 0 1rem;
    }
    .header-left {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    }
    .logo {
    margin-left: 0.5rem;
    }
    .nav-links,
    .btn-contact-custom {
    display: none !important;
    }
    .navbar-toggler {
    display: flex;
    margin-left: auto;
    margin-right: 1rem;
    }
    .mobile-menu {
    display: block;
    width: 100%;
    background: #728E71;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 10;
    padding: 1.5rem 1rem 1rem 1rem;
    margin: 0 auto 1.5rem auto;
    max-width: 1200px;
    position: static;
    }
    .mobile-menu .nav-links {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    display: flex !important;
    }
    .mobile-menu .btn-contact-custom {
    width: 100%;
    display: flex !important;
    border-radius: 30px;
    height: 48px;
    line-height: 48px;
    font-size: 1.1rem;
    justify-content: center;
    margin: 0 auto;
    }
    /* height managed via Bootstrap h-75 */
    .products-ellipse { right: -220px; top: -120px; width: 70vw; opacity: 0.6; }
}
@media (max-width: 575.98px) {
    .products-ellipse { display: none !important; }
}
@media (max-width: 600px) {
    .custom-header-container {
    padding: 0 4px;
    }
    .custom-header {
    padding: 0.5rem 0.5rem;
    }
    .logo-text {
    font-size: 1.1rem;
    }
    .nav-link-custom {
    font-size: 1rem;
    }
    .btn-contact-custom {
    font-size: 1rem;
    }
    /* height managed via Bootstrap h-75 */
}

/* About Us Section */
.about-section {
    background: linear-gradient(135deg, #D0D0D0 0%, #DFE3DE 50%, #3F673D 100%);
}
.about-title {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 48px;
    color: #000;
    margin-bottom: 1.5rem;
}
.about-description {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000;
}
.about-features {
    padding-left: 1rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.feature-bullet {
    font-size: 24px;
    color: #000;
    line-height: 1;
    margin-top: -2px;
}
.feature-text {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #000;
}
.feature-separator {
    margin: 1.5rem 0;
    border: 0;
    height: 1px;
    background: #000;
    opacity: 0.3;
}
@media (max-width: 991.98px) {
    .about-title {
    font-size: 32px;
    line-height: 40px;
    }
    .about-description,
    .feature-text {
    font-size: 20px;
    line-height: 26px;
    }
}
@media (max-width: 600px) {
    .about-title {
    font-size: 26px;
    line-height: 32px;
    }
    .about-description,
    .feature-text {
    font-size: 18px;
    line-height: 24px;
    }
}

/* Contact Us Section */
.contact-section {
    background: #f0f0f0;
    padding-top: 50px;
    padding-bottom: 50px;
}
.contact-title {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    color: #000;
    margin-bottom: 50px;
}
.contact-info {
    margin-bottom: 50px;
}
.contact-item {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}
.contact-label {
    font-weight: 700;
    margin-right: 10px;
}
.contact-value {
    font-weight: 400;
    color: #000;
}
.copyright {
    text-align: center;
}
.copyright-text {
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}
@media (max-width: 991.98px) {
    .contact-title {
    font-size: 26px;
    line-height: 32px;
    }
    .contact-item {
    font-size: 18px;
    line-height: 26px;
    }
    .copyright-text {
    font-size: 18px;
    line-height: 26px;
    }
}
@media (max-width: 600px) {
    .contact-title {
    font-size: 22px;
    line-height: 28px;
    }
    .contact-item {
    font-size: 16px;
    line-height: 24px;
    }
    .copyright-text {
    font-size: 16px;
    line-height: 22px;
    }
}
