/* Reset and Base Styles */
:root {
    /* Color Palette - Refined for a "Rich" look */
    --primary: #f37d35; /* More vibrant yet professional orange */
    --primary-dark: #cc5e1b;
    --primary-light: #ffba8e;
    --secondary: #1e3a0d; /* Deeper, richer forest green */
    --accent: #ff4757;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #fffaf7; /* Warmer light background */
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-dark: rgba(0, 0, 0, 0.6);
    
    /* Text */
    --text-main: #1a1a1a; /* Deeper black for better contrast */
    --text-muted: #57606f;
    --text-white: #ffffff;
    
    /* Shadows - More layered and soft for a premium feel */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 10px 30px rgba(243, 125, 53, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 9999px;
    
    /* Glassmorphism */
    --glass-blur: 16px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-glass);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: var(--glass-border);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-brand {
    text-align: center;
    padding: 0.5rem 0;
}

.header-brand h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.header-brand .tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition-base);
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(252, 144, 77, 0.05);
}

/* Header Seals */
.header-seal-left,
.header-seal-right {
    position: absolute;
    top: 15px;
    z-index: 1001;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.header-seal-left {
    left: 60px; /* Reduced from 200px to adjust space at LHS */
}

.header-seal-right {
    right: 200px; /* Space for the stamp seal */
    gap: 3.5rem;
}

.header-seal-left img,
.header-seal-right img:not(.company-seal) {
    height: 65px; /* Increased from 52px for better visibility */
    transform: translateY(-5px); /* Adjusted alignment for larger size */
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: var(--transition-base);
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.header-seal-right .company-seal {
    position: absolute;
    top: 30px;
    right: 40px;
    height: 180px; /* Large stamp size */
    width: auto;
    opacity: 0.95;
    transform: rotate(-15deg); /* More aggressive stamp angle */
    z-index: 5000; /* Extremely high to ensure it overlaps everything */
    pointer-events: none;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
    transition: var(--transition-base);
}

.header-seal-right .company-seal:hover {
    transform: rotate(-10deg) scale(1.05);
    opacity: 1;
}

@media (max-width: 1200px) {
    .header-seal-right .company-seal {
        height: 120px !important;
        top: 20px;
        right: 20px;
        opacity: 0.8;
    }
}

.header-seal-left .fssai-lic {
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 0;
    letter-spacing: -0.2px;
}

.header-seal-left img:hover,
.header-seal-right img:hover {
    transform: scale(1.08);
}

.company-seal-mobile {
    display: none;
}

@media (max-width: 1200px) {
    .header {
        position: relative;
        background: #ffffff;
        overflow: hidden;
    }

    .header-brand {
        padding: 2rem 1rem;
        background: var(--bg-light);
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .header-brand h2 {
        color: var(--primary);
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .header-seals-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        padding: 0;
        background: transparent;
        border: none;
        z-index: 1;
        pointer-events: none;
    }

    .header-seal-left,
    .header-seal-right {
        position: absolute;
        width: auto;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        opacity: 0.15; /* Subtle background presence */
        filter: grayscale(1);
    }
    
    .header-seal-left {
        top: 15px;
        left: 10px;
    }

    .header-seal-right {
        top: 15px;
        right: 10px;
    }

    /* Keep Company Seal visible and separate */
    .header-seal-right .company-seal {
        position: absolute;
        top: 20px;
        right: 15px;
        height: 120px !important;
        opacity: 0.9;
        transform: rotate(-10deg);
        z-index: 2000;
        pointer-events: none;
        display: block;
    }

    /* Redefining Company Seal for Mobile to be prominent but not in BG */
    .company-seal-mobile {
        display: block;
        margin: 1rem auto 0;
        height: 70px;
        filter: none;
        opacity: 1;
        position: relative;
        z-index: 3;
    }

    .header-seal-left img,
    .header-seal-right img {
        height: 35px !important;
        width: auto;
    }

    .header-seal-left .fssai-lic {
        display: none; /* Hide license in background for cleanliness */
    }

    .navbar {
        padding: 0.75rem 0;
        background: #ffffff;
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 600px) {
    .header-brand h2 {
        font-size: 1.1rem;
    }
    
    .header-seals-container {
        display: none; /* Completely hide background logos on very small screens for maximum cleanliness */
    }

    .company-seal-mobile {
        height: 55px;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
    background: var(--bg-light);
    padding: 10px;
    border-radius: var(--radius-sm);
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: var(--text-main);
    transition: var(--transition-base);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000; /* Fallback background */
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1) saturate(1.1); /* Richer colors */
    transform: scale(1.15); /* Slightly more zoom for safe watermark hiding on all ratios */
    transform-origin: top center;
    -webkit-transform: scale(1.15);
    -webkit-transform-origin: top center;
    -ms-transform: scale(1.15);
    -ms-transform-origin: top center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp var(--transition-slow);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--text-white);
    letter-spacing: -2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 600px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border: none;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(243, 125, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.hero-logo-overlay {
    display: flex;
    justify-content: flex-end;
}

.banner-logo {
    height: clamp(120px, 18vw, 220px);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem; /* Reduced from 4rem */
    animation: fadeInUp var(--transition-base);
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Slightly smaller */
    color: var(--text-main);
    margin-bottom: 1.25rem; /* Increased for accent */
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Products Section */
.products {
    padding: 60px 0; /* Reduced from 100px */
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Slightly smaller min-width */
    gap: 2rem; /* Reduced from 3rem */
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(243, 125, 53, 0.05); /* Subtle brand-colored border */
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(243, 125, 53, 0.2);
}

.product-image {
    width: 100%;
    height: 250px; /* Reduced from 300px */
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem; /* Reduced from 2rem */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

.product-card:hover .product-img {
    transform: scale(1.08) rotate(2deg);
}

.product-content {
    padding: 1.5rem; /* Reduced from 2.5rem */
}

.product-card h3 {
    font-size: 1.5rem; /* Reduced from 1.75rem */
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.product-subtitle {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    font-size: 0.85rem; /* Slightly smaller */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    line-height: 1.6; /* Tighter line height */
}

.product-common-claims {
    margin-bottom: 2rem; /* Reduced from 3rem */
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem; /* Reduced from 1rem */
    justify-content: center;
}

.product-common-claims h4 {
    width: 100%;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    font-size: 1rem; /* Reduced from 1.1rem */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-common-claims .claim-badge {
    background: var(--bg-white);
    padding: 0.5rem 1rem; /* Reduced from 0.75rem 1.5rem */
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced from 0.75rem */
    border: 1px solid rgba(252, 144, 77, 0.1);
    transition: var(--transition-base);
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.85rem; /* Reduced from 0.9rem */
}

.product-common-claims .claim-badge:hover {
    transform: translateY(-2px); /* Reduced from -3px */
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.product-common-claims .claim-badge i {
    color: #27ae60;
    font-size: 1rem; /* Reduced from 1.1rem */
}

/* Product Variant Styling */
.product-variants {
    margin-top: 1.5rem; /* Reduced from 2.5rem */
    padding-top: 1.5rem; /* Reduced from 2rem */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-variants h4 {
    font-size: 0.95rem; /* Reduced from 1rem */
    color: var(--text-main);
    margin-bottom: 1rem; /* Reduced from 1.25rem */
    font-weight: 700;
}

.variant-images {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem; /* Reduced from 1rem */
}

.variant-images img {
    width: 50px; /* Reduced from 60px */
    height: 50px; /* Reduced from 60px */
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-light);
    transition: var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.variant-images img:hover {
    transform: scale(1.1) rotate(5deg); /* Reduced from 1.15 */
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Sub-item improvements */
.product-subitem {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem; /* Reduced from 1.5rem */
    margin-bottom: 1.25rem; /* Reduced from 1.5rem */
    border-left: 4px solid var(--primary);
}

.product-subitem h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem; /* Reduced from 0.75rem */
    font-size: 0.9rem; /* Reduced from 0.95rem */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ingredients-list {
    font-size: 0.9rem; /* Reduced from 0.95rem */
    line-height: 1.5; /* Reduced from 1.6 */
    color: var(--text-muted);
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem; /* Reduced from 0.75rem */
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem; /* Added font-size */
}

.product-features i {
    color: var(--primary);
    margin-right: 0.5rem; /* Reduced from 0.75rem */
    font-size: 0.9rem; /* Reduced from 1rem */
}

/* Infra Cards */
.infra-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.infra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition-base);
}

.infra-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(243, 125, 53, 0.1);
}

.infra-card:hover::before {
    height: 100%;
}

/* Trust Blocks */
.trust-blocks {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.trust-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: rgba(243, 125, 53, 0.1);
}

.trust-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* How to Use */
.how-to-use {
    padding: 60px 0;
    background: var(--bg-white);
}

.usage-steps {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1.5rem; /* Slightly reduced gap to fit 4 items better */
    max-width: 1100px; /* Increased from 900px to accommodate 4 items */
    margin: 0 auto;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-base);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step p {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .usage-steps {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
}

/* Sticky WhatsApp Modernized */
.whatsapp-sticky {
    position: fixed;
    left: 40px; /* Moved back to left to avoid overlap with scroll-to-top */
    right: auto;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    z-index: 2000;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    transition: var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-sticky:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    color: white;
}

.whatsapp-sticky i {
    font-size: 1.25rem; /* Reduced from 1.5rem */
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-sticky span {
    font-weight: 800;
}

/* About Section */
.about {
    padding: 60px 0; /* Reduced from 100px */
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduced from 5rem */
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem; /* Reduced from 3rem */
    color: var(--text-main);
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    font-weight: 800;
}

.about-description {
    font-size: 1.1rem; /* Reduced from 1.2rem */
    color: var(--text-muted);
    margin-bottom: 2rem; /* Reduced from 3rem */
    line-height: 1.7; /* Reduced from 1.8 */
}

.stat-card {
    background: var(--bg-white);
    padding: 1.75rem; /* Reduced from 2.5rem */
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px); /* Reduced from -5px */
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem; /* Reduced from 3rem */
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem; /* Reduced from 0.5rem */
}

/* Infrastructure */
.infrastructure {
    padding: 60px 0; /* Reduced from 100px */
    background: var(--bg-white);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced from 300px */
    gap: 1.5rem; /* Reduced from 2rem */
}

.infra-icon {
    width: 50px; /* Reduced from 60px */
    height: 50px; /* Reduced from 60px */
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem; /* Reduced from 1.5rem */
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    box-shadow: var(--shadow-primary);
}

/* Funding Section */
.funding {
    padding: 60px 0;
    background: var(--bg-light);
}

.funding-content {
    text-align: center;
}

.funding-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.funding-objectives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.objective-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.objective-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.objective-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.objective-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.funding-type {
    background: var(--bg-white);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-3px);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(252, 144, 77, 0.1);
}

/* FAQ Section Modernization */
.faq {
    padding: 80px 0; /* Reduced from 120px */
    background: var(--bg-light);
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem; /* Reduced from 1.25rem */
    animation: fadeInUp var(--transition-base);
}

.faq-item details {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item details:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateX(3px); /* Reduced from 5px */
}

.faq-item summary {
    padding: 1.25rem 1.5rem; /* Reduced from 1.5rem 2rem */
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.1rem; /* Reduced from 1.15rem */
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f0fe';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    transition: transform var(--transition-base);
    font-size: 1.1rem; /* Reduced from 1.25rem */
}

.faq-item details[open] summary {
    background: rgba(252, 144, 77, 0.05);
    color: var(--primary-dark);
}

.faq-item details[open] summary::after {
    content: '\f146';
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem; /* Reduced from 0 2rem 1.5rem */
    color: var(--text-muted);
    line-height: 1.6; /* Reduced from 1.7 */
    font-size: 1rem; /* Reduced from 1.05rem */
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    margin-top: 0;
    animation: fadeIn var(--transition-base);
}

.faq-item ul {
    padding: 0 1.5rem 1.25rem 3rem; /* Reduced from 0 2rem 1.5rem 3.5rem */
    color: var(--text-muted);
}

.faq-item li {
    margin-bottom: 0.4rem; /* Reduced from 0.5rem */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer Modernization */
.footer {
    background: linear-gradient(to bottom, #fff5ed, #fff); /* Subtle gradient for depth */
    color: var(--text-main);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(243, 125, 53, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap; /* Prevent wrapping on desktop to keep in single line */
    gap: 2rem; /* Reduced gap to fit all 4 sections horizontally */
}

.footer-section {
    flex: 1;
    min-width: 0; /* Allow sections to shrink as needed */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Brand section - Takes slightly more space but remains on same line */
.footer-section:first-child {
    flex: 1.4;
    min-width: 260px;
}

.footer-section:nth-child(2),
.footer-section:nth-child(3),
.footer-section:last-child {
    flex: 1;
    min-width: 180px; /* Reduced min-width to prevent wrapping */
}

.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h4 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
    display: block;
    width: fit-content;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0; /* All underlines aligned left */
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Remove center/right specific overrides */
.footer-section:nth-child(2) h4::after,
.footer-section:nth-child(3) h4::after,
.footer-section:last-child h4::after {
    left: 0;
    transform: none;
}

.footer-section p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Contact info alignment - standard left with icons */
.footer-section:last-child p {
    display: flex;
    flex-direction: row; /* Standard icon then text */
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-section:last-child p i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-top: 0.25rem;
}

.footer-section p a,
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section p a:hover,
.contact-link:hover {
    color: var(--primary);
}

.footer-logo {
    height: 55px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05));
}

.footer-section h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.footer-section ul li a {
    color: var(--text-muted);
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 0.75rem; /* Reduced from 1rem */
    margin-top: 1.25rem; /* Reduced from 1.5rem */
}

.social-links a {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 12px; /* Modern squircle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: var(--shadow-md);
}

.footer-seal-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding: 2.5rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-seal-left,
.footer-seal-right {
    display: flex;
    gap: 2rem; /* Reduced from 2.5rem */
    align-items: center;
}

.footer-seal-left .seal-item,
.footer-seal-right .seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.footer-seal-left img,
.footer-seal-right img {
    height: 50px; /* Reduced from 60px */
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.footer-seal-right .company-seal {
    height: 90px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
}

.footer-seal-left img:hover,
.footer-seal-right img:hover {
    transform: scale(1.05);
}

.footer-seal-left .fssai-lic {
    color: var(--text-muted);
    font-size: 0.7rem; /* Reduced from 0.75rem */
    font-weight: 700;
    margin-top: 0;
    letter-spacing: -0.2px;
}

.footer-bottom {
    margin-top: 1.5rem; /* Reduced from 2rem */
    padding-top: 1rem; /* Reduced from 1.5rem */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem; /* Reduced from 0.9rem */
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 3rem 2rem;
    }
    
    .footer-section {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .footer-section {
        width: 100%;
        min-width: 0;
    }

    .footer-seal-wrapper {
        justify-content: center;
        flex-direction: column;
        gap: 2rem; /* Reduced from 3rem */
        padding: 1.5rem 1rem 0;
    }
    
    .footer-seal-left,
    .footer-seal-right {
        justify-content: center;
        width: 100%;
        gap: 1.5rem; /* Reduced from 2rem */
    }
}

@media (max-width: 768px) {
    .footer-seal-left img,
    .footer-seal-right img {
        height: 40px; /* Reduced from 50px */
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-logo-overlay {
        justify-content: center;
        margin-top: 2rem; /* Reduced from 3rem */
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem 1.5rem; /* Reduced from 3rem 2rem */
        transition: var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
}



