* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    color: white;
    padding: 1rem 0;
    position: sticky;
    /* 👈 THIS was missing */
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.157);

}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 0 2rem;

}

.navbar {
    display: flex;
    direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    max-width: 100%;

}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

header.shrink {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

}

header.shrink .logo img {
    height: 60px;
}

/* .logo::before {
    content: "🌱";
    font-size: 2rem;
} */

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #6ac826;
    margin: 3px 0;
    transition: 0.3s;
}


.navMenu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navMenu a {
    color: #060606;
    text-decoration: none;
    transition: color 0.3s;
    font-size: x-large;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 1000;


}

.navMenu a:hover {
    color: #5ca12b;
}

/* Hero Section */
.hero {
    background: rgb(255, 255, 255);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative
}

.hero-content {
    padding: 2rem 0;
}



.hero-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 1s ease;
}

.laurel-icon {
    font-size: 3rem;
    color: #2d5016;
    flex-shrink: 0;
}

.testimonial-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: #2d5016;
    transform: scale(1.3);
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5016;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: #4a7c2c;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #2d5016;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(74, 124, 44, 0.4);
}

.hero-tagline {
    line-height: 1.6;
}

/* LEFT image */
.decoration-left {
    float: left;
    width: 40px;
    margin: 0.2rem 0.75rem 0.2rem 0;
    opacity: 0.4;
}

/* RIGHT image */
.decoration-right {
    float: right;
    width: 40px;
    margin: -1.7rem 0 0.2rem -0.75rem;
    transform: scaleX(-1);
    opacity: 0.4;
}

/* About Section */
.about {
    max-width: 100%;
    margin: 0rem 4rem 4rem 4rem;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: rgb(243, 247, 241);
}

.about-content h2 {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.about-image {
    background: linear-gradient(135deg,
            #b8e994 0%,
            #78b13f 100%);
    border-radius: 20px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    background: #f8f9f5;
    padding: 4rem 2rem;
}



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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.6s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    position: relative;
    height: 320px;
}

.product-card:hover {
    transform: rotateY(180deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-front,
.product-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    overflow: hidden;
    text-indent: 0;
    text-align: left;

}

.product-front {
    background: white;
}

.product-back {
    background: linear-gradient(135deg,
            #4a7c2c 0%,
            #2d5016 100%);
    color: white;
    transform: rotateY(180deg);
}

.product-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.product-back ul {
    margin-left: 1rem;
    /* controls how much inner shift */
    padding-left: 1rem;
    /* keeps bullets aligned */
}

.product-back li {
    margin-bottom: 0.4rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 👈 THIS fixes zoom */
    display: block;

}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: #2d5016;
    font-size: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 12px;
}

.product-card p {
    color: #66666695;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-back h3 {
    color: white;
    margin-bottom: 1rem;
}

.product-back p {
    color: white;
    font-size: 1rem;
    line-height: 1.8;
}

.product-back li {
    color: white;
    font-size: 1rem;
    line-height: 1.8;
}

.product-back .learn-more {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: white;
    color: #2d5016;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* video */
.video {
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 👈 horizontal center */
    gap: 1.5rem;
}

.video-title {
    text-align: center;
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.video-container {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/*product quality section*/
.product-quality {
    padding: 4rem;
    background-color: #ffffff;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
}

.product-quality img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.product-quality h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2f4f2f;
}

/* Specification Section */
.specification-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.specification-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2f4f2f;
}

.table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #f9fdf9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.spec-table thead {
    background-color: #78b13f;
    color: #ffffff;
}

.spec-table th,
.spec-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    font-size: 1rem;
    font-weight: 600;
}

.spec-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.spec-table tbody tr:last-child {
    border-bottom: none;
}

.spec-table tbody tr:nth-child(even) {
    background-color: #f1f7ee;
}

.spec-table td:first-child {
    font-weight: 600;
    width: 25%;
    color: #2f4f2f;
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.features h2 {
    text-align: center;
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,
            minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item::before {
    content: "✓";
    display: block;
    width: 60px;
    height: 60px;
    background: #78b13f;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 60px;
    margin: 0 auto 1rem;
}

.feature-item h3 {
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.reach-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 4rem auto;
    padding: 0 4rem;
    max-width: 1200px;
}

.address {
    background-color: rgb(243, 247, 241);
}

.reach-map {
    width: 100%;
    height: 100%;
    padding: 4rem 4rem;
}

.reach-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 250px;
}

/*Reach Us*/
.contact-us h2 {
    text-align: center;
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-color: rgb(243, 247, 241);
    padding: 1rem
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: #333;
}

input,
textarea {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #78b13f;
}

button {
    margin-top: 1rem;
    padding: 0.9rem;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    background: #78b13f;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

button:disabled {
    background: #b5b5b5;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Footer */
footer {
    background: #2d5016;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,
            minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #b8e994;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

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


.address {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 4rem 2rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.address h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.address p {
    font-size: 1.5rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-item .icon {
    font-size: 2rem;
    line-height: 1.4;
}



.address-item a {
    color: #1f2937;
    text-decoration: none;
}

.address-item a:hover {
    text-decoration: underline;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

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

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

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

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        /* 100% */
    }

    .about {

        grid-template-columns: 1fr;

        margin: 0rem 0rem 4rem 0rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .spec-table tbody tr:nth-child(even) {
        background-color: #e8f2e2;
        /* stronger contrast */
    }

    .spec-table tbody tr:nth-child(odd) {
        background-color: #ffffff;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-testimonials {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-back p {
        font-size: 12px;
    }

    .product-back li {
        font-size: 12px;
    }

    .product-back h3 {
        font-size: 16px;
    }

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

    }

    .navbar {
        justify-content: end;
    }

    .navMenu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .burger-menu {
        display: flex;
    }

    .navMenu.active {
        display: flex;
    }

    .navMenu ul {
        display: flex;
        flex-direction: column;
        /* 👈 vertical */
        gap: 1rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }


    .reach-us {
        grid-template-columns: 1fr;
        /* stack map & form */
        gap: 2rem;
        padding: 0rem;
        margin: 0
    }


    .product-quality {
        padding: 0rem;
    }

    .reach-map {
        padding: 1rem
    }

    .specification-section {
        padding: 1rem
    }

}