﻿/* ========================================
   MAHESH SEEDS - PROFESSIONAL MAIN STYLE
   Full Width Clean Layout
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary-green: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary-orange: #ed6c02;
    --text-dark: #222;
    --text-light: #fff;
    --bg-light: #f4f7f4;
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ---------- Body Layout ---------- */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
    padding-top: 80px; /* Header height */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   HEADER (FULL WIDTH - NO GAP)
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    box-shadow: var(--shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px; /* Small fixed spacing instead of % */
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.6rem;
    color: #1b3c1b;
}

    .logo-text span {
        color: var(--secondary-orange);
    }

.header-nav {
    display: flex;
    gap: 28px;
}

    .header-nav a {
        text-decoration: none;
        font-weight: 500;
        color: #1f2f1f;
        font-size: 1rem;
        transition: var(--transition);
    }

        .header-nav a:hover {
            color: var(--secondary-orange);
        }

/* ========================================
   MAIN CONTENT - FULL WIDTH
   ======================================== */

.main-content {
    width: 100%;
    flex: 1;
    background: #ffffff;
}

/* Professional container system */

.section-container {
    width: 100%;
    max-width: 1400px; /* Wider desktop layout */
    margin: 0 auto;
    padding: 60px 30px; /* Small clean spacing */
}

/* Grid Layout */

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

    .info-card:hover {
        transform: translateY(-5px);
    }

    .info-card h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .info-card p {
        color: #444;
    }

/* ========================================
   FOOTER (FULL WIDTH)
   ======================================== */

.site-footer {
    background: #0f2027;
    color: #ffffff;
    padding: 50px 30px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .section-container {
        max-width: 100%;
        padding: 50px 25px;
    }
}

@media (max-width: 992px) {

    body {
        padding-top: 70px;
    }

    .site-header {
        height: 70px;
        padding: 0 20px;
    }

    .header-nav {
        gap: 18px;
    }
}

@media (max-width: 768px) {

    body {
        padding-top: 65px;
    }

    .site-header {
        height: 65px;
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .header-nav {
        gap: 12px;
    }

        .header-nav a {
            font-size: 0.9rem;
        }

    .section-container {
        padding: 40px 15px;
    }
}

@media (max-width: 576px) {

    body {
        padding-top: 60px;
    }

    .site-header {
        height: 60px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .header-nav a {
        font-size: 0.85rem;
    }

    .section-container {
        padding: 30px 12px;
    }
}
