/* Slider Base */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 41%);
}

/* Text Styling */
.content {
    position: relative;
    text-align: center;
    max-width: 750px;
    padding: 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

/* Active Text Animation */
.slide.active .content {
    opacity: 1;
    transform: translateY(0);
}

/* Light Glow Effect */
.content h1 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #040404, 0 0 30px rgba(255, 255, 255, 0.4);
    color: #fff;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    color: #e9ecef;
}

.btn {
    padding: 14px 35px;
    background: #76a713;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn:hover {
    background: #ffffff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

/* Navigation */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 22px;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}

.prev:hover,
.next:hover {
    background: #76a713;
}

/* Responsive */
@media(max-width:768px) {
    .content h1 {
        font-size: 28px;
        line-height: 30px;
    }

    .content p {
        font-size: 15px;
    }

    .prev,
    .next {
        display: none;
    }
}

/* ===== Vegetable Section ===== */

.vegetable-section {
    padding: 60px 20px;
    background: #f4f9f4;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #096c24;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: #653519;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
}

/* ===== Vegetable Side Box ===== */

.vegetable-box {
    background: #bed4c4;
    padding: 25px;
    border-radius: 15px;
}

.vegetable-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 40px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 122, 57, 0.15);
}

.vegetable-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.vegetable-item span {
    font-size: 16px;
    font-weight: 600;
    color: #007a39;
}

.vegetable-item:hover {
    background: #f7ffe0;
    transform: translateX(5px);
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .vegetable-box {
        margin-top: 30px;
    }
}

/* Section Background */
.right_bg_2 {
    background: #f8fbf6;
}

/* Top Border Style */
.border_dot_top {
    border-top: 2px dashed #dcdcdc;
}

/* Fruits Box */
.fruits_sec_box {
    padding: 10px 0;
}

/* Each Fruit Row */
.vegi_row {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vegi_row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background: #f3f9f1;
}

/* Crop Image */
.crop_img {
    width: 100%;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.vegi_row:hover .crop_img {
    transform: scale(1.08);
}

/* Crop Name */
.crop_name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    transition: color 0.3s ease;
}

.vegi_row:hover .crop_name {
    color: #2e7d32;
}

/* Heading Styles */
.gen_titt {
    font-size: 30px;
    font-weight: 700;
    color: #1b5e20;
}

.welcome_text {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

.gen_para {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .gen_titt {
        font-size: 24px;
    }

    .welcome_text {
        font-size: 18px;
    }

    .crop_img {
        height: 50px;
    }

    .vegi_row {
        padding: 8px;
    }
}


.info-panels {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.panel {
    flex: 1;
    padding: 40px;
    border-radius: 0px;
    color: #fff;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.panel .icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    margin-bottom: 35px;
    border: 1px solid #b5b2b2;
}

.panel-title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
}

.panel-text {
    font-size: 15px;
    line-height: 1.5;
    color: #f6f6f6;
}

/* Panel colors */
.mentor {
    background: linear-gradient(135deg, #0b3d0b, #1a5c1a);
}

.quality {
    background-color: #225441;
}

.satisfaction {
    background: linear-gradient(135deg, #0b3d0b, #1a5c1a);
}

/* Hover effects */
.panel:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.panel:hover .icon {
    transform: rotate(20deg) scale(1.2);
}

/* Simple fade-in animation */
.panel {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.panel:nth-child(1) {
    animation-delay: 0.2s;
}

.panel:nth-child(2) {
    animation-delay: 0.4s;
}

.panel:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-title-overlay {
    position: absolute;
    bottom: 20px;
    width: 100%;
    background: rgb(0 0 0 / 0%);
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vs-blog-wrapper {
    padding: 60px 0;
}

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

.farming-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.farming-left {
    width: 30%;
}

.farming-right {
    width: 70%;
}

.farming-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #225441;
    text-transform: capitalize;
}

.farming-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .farming-container {
        flex-direction: column;
    }

    .farming-left,
    .farming-right {
        width: 100%;
    }
}

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

.product-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-left,
.product-right {
    flex: 1;
    min-width: 320px;
}

.product-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-info p {
    margin: 5px 0;
    font-size: 15px;
    color: #555;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
}

.spec-table th {
    background: #007167;
    color: #fff;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }

    .benefits-section {
        padding: 0 30px;
    }

    .farming-section {
        padding: 30px 20px;
    }
}

.benefits-section {
    padding: 0 20px;
}

.benefits-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefits-col {
    flex: 1;
    min-width: 550px;
    max-width: 100%;
    background-color: #007167;
    padding: 20px;
    border-radius: 5px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-item {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}

/* Green Check Icon */
.benefits-item::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-row {
        flex-direction: column;
    }

    .benefits-col {
        min-width: 100%;
    }
}

.berry-gallery {
    padding: 60px 0;
    background: #f8f9fa;
}

.berry-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.berry-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.berry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.berry-item:hover img {
    transform: scale(1.08);
}

.breadcumb-wrapper {
    position: relative;
    z-index: 1;
}

.breadcumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 19, 10, 0.373);
    /* Change color & opacity here */
    z-index: -1;
}
/* Section */
.quality-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #eef2f3);
    overflow: hidden;
}

/* Floating Background */
.floating-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.floating-bg span {
    position: absolute;
    display: block;
    width: 120px;
    height: 120px;
    background: rgba(11, 132, 87, 0.08);
    animation: float 20s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.floating-bg span:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
}

.floating-bg span:nth-child(2) {
    left: 30%;
    width: 80px;
    height: 80px;
    animation-duration: 22s;
}

.floating-bg span:nth-child(3) {
    left: 55%;
    width: 100px;
    height: 100px;
    animation-duration: 25s;
}

.floating-bg span:nth-child(4) {
    left: 80%;
    width: 60px;
    height: 60px;
    animation-duration: 15s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-1200px) rotate(360deg);
        opacity: 0;
    }
}

/* Content Layout */
.quality-container {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quality-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.highlight-text {
    font-weight: 600;
    color: #0b8457;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .quality-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0e0805;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
    text-transform: capitalize;
}

/* Green Badge */
.product-badge.green {
    background: #28a745;
}

/* Red Badge */
.product-badge.red {
    background: #dc3545;
}

.product-spec {
    margin-top: 15px;
    padding-left: 18px;
}

.product-spec li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

.vs-product-box4:hover .product-badge {
    background: #0d2c54;
}
.brand-highlight{
    color:#ff6600;   /* orange color */
    font-weight:700; /* bold */
}