/*==================================================
    ROOT VARIABLES
==================================================*/

:root{

    --primary:#d71920;
    --primary-dark:#b51218;

    --secondary:#071b38;

    --dark:#08111d;
    --dark-light:#132236;

    --white:#ffffff;

    --text:#d9dee6;
    --muted:#a9b3bf;

    --border:rgba(255,255,255,.08);

    --card-bg:rgba(255,255,255,.05);

    --radius:24px;

    --shadow-sm:0 10px 30px rgba(0,0,0,.18);
    --shadow-md:0 20px 50px rgba(0,0,0,.25);
    --shadow-lg:0 30px 70px rgba(0,0,0,.35);

    --transition:.35s ease;

}


/*==================================================
    RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}


/*==================================================
    WORDPRESS LAYOUT
==================================================*/

.site-content,
.content-area,
.site-main{

    width:100% !important;

    max-width:100% !important;

    padding:0 !important;

}

.container{

    width:min(1750px,99%);

    margin:auto;

    padding:0 10px;

}


/*==================================================
    PAGE BACKGROUND
==================================================*/

container{

    font-family:'Montserrat',sans-serif;

    background:#07111f;

    color:var(--white);

    overflow-x:hidden;

}


img{

    display:block;

    max-width:100%;

    height:auto;

}


a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}


h1,
h2,
h3,
h4,
h5,
h6{

    color:#fff;

    font-weight:800;

    line-height:1.15;

}


p{

    line-height:1.8;

}


/*==================================================
    COMMON SECTION
==================================================*/

section{

    position:relative;

    padding:110px 0;

}


/*==================================================
    BUTTON
==================================================*/

.hero-btn,
.product-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:190px;

    height:52px;

    padding:0 28px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}


.hero-btn:hover,
.product-card a:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow-md);

}


/*==================================================
    MOBILE
==================================================*/

@media(max-width:991px){

    section{

        padding:90px 0;

    }

}


@media(max-width:768px){

    section{

        padding:70px 0;

    }

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

.cementing-head-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:140px 0 110px;

    background:

        linear-gradient(rgba(6,18,36,.90),rgba(6,18,36,.90)),

        url("../images8/27.webp") center/cover no-repeat;

}


/* Decorative Grid */

.cementing-head-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:60px 60px;

    opacity:.45;

}


/* Red Glow */

.cementing-head-hero::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    right:-180px;

    top:-180px;

    background:

        radial-gradient(circle,

        rgba(215,25,32,.20),

        transparent 72%);

}


/*==================================================
    HERO CONTENT
==================================================*/

.hero-content{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:80px;

    align-items:center;

}


/*==================================================
    LEFT
==================================================*/

.sub-title{

    display:inline-block;

    color:var(--primary);

    font-size:.95rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

}


.hero-left h1{

    font-size:clamp(3.6rem,7vw,6.5rem);

    line-height:.95;

    letter-spacing:-2px;

    margin-bottom:30px;

}


.hero-left p{

    max-width:620px;

    font-size:1.15rem;

    color:var(--text);

    line-height:1.9;

    margin-bottom:40px;

}


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

.hero-right{

    display:flex;

    justify-content:flex-end;

}


/*==================================================
    HIGHLIGHT CARD
==================================================*/

.highlight-card{

    width:100%;

    max-width:420px;

    padding:40px;

    border-radius:26px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--shadow-lg);

    position:relative;

    overflow:hidden;

}


.highlight-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #ff6b6b

    );

}


.card-tag{

    display:block;

    color:#fff;

    font-size:.9rem;

    letter-spacing:2px;

    margin-bottom:25px;

    font-weight:700;

}


.highlight-card ul{

    list-style:none;

    margin-bottom:30px;

}


.highlight-card li{

    color:var(--text);

    margin-bottom:16px;

    padding-left:28px;

    position:relative;

}


.highlight-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:700;

}


.stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}


.stats h3{

    color:var(--primary);

    font-size:2rem;

    margin-bottom:8px;

}


.stats p{

    color:var(--muted);

    font-size:.95rem;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .cementing-head-hero{

        min-height:auto;

        padding:120px 0 90px;

    }

    .hero-content{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .hero-left p{

        margin:0 auto 40px;

    }

    .hero-right{

        justify-content:center;

    }

}


@media(max-width:768px){

    .cementing-head-hero{

        padding:100px 0 70px;

    }

    .hero-left h1{

        font-size:3rem;

        line-height:1.05;

    }

    .highlight-card{

        padding:30px;

    }

}


@media(max-width:480px){

    .hero-left h1{

        font-size:2.35rem;

    }

    .stats{

        grid-template-columns:1fr;

    }

}
/*==================================================
    OVERVIEW SECTION
==================================================*/

.overview-section{

    position:relative;

    padding:110px 0;

    background:#ffffff;

    overflow:hidden;

}


/* Background Decoration */

.overview-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-180px;

    right:-180px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(215,25,32,.08),

        transparent 72%);

    pointer-events:none;

}


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

.overview-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;

}


/*==================================================
    LEFT CONTENT
==================================================*/

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-size:.95rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}


.overview-left h2{

    font-size:clamp(2.5rem,4vw,4rem);

    color:var(--secondary);

    margin-bottom:25px;

    line-height:1.15;

}


.overview-left p{

    color:#5d6875;

    font-size:1.08rem;

    line-height:1.9;

    max-width:700px;

}


/*==================================================
    RIGHT PANEL
==================================================*/

.overview-right{

    background:#fff;

    padding:45px;

    border-radius:24px;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}


.overview-right ul{

    list-style:none;

}


.overview-right li{

    position:relative;

    padding-left:34px;

    margin-bottom:20px;

    color:#243447;

    font-size:1.05rem;

    font-weight:500;

}


.overview-right li:last-child{

    margin-bottom:0;

}


.overview-right li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    width:22px;

    height:22px;

    border-radius:50%;

    background:rgba(215,25,32,.12);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.85rem;

    font-weight:700;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .overview-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .overview-left{

        text-align:center;

    }

    .overview-left p{

        margin:auto;

    }

}


@media(max-width:768px){

    .overview-section{

        padding:80px 0;

    }

    .overview-right{

        padding:30px;

    }

    .overview-left h2{

        font-size:2.3rem;

    }

}


@media(max-width:480px){

    .overview-left h2{

        font-size:2rem;

    }

    .overview-right{

        padding:24px;

    }

    .overview-right li{

        font-size:1rem;

    }

}
/*==================================================
    SECTION HEADINGS
==================================================*/

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    position:relative;

    display:inline-block;

    font-size:clamp(2.3rem,4vw,4rem);

    color:#fff;

    font-weight:800;

    letter-spacing:-1px;

    padding-bottom:18px;

}

.section-heading h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:90px;

    height:4px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #ff6b6b
    );

}


/*==================================================
    PRODUCT SERIES
==================================================*/

.product-series{

    position:relative;

    background:#08111d;

    overflow:hidden;

}

.product-series::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    top:-220px;

    right:-220px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(215,25,32,.12),

        transparent 72%);

}


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

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}


/*==================================================
    PRODUCT CARD
==================================================*/

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    min-height:500px;

    padding:35px 30px;

    border-radius:26px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

    overflow:hidden;

}

.product-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #ff6b6b

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.product-card:hover::before{

    transform:scaleX(1);

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:rgba(215,25,32,.35);

    box-shadow:var(--shadow-lg);

}


/*==================================================
    IMAGE
==================================================*/

.product-card img{

    width:100%;

    max-width:260px;

    height:240px;

    object-fit:contain;

    margin-bottom:30px;

    transition:.45s ease;

}

.product-card:hover img{

    transform:scale(1.08);

}


/*==================================================
    CONTENT
==================================================*/

.product-card h3{

    color:#fff;

    font-size:1.5rem;

    line-height:1.4;

    margin-bottom:30px;

    flex-grow:1;

}


/*==================================================
    BUTTON
==================================================*/

.product-card a{

    margin-top:auto;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .product-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .product-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .product-card{

        min-height:auto;

        padding:30px 24px;

    }

    .product-card img{

        max-width:220px;

        height:200px;

    }

    .section-heading{

        margin-bottom:50px;

    }

}

@media(max-width:480px){

    .product-card{

        padding:24px 18px;

    }

    .product-card h3{

        font-size:1.3rem;

    }

}
/*==================================================
    SPECIFICATIONS
==================================================*/

.specifications{

    position:relative;

    background:#ffffff;

    overflow:hidden;

}


.specifications::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    left:-220px;

    bottom:-220px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(215,25,32,.08),

            transparent 72%

        );

    pointer-events:none;

}


/*==================================================
    SPEC GRID
==================================================*/

.spec-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*==================================================
    SPEC CARD
==================================================*/

.spec-box{

    position:relative;

    padding:40px 30px;

    text-align:center;

    border-radius:24px;

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    overflow:hidden;

}


.spec-box::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(

        90deg,

        var(--primary),

        #ff6b6b

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}


.spec-box:hover::before{

    transform:scaleX(1);

}


.spec-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}


/*==================================================
    CONTENT
==================================================*/

.spec-box h4{

    color:var(--primary);

    font-size:1.25rem;

    margin-bottom:18px;

    font-weight:700;

}


.spec-box p{

    color:#344054;

    font-size:1.15rem;

    font-weight:600;

    line-height:1.6;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .spec-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:768px){

    .spec-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .spec-box{

        padding:32px 24px;

    }

}


@media(max-width:480px){

    .spec-box{

        padding:28px 20px;

    }

    .spec-box h4{

        font-size:1.1rem;

    }

    .spec-box p{

        font-size:1rem;

    }

}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#050505;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Top Border */

.footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#d32f2f,#ff5a5a,#d32f2f);
}

/* Footer Layout */

.footer-top{
    max-width:1400px;
    margin:auto;
    padding:80px 8% 60px;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:45px;
    position:relative;
    z-index:2;
}

/* Footer Column */

.footer-box{
    padding-right:20px;
}

/* Main Heading */

.footer-box h3{
    color:#d32f2f;
    font-size:22px;
    font-weight:700;
    margin-bottom:22px;
    position:relative;
    display:inline-block;
}

/* Underline */

.footer-box h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:#d32f2f;
    border-radius:20px;
}

/* Company Name */

.footer-box h4{
    color:#fff;
    font-size:18px;
    line-height:1.5;
    margin-bottom:18px;
    font-weight:600;
}

/* Paragraph */

.footer-box p{
    color:#b8b8b8;
    line-height:1.9;
    font-size:15px;
    margin-bottom:14px;
}

/* Lists */

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:14px;
}

/* Links */

.footer-box ul li a{
    color:#cfcfcf;
    text-decoration:none;
    display:inline-block;
    transition:all .3s ease;
}

.footer-box ul li a:hover{
    color:#d32f2f;
    transform:translateX(6px);
}

/* Sub Sections */

.footer-sub-box{
    margin-bottom:40px;
}

.footer-sub-box:last-child{
    margin-bottom:0;
}
/* ==========================
   SOCIAL ICONS
========================== */

.footer-social{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    transition:all .35s ease;
}

.footer-social a:hover{
    background:#d32f2f;
    border-color:#d32f2f;
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 15px 30px rgba(211,47,47,.35);
}

/* ==========================
   CONTACT LINKS
========================== */

.contact-link,
.phone-link,
.whatsapp-link,
.website-link,
.footer-address{

    display:flex;
    align-items:flex-start;
    gap:12px;

    width:100%;

    color:#cfcfcf;

    text-decoration:none;

    margin-bottom:14px;

    transition:all .3s ease;

}

/* Icons */

.contact-link i,
.phone-link i,
.whatsapp-link i{

    min-width:20px;

    font-size:18px;

    margin-top:2px;

}

/* Phone */

.phone-link i{
    color:#d32f2f;
}

.phone-link:hover{
    color:#fff;
    transform:translateX(5px);
}

/* Email */

.contact-link i{
    color:#d32f2f;
}

.contact-link:hover{
    color:#fff;
    transform:translateX(5px);
}

/* WhatsApp */

.whatsapp-link i{
    color:#25D366;
}

.whatsapp-link:hover{
    color:#25D366;
    transform:translateX(5px);
}

.whatsapp-link:hover i{
    transform:scale(1.15);
}

/* Website */

.website-link{
    color:#cfcfcf;
}

.website-link:hover{
    color:#d32f2f;
    transform:translateX(5px);
}

/* Address */

.footer-address{
    color:#cfcfcf;
}

.footer-address:hover{
    color:#d32f2f;
    transform:translateX(5px);
}

/* Supplier Logo */

.supplier-logo{

    width:150px;

    height:auto;

    display:block;

    margin-top:12px;

    padding:8px;

    background:#fff;

    border-radius:8px;

    transition:.35s ease;

}

.supplier-logo:hover{

    transform:scale(1.05);

    box-shadow:0 15px 35px rgba(255,255,255,.12);

}
/* ==========================
   FOOTER BOTTOM
========================== */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:30px 8%;
    text-align:center;
    background:#030303;
}

.footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
    margin-bottom:18px;
}

.footer-links a{
    color:#bfbfbf;
    text-decoration:none;
    font-size:15px;
    transition:all .3s ease;
}

.footer-links a:hover{
    color:#d32f2f;
}

.footer-bottom p{
    color:#8d8d8d;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

/* ==========================
   FLOATING SOCIAL
========================== */

.floating-social{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    background:#071b38;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:all .35s ease;
}

.floating-social a:hover{
    background:#d32f2f;
    transform:translateX(-6px) scale(1.08);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .footer-top{

        grid-template-columns:repeat(2,1fr);

        gap:45px;

    }

    .footer-box{

        padding-right:0;

    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .footer-top{

        grid-template-columns:1fr;

        text-align:center;

        padding:60px 25px;

    }

    .footer-box{

        padding:0;

    }

    .footer-box h3::after{

        left:50%;

        transform:translateX(-50%);

    }

    .footer-social{

        justify-content:center;

    }

    .contact-link,
    .phone-link,
    .whatsapp-link,
    .website-link,
    .footer-address{

        justify-content:center;

        text-align:center;

    }

    .footer-links{

        flex-direction:column;

        gap:12px;

    }

    .floating-social{

        right:12px;

    }

    .floating-social a{

        width:44px;

        height:44px;

        font-size:17px;

    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .footer-top{

        padding:50px 20px;

    }

    .footer-box h3{

        font-size:20px;

    }

    .footer-box h4{

        font-size:17px;

    }

    .footer-box p{

        font-size:14px;

    }

    .footer-links a{

        font-size:14px;

    }

}