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

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

/* Header */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    border-bottom:1px solid #ddd;
    position: sticky;
top: 0;
z-index: 1000;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#0A2E5C;
}

.nav{
    display:flex;
    gap:30px;
}

.nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}

.quote-btn{
    background:#198754;
    color:white;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
}

/* Hero */

.hero{
    background:
        linear-gradient(
            rgba(255,255,255,0.75),
            rgba(255,255,255,0.75)
        ),
        url('assets/images/sourcing.jpg');

    background-size:cover;
    background-position:center;
}

.hero-content{
    text-align:center;
    max-width:900px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.hero h1{
    font-size: 3.5rem;
    line-height:1.2;
    color:#0A2E5C;
    margin-bottom:20px;
}

.hero p{
    font-size:24px;
    font-weight:600;
    color:#1f2937;
    background:rgba(255,255,255,0.85);
    display:inline-block;
    padding:10px 20px;
    border-radius:8px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-content h1{
    font-size: 2.5rem;
    line-height:1.2;
}

.primary-btn{
    background:#0A2E5C;
    color:white;
    padding:15px 28px;
    border-radius:8px;
    text-decoration:none;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
    padding:15px 28px;
    border-radius:8px;
    text-decoration:none;
}

/* Mobile */

@media(max-width:768px){

    .header{
        flex-direction:column;
        gap:15px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}
/* Products Section */

.products-section{
    padding:80px 8%;
    background:#ffffff;
}

.products-section h2{
    text-align:center;
    font-size:40px;
    color:#0A2E5C;
    margin-bottom:50px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.product-card{
    background:#f8f9fb;
    padding:30px;
    border-radius:12px;
    transition:0.3s;
    border:1px solid #e5e5e5;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card h3{
    margin-bottom:15px;
    color:#0A2E5C;
}

.product-card p{
    color:#555;
    line-height:1.6;
}
/* Why Us */

.why-us{
    padding:80px 8%;
    background:#f5f8fc;
}

.why-us h2{
    text-align:center;
    color:#0A2E5C;
    font-size:40px;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.why-card{
    background:white;
    padding:30px;
    border-radius:12px;
    text-align:center;
    border:1px solid #e5e5e5;
}

.why-card h3{
    color:#0A2E5C;
}
/* Floating WhatsApp */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px 20px;
    border-radius:50px;
    font-weight:bold;
    z-index:1000;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
.process{
    padding:80px 8%;
    background:#ffffff;
}

.process h2{
    text-align:center;
    font-size:40px;
    color:#0A2E5C;
    margin-bottom:50px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.process-step{
    text-align:center;
    padding:30px;
    border:1px solid #e5e5e5;
    border-radius:12px;
}

.process-step span{
    display:inline-flex;
    width:50px;
    height:50px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0A2E5C;
    color:white;
    font-weight:bold;
    margin-bottom:15px;
}

/* Request Samples Section */

.sample-section{
    background:#0A2E5C;
    color:white;
    padding:90px 8%;
    text-align:center;
}

.sample-content{
    max-width:900px;
    margin:auto;
}

.sample-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.sample-section p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.sample-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.sample-whatsapp{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:16px 30px;
    border-radius:8px;
    font-weight:bold;
}

.sample-quote{
    background:white;
    color:#0A2E5C;
    text-decoration:none;
    padding:16px 30px;
    border-radius:8px;
    font-weight:bold;
}

.product-card,
.why-card,
.process-step{
    transition:0.3s ease;
}

.product-card:hover,
.why-card:hover,
.process-step:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.footer{
    background:#081f3f;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer h3{
    font-size:32px;
    margin-bottom:15px;
}

.footer p{
    margin:10px 0;
}

.products-page{
    padding:80px 8%;
    text-align:center;
}

.products-page h1{
    color:#0A2E5C;
    font-size:48px;
    margin-bottom:20px;
}

.products-page p{
    max-width:800px;
    margin:auto;
    margin-bottom:50px;
    font-size:18px;
}


/* Contact Page */

.contact-section{
    padding:80px 8%;
}

.contact-container{
    max-width:800px;
    margin:auto;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-form button{
    background:#0A2E5C;
    color:white;
    border:none;
    padding:16px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#123f7a;
}

.contact-info{
    padding:80px 8%;
    text-align:center;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}

.product-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    height:100%;
}

.products-grid{
    align-items:stretch;
}

.about-image{
    width:100%;
    max-width:900px;
    border-radius:12px;
    margin:30px auto;
    display:block;
}

.sample-section{
    background:
        linear-gradient(
            rgba(10,46,92,0.92),
            rgba(10,46,92,0.92)
        ),
        url('assets/images/spices.jpg');

    background-size:cover;
    background-position:center;
}

.footer{
    background:
        linear-gradient(
            rgba(5,20,40,0.95),
            rgba(5,20,40,0.95)
        ),
        url('assets/images/commodities.jpg');

    background-size:cover;
}

.product-btn{
    margin-top:auto;
    background:#1e8e3e;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
}

.product-btn{
    display:inline-block;
    margin-top:15px;
    background:#1e8e3e;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.product-btn:hover{
    background:#166d30;
}

.logo img{
    height:125px;
    width:auto;
    display:block;
}

.nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    padding:8px 12px;
    border-radius:6px;
    transition:0.3s;
}

.nav a:hover{
    color:#0b3570;
}

.nav a.active{
    background:#0b3570;
    color:white;
}