/* assets/css/style.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Roboto:wght@400;500&family=Montserrat:wght@600;700&family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #F5F5F5;
    color: #333333;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
}

/* Navigation, Buttons, and Product Titles */
header nav ul li a, .cta-button, .product-card h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Container for consistent width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: #2E7D32;
    color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

header .logo img {
    max-height: 60px;
}

header nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

header nav ul li a {
    font-family: 'Montserrat', sans-serif; /* Changed from Poppins for consistency */
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #FBC02D;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../assets/images/hero-bg.jpg') no-repeat center/cover;
    color: #FFFFFF;
    text-align: center;
    padding: 5rem 1rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif; /* Changed from Poppins */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #FBC02D;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #FFA000;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #FBC02D;
    color: #FBC02D;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background-color: #FBC02D;
    color: #333333;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2E7D32;
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E7D32;
    margin: 1rem;
}

.product-card p {
    color: #666666;
    margin: 0 1rem 1.5rem;
}

.product-card .cta-button {
    margin: 0 1rem 1.5rem;
}

/* Product Detail */
.product-detail .product-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.product-detail .product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-detail .product-info {
    flex: 1;
}

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

.product-detail .product-info ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .product-detail .product-content {
        flex-direction: column;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #2E7D32;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1B5E20;
}

.form-feedback {
    margin-top: 1rem;
    color: #2E7D32;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #2E7D32;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links a {
    margin-right: 1rem;
    display: inline-block;
}

.social-icon {
    font-size: 24px;
    color: #FBC02D;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FFA000;
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #FBC02D;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FFA000;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

/* About Section */
.about ul, .about-home ul, .sustainability-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.about ul li, .about-home ul li, .sustainability-text ul li {
    margin-bottom: 0.5rem;
}

.about-home .about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-home .about-text {
    flex: 1;
}

.about-home .about-image {
    max-width: 400px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .about-home .about-content {
        flex-direction: column;
    }
    .about-home .about-image {
        max-width: 100%;
    }
}

/* Testimonials */
.testimonials {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

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

.testimonial-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    color: #666666;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../assets/images/cta-bg.jpg') no-repeat center/cover;
    color: #FFFFFF;
    text-align: center;
    padding: 4rem 0;
}

.cta-banner h2 {
    color: #FFFFFF;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* About Hero */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/images/about-hero-bg.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .hero-content {
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

/* Our Story */
.our-story {
    padding: 4rem 0;
}

.story-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.story-image {
    max-width: 400px;
    border-radius: 10px;
}

.story-text {
    flex: 1;
}

@media (max-width: 767px) {
    .story-content {
        flex-direction: column;
    }
    .story-image {
        max-width: 100%;
    }
}

/* Mission and Values */
.mission-values {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Our Team */
.our-team {
    padding: 4rem 0;
}

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

.team-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
}

.team-card p {
    color: #666666;
}

/* Certifications */
.certifications {
    background-color: #F5F5F5;
    padding: 4rem 0;
}

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

.certification-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.certification-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* Sustainability */
.sustainability {
    padding: 4rem 0;
}

.sustainability-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.sustainability-image {
    max-width: 400px;
    border-radius: 10px;
}

.sustainability-text {
    flex: 1;
}

@media (max-width: 767px) {
    .sustainability-content {
        flex-direction: column;
    }
    .sustainability-image {
        max-width: 100%;
    }
}

/* Contact Hero */
.contact-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/images/contact-hero-bg.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-content {
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    gap: 2rem;
}

.contact-form {
    flex: 1;
}

@media (max-width: 767px) {
    .contact-content {
        flex-direction: column;
    }
}

/* Contact Map */
.contact-map {
    padding: 4rem 0;
    background-color: #F5F5F5;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* FAQs */
.faqs {
    padding: 4rem 0;
}

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

.faq-item {
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666666;
}

.faq-item a {
    color: #FBC02D;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: #FFA000;
}

/* Services Hero */
.services-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/images/services-hero-bg.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero .hero-content {
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
}

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

.service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
    flex-wrap: wrap;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666666;
    margin-bottom: 1.5rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
    background-color: #F5F5F5;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666666;
}

/* Case Studies */
.case-studies {
    padding: 4rem 0;
}

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

.case-study-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.case-study-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
    margin: 1.5rem;
}

.case-study-card p {
    color: #666666;
    margin: 0 1.5rem 1.5rem;
}

.case-study-card .cta-button {
    margin: 0 1.5rem 1.5rem;
}

/* Products Hero */
.products-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/images/products-hero-bg.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero .hero-content {
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

/* Product Categories */
.product-categories {
    padding: 2rem 0;
    background-color: #F5F5F5;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    background-color: #FFFFFF;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #FBC02D;
    color: #333333;
}

.filter-btn.active {
    background-color: #2E7D32;
    color: #FFFFFF;
}

/* Products Grid */
.products-grid {
    padding: 4rem 0;
}

/* Quality Assurance */
.quality-assurance {
    padding: 4rem 0;
    background-color: #F5F5F5;
}

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

.quality-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.quality-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.quality-card p {
    color: #666666;
}

/* Service Hero */
.service-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/images/services/sourcing-hero-bg.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero.packaging-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/images/services/packaging-hero-bg.jpg') no-repeat center/cover;
}

.service-hero.logistics-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/images/services/logistics-hero-bg.jpg') no-repeat center/cover;
}

.service-hero .hero-content {
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

/* Service Overview */
.service-overview {
    padding: 4rem 0;
}

.service-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.service-image {
    max-width: 400px;
    border-radius: 10px;
}

.service-text {
    flex: 1;
}

.service-text p {
    color: #666666;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .service-content {
        flex-direction: column;
    }
    .service-image {
        max-width: 100%;
    }
}

/* Service Process */
.service-process {
    padding: 4rem 0;
    background-color: #F5F5F5;
}

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

.process-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.process-card p {
    color: #666666;
}

.process-icon  {
    font-size: 48px;
    color: #009616; /* your brand color */
    margin-bottom: 15px;
}

.testimonial-icon {
    font-size: 48px;
    color: #009616; /* your brand color */
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 48px;
    color: #009616; /* your brand color */
    margin-bottom: 15px;
}

.value-icon {
    font-size: 48px;
    color: #009616; /* your brand color */
    margin-bottom: 15px;
}

.certification-icon{
    font-size: 48px;
    color: #009616; /* your brand color */
    margin-bottom: 15px;
}

.quality-icon{
    font-size: 48px;
    color: #009616; /* your brand color */
    margin-bottom: 15px;
}

.contact-icon{
    font-size: 20px;
    color: #009616; /* your brand color */
   
}

