
/* Base Styles */
:root {
    --primary-color: #00964b; /* Green */
    --secondary-color: #d4af37; /* Gold */
    --dark-green: #006633;
    --light-green: #d0f0c0;
    --dark-gold: #b8860b;
    --light-gold: #f5e7a0;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --mid-grey: #666666;
    --dark-grey: #333333;
    --black: #000000;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;


/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding-top: 2rem;
}

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

.footer-logo h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--secondary-color);
}


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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .about-content,
    .innovator-content,
    .showcase-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
   
    .vision-goals {
        grid-template-columns: 1fr;
    }
   
    .product-card {
        margin-bottom: 2rem;
    }
   
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
   
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
   
    .cta-buttons a {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
   
    .hero-content h2 {
        font-size: 1.2rem;
    }
   
    .section-header h2 {
        font-size: 1.8rem;
    }
}
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    position: relative;
}


section {
    padding: 5rem 0;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-product, .btn-submit {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

.btn-product {
    background-color: var(--secondary-color);
    color: var(--dark-grey);
    border: none;
    padding: 0.6rem 1.5rem;
    margin-top: 1rem;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--dark-grey);
    border: none;
    width: 100%;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-product:hover, .btn-submit:hover {
    background-color: var(--dark-gold);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--dark-grey);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover:before, .nav-menu a.active:before {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-grey);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 150, 75, 0.8), rgba(0, 102, 51, 0.9)), url("/api/placeholder/1920/1080");
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-top: 2rem;
}

/* About Section */
.about {
    background-color: var(--light-grey);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.about-text ul {
    margin-top: 1.2rem;
}

.about-text li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.about-text li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    max-height: 450px;
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-info p {
    margin-bottom: 1rem;
}

.product-info ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.product-info li {
    margin-bottom: 0.5rem;
    color: var(--mid-grey);
}

/* Innovator Section */
.innovator {
    background-color: var(--light-grey);
}

.innovator-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.innovator-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.innovator-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.innovator-info p {
    margin-bottom: 1.5rem;
}

.vision-goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.vision, .goals {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.vision h4, .goals h4 {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.vision h4 i, .goals h4 i {
    margin-right: 10px;
}

.goals ul {
    padding-left: 1rem;
    list-style: disc;
}

.goals li {
    margin-bottom: 0.5rem;
}

/* Showcase Section */
.showcase-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 310px; 
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 150, 75, 0.8);
    color: var(--white);
    padding: 0.8rem;
    text-align: center;
    font-weight: 500;
}


/* Contact Section */
.contact {
    background-color: var(--light-grey);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.info-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--dark-grey);
}

.contact-form {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

#inquiry-form {
    max-width: 80%; 
    margin: 0 auto;
}

.form-group {
    margin-bottom: 0.6rem; 
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem 0.8rem;
    height: 2.5rem; 
    font-size: 0.7rem; 
    width: 90%;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-group textarea {
    height: 70px; 
    resize: vertical;
}

.btn-submit {
    padding: 0.6rem 1.2rem; 
    font-size: 0.9rem; 
    height: 2.5rem; 
}