html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: #1b1b1b;
}

/* Navigation */

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 7%;
    background: white;
    border-bottom: 1px solid #eeeeee;
}

.nav-logo img {
    width: 90px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #188c20;
    font-size: 16px;
    font-weight: 600;
}

.nav-links a:hover {
    color: #ff8a00;
}


/* Hero section */

header {
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(
        135deg,
        #f4fff3,
        #ffffff,
        #fff8ed
    );
}

header h1 {
    color: #188c20;
    font-size: 64px;
    margin: 0 0 15px;
}

header p {
    color: #ff8a00;
    font-size: 28px;
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 10%;
    text-align: center;
    background-color: #ffffff;
}

.about h2 {
    font-size: 42px;
    color: #2d8c35;
    margin-bottom: 25px;
}
.about p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}
/* =========================
   PRODUCTS SECTION
========================= */

.products {
    padding: 100px 8%;
    background-color: #f8fff8;
    text-align: center;
}

.products-heading {
    max-width: 750px;
    margin: 0 auto 55px;
}

.products-heading span {
    color: #ff8c1a;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.products-heading h2 {
    color: #2d8c35;
    font-size: 48px;
    margin: 12px 0 15px;
}

.products-heading p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

/* Product Grid */

.product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card */

.product-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Product Image */

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.product-card h3 {
    color: #2d8c35;
    font-size: 21px;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Mobile */

@media (max-width: 900px) {

    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .product-container {
        grid-template-columns: 1fr;
    }

    .products-heading h2 {
        font-size: 36px;
    }

}/* =========================
   PRODUCTS SECTION
========================= */

.products {
    padding: 100px 8%;
    background-color: #f8fff8;
    text-align: center;
}

.products-heading {
    max-width: 750px;
    margin: 0 auto 55px;
}

.products-heading span {
    color: #ff8c1a;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.products-heading h2 {
    color: #2d8c35;
    font-size: 48px;
    margin: 12px 0 15px;
}

.products-heading p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

/* Product Grid */

.product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card */

.product-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Product Image */

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.product-card h3 {
    color: #2d8c35;
    font-size: 21px;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* Mobile */

@media (max-width: 900px) {

    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .product-container {
        grid-template-columns: 1fr;
    }

    .products-heading h2 {
        font-size: 36px;
    }

}
/* Services Section */
.services {
    padding: 80px 10%;
    text-align: center;
    background-color: #ffffff;
}

.services h2 {
    font-size: 42px;
    color: #2d8c35;
    margin-bottom: 15px;
}

.services-intro {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #f8fff8;
    width: 280px;
    padding: 30px;
    border-radius: 15px;
    border-top: 5px solid #ff8c1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: #2d8c35;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}
/* Contact Section */
.contact {
    padding: 80px 10%;
    text-align: center;
    background-color: #f8fff8;
}

.contact h2 {
    font-size: 42px;
    color: #2d8c35;
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 45px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    text-align: left;
    background-color: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    color: #2d8c35;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #2d8c35;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #24752b;
}

/* Founder Message */
.founder-contact-container {
    align-items: flex-start;
    max-width: 1300px;
    gap: 40px;
}

.founder-message-card {
    flex: 1.6;
    min-width: 0;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.founder-message-image {
    display: block;
    width: 100%;
    height: auto;
}

.founder-contact-container .contact-form {
    flex: 0.8;
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .founder-contact-container {
        flex-direction: column;
        align-items: stretch;
    }

    .founder-message-card,
    .founder-contact-container .contact-form {
        width: 100%;
        flex: none;
    }
}

/* Footer */
.footer {
    background-color: #176b20;
    color: white;
    padding-top: 60px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 50px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    width: 130px;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
}

.footer-logo p {
    margin-top: 15px;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer h3 {
    color: #ff8c1a;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #ff8c1a;
}

.footer-contact p {
    margin: 0 0 12px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.footer-bottom p {
    margin: 0;
}
/* Mobile Website */

@media (max-width: 768px) {

    .navbar {
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-logo img {
        width: 80px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 14px;
    }

    header {
        min-height: 450px;
        padding: 50px 20px;
    }

    header h1 {
        font-size: 42px;
    }

    header p {
        font-size: 22px;
    }

    .about,
    .products,
    .services,
    .contact {
        padding: 60px 20px;
    }

    .about h2,
    .products h2,
    .services h2,
    .contact h2 {
        font-size: 34px;
    }

    .product-card,
    .service-card {
        width: 100%;
        max-width: 350px;
    }
    .product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
}

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

}
/* Hero Content */

.hero-text {
    max-width: 650px;
    margin: 20px auto 30px;
    font-size: 18px;
    line-height: 1.7;
    color: white;
}

.hero-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: #ff8c1a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-button:hover {
    background-color: #2d8c35;
    transform: translateY(-3px);
}
/* Main Hero Section */

#home {
    min-height: 650px;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.80) 38%,
            rgba(255, 255, 255, 0.20) 75%,
            rgba(255, 255, 255, 0.05) 100%
        ),
         url("hero-background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#home h1 {
    font-size: 64px;
    color: #2d8c35;
    margin: 0 0 10px;
    font-weight: 700;
}

#home > p:not(.hero-text) {
    font-size: 38px;
    color: #ff8c1a;
    margin: 0 0 20px;
    font-weight: 600;
}

#home .hero-text {
    color: #333;
    max-width: 600px;
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.7;
}

#home .hero-button {
    display: inline-block;
    padding: 15px 32px;
    background-color: #ff8c1a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s ease;
}

#home .hero-button:hover {
    background-color: #2d8c35;
    transform: translateY(-3px);
}
/* =========================
   UNIQUE HERO SECTION
========================= */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 10%;
   background-image: url("hero-background.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Soft overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    background-color: #2d8c35;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;
    color: #2d8c35;
    margin: 0 0 20px;
}

.hero-content p {
    font-size: 21px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ff8c1a;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.hero-button:hover {
    background-color: #2d8c35;
    transform: translateY(-3px);
}

.secondary-button {
    background-color: white;
    color: #2d8c35;
    border: 2px solid #2d8c35;
}

.secondary-button:hover {
    background-color: #2d8c35;
    color: white;
}
/* =========================
   ABOUT SECTION
========================= */

.about {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    background-color: white;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 280px;
    max-width: 100%;
    height: auto;
}

.about-content {
    max-width: 650px;
}

.section-label {
    color: #ff8c1a;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-content h2 {
    color: #2d8c35;
    font-size: 46px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.about-content p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.about-values {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.value {
    padding: 18px 20px;
    border-left: 4px solid #ff8c1a;
    background-color: #f8fff8;
    min-width: 150px;
}

.value strong {
    display: block;
    color: #2d8c35;
    font-size: 18px;
    margin-bottom: 5px;
}

.value span {
    color: #666;
    font-size: 14px;
}

/* About section on smaller screens */

@media (max-width: 800px) {

    .about {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-content {
        margin: 0 auto;
    }

    .about-values {
        justify-content: center;
    }

    .value {
        text-align: left;
    }

}
/* =========================
   SERVICES SECTION
========================= */

.services {
    padding: 100px 8%;
    background: linear-gradient(135deg, #2d8c35, #176b2a);
    color: white;
}

.services-heading {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-heading span {
    color: #ffb347;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.services-heading h2 {
    font-size: 48px;
    color: #ffffff;
    margin: 12px 0 18px;
}

.services-heading p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Services Cards */

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: white;
    color: #333;
    padding: 35px 25px;
    border-radius: 18px;
    min-height: 230px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-number {
    color: #ff8c1a;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
}

.service-card h3 {
    color: #2d8c35;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Services Mobile */

@media (max-width: 900px) {

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .services {
        padding: 70px 6%;
    }

    .services-heading h2 {
        font-size: 36px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

}
/* =========================
   CONTACT SECTION
========================= */

.contact {
    padding: 100px 8%;
    background-color: #f8fff8;
}

.contact-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-heading span {
    color: #ff8c1a;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-heading h2 {
    color: #2d8c35;
    font-size: 48px;
    margin: 12px 0 15px;
}

.contact-heading p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ff8c1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.contact-item h3 {
    color: #2d8c35;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background-color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2d8c35;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background-color: #ff8c1a;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #2d8c35;
}

/* Contact Mobile */

@media (max-width: 800px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .contact {
        padding: 70px 6%;
    }

    .contact-heading h2 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px;
    }

}
/* Contact Links */

.contact-item a {
    color: #2d8c35;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #ff8c1a;
    text-decoration: underline;
}
/* =========================
   FOOTER
========================= */

.footer {
    background-color: #174d24;
    color: white;
    padding-top: 70px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8% 50px;

    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr;
    gap: 60px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer h3 {
    color: #ff8c1a;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff8c1a;
}

.footer-contact p {
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

/* Footer Mobile */

@media (max-width: 800px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        align-items: center;
    }

}
/* =========================
   FOOTER
========================= */

.footer {
    background-color: #174d24;
    color: white;
    padding-top: 70px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8% 50px;

    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr;
    gap: 60px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer h3 {
    color: #ff8c1a;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff8c1a;
}

.footer-contact p {
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

/* Footer Mobile */

@media (max-width: 800px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        align-items: center;
    }

}
/* =========================
   NAVIGATION BAR
========================= */

.navbar {
    width: 100%;
    min-height: 80px;
    padding: 10px 7%;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: white;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-logo img {
    width: 95px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #2d8c35;
}

.nav-links .nav-contact {
    background-color: #ff8c1a;
    color: white;
    padding: 11px 22px;
    border-radius: 25px;
}

.nav-links .nav-contact:hover {
    background-color: #2d8c35;
    color: white;
}
/* =========================
   MOBILE NAVIGATION
========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #2d8c35;
    font-size: 30px;
    cursor: pointer;
}

/* Phone and tablet */

@media (max-width: 768px) {

    .navbar {
        min-height: 70px;
        padding: 10px 6%;
    }

    .nav-logo img {
        width: 80px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        background-color: white;

        flex-direction: column;
        align-items: center;

        gap: 0;

        padding: 15px 0;

        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }

    .nav-links .nav-contact {
        width: auto;
        padding: 10px 25px;
        margin-top: 5px;
    }

}
.product-card {
    cursor: pointer;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(45, 140, 53, 0.16);
}

.product-card img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: contain;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card h3 {
    color: #2d8c35;
    font-size: 20px;
    margin: 10px 0 8px;
}

.product-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.product-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-lightbox.active {
    display: flex;
}

.product-popup {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-popup-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-popup-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-popup-content {
    padding: 40px;
}

.product-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    font-size: 30px;
    cursor: pointer;
}

.product-popup-content h2 {
    color: #2d8c35;
}

.product-order-button {
    display: inline-block;
    padding: 14px 25px;
    background: #2d8c35;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}
/* Supee Subject Dropdown */
.contact-form select[name="subject"] {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 18px;

    background-color: white;
    color: #555;

    border: 1px solid #d9e8d9;
    border-radius: 10px;

    font-family: inherit;
    font-size: 16px;

    outline: none;
    cursor: pointer;

    box-sizing: border-box;

    appearance: none;
    -webkit-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #2d8c35 50%),
        linear-gradient(135deg, #2d8c35 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

.contact-form select[name="subject"]:focus {
    border-color: #2d8c35;
    box-shadow: 0 0 0 3px rgba(45, 140, 53, 0.12);
}

.contact-form select[name="subject"]:hover {
    border-color: #ff8c1a;
}

.contact-form select[name="subject"] option {
    color: #333;
    background-color: white;
}

.contact-form select[name="subject"] option:first-child {
    color: #777;
}
/* Homepage Floating Fruits */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-fruits {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-fruit {
    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    opacity: 0.95;
    animation: fruitFloat 5s ease-in-out infinite;
}

/* Orange */
.fruit-orange {
    top: 13%;
    right: 7%;
    width: 125px;
    height: 125px;
    animation-delay: 0s;
}

/* Strawberry */
.fruit-strawberry {
    bottom: 6%;
    left: 3%;
    width: 110px;
    height: 110px;
    animation-delay: 1.2s;
}

/* Grapes */
.fruit-grapes {
    top: 55%;
    right: 3%;
    width: 120px;
    height: 120px;
    animation-delay: 2.2s;
}

/* Apple */
.fruit-apple {
    top: 10%;
    left: 3%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

/* Floating animation */

@keyframes fruitFloat {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }

}

/* Smaller fruits on phones */

@media (max-width: 768px) {

    .floating-fruit {
        width: 75px;
        height: 75px;
        opacity: 0.85;
    }

    .fruit-orange {
        right: 2%;
        top: 10%;
        width: 80px;
        height: 80px;
    }

    .fruit-strawberry {
    left: 2%;
    bottom: 5%;
    width: 75px;
    height: 75px;
}

    .fruit-grapes {
        right: 1%;
        top: 62%;
        width: 80px;
        height: 80px;
    }

    .fruit-apple {
        left: 2%;
        top: 8%;
        width: 75px;
        height: 75px;
    }

}
/* =========================================
   SUPEE AI CHAT
   ========================================= */

.supee-ai-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 10000;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 15px 22px;

    border: none;
    border-radius: 50px;

    background: #2d8c35;
    color: white;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.supee-ai-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* Chat Window */

.supee-ai-chat {
    position: fixed;

    right: 25px;
    bottom: 90px;

    width: 370px;
    max-width: calc(100vw - 30px);

    height: 520px;
    max-height: calc(100vh - 120px);

    background: white;

    border-radius: 20px;

    overflow: hidden;

    z-index: 10001;

    display: none;

    flex-direction: column;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.25);
}

.supee-ai-chat.active {
    display: flex;
}


/* Header */

.supee-ai-header {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 18px 20px;

    background: #2d8c35;

    color: white;
}

.supee-ai-header strong {
    display: block;

    font-size: 18px;
}

.supee-ai-header span {
    display: block;

    margin-top: 3px;

    font-size: 12px;

    opacity: 0.9;
}

.supee-ai-header button {
    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: white;

    font-size: 25px;

    cursor: pointer;
}


/* Messages */

.supee-ai-messages {
    flex: 1;

    padding: 20px;

    overflow-y: auto;

    background: #f7f9f5;
}

.supee-ai-message {
    max-width: 85%;

    padding: 12px 15px;

    margin-bottom: 12px;

    border-radius: 15px;

    line-height: 1.5;

    font-size: 14px;
}

.supee-ai-message.ai {
    background: white;

    color: #333;

    border-top-left-radius: 4px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.supee-ai-message.user {
    margin-left: auto;

    background: #2d8c35;

    color: white;

    border-top-right-radius: 4px;
}


/* Quick Buttons */

.supee-ai-quick-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 10px;
}

.supee-ai-quick-buttons button {
    padding: 9px 12px;

    border: 1px solid #2d8c35;

    border-radius: 20px;

    background: white;

    color: #2d8c35;

    font-size: 12px;

    cursor: pointer;

    transition: all 0.2s ease;
}

.supee-ai-quick-buttons button:hover {
    background: #2d8c35;

    color: white;
}


/* Input */

.supee-ai-input {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px;

    border-top: 1px solid #ddd;

    background: white;
}

.supee-ai-input input {
    flex: 1;

    padding: 12px 15px;

    border: 1px solid #ddd;

    border-radius: 25px;

    outline: none;

    font-size: 14px;
}
/* =========================================
   SUPEE AI CHAT
   ========================================= */

.supee-ai-chat {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 360px;
    max-width: calc(100vw - 30px);
    height: 520px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.96);
    transition: all 0.25s ease;
}

.supee-ai-chat.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


/* Header */

.supee-ai-header {
    background: #1f5d2b;
    color: white;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.supee-ai-header strong {
    display: block;
    font-size: 18px;
}

.supee-ai-header span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    opacity: 0.85;
}

.supee-ai-header button {
    border: none;
    background: transparent;
    color: white;
    font-size: 25px;
    cursor: pointer;
    line-height: 1;
}


/* Messages */

.supee-ai-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    background: #f5f7f5;
}

.supee-ai-message {
    max-width: 85%;
    padding: 11px 14px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.supee-ai-message.ai {
    background: white;
    color: #222;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.supee-ai-message.user {
    background: #f58220;
    color: white;
    margin-left: auto;
    border-top-right-radius: 4px;
}


/* Quick buttons */

.supee-ai-quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.supee-ai-quick-buttons button {
    background: white;
    color: #1f5d2b;
    border: 1px solid #1f5d2b;
    border-radius: 20px;
    padding: 7px 11px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.supee-ai-quick-buttons button:hover {
    background: #1f5d2b;
    color: white;
}


/* Input */

.supee-ai-input {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: white;
    border-top: 1px solid #ddd;
}

.supee-ai-input input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 22px;
    padding: 11px 14px;
    outline: none;
    font-size: 14px;
}

.supee-ai-input input:focus {
    border-color: #1f5d2b;
}

.supee-ai-input button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #f58220;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.supee-ai-input button:hover {
    background: #d9680d;
}


/* Floating button */

.supee-ai-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9998;

    background: #f58220;
    color: white;

    border: none;
    border-radius: 30px;

    padding: 13px 19px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 7px 22px rgba(0,0,0,0.22);

    transition: 0.2s;
}

.supee-ai-button:hover {
    transform: translateY(-2px);
    background: #d9680d;
}


/* Mobile */

@media (max-width: 600px) {

    .supee-ai-chat {
        right: 15px;
        bottom: 80px;
        width: calc(100vw - 30px);
        height: 70vh;
    }

    .supee-ai-button {
        right: 15px;
        bottom: 15px;
    }

}
/* =========================================
   SUPEE AI AVATAR
   ========================================= */

.supee-ai-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.supee-ai-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.supee-ai-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.supee-ai-info strong {
    font-size: 16px;
}

.supee-ai-info span {
    font-size: 12px;
}

.supee-ai-online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    margin-right: 4px;
}
