:root {
    --brand: #247D3B;
    --brand-light: #2da65a;
    --sand: #e9d0a9;
    --footer: #0f4225;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-size: 16px;
}

/* ===== Reusable Section Styles ===== */
.section {
    padding: 5rem 0;
}

.section-bg-sand {
    background: var(--sand);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h6 {
    color: var(--brand-light);
    font-weight: bold;
    font-size: 20px;
}

/* ===== Topbar ===== */
.topbar {
    background: var(--brand);
    color: #d8f5e1;
    font-size: .85rem;
}

/* ===== Navbar ===== */
.navbar-brand img {
    height: 70px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('/assets/images/biomantra-banner-1600x700.jpg') center/cover no-repeat;
    object-fit: fill;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(12 60 0 / 30%);
    /* background: radial-gradient(600px 600px at 180px 180px, rgba(33, 113, 66, .55), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .45)); */
}

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

.badge-pill {
    border-radius: 50rem;
    background: #f1f5f4;
    color: var(--brand);
    font-weight: 600;
}

/* ===== Journey Carousel ===== */
.card-img-container {
    position: relative;
}

.year-overlay {
    font-size: 5rem;
    font-weight: 800;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: #999;
    transition: all 0.4s ease;
}

.slick-center .year-overlay {
    color: var(--brand);
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    z-index: 10;
    cursor: pointer;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev i,
.slick-next i {
    color: #333;
    font-size: 2rem;
}

.journey-carousel .slick-slide {
    opacity: 0.5;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.journey-carousel .slick-center {
    opacity: 1;
    transform: scale(1);
}

.manufacture-unit-carousel .slick-slide {
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.manufacture-unit-carousel .slick-center {
    opacity: 1;
    transform: scale(1);
}

.manufacture-unit-carousel .slick-prev {
    left: 50px;
}

.manufacture-unit-carousel .slick-next {
    right: 50px;
}

.history-title {
    color: #8BC34A;
    font-weight: 700;
    margin-top: 1rem;
}

.gradient-bg-green {
    background: linear-gradient(135deg, rgba(95, 179, 99, 0.7), rgba(36, 224, 83, 0.7));
}

/* ===== Footer ===== */
footer {
    background: var(--brand);
    color: #d6efe2;
}

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

footer a:hover {
    color: #fff;
}

/* Scroll-to-top button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    background: #76bc43;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 12px 16px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

#scrollTopBtn:hover {
    background: #198754;
}

.whatsapp-chat {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
    display: block;
    cursor: pointer;
}

.hero-section {
    background:
        radial-gradient(600px 600px at 180px 180px, rgba(33, 113, 66, .55), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .45)),
        url('/assets/images/green-banner.jpg') no-repeat center center/cover;
    min-height: 40vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product details page css */

#benefits ul,
#specification ul {
    list-style: none;
    padding-left: 0;
}

#benefits li,
#specification li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

#benefits li::before,
#specification li::before {
    content: "\f231";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 0;
    color: #2a7d2e !important;
    font-size: 1rem;
}

.product-page {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.product-image {
    position: sticky;
    /* top: 1rem; */
    top: 1rem;
    align-self: flex-start;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-details {
    overflow: visible;
}

@media (max-width: 991px) {
    .product-image {
        position: relative;
        top: 0;
        margin-bottom: 1rem;
    }
}

[x-cloak] {
    display: none !important;
}

.product-details table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}