/* ======================================
   VERMA AALU COMPANY - WEBSITE STYLES
   ====================================== */

:root {
    --green-dark:  #1a4731;
    --green-mid:   #2d7a4f;
    --green-light: #4ade80;
    --orange:      #f59e0b;
    --orange-dark: #d97706;
    --white:       #ffffff;
    --gray-light:  #f8fafc;
    --text-dark:   #1e293b;
    --text-muted:  #64748b;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.site-nav {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    padding: 12px 0;
}

.site-nav .navbar-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-icon { margin-right: 6px; font-size: 1.4rem; }

.site-nav .nav-link {
    font-weight: 500;
    padding: 6px 16px !important;
    border-radius: 20px;
    transition: all .2s;
    color: rgba(255,255,255,0.85) !important;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    background: rgba(255,255,255,0.15);
    color: #fff !important;
}

/* ========== HERO ========== */
.hero-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1f5c3a 40%, #2d6a3f 70%, #3d7a50 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

.hero-overlay { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.hero-content { position: relative; z-index: 2; color: #fff; width: 100%; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-highlight { color: var(--orange); }

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-hero-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }

.btn-hero-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Veg grid */
.hero-veg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 280px;
    margin: 0 auto;
}

.veg-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    font-size: 2.5rem;
    transition: transform .2s;
    animation: float 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.veg-item:nth-child(2) { animation-delay: 0.5s; }
.veg-item:nth-child(3) { animation-delay: 1s; }
.veg-item:nth-child(4) { animation-delay: 1.5s; }

.veg-item span { font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 500; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { display: block; }

/* ========== STATS ========== */
.stats-section { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.stat-item {
    padding: 20px 10px;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green-mid);
    line-height: 1;
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ========== SECTION COMMON ========== */
.section-pad { padding: 80px 0; }

.section-badge {
    display: inline-block;
    background: #dcfce7;
    color: var(--green-mid);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge-light {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 8px 0 0;
}

.section-sub { color: var(--text-muted); max-width: 600px; margin: 12px auto 0; }

/* ========== PRODUCT CARDS ========== */
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}

.product-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

.product-emoji { font-size: 3.5rem; margin-bottom: 12px; display: block; }

.product-card h5 { font-weight: 700; margin-bottom: 8px; }

.product-card p { color: var(--text-muted); font-size: 13.5px; }

.product-tag {
    display: inline-block;
    background: #dcfce7;
    color: var(--green-mid);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform .2s, box-shadow .2s;
    height: 100%;
    border-top: 3px solid var(--green-mid);
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }

.service-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 14px;
}

.bg-green  { background: var(--green-mid); }
.bg-orange { background: var(--orange); }
.bg-blue   { background: #3b82f6; }
.bg-purple { background: #8b5cf6; }

.service-card h5 { font-weight: 700; margin-bottom: 8px; }
.service-card p  { color: var(--text-muted); font-size: 13.5px; margin: 0; }

/* ========== WHY US ========== */
.bg-dark-green { background: var(--green-dark); }

.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 20px;
}

.why-card i { font-size: 1.6rem; color: var(--orange); margin-bottom: 8px; display: block; }
.why-card h6 { font-weight: 700; margin-bottom: 4px; color: #fff; }
.why-card p  { font-size: 13px; opacity: 0.75; margin: 0; color: #fff; }

/* ========== PORTAL CTA ========== */
.portal-cta {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 30px;
}

.btn-portal {
    background: var(--green-mid);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}
.btn-portal:hover { background: var(--green-dark); color: #fff; }

/* ========== CONTACT STRIP ========== */
.contact-strip {
    background: var(--green-dark);
    color: #fff;
    padding: 30px 0;
}

.contact-strip a { color: #a7f3d0; }
.contact-strip a:hover { color: #fff; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: #fff;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '🥔';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.07;
}

/* ========== ABOUT PAGE ========== */
.about-visual {
    position: relative;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 20px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-big-emoji { font-size: 8rem; }

.about-badge-1, .about-badge-2 {
    position: absolute;
    background: var(--green-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.about-badge-1 { bottom: 30px; left: 20px; background: var(--green-mid); }
.about-badge-2 { top: 30px; right: 20px; background: var(--orange); }

.about-stat {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.about-stat span { display: block; font-size: 1.8rem; font-weight: 900; color: var(--green-mid); }
.about-stat small { font-size: 12px; color: var(--text-muted); }

/* Team cards */
.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform .2s;
}
.team-card:hover { transform: translateY(-4px); }

.team-avatar {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto;
}
.bg-orange-avatar { background: linear-gradient(135deg, #d97706, #f59e0b); }

.contact-pill {
    background: #dcfce7;
    color: var(--green-dark);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}
.contact-pill:hover { background: var(--green-mid); color: #fff; }

/* Values */
.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform .2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 12px; }
.value-card h5 { font-weight: 700; }

/* ========== CONTACT PAGE ========== */
.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.contact-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-embed { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.quick-contact-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.quick-contact-card i { font-size: 2rem; color: var(--green-mid); margin-bottom: 8px; display: block; }
.quick-contact-card h6 { font-weight: 700; }

/* ========== FOOTER ========== */
.site-footer {
    background: #0f2b1e;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-brand { font-size: 1.3rem; font-weight: 800; }

.footer-heading {
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 6px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

/* ========== FORM CONTROLS ========== */
.form-control:focus, .form-select:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 0.2rem rgba(45,122,79,0.15);
}

.btn-success { background: var(--green-mid); border-color: var(--green-mid); }
.btn-success:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section-pad { padding: 50px 0; }
    .hero-section { min-height: auto; padding: 60px 0 40px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .about-visual { height: 220px; }
    .about-big-emoji { font-size: 5rem; }
    .team-card { margin-bottom: 0; }
    .contact-form-card { padding: 20px; }
    .portal-cta { padding: 20px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.7rem; }
    .stat-num { font-size: 1.7rem; }
    .product-card { padding: 20px 14px; }
}
