/* HERO */


    .commodity-hero{
    position:relative;
    height:85vh;
    background:linear-gradient(to top,
    rgba(165, 202, 236, 0.95) 0%,
    rgba(109, 147, 166, 0.15)),url('../images/commodities-banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);
    top:0;
    left:0;
}

.commodity-hero .container{
    position:relative;
    z-index:2;
    color:#fff;
}

.small-title{
    color:#e5e9eb;
    letter-spacing:2px;
    font-weight:600;
    font-size:25px;
}

.commodity-hero h1{
    font-size:58px;
    margin:15px 0;
}

.commodity-hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    color:#f5eded;
}

/* ABOUT */

.about-commodity{
    padding-top: 50px;
     padding-bottom:60px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.section-title{
    color:#0077cc;
    font-weight:600;
    letter-spacing:1px;
    font-size:15px;
}

.about-content h2{
    font-size:42px;
    margin:15px 0 25px;
    line-height:1.2;
    color:#003b70;
}

.about-content p{
    color:#555;
    margin-bottom:20px;
}

.feature-list{
    margin-top:25px;
}

.feature-item{
    display:flex;
    align-items:center;
    margin-bottom:18px;
}

.feature-item i{
    width:50px;
    height:50px;
    background:#eaf6ff;
    color:#008cff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
    font-size:20px;
}

/* PRODUCTS SECTION */

.products-section{
    padding:80px 0;
    background:#f4f8fc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0077cc;
    font-weight:600;
    letter-spacing:2px;
    font-size:15px;
}

.section-title h2{
    font-size:52px;
    color:#003b70;
    margin-top:15px;
    font-weight:700;
}

/* GRID */

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);

    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* IMAGE */

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

/* CONTENT */

.product-content{
    padding:30px 28px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.product-content h3{
    font-size:32px;
    color:#003b70;
    margin-bottom:18px;
    font-weight:700;
    line-height:1.3;
}

.product-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;
    margin-bottom:30px;
    flex-grow:1;
}

/* BUTTON */

.product-content .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:190px;
    height:58px;

    background:#0066c3;
    color:#fff;

    border-radius:50px;

    text-decoration:none;
    font-size:20px;
    font-weight:500;

    transition:0.4s;
}

.product-content .btn:hover{
    background:#004b87;
    color:#fff;
}

/* TABLET */

@media(max-width:992px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .product-card img{
        height:240px;
    }

    .product-content h3{
        font-size:28px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .products-section{
        padding:50px 0;
    }

    .products-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .product-card{
        border-radius:18px;
    }

    .product-card img{
        height:220px;
    }

   .product-content{
    padding:30px 28px;

    display:flex;
    flex-direction:column;

    height:100%;
}

.product-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;

    margin-bottom:25px;

    flex-grow:1;
}
    .product-content h3{
        font-size:24px;
        margin-bottom:12px;
    }

   

    .product-content .btn{
        width:170px;
        height:52px;
        font-size:17px;
    }

}

/* WHY CHOOSE */

.why-choose{
    padding:90px 0;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.choose-box{
    text-align:center;
    border:1px solid #e5e5e5;
    padding:40px 25px;
    border-radius:15px;
    transition:0.4s;
}

.choose-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.choose-box i{
    width:80px;
    height:80px;
    background:#eef7ff;
    color:#008cff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:30px;
}

.choose-box h3{
    margin-bottom:15px;
    color:#004b87;
}

.choose-box p{
    color:#666;
}

/* CTA */

.cta-section{
    background:#06355f;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta-content{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#e0e7eb;
}

.cta-content h2{
    font-size:42px;
    margin-bottom:15px;
}




.whatsapp-btn{
    padding:30px 25px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}



.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .choose-grid{
        grid-template-columns:1fr;
    }

    .commodity-hero h1{
        font-size:42px;
    }

}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .section-header h2,
    .about-content h2,
    .cta-section h2{
        font-size:32px;
    }

    .commodity-hero h1{
        font-size:34px;
    }

    .commodity-hero{
        height:75vh;
    }

}
 /* CTA MOBILE FIX */

@media(max-width:768px){

    .cta-section{
        padding:40px 20px;
        text-align:center;
    }

    .cta-section h2{
        font-size:26px;
        line-height:1.4;
    }

    .cta-section p{
        font-size:15px;
        line-height:1.6;
    }

    .cta-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .cta-buttons a,
    .cta-section .btn{
        width:100%;
        max-width:280px;
        text-align:center;
    }

}
              