*{
margin:0;
padding:0;
box-sizing:border-box;
}


body{

font-family:'Poppins',sans-serif;
color:#333;
line-height:1.6;

}


.container{

width:90%;
max-width:1300px;
margin:auto;

}


/* HEADER */

header {
    background: #14171E;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}


.navbar{

display:flex;
justify-content:space-between;
align-items:center;

}


.logo img{

height:80px;

}


nav ul{

display:flex;
list-style:none;

}


nav ul li{

position:relative;

}


nav ul li a{

display:block;
padding:30px 15px;
text-decoration:none;
color:#004f9e;
font-weight:600;

}


nav ul li a:hover{

color:#16a34a;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

/* DROPDOWN */

.dropdown-content{

display:none;
position:absolute;
background:white;
min-width:250px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);

}


.dropdown:hover .dropdown-content{

display:block;

}


.dropdown-content a{

padding:12px 15px;

}



/* HERO */

.hero{

height:90vh;

background:
linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.65)
),
url('../images/world-map.jpg');
opacity:80%;


background-size:cover;
background-position:center;

color:white;
display:flex;
align-items:center;

}


.hero h1{

font-size:55px;
font-weight:800;

}


.hero h2{

color:#4ade80;
margin:15px 0;

}


.hero p{

width:50%;
font-size:18px;

}


.btn{

display:inline-block;
margin-top:25px;
background:#0074cc;
color:white;
padding:15px 35px;
border-radius:5px;
text-decoration:none;
font-weight:600;

}


.btn:hover{

background:#16a34a;

}


/* GENERAL */

.section,
.products,
.reach{

padding:80px 0;

}


.section h3,
.products h3,
.reach h3{

font-size:38px;
color:#004f9e;
margin-bottom:25px;

}


/* STATS */

.stats{

display:flex;
gap:20px;
margin-top:40px;

}


.card{

background:#f5f5f5;
padding:30px;
flex:1;
text-align:center;
border-radius:8px;

}


.card h2{

color:#16a34a;

}


/* PRODUCTS */


.grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}


.product-card{

padding:30px;
background:white;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.15);

}


.product-card:hover{

transform:translateY(-8px);
transition:.3s;

}


/* REACH */

.reach{

background:#004f9e;
color:white;
text-align:center;

}


.reach h3{

color:white;

}


/* FOOTER */

footer{

background:#111827;
color:white;
text-align:center;
padding:40px 0;

}


/* MOBILE */

@media(max-width:900px){


.navbar{

flex-direction:column;

}


nav ul{

flex-direction:column;
width:100%;

}


nav ul li a{

padding:15px;

}


.hero h1{

font-size:35px;

}


.hero p{

width:100%;

}


.grid,
.stats{

grid-template-columns:1fr;
flex-direction:column;

}

}


/* Contact & RFQ Forms */

.quote-form,
.contact-form {

max-width:700px;

margin:40px auto;

display:flex;

flex-direction:column;

gap:20px;

}


.quote-form input,
.quote-form select,
.quote-form textarea {

padding:15px;

border:1px solid #cccccc;

border-radius:8px;

font-size:16px;

font-family:Poppins;

}


.quote-form textarea {

height:180px;

resize:none;

}


.quote-form button {

border:none;

cursor:pointer;

}


.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {

outline:none;

border-color:#004f9e;

box-shadow:0 0 8px #004f9e;

}
/* Agriculture Product Images */

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}


/* Agriculture Hero Background */

.agriculture-hero {
    background: linear-gradient( rgba(0,0,0,0.60), rgba(0,0,0,0.60)), url('../images/agriculture/agri-banner.jpg');
    background-size: cover;
    background-position: center;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128c7e;
    }

/* Industries Section */
.industries-section {
    padding: 80px 8%;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

    .section-header h2 {
        font-size: 38px;
        color: #0b1f3a;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .section-header p {
        font-size: 17px;
        color: #555;
        line-height: 1.8;
    }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.industry-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border-bottom: 4px solid #0b5ed7;
}

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(11,31,58,0.15);
    }

.icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.industry-card h3 {
    color: #0b1f3a;
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.industry-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media(max-width:768px) {
    .industries-section {
        padding: 60px 5%;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .industry-card {
        padding: 28px 22px;
    }
}
/* Global Sourcing Network Section */

.global-network-section {
    padding: 90px 8%;
    background: linear-gradient(135deg, #ffffff, #eef4fb);
    font-family: 'Poppins', sans-serif;
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

    .section-header h2 {
        font-size: 38px;
        color: #082a4d;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .section-header p {
        color: #555;
        font-size: 17px;
        line-height: 1.8;
    }


.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}


.network-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid #0056b3;
    transition: all 0.35s ease;
}


    .network-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0, 40, 90, 0.15);
    }


.region-icon {
    font-size: 45px;
    height:100px; width: 100px;
    margin-bottom: 18px;
    object-fit:cover;
    align-content:center;
    align-items:center;
    text-align:center;
}


.network-card h3 {
    color: #082a4d;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}


.network-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* Serving Markets */

.markets-section {
    background: #082a4d;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    color: #fff;
}


    .markets-section h3 {
        font-size: 28px;
        margin-bottom: 25px;
        font-weight: 600;
    }


.market-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}


    .market-list span {
        background: rgba(255,255,255,0.15);
        padding: 12px 22px;
        border-radius: 30px;
        font-size: 15px;
        font-weight: 500;
        border: 1px solid rgba(255,255,255,0.25);
        transition: 0.3s;
    }


        .market-list span:hover {
            background: #ffffff;
            color: #082a4d;
        }


/* Responsive Design */

@media (max-width: 768px) {

    .global-network-section {
        padding: 60px 5%;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .markets-section h3 {
        font-size: 22px;
    }

    .network-card {
        padding: 28px 22px;
    }
}

/* Partner Contact Section */

.partner-contact-section {
    padding: 90px 8%;
    background: linear-gradient(135deg, #f4f8fc, #ffffff);
    font-family: 'Poppins', sans-serif;
}


/* Header */

.section-header {
    text-align: center;
    max-width: 850px;
    margin: auto auto 55px;
}


    .section-header h2 {
        font-size: 38px;
        color: #082a4d;
        margin-bottom: 15px;
        font-weight: 700;
    }


    .section-header p {
        font-size: 17px;
        color: #555;
        line-height: 1.8;
    }


/* Layout */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 35px;
}


/* Left Panel */

.contact-info {
    background: #082a4d;
    color: white;
    padding: 45px 35px;
    border-radius: 20px;
}


    .contact-info h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }


    .contact-info p {
        line-height: 1.8;
        color: #d6e3f5;
    }


.benefits {
    margin-top: 30px;
}


.benefit {
    background: rgba(255,255,255,0.12);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 15px;
}


/* Form */

.partner-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.form-group {
    margin-bottom: 20px;
}


    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #082a4d;
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 15px;
        border: 1px solid #d3dce6;
        border-radius: 10px;
        font-size: 15px;
        outline: none;
        transition: 0.3s;
    }


        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            box-shadow: 0 0 10px rgba(0,86,179,0.2);
        }


textarea {
    resize: vertical;
}


/* Submit Button */

.submit-btn {
    background: #0056b3;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}


    .submit-btn:hover {
        background: #082a4d;
        transform: translateY(-3px);
    }


/* Responsive */

@media (max-width: 768px) {


    .partner-contact-section {
        padding: 60px 5%;
    }


    .contact-wrapper {
        grid-template-columns: 1fr;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .section-header h2 {
        font-size: 30px;
    }


    .partner-form {
        padding: 30px 25px;
    }
}

/* Industries Section */

.industries-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

    .section-title h2 {
        font-size: 42px;
        color: #003366;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 18px;
        color: #666;
    }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
}

.industry-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .industry-card:hover {
        transform: translateY(-8px);
    }

    .industry-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.industry-content {
    padding: 25px;
}

    .industry-content h3 {
        color: #003366;
        margin-bottom: 15px;
        font-size: 22px;
    }

    .industry-content p {
        color: #555;
        line-height: 1.8;
    }