/* =========================
   BASIC RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background-color: white;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 60px;

    object-fit: contain;
    border-radius: 50%;
}

.logo span {
    font-size: 30px;
}

.logo h2 {
    font-size: 22px;
    letter-spacing: 1px;
}

.logo h2 span {
    color: #4c9a2a;
    font-size: inherit;
}


/* =========================
   NAV LINKS
========================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;

    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #222;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #4c9a2a;
}


/* =========================
   DROPDOWN
========================= */

.dropdown-menu {
    position: absolute;

    top: 35px;
    left: 0;

    width: 210px;

    background: white;

    list-style: none;

    padding: 10px 0;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu a {
    display: block;
}


/* Show dropdown */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================
   SEARCH BUTTON
========================= */

.search-btn {
    border: none;

    background: none;

    font-size: 20px;

    cursor: pointer;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-btn {
    display: none;

    border: none;
    background: none;

    font-size: 25px;

    cursor: pointer;
}

/* =========================
   RESPONSIVE NAVBAR
========================= */

@media (max-width: 900px) {

    .nav-links {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        background: white;

        flex-direction: column;

        align-items: flex-start;

        padding: 20px 6%;

        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .search-btn {
        margin-left: auto;
        margin-right: 20px;
    }

    .dropdown-menu {
        position: static;

        box-shadow: none;

        width: 100%;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* =========================
   HERO SLIDER
========================= */

.hero-slider {
    position: relative;

    width: 100%;
    height: 90vh;

    overflow: hidden;

    margin-top: 80px;
}


/* =========================
   SLIDE
========================= */

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    transition: opacity 1s ease;

    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;

    pointer-events: auto;
}


/* =========================
   IMAGE
========================= */

.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================
   DARK OVERLAY
========================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.42);
}


/* =========================
   HERO TEXT
========================= */

.hero-text {
    position: absolute;

    top: 50%;
    left: 8%;

    transform: translateY(-50%);

    color: white;

    max-width: 700px;
}

.hero-text p {
    font-size: 14px;

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.1;

    margin-bottom: 30px;
}


/* =========================
   BUTTON
========================= */

.hero-btn {
    display: inline-block;

    padding: 14px 30px;

    background: #4c9a2a;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.hero-btn:hover {
    background: #397d1e;

    transform: translateY(-2px);
}


/* =========================
   SLIDER DOTS
========================= */

.slider-dots {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

    z-index: 10;
}

.dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: white;

    opacity: 0.5;

    cursor: pointer;

    transition: 0.3s;
}

.dot.active {
    opacity: 1;

    transform: scale(1.3);
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 100px 8%;

    background: #ffffff;
}


.about-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


/* =========================
   IMAGE
========================= */

.about-image {
    width: 100%;

    height: 550px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.about-image:hover img {
    transform: scale(1.04);
}


/* =========================
   CONTENT
========================= */

.section-label {
    color: #4c9a2a;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.about-content h2 {
    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.15;

    color: #222;

    margin-bottom: 25px;
}

.about-content h2 span {
    display: block;

    color: #4c9a2a;
}


.about-text {
    color: #666;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 15px;
}


/* =========================
   FEATURES
========================= */

.about-features {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin: 30px 0;
}


.feature {
    display: flex;

    align-items: center;

    gap: 15px;
}


.feature>i {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef7e9;

    color: #4c9a2a;

    font-size: 19px;
}


.feature h4 {
    font-size: 16px;

    margin-bottom: 4px;

    color: #222;
}


.feature p {
    font-size: 14px;

    color: #777;
}


/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 25px;

    background: #4c9a2a;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}


.about-btn:hover {
    background: #397d1e;

    gap: 15px;
}

@media (max-width: 800px) {

    .about-section {
        padding: 70px 6%;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        height: 400px;
    }

    .about-content h2 {
        font-size: 38px;
    }

}

/* =================================================
   SECTION 4 — OUR SEEDS
================================================= */

.seeds-section {

    padding: 100px 8%;

    background: #f7f9f5;

}


/* =================================================
   SECTION HEADING
================================================= */

.section-heading {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}




.section-heading h2 {

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.15;

    color: #222;

    margin-bottom: 20px;

}


.section-heading h2 span {

    display: block;

    color: #4c9a2a;

}


/* =================================================
   HEADING LINE
================================================= */

.heading-line {

    width: 60px;

    height: 3px;

    background: #4c9a2a;

    margin: 20px auto;

}


.heading-description {

    color: #777;

    font-size: 16px;

    line-height: 1.7;

}


/* =================================================
   SEED GRID
================================================= */

.seed-categories {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}


/* =================================================
   SEED CARD
================================================= */

.seed-card {

    position: relative;

    display: block;

    height: 380px;

    overflow: hidden;

    text-decoration: none;

    color: white;

}


/* =================================================
   IMAGE
================================================= */

.seed-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;

}


/* =================================================
   OVERLAY
================================================= */

.seed-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.08));

}


/* =================================================
   CONTENT
================================================= */

.seed-card-content {

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 30px;

    z-index: 2;

}


.seed-card-content>i {

    font-size: 25px;

    margin-bottom: 12px;

}


.seed-card-content h3 {

    font-size: 28px;

    margin-bottom: 8px;

}


.seed-card-content p {

    max-width: 320px;

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 15px;

}


/* =================================================
   EXPLORE
================================================= */

.seed-explore {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 14px;

    font-weight: 600;

    transition: gap 0.3s ease;

}


/* =================================================
   HOVER
================================================= */

.seed-card:hover img {

    transform: scale(1.08);

}


.seed-card:hover .seed-explore {

    gap: 15px;

}


.seed-card:hover .seed-card-content {

    transform: translateY(-5px);

}


.seed-card-content {

    transition: transform 0.3s ease;

}

/* =================================================
   SEEDS RESPONSIVE
================================================= */

@media (max-width: 700px) {

    .seeds-section {

        padding: 70px 6%;

    }


    .seed-categories {

        grid-template-columns: 1fr;

    }


    .seed-card {

        height: 350px;

    }


    .seed-card-content h3 {

        font-size: 24px;

    }

}

/* =========================
   RESEARCH SECTION
========================= */

.research-section {
    padding: 100px 8%;

    background: #f5f8f2;
}


.research-container {
    max-width: 850px;

    margin: auto;

    text-align: center;
}


.research-content h2 {
    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.15;

    margin-bottom: 25px;
}


.research-content h2 span {
    display: block;

    color: #4c9a2a;
}


.research-description {
    max-width: 700px;

    margin: 0 auto 40px;

    color: #666;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   R&D POINTS
========================= */

.research-points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 40px;
}


.research-point {
    padding: 25px 18px;

    background: white;

    text-align: center;

    transition: 0.3s;
}


.research-point:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.research-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e5f1df;

    color: #4c9a2a;

    font-size: 20px;
}


.research-point h4 {
    margin-bottom: 8px;

    font-size: 16px;
}


.research-point p {
    color: #777;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================
   BUTTON
========================= */

.research-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    background: #4c9a2a;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}


.research-btn:hover {
    background: #397d1e;

    gap: 15px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .research-section {
        padding: 70px 6%;
    }

    .research-points {
        grid-template-columns: 1fr;
    }

}

/* =========================
   CROPS SECTION
========================= */

.crops-section {
    padding: 100px 8%;

    background: #ffffff;
}


/* =========================
   CROPS GRID
========================= */

.crops-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================
   CROP CARD
========================= */

.crop-card {
    position: relative;

    height: 280px;

    overflow: hidden;

    cursor: pointer;
}


.crop-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


/* =========================
   OVERLAY
========================= */

.crop-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.05));
}


/* =========================
   CONTENT
========================= */

.crop-content {
    position: absolute;

    left: 22px;
    bottom: 20px;

    color: white;

    z-index: 2;
}


.crop-content i {
    font-size: 20px;

    margin-bottom: 8px;
}


.crop-content h3 {
    font-size: 22px;
}


/* =========================
   HOVER
========================= */

.crop-card:hover img {
    transform: scale(1.1);
}

.crop-card:hover .crop-content {
    transform: translateY(-5px);
}

.crop-content {
    transition: 0.3s;
}



/* =====================================================
   ABOUT / COMPANY AT A GLANCE
===================================================== */

.about-glance {

    padding: 80px 8% 100px;

    background: #ffffff;

}


/* HEADING */

.about-heading {

    text-align: center;

    margin-bottom: 65px;

}


.about-heading h2 {

    font-size: clamp(35px, 4vw, 50px);

    font-weight: 500;

    color: #333;

    margin: 0;

}


/* DECORATION */

.heading-decoration {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 25px;

}


.heading-decoration span {

    width: 70px;

    height: 1px;

    background: #999;

}


.heading-decoration i {

    font-size: 10px;

    color: #333;

}


/* STATS */

.glance-container {

    max-width: 900px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 55px;

}


.glance-item {

    display: flex;

    align-items: center;

    gap: 35px;

}


.glance-icon {

    width: 115px;

    min-width: 115px;

    height: 115px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.glance-icon i {

    font-size: 65px;

    color: #3c9b72;

}


.glance-content {

    display: flex;

    flex-direction: column;

}


.glance-content strong {

    font-size: 40px;

    line-height: 1.1;

    color: #287b20;

    font-weight: 700;

}


.glance-label {

    font-size: 22px;

    color: #444;

    letter-spacing: 1px;

}


/* IMAGE BELOW */

.about-image {
    width: 80%;
    max-width: 1200px;
    height: auto;
    margin: 80px auto 0;
    overflow: visible;
    padding: 0;

}


.about-image img {

    width: 80%;
    height: auto ;
    display: block;
    object-fit: contain !important;
    
    



}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-glance {

        padding: 60px 6px 70px;

    }


    .glance-container {

        gap: 45px;

    }


    .glance-item {

        gap: 20px;

    }


    .glance-icon {

        width: 90px;

        min-width: 90px;

        height: 90px;

    }


    .glance-icon i {

        font-size: 50px;

    }


    .glance-content strong {

        font-size: 30px;

    }


    .glance-label {

        font-size: 16px;

    }

    .about-image {
       
        margin-top: 60px;
    }


}
/* =====================================================
   FIELD & DEMO PLOT - HOMEPAGE
===================================================== */

.field-demo {
    padding: 90px 8%;
    background: #f7f9f5;
}

.field-demo-card {
    display: block;

    max-width: 1100px;
    min-height: 320px;

    margin: auto;
    padding: 60px;

    text-decoration: none;
    color: white;

    background:
        linear-gradient(
            rgba(30, 80, 35, 0.75),
            rgba(30, 80, 35, 0.75)
        ),
        url("../images/field-demo/field-cover.jpg");

    background-size: cover;
    background-position: center;

    transition: 0.3s ease;
}

.field-demo-card:hover {
    transform: translateY(-5px);
}

.field-demo-content {
    max-width: 600px;
}

.field-demo-content .section-label {
    color: #c5e9a8;
}

.field-demo-content h2 {
    font-size: clamp(38px, 5vw, 58px);
    margin: 10px 0 20px;
}

.field-demo-content p {
    line-height: 1.7;
}

.field-demo-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;
    padding: 13px 22px;

    background: white;
    color: #315f20;

    font-weight: 600;
}
/* =====================================================
   PROCESSING PLANT & PACKAGING
===================================================== */

.plant-packaging {
    padding: 90px 8%;
    background: #ffffff;
}

.plant-packaging-card {
    display: block;

    max-width: 1100px;
    min-height: 320px;

    margin: auto;
    padding: 60px;

    text-decoration: none;
    color: white;

    background:
        linear-gradient(
            rgba(30, 80, 35, 0.75),
            rgba(30, 80, 35, 0.75)
        ),
        url("../images/plant-packaging/plant-cover.jpg");

    background-size: cover;
    background-position: center;

    transition: 0.3s ease;
}

.plant-packaging-card:hover {
    transform: translateY(-5px);
}

.plant-packaging-content {
    max-width: 650px;
}

.plant-packaging-content .section-label {
    color: #c5e9a8;
}

.plant-packaging-content h2 {
    font-size: clamp(36px, 5vw, 58px);
    margin: 10px 0 20px;
}

.plant-packaging-content p {
    line-height: 1.7;
}

.plant-packaging-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;
    padding: 13px 22px;

    background: white;
    color: #315f20;

    font-weight: 600;
}
/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 80px 8%;
    background: #f5f8f3;
}

.contact-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    align-items: center;
}

/* Left Side */

.section-label {
    color: #6b8e23;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-info h2 {
    font-size: 42px;
    color: #173b27;
    margin-bottom: 20px;
}

.contact-text {
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

/* Contact Details */

.contact-details {
    margin-top: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #173b27;
    color: white;

    border-radius: 50%;
}

.contact-item h4 {
    margin: 0 0 5px;
    color: #173b27;
}

.contact-item p {
    margin: 0;
    color: #666;
}


/* Contact Form */

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: #173b27;
    font-size: 25px;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;

    border: 1px solid #ddd;
    border-radius: 8px;

    margin-bottom: 18px;

    font-family: inherit;
    font-size: 15px;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #6b8e23;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: none;
    padding: 14px 25px;

    background: #173b27;
    color: white;

    border-radius: 8px;

    font-size: 15px;
    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {
    background: #6b8e23;
}

.contact-form button i {
    margin-left: 8px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px;
    }
}