
        :root {
            --bg-primary: #007cc3;
            
            --secondary-green: #198754;
            --accent-orange: #cca300;
            --light-gray: #f8f9fa;
            --dark-gray: #212529;
        }
        
        body {
            font-family: "Open Sans", sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 4rem 0;
        }
        
        .section-padding {
            padding: 4rem 0;
        }
        
        .section-light {
            background-color: var(--light-gray);
        }
        
        h1, h2, h3 {
            font-weight: 700;
            color: var(--dark-gray);
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-orange);
        }
        
        .lead-form-section {
    position: relative;
    background-image: url('images/banner3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.lead-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* adjust darkness */
    z-index: 1;
}

/* Keep content above overlay */
.lead-form-section .container {
    position: relative;
    z-index: 2;
}

        
        .lead-text {
            font-size: 1.25rem;
            color: #666;
        }
        
        .icon-row .icon-item {
            text-align: center;
            padding: 1rem;
        }
        
        .icon-row .icon {
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin-bottom: 0.5rem;
        }
        
        .btn-primary {
            background-color: var(--accent-orange);
            border-color: var(--accent-orange);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        
        .btn-outline-primary {
            color: var(--accent-orange);
            border-color: var(--accent-orange);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        
        .btn-success {
            background-color: var(--secondary-green);
            border-color: var(--secondary-green);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        
        .highlight-box {
            background-color: #fff3cd;
            border-left: 4px solid var(--accent-orange);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 0.5rem 0.5rem 0;
        }
        
        .comparison-table {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
        }
        
        .comparison-table .table-header {
            background-color: var(--accent-orange);
            color: white;
            padding: 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
        }
        
        .comparison-table .table-body {
            padding: 1.5rem;
            background-color: white;
        }
        
        .comparison-table ul {
            padding-left: 1.5rem;
        }
        
        .comparison-table li {
            margin-bottom: 0.75rem;
        }
        
        .process-step {
            text-align: center;
            padding: 1.5rem;
        }
        
        .process-icon {
            font-size: 2.5rem;
            background-color: var(--accent-orange);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .form-card {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.08);
            padding: 2.5rem;
        }
        
        .form-control {
            padding: 0.75rem 1rem;
            border: 1px solid #dee2e6;
        }
        
        .sticky-whatsapp {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        
        .sticky-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.25rem;
            }
            
            .hero-section {
                padding: 2.5rem 0;
            }
            
            .section-padding {
                padding: 2.5rem 0;
            }
            
            .cta-stack-mobile .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .process-step {
                margin-bottom: 1.5rem;
            }
        }

        .comparison-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-header {
    padding: 20px;
    color: #fff;
}

.card-header i {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.card-header.apeda {
    background: linear-gradient(135deg, #0d6efd, #084298);
}

.card-header.fssai {
    background: linear-gradient(135deg, #198754, #146c43);
}

.card-body {
    padding: 24px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 15px;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 12px;
    color: #198754;
    font-weight: 600;
}

.export-highlight {
    background: #e9f7ef;
    border: 1px solid #b6e2c6;
    padding: 20px;
    border-radius: 14px;
}

.export-highlight span {
    color: #0d6efd;
    font-weight: 700;
}



/* --- Hero Base --- */
.hero-command {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

/* Background Parallax */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("images/banner-2.webp") center/cover no-repeat;
    transform: translateZ(0);
    will-change: transform;
    animation: bgMove 20s linear infinite alternate;
    
}

@keyframes bgMove {
    0% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1.05) translateY(-20px); }
    100% { transform: scale(1) translateY(0px); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0,0,0,.85), rgba(0,0,0,.55)),
        repeating-linear-gradient(
            to right,
            rgba(255,255,255,.03),
            rgba(255,255,255,.03) 1px,
            transparent 1px,
            transparent 120px
        );
}

/* Logo Animation */
.hero-logo img {
    width: 250px;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.35));
    transition: transform 0.5s ease, filter 0.5s ease;
}
.hero-logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

/* Hero Text Animations */
.animate-fade { opacity: 0; transform: translateY(20px); animation: fadeUp 1s forwards; }
.animate-slide-up { opacity: 0; transform: translateY(30px); animation: slideUp 1s forwards; }
.animate-slide-up.delay-1 { animation-delay: 0.3s; }
.animate-slide-up.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Points */
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 24px 0;
    justify-content: center;
    align-items: center;
}
.point-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.point-img img {
    width: 60px;
    margin-bottom: 8px;
}
.point-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Hero Buttons */
.hero-actions .btn {
    margin: 0 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.accent-orange
{
    background-color:#cca300;
}


.text-warning i
{
    color:#cca300;
}
   
 
    .risk-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.risk-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}

.risk-card h6 {
    font-weight: 700;
    margin-bottom: 10px;
}

.risk-card p {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 0;
}

.impact-alert {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    padding: 24px;
    border-radius: 16px;
}


        .reg-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.reg-card:hover {
    transform: translateY(-6px);
}

.reg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.reg-header i {
    font-size: 28px;
    opacity: 0.7;
}

.reg-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
}

.reg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg-list li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 14px;
    font-size: 14.5px;
}

.reg-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #198754;
    font-weight: 700;
}

.reg-highlight {
    background: #f8f9fa;
    border-left: 4px solid #cca300;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 16px;
}

.reg-card.eic .reg-highlight {
    border-color: #198754;
}

.reg-card.fssai .reg-highlight {
    border-color: #ffc107;
}

.reg-summary {
    background: #e9f7ef;
    border: 1px solid #b6e2c6;
    padding: 24px;
    border-radius: 16px;
}

  
    .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    font-size: 14.5px;
}

.feature-item i {
    font-size: 35px;
    color: #cca300;
    flex-shrink: 0;
}

.highlight-box {
    background: #e9f7ef;
    border-left: 4px solid #198754;
    padding: 16px;
    border-radius: 12px;
}


 
    .process-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.process-step {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    align-items: center;
}

.process-step span {
    width: 34px;
    height: 34px;
    background: #cca300;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

/*<!-- CSS for circular icons -->*/

.icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Responsive text/icon */
@media (max-width: 576px) {
    .icon-circle { width: 75px; height: 75px; font-size: 1.5rem; }
}
