@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu';
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.main-header {
    background: #000000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* SAME IMAGE SIZE */
.logo img {
    height: 50px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* SAME TEXT SIZE */
.logo span {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dfc366;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

/* NAVIGATION */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    margin-left: 30px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #27ae60;
}

/* --- Optimized Hero Section --- */

.hero-banner {
    position: relative;
    /* BACKGROUND IMAGE: Is link ko aap apni image se replace kar sakte hain */
    background-image: url('https://images.unsplash.com/photo-1590779033100-9f60a05a013d?q=80&w=2000&auto=format&fit=crop');
    
    /* Background settings */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* Premium Parallax Effect (Desktops) */
    background-attachment: fixed;
    
    /* Dimensions */
    height: 100vh; /* Puri screen height lega */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    
    /* Spacing for mobile */
    padding: 0 20px;
}

/* Dark Gradient Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Niche se dark, upar thoda halka */
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 60%);
    z-index: 1;
}

/* Content Container (z-index is must here) */
.hero-content {
    position: relative;
    z-index: 2; /* Text ko overlay ke upar laane ke liye */
    max-width: 800px;
    opacity: 0; /* Animation entrance */
    animation: fadeInUp 1s ease-out forwards;
}

/* Typography Styling */
.hero-title {
    font-size: 3.5rem; /* Bada and bold */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Highlighting one word (Solutions) */
.hero-title span {
    color: #2ecc71; /* Modern Green */
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styling (Primary) */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #27ae60; /* Food industry Green */
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #27ae60;
}

.btn-primary i {
    margin-left: 10px; /* Arrow icon spacing */
    transition: transform 0.3s ease;
}

/* Button Hover State */
.btn-primary:hover {
    background-color: transparent;
    color: #2ecc71;
    border-color: #2ecc71;
}

.btn-primary:hover i {
    transform: translateX(5px); /* Arrow moves right */
}

/* Entrance Animation (Fade In) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Adjustments --- */

@media (max-width: 768px) {
    .hero-banner {
        height: 80vh; /* Chhoti screens par thodi kam height */
        background-attachment: scroll; /* Mobile par parallax smooth nahi chalta */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://png.pngtree.com/thumb_back/fh260/background/20241201/pngtree-fully-automated-food-processing-factory-with-robots-image_16718635.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; }

.btn {
    background: #27ae60;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Services */
.services-section { padding: 4rem 0; background: #f9f9f9; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover { transform: translateY(-10px); }

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-card h3 { margin-bottom: 1rem; color: #27ae60; }

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links ul { list-style: none; display: flex; }
.footer-links ul li a { color: #fff; font-size: 1.5rem; margin-left: 1.5rem; }

.copyright { text-align: center; font-size: 0.9rem; margin-top: 1rem; color: #bdc3c7; }

/* Responsive */
@media (max-width: 768px) {
    .main-header .container { flex-direction: column; }
    nav ul { margin-top: 1rem; }
    .hero-content h1 { font-size: 2rem; }
}

/* Features Section Styling */
.features-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.feature-item i {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Icons styling specifically */
.fas { margin-bottom: 10px; display: block; }


/* Stats Section */
.stats-section {
    background: #27ae60;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.stat-item h2 { font-size: 3rem; margin-bottom: 5px; }

/* Testimonials */
.testimonials { padding: 80px 0; background: #fff; }
.testimonial-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-card {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    font-style: italic;
    border-left: 5px solid #27ae60;
}
.testimonial-card h4 { margin-top: 15px; font-style: normal; color: #333; }

/* Contact Section */
.contact-section { padding: 80px 0; background: #f9f9f9; }
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-info h2 { margin-bottom: 20px; color: #27ae60; }
.contact-info p { margin-bottom: 15px; }
.contact-info i { color: #27ae60; margin-right: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .contact-box { grid-template-columns: 1fr; }
}

/* Footer Main Styling */
.main-footer {
    background: #000000;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.main-footer h4 {
    color: #dfc366; /* Food-tech Green theme */
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.main-footer p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
}

/* Icons Styling */
.main-footer i {
    color: #dfc366;
    margin-right: 10px;
    width: 20px;
}

/* Social Links */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #27ae60;
}

/* Quick Links List */
.footer-links-col ul {
    list-style: none;
    padding: 0;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Divider and Copyright */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 20px 0;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
        display: flex;
    }
}



/* =========================
   CONTACT SECTION (FIXED UI)
========================= */
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #27ae60;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info i {
    color: #27ae60;
    margin-right: 10px;
}

/* BUTTON (if not already global) */
.btn {
    background: #27ae60;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-box {
        grid-template-columns: 1fr;
    }

    .about-container {
        padding: 0 20px;
    }
}