/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2025 | 19:15:16 */
/* Pisum Foods Website Clone - Enhanced CSS */
/* Complete styling matching the original website */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* CSS Variables */
:root {
    --primary-green: #4CAF50;
    --secondary-green: #388E3C;
    --light-green: #8BC34A;
    --dark-green: #2E7D32;
    --text-dark: #212121;
    --text-light: #757575;
    --background-light: #F5F5F5;
    --background-white: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--background-white);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-green);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.hero-content {
    text-align: center;
    color: var(--background-white);
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* DRS Badge */
.drs-badge {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: var(--background-white);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.drs-badge img {
    width: 80px;
    display: block;
}

/* Company Description */
.company-description {
    padding: 80px 0;
    background: var(--background-light);
    text-align: center;
}

.leaf-icon img {
    width: 60px;
    margin-bottom: 20px;
}

.company-description h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.company-description p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Popular Products */
.popular-products {
    padding: 80px 0;
    text-align: center;
}

.popular-products h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.product-item {
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #e8f5e8;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    position: relative;
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--primary-green);
    color: var(--background-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin: 20px 0 15px;
}

.feature-item p {
    color: var(--text-light);
}

/* Product Range */
.product-range {
    padding: 80px 0;
    text-align: center;
}

.product-range h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-category {
    background: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s;
}

.product-category:hover {
    transform: translateY(-10px);
}

.product-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-category h4 {
    padding: 20px;
    font-size: 1.2rem;
}

.btn-view-more {
    background: var(--primary-green);
    color: var(--background-white);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-view-more:hover {
    background: var(--secondary-green);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.testimonial-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

.client-info {
    margin-top: 20px;
}

.client-info strong {
    color: var(--text-dark);
}

/* Why Indian Market */
.why-indian-market {
    padding: 80px 0;
    background: #e8f5e8;
    text-align: center;
}

.why-indian-market h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.indian-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.indian-feature {
    background: var(--background-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    text-align: left;
}

.indian-feature h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.indian-feature p {
    color: var(--text-light);
}

/* Our Clients */
.our-clients {
    padding: 80px 0;
    text-align: center;
}

.our-clients h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.clients-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.clients-grid img {
    height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.clients-grid img:hover {
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--background-white);
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-content h4 {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.btn-connect,
.btn-supplier {
    background: var(--background-white);
    color: var(--primary-green);
    border: none;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-connect:hover,
.btn-supplier:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--background-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-green);
    color: var(--background-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--background-white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.contact-form,
.supplier-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.supplier-form input,
.supplier-form select,
.supplier-form textarea {
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
}

.contact-form button,
.supplier-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button[type="submit"],
.supplier-form button[type="submit"] {
    background: var(--primary-green);
    color: var(--background-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .product-grid,
    .indian-features-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        display: none;
    }
    
    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        padding: 20px;
        box-shadow: 0 4px 15px var(--shadow-light);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
