*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

.logo img{
    height:65px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.navbar ul li a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#008037;
}

.consult-btn{
    background:#008037;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

.mobile-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}


/* Footer */

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 0;
}

.footer-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3{
    margin-bottom:20px;
    font-size:22px;
    position:relative;
}

.footer-col h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#16a34a;
    position:absolute;
    left:0;
    bottom:-8px;
}

.footer-col p{
    line-height:28px;
    color:#d1d5db;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#d1d5db;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#22c55e;
    padding-left:5px;
}

.footer-col i{
    color:#22c55e;
    margin-right:8px;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    margin-right:10px;
    transition:.3s;
}

.social-links a:hover{
    background:#16a34a;
}

.footer-bottom{
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:20px 0;
}

.footer-bottom p{
    color:#cbd5e1;
    font-size:15px;
}
/* ==========================
   COMMON SECTION CSS
========================== */

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#16a34a;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:40px;
    margin-top:10px;
    color:#0f172a;
}

/* ==========================
   HERO SECTION
========================== */

.hero{
    background:url('../images/rice-mill-banner.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
}

.hero::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.70);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
}

.hero-tag{
    background:#16a34a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.hero h1{
    color:#fff;
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    color:#e5e7eb;
    font-size:18px;
    line-height:32px;
    margin-bottom:30px;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#16a34a;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-primary:hover{
    background:#15803d;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* ==========================
   ABOUT SECTION
========================== */

.about-home{
    background:#f8fafc;
}

.about-home p{
    max-width:900px;
    margin:auto;
    text-align:center;
    line-height:32px;
    font-size:18px;
    color:#475569;
}

.counter-box{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.counter-item{
    background:#fff;
    padding:35px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.counter-item h3{
    font-size:48px;
    color:#16a34a;
    margin-bottom:10px;
}

.counter-item p{
    font-size:18px;
    font-weight:600;
}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box h3{
    color:#0f172a;
    margin-bottom:15px;
}

.why-box p{
    color:#64748b;
    line-height:28px;
}

/* ==========================
   SERVICES
========================== */

.services-home{
    background:#f8fafc;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-box{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-box img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.service-box h3{
    padding:20px 20px 10px;
    font-size:22px;
    color:#0f172a;
}

.service-box p{
    padding:0 20px 25px;
    color:#64748b;
    line-height:28px;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box:hover img{
    transform:scale(1.05);
}

.service-box img{
    transition:.4s;
}

.service-box:hover{
    background:#16a34a;
    color:#fff;
    transform:translateY(-8px);
}

.service-box h3{
    font-size:22px;
}

/* ==========================
   INDUSTRIES
========================== */

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.industry-box{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid #16a34a;
}

.industry-box i{
    font-size:45px;
    color:#16a34a;
    margin-bottom:20px;
}

.industry-box h3{
    font-size:22px;
    color:#0f172a;
}

.industry-box:hover{
    transform:translateY(-8px);
    background:#16a34a;
}

.industry-box:hover i,
.industry-box:hover h3{
    color:#fff;
}

/* ==========================
   CONTACT STRIP
========================== */

.contact-strip{
    background:#16a34a;
    padding:50px 0;
}

.contact-strip-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.contact-strip h2{
    color:#fff;
    font-size:36px;
    margin-bottom:10px;
}

.contact-strip p{
    color:#f1f5f9;
}

.strip-btn{
    background:#fff;
    color:#16a34a;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
}

.strip-btn:hover{
    background:#f8fafc;
}

/* ==========================
   ANIMATION
========================== */

.why-box,
.service-box,
.industry-box,
.counter-item{
    transition:all .3s ease;
}

/* ==========================
   WHATSAPP FLOAT
========================== */

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:9999;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

/* =====================
PAGE BANNER
===================== */

.page-banner{
    background:#0f172a;
    padding:100px 0;
    text-align:center;
}

.page-banner h1{
    color:#fff;
    font-size:52px;
    margin-bottom:10px;
}

.page-banner p{
    color:#cbd5e1;
}

/* =====================
ABOUT PAGE
===================== */

.about-page{
    padding:80px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

.about-tag{
    color:#16a34a;
    font-weight:700;
    text-transform:uppercase;
}

.about-content h2{
    margin:15px 0;
    font-size:40px;
}

.about-content p{
    color:#64748b;
    line-height:30px;
    margin-bottom:15px;
}

.about-list{
    list-style:none;
    margin-top:20px;
}

.about-list li{
    margin-bottom:12px;
    font-weight:600;
}

/* =====================
CONSULTANT
===================== */

.consultant-section{
    background:#f8fafc;
}

.consultant-box{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    align-items:center;
}

.consultant-img img{
    width:100%;
    border-radius:15px;
}

.consultant-content h3{
    font-size:30px;
    margin-bottom:20px;
}

.consultant-content p{
    line-height:30px;
    color:#64748b;
}

/* =====================
CLIENTS
===================== */

.client-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.client-box{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-weight:700;
}

/* =====================
MISSION VISION
===================== */

.mv-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.mv-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.mv-box i{
    font-size:50px;
    color:#16a34a;
    margin-bottom:20px;
}

.mv-box h3{
    margin-bottom:15px;
}

.mv-box p{
    color:#64748b;
    line-height:28px;
}


.services-page{
    background:#f8fafc;
}

.service-content{
    padding:25px;
}

.service-content h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-content p{
    color:#64748b;
    line-height:28px;
}

.process-section{
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.process-box span{
    width:70px;
    height:70px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    font-size:24px;
    font-weight:bold;
}
/* =========================
INDUSTRIES PAGE
========================= */

.industries-page{
    background:#f8fafc;
}

.industry-grid-page{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.industry-card i{
    font-size:50px;
    color:#16a34a;
    margin-bottom:20px;
}

.industry-card h3{
    margin-bottom:15px;
    color:#0f172a;
}

.industry-card p{
    color:#64748b;
    line-height:28px;
}

.industry-card:hover{
    transform:translateY(-8px);
    background:#16a34a;
}

.industry-card:hover i,
.industry-card:hover h3,
.industry-card:hover p{
    color:#fff;
}

/* =========================
BENEFITS
========================= */

.industry-benefits{
    background:#fff;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.benefit-box{
    text-align:center;
    padding:35px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.benefit-box i{
    font-size:45px;
    color:#16a34a;
    margin-bottom:20px;
}

.benefit-box h3{
    font-size:22px;
}

/* ==========================
GALLERY PAGE
========================== */

.gallery-section{
    background:#f8fafc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.10);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.gallery-overlay h3{
    color:#fff;
    font-size:20px;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ==========================
GALLERY STATS
========================== */

.gallery-stats{
    background:#fff;
}


/* ==========================
CONTACT PAGE
========================== */

.contact-info-section{
    background:#f8fafc;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.contact-info-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-info-box i{
    font-size:50px;
    color:#16a34a;
    margin-bottom:20px;
}

.contact-info-box h3{
    margin-bottom:10px;
}

.contact-info-box p{
    color:#64748b;
}

/* ==========================
CONTACT FORM
========================== */

.contact-form-section{
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.contact-form-box{
    background:#f8fafc;
    padding:40px;
    border-radius:15px;
}

.contact-form-box h2{
    margin-bottom:25px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #dbe4ea;
    border-radius:8px;
    font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#16a34a;
}

.submit-btn{
    background:#16a34a;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
}

.submit-btn:hover{
    background:#15803d;
}

/* ==========================
RIGHT SIDE
========================== */

.contact-right{
    background:#0f172a;
    color:#fff;
    padding:40px;
    border-radius:15px;
}

.contact-right h2{
    margin-bottom:25px;
}

.contact-right ul{
    list-style:none;
}

.contact-right li{
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:10px;
}

.contact-right i{
    color:#22c55e;
}

.whatsapp-btn{
    margin-top:25px;
    display:inline-block;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:15px 25px;
    border-radius:50px;
    font-weight:600;
}

/* ==========================
MAP
========================== */

.map-section iframe{
    display:block;
}

.counter-item i{
    font-size:50px;
    color:#16a34a;
    margin-bottom:15px;
}

.why-box i{
    font-size:55px;
    color:#16a34a;
    margin-bottom:20px;
    display:block;
}

.why-box:hover i{
    color:#16a34a;
    transform:scale(1.1);
}

.counter-item,
.why-box{
    transition:all .3s ease;
}

.counter-item:hover{
    transform:translateY(-8px);
}

.counter-item:hover i{
    transform:scale(1.1);
}


.clients-associated{
    background:#f8fafc;
}

.client-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:40px;
}

.client-box{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid #16a34a;
}

.client-box i{
    font-size:45px;
    color:#16a34a;
    margin-bottom:15px;
}

.client-box h3{
    font-size:22px;
    color:#0f172a;
}

.client-box:hover{
    transform:translateY(-8px);
    background:#16a34a;
}

.client-box:hover i,
.client-box:hover h3{
    color:#fff;
}

.about-list{
    list-style:none;
    margin-top:25px;
}

.about-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    font-weight:600;
    color:#334155;
}

.about-list li i{
    color:#16a34a;
    font-size:18px;
    min-width:20px;
}

.about-btn{
    margin-top:30px;
}

/* =====================
SCOPE INTRO
===================== */

.scope-intro{
    background:#fff;
}

.scope-text{
    max-width:1000px;
    margin:auto;
    text-align:center;
    line-height:32px;
    color:#64748b;
    font-size:18px;
}

/* =====================
SCOPE GRID
===================== */

.scope-process{
    background:#f8fafc;
}

.scope-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.scope-box{
    background:#fff;
    padding:30px 20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.scope-box i{
    font-size:45px;
    color:#16a34a;
    margin-bottom:20px;
}

.scope-box h3{
    font-size:20px;
    margin-bottom:15px;
    color:#0f172a;
}

.scope-box p{
    color:#64748b;
    line-height:26px;
}

.scope-box:hover{
    transform:translateY(-8px);
    background:#16a34a;
}

.scope-box:hover i,
.scope-box:hover h3,
.scope-box:hover p{
    color:#fff;
}

/* =====================
RESULTS
===================== */

.results-section{
    background:#fff;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.results-grid div{
    background:#f8fafc;
    padding:20px;
    border-radius:10px;
    font-weight:600;
}

.results-grid i{
    color:#16a34a;
    margin-right:8px;
}
