:root {
    /* FONT FAMILY */
    --outfit-font: "Roboto", sans-serif;
    /* --outfit-font: "Outfit", sans-serif; */

    /* COLORS */
    --primary-color: #1eae60;
    /* Your main green */
    --secondary-color: #ffcc00;
    /* Yellow */
    --dark-color: #222;
    --light-color: #ffffff;
    --gray-color: #666;


    /* FONT SIZES */
    --fs-small: 12px;
    --fs-regular: 18px;
    --fs-medium: 20px;
    --fs-large: 28px;
    --fs-title: 45px;


    /* FONT WEIGHTS */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 600;
}




/* Menu Start*/
.navbar .nav-link {
    font-family: var(--outfit-font);
    font-size: var(--fs-regular);
    font-weight: var(--fw-bold);
    color: var(--dark-color);
    /* normal menu color */
    transition: 0.3s ease;
}


.call {
    font-family: var(--outfit-font);
    font-size: var(--fs-regular);
    font-weight: var(--fw-bold);
    color: var(--dark-color);
}


/* Hover color */
.navbar .nav-link:hover {
    color: var(--primary-color);
}


/* ACTIVE menu color */
.navbar .nav-link.active {
    color: var(--primary-color) !important;
}


/* Menu End*/




/* Banner Start */
.banner-text {
    font-family: var(--outfit-font);
    color: var(--light-color);
}


.banner-text h1 {
    font-size: var(--fs-title);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--primary-color);
}


.banner-text .highlight {
    color: var(--secondary-color);
    /* color for “Connecting Global Markets” */
    font-family: "Lemonada", cursive;
}


.banner-text p {
    font-size: var(--fs-medium);
    font-weight: var(--fw-regular);
    color: var(--gray-color);
}


.banner-text .btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: var(--fw-medium);
    font-size: var(--fs-regular);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}


.banner-text .btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}


.banner-section {
    position: relative;
    /* optional */
}


.banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/banner-one-shape-bg.png') center/cover no-repeat;
    opacity: 0.10;
    /* your requested opacity */
    z-index: 1;
}


/* dark overlay (optional) */
.banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 243 210 / 45%);
    z-index: 2;
}


/* bring your content above image + overlay */
.banner-section .container,
.banner-section .row {
    position: relative;
    z-index: 3;
}


/* Banner End*/




/* ABOUT SECTION start*/
.about-left-bg {
    background: linear-gradient(82deg, #006830, #4bc78d);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* center main text vertically */
    align-items: center;
    /* center main text horizontally */
    min-height: 400px;
    height: 100%;
    border-radius: 8px;
    position: relative;
    /* needed for absolute positioning */
}

.about-left-text h3 {
    color: var(--light-color);
    font-family: var(--outfit-font);
    font-size: var(--fs-title);
    font-weight: var(--fw-bold);
    margin-bottom: 5px;
}

.about-left-text p {
    color: var(--light-color);
    font-family: var(--outfit-font);
    font-size: var(--fs-medium);
    font-weight: var(--fw-regular);
    margin-bottom: 0;
}

.since-text {
    position: absolute;
    bottom: 10px;
    /* distance from bottom */
    right: 15px;
    /* distance from right */
    color: var(--light-color);
    font-family: 'Lemonada', cursive;
    font-size: 25px;
    /* adjust as needed */
    font-weight: var(--fw-regular);
}



.about-section {
    font-family: var(--outfit-font);
}


.about-img {
    border-radius: 8px;
}


.about-text {
    color: var(--dark-color);
}


/* Small Section Title */
.section-title-shape-1 {
    font-size: var(--fs-medium);
    font-weight: var(--fw-bold);
    color: var(--secondary-color);
    /* Yellow */
    text-transform: uppercase;
}


/* Main Heading */
.section-title-shape-2 {
    font-size: var(--fs-title);
    font-weight: var(--fw-bold);
    line-height: 1.3;
    color: var(--primary-color);
    /* Green */
}


/* Paragraph */
.about-paragraph {
    text-align: justify;
    font-size: var(--fs-regular);
    font-weight: var(--fw-regular);
    color: var(--gray-color);
}


/* Features List */
.about-features li {
    text-align: left;
    font-size: var(--fs-regular);
    margin-bottom: 0.5rem;
}


.about-features i {
    color: var(--primary-color);
}


/* About End*/




/* Contact Start */
form input,
form textarea {
    border-radius: 10px !important;
}


.p-4 {
    border-radius: 15px !important;
}


/* img {
    border-radius: 15px;
} */




/* Main row background */
.contact-row {
    position: relative;
    background: url('../img/contact-bg.png') no-repeat center/cover;
    padding: 40px 20px;
    border-radius: 15px;
    overflow: hidden;
}


/* RIGHT SIDE background (half row) */
.contact-row::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../img/contact-right-bg.png') no-repeat center/cover;
    z-index: 1;
    /* stays below overlay */
}


/* Overlay ABOVE both backgrounds */
.contact-row .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 243 210);
    /* keep your same color */
    opacity: 0.75;
    /* ✔ opacity applied */
    z-index: 2;
    /* stays above both backgrounds */
}




/* Content stays above overlay */
.contact-row .content-area {
    position: relative;
    z-index: 3;
}


/* Contact Form Wrapper */
.contact-row .content-area .p-4 {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-family: var(--outfit-font);
}


/* Heading */
.contact-row h3 {
    color: var(--primary-color);
    font-size: var(--fs-large);
    font-weight: var(--fw-bold);
}


/* Labels */
.contact-row .form-label {
    font-size: var(--fs-regular);
    font-weight: var(--fw-medium);
    color: var(--dark-color);
}


/* Input Fields */
.contact-row .form-control {
    font-size: var(--fs-regular);
    font-family: var(--outfit-font);
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all 0.2s ease;
}


/* Focus Effect */
.contact-row .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(30, 174, 96, 0.3);
}


/* Submit Button */
.contact-row .btn-success {
    background: var(--primary-color);
    border: none;
    font-size: var(--fs-medium);
    font-weight: var(--fw-bold);
    padding: 12px;
    border-radius: 10px;
    transition: 0.2s;
}


/* Hover */
.contact-row .btn-success:hover {
    background: #179a54;
}


/* Textarea */
.contact-row textarea.form-control {
    resize: none;
}


/* Contact End */


/* Footer Start */


/* Footer Base */
footer {
    font-family: var(--outfit-font);
    background-color: var(--light-color);
    color: var(--gray-color);
    padding-top: 50px;
    padding-bottom: 30px;
    border-top: 1px solid #ddd;
}


/* Footer Headings */
footer h5 {
    font-size: var(--fs-medium);
    font-weight: var(--fw-bold);
    color: var(--dark-color);
    margin-bottom: 20px;
}


/* Paragraphs */
footer p {
    font-size: var(--fs-regular);
    font-weight: var(--fw-regular);
    color: var(--gray-color);
    margin-bottom: 8px;
}


/* Links */
footer a {
    font-size: var(--fs-regular);
    font-weight: var(--fw-medium);
    color: var(--gray-color);
    text-decoration: none;
    transition: 0.2s;
}


footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/* List Items */
footer ul li {
    margin-bottom: 10px;
}


footer ul li a {
    color: var(--gray-color);
}


footer ul li a:hover {
    color: var(--primary-color);
}


/* Logo */
footer img {
    max-width: 150px;
    margin-bottom: 15px;
}


/* Bottom copyright row */
footer .d-flex.small-text {
    font-size: var(--fs-small);
    color: var(--gray-color);
}


/* Responsive spacing for columns */
footer .col-lg-3 {
    margin-bottom: 30px;
}


/* Contact info icons (optional if you add icons) */
footer .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: var(--fs-regular);
    color: var(--gray-color);
}


footer .contact-info .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid var(--primary-color);
    /* optional border */
}


footer .contact-info .icon-circle i {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Footer End */


/*Product section start*/
.custom-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}




.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}




/* IMAGE SECTION */
.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}




/* MIDDLE RIBBON */
.card-ribbon {
    background: #4a2b15;
    /* brown color like your reference */
    padding: 22px;
    position: relative;
    text-align: center;
    color: #fff;
}




.ribbon-icon {
    width: 60px;
    height: 60px;
    background: #1eae60;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: -46px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
}




/* CONTENT */
.card-content {
    padding: 40px 20px 25px;
    text-align: center;
    font-family: var(--outfit-font);
}




.card-content p {
    color: #666;
    font-size: 18px;
    margin-top: 17px;
    text-align: left;
    font-family: var(--outfit-font);
}




.read-more {
    color: #1eae60;
    font-weight: 600;
    text-decoration: none;
}


.custom-cards-section .custom-flex-col {
    display: flex;
}


/*Product section End*/


/*quality section start*/
.organic-card-section .organic-card {
    font-family: var(--outfit-font);
}


.organic-card-section .organic-card-subtitle {
    color: var(--primary-color);
    font-weight: var(--fw-medium);
    font-size: var(--fs-medium);
    margin-bottom: 0.5rem;
}


.organic-card-section .organic-card-title {
    font-weight: var(--fw-bold);
    font-size: var(--fs-medium);
    margin-bottom: 1rem;
}


.organic-card-section .organic-card-description {
    font-weight: var(--fw-regular);
    font-size: var(--fs-regular);
    color: var(--gray-color);
}


.organic-card-section .organic-card-image {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically */
    /* height: 100%; */
}


.organic-card-section .organic-card-image img {
    width: 60%;
    /* image takes 60% of the column */
    height: auto;
    /* maintain aspect ratio */
    object-fit: cover;
    display: block;
}


/* Mobile screens */
@media (max-width: 991.98px) {
    .organic-card-section .organic-card-image {
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        /* add spacing between text and image */
    }


    .organic-card-section .organic-card-image img {
        width: 60%;
        /* full width on mobile */
        max-width: 60%;
        height: auto;
        margin-bottom: 35px;
    }
}

.subtitle-row {
    background-color: var(--primary-color);
    /* subtitle background */
    color: white !important;
    /* text color */
    font-family: 'Roboto', sans-serif;
    font-weight: var(--fw-bold);
    text-align: center;
    border-radius: 4px 4px 0 0;
    /* optional rounded top corners */
}

.subtitle-row h5 {
    margin: 0;
    padding: 10px;
    font-weight: var(--fw-bold);
    font-size: var(--fs-large);
}
/* Subtitle */
.pw-subtitle-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--dark-color);
}

/* Dotted line */
.pw-dotted-line {
    border-top: 2px dotted #999;
    margin: 10px 0 20px 0;
}

/* Product Titles */
.pw-product-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    border-radius: 4px;
    color: #fff;
}

.pw-product-ponni {
    background-color: var(--primary-color);
}

.pw-product-nirani {
    background-color: var(--secondary-color);
}

/* Nested content: image + paragraph */
.pw-product-img {
    width: 100%;
    border-radius: 8px;
}

.pw-product-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: var(--dark-color);
    line-height: 1.6;
}


/*quality section end*/


/* Contact snackbar */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #1eae60;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 14px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.4s ease, bottom 0.4s ease;
}




#snackbar.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}


/* Sliding Banner */
.hero-slider {
    position: relative;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.highlight {
    color: #B6FF00;
}

/* Position both arrows at right side */
/* Big arrows on right side */
/* Keep button size same */
.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    opacity: 1 !important;
    position: absolute;
    z-index: 10;
}

/* Button positions stay same */
.carousel-control-prev {
    right: 20px;
    left: auto;
    margin-top: -60px;
}

.carousel-control-next {
    right: 20px;
    left: auto;
    margin-top: 60px;
}

/* Decrease ONLY arrow icon */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.65);
    padding: 28px;
    /* keep same */
    border-radius: 50%;
    background-size: 25px 25px;
    /* ↓↓↓ arrow size reduced */
    filter: invert(1);
}

/* Hover effect same */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.85);
    transition: 0.3s;
}

/* ------------------ MOBILE FIX ------------------ */
@media (max-width: 768px) {

    /* Center the text */
    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-slider {
        justify-content: center;
        text-align: center;
    }

    /* Move arrows AWAY from text */
    .carousel-control-prev,
    .carousel-control-next {
        top: 20px;
        /* move to top */
        transform: none;
        width: 55px;
        /* smaller button */
        height: 55px;
    }

    .carousel-control-prev {
        right: 20px;
        margin-top: 0;
    }

    .carousel-control-next {
        right: 20px;
        margin-top: 65px;
        /* stacked vertical */
    }

    /* Smaller arrow icon */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 15px;
        background-size: 18px 18px;
        /* smaller icon */
    }

    /* Reduce text size for mobile */
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
    }
}