
/* HERO SECTION */

.hero-section{
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.60),rgba(0,0,0,0.60)),
    url('../images/metals-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    padding:120px 0;

    position:relative;
}

.hero-content{
    color:#fff;
    max-width:700px;
}

.hero-content span{
    color:#003b70;;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:70px;
    margin:20px 0;
    line-height:1.1;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#f1f1f1;
}

/* HERO ICONS */

.hero-icons{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-box{
    background:rgba(255,255,255,0.12);

    padding:25px;

    border-radius:16px;

    backdrop-filter:blur(8px);

    min-width:180px;

    text-align:center;
}

.hero-box i{
    font-size:34px;
    color:#6ec1ff;
    margin-bottom:15px;
}

.hero-box h4{
    font-size:18px;
}



/* ABOUT SECTION */

.about-product{
    padding-top: 50px;
     padding-bottom:60px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.about-images img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:18px;
}

.about-content h2{
    font-size:46px;
    margin:20px 0;
    line-height:1.3;
     color:#003b70;

}

.about-content p{
    color:#555;
    margin-bottom:20px;
}

/* FEATURES */

.features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;
}

.feature-card{
    background:#f4f9ff;
    padding:25px;
    border-radius:14px;
    text-align:center;
}

.feature-card i{
    font-size:30px;
    color:#0077cc;
    margin-bottom:15px;
}



/* 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,2fr);
    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(3,2fr);
    }

    .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;
    }

}

/* COUNTER SECTION */

.counter-section{
    padding:50px 0;
    background:#f8fbff;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.counter-box{
    background:#fff;

    padding:40px 25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.counter-box i{
    font-size:40px;
    color:#0077cc;
    margin-bottom:20px;
}

.counter-box h2{
    font-size:48px;
    color:#004b87;
    margin-bottom:10px;
}

.counter-box p{
    color:#666;
}

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .counter-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-content h1{
        font-size:48px;
    }

}

@media(max-width:768px){

    .counter-grid{
        grid-template-columns:1fr;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .hero-icons{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:36px;
    }

}

/* 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:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}



.whatsapp-btn{
    background:#25D366;
    color:#fff;
}
/* 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;
    }

}