body {
    font-family: "Poppins", sans-serif;
}

hr {
    border: 0;
    border-top: 2px solid #000;
    opacity: 1;
}

/* Highlight active nav-link with white underline */
.nav-link.active {
    text-decoration: underline;
}

.hero-section {
    background-color: #fca311;
    color: #fff;
}

.hero-left {
    background-color: #2b9348;
    color: #fff;
    border-radius: 0 0 50% 0;
    padding: 60px 40px;
}

.hero-left h1 {
    font-family: "Pacifico", cursive;
    font-size: 3rem;
}

.hero-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    background: transparent;
}

.product-section {
    padding: 60px 0;
}

.product-card {
    background: #ff8200;
    color: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.about-section-1 {
    background: #2b9348;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.social-section {
    padding: 60px 20px;
    text-align: center;
}

.social-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    overflow-x: hidden;
}

.banner-video-desktop,
.banner-video-laptop {
    display: none;
}

@media (min-width: 768px) and (max-width: 1399.98px) {
    .banner-video-laptop {
        display: block !important;
    }
}

@media (min-width: 1400px) {
    .banner-video-desktop {
        display: block !important;
    }
}

.contact-banner {
    color: #fff;
    text-align: center;
    width: 100%;
}

.contact-banner h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 30px 0;
    background-color: #fff;
}

.about-banner-img {
    display: none;
    width: 100%;
    object-fit: cover;
}

.desktop-banner,
.laptop-banner,
.mobile-banner {
    display: none;
}

@media (min-width: 1400px) {
    .desktop-banner {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .laptop-banner {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .mobile-banner {
        display: block;
    }
}

.about-text {
    background-color: #fff;
    color: black;
    padding: 25px 40px;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Certificate Section */
.certificate-section {
    text-align: center;
    background-color: #fff;
    padding-bottom: 60px;
}

.certificate-section h2 {
    color: #208d45;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Outer green border */
.certificate-border {
    display: inline-block;
    border: 2px solid black; /* Green outer border */
    /* padding: 5px; Spacing for black border */
}

/* Inner black border */
.certificate-border img {
    display: block;
    width: 280px;
    border: 6px solid #208d45; /* Inner black border */
}
.contact-banner h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 1rem;
    border-radius: 10px;
}

.form-control {
    border-radius: 15px;
    border: 1.5px solid #e8f5e9;
    background-color: #e8f5e9;
    color: #208d45 !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
}

.form-control::placeholder {
    color: #208d45;
    opacity: 0.8;
}

/* Button */
/* Button */
.btn-success {
    background-color: #e8f5e9;
    color: #208d45;
    border: 1.5px solid #e8f5e9;
    border-radius: 25px;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 128, 0, 0.25); /* Green soft shadow */
}

.btn-success:hover {
    background-color: #208d45;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 128, 0, 0.4); /* Stronger shadow on hover */
}

/* Below Form Text (Heading) */
.below-form-text {
    color: #208d45;
    font-weight: 700;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Info Boxes */
.info-box {
    background-color: #fff;
    color: #208d45;
    border: 1.5px solid #000;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    height: 100%;
}

.info-box i {
    margin-right: 8px;
}

.info-box h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Map Section */
.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    border: 2px solid black;
    margin-top: 2rem;
}

footer {
    background: #2b9348;
    color: #fff;
    padding: 40px 0 5px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    padding-left: 10%;
    z-index: 2;
    /* optional subtle dark overlay for contrast */
}

.banner-overlay h1,
.banner-overlay p {
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.banner-desc p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 0.6rem;
    text-align: left; /* or center if you want */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.banner-desc {
    max-width: 600px;
    margin-top: 1rem;
}

.h-70 {
    height: 70vh !important; /* 70% of the viewport height */
}

/* Restore Bootstrap 5 close button appearance */
.btn-close {
    background: transparent
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M.293.293a1 1 0 011.414 0L8 6.586l6.293-6.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293A1 1 0 01.293 14.293L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E")
        center/1em auto no-repeat !important;
    opacity: 1 !important;
    z-index: 1050;
}
.address-icon-right {
    margin-right: 0.5rem;
}
@media (max-width: 991.98px) {
    /* Center menu links in the collapsed navbar */
    #navbarMobile .nav-link {
        font-size: 1.1rem;
        text-align: center;
        justify-content: center;
    }

    #navbarMobile ul.navbar-nav {
        align-items: center;
    }

    .navbar .form-select {
        font-size: 0.9rem;
        /* padding: 2px 6px; */
        border-radius: 6px;
    }

    .navbar-toggler {
        margin-left: 5px;
    }
    .navbar .container {
        min-height: 60px;
    }

    /* LEFT: EN | FR */
    .mobile-lang {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        z-index: 1051;
    }

    .mobile-lang a {
        color: #fff;
        text-decoration: none;
    }

    .mobile-lang span {
        margin: 0 4px;
    }

    .mobile-lang .active-lang {
        text-decoration: underline;
        font-weight: 700;
    }

    /* CENTER: Logo */
    .mobile-logo-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1051;
    }

    .mobile-logo-center img {
        height: 36px;
    }

    /* RIGHT: Hamburger */
    .mobile-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        z-index: 1051;
    }

    /* Prevent navbar from stretching */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        background: #2b9348;
        border-radius: 12px;
        padding: 15px 0;
        z-index: 1040;
    }

    .navbar-collapse .nav-link {
        color: #fff !important;
        font-weight: 600;
    }

    .address-icon-right {
        margin-right: -0.5rem;
    }
}
@media (min-width: 992px) {
    .navbar.d-none.d-lg-block .nav-item.d-flex.align-items-center .nav-link {
        font-size: 0.9rem;
        padding: 0 0.4rem;
        font-weight: bold;
    }
}
@media (max-width: 767.98px) {
    .ratio-9x16 {
        height: 80vh; /* adjust for mobile */
    }
}
@media (max-width: 766px) {
    .banner-desc p {
        text-align: center;
    }
}
