
/*==================================================
    GOOGLE FONT
==================================================*/

:root{

    --primary:#d71920;
    --primary-dark:#b31217;

    --secondary:#071b38;

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

    --white:#ffffff;

    --text:#d6dce4;
    --muted:#aab6c4;

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

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

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

    --radius:22px;

    --transition:.35s ease;

}


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

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

container{

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

    background:#06101c;

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}


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

.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
==================================================*/

#content{

    background:
    linear-gradient(
        rgba(5,11,20,.92),
        rgba(5,11,20,.92)
    ),
    url("../images11/bg.webp");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}


/*==================================================
    TYPOGRAPHY
==================================================*/

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

    color:var(--white);

    font-weight:800;

    line-height:1.15;

}

p{

    color:var(--text);

    line-height:1.9;

}

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

img{

    display:block;

    max-width:100%;

    height:auto;

}


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

.btn,
.product-card a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:180px;

    padding:14px 32px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

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

    background:var(--primary-dark);

    transform:translateY(-4px);

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

}


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

section{

    position:relative;

    padding:110px 0;

}

.section-spacing{

    padding:110px 0;

}


/*==================================================
    UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.mt-0{

    margin-top:0;

}

.mb-0{

    margin-bottom:0;

}


/*==================================================
    SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111d;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}


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

@media(max-width:991px){

    section{

        padding:90px 0;

    }

}

@media(max-width:768px){

    .container{

        width:94%;

        padding:0;

    }

    section{

        padding:70px 0;

    }

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

.centralizer-hero{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:100vh;

    padding:140px 0 100px;

    overflow:hidden;

}


/* Background Grid */

.centralizer-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:.35;

}


/* Dark Overlay */

.centralizer-hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(5,11,20,.15),

        rgba(5,11,20,.35)

    );

}


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

.hero-content{

    position:relative;

    z-index:2;

    max-width:1100px;

    margin:auto;

    text-align:center;

}


/*==================================================
    HERO TAG
==================================================*/

.hero-tag{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:4px;

    margin-bottom:25px;

}


/*==================================================
    HERO TITLE
==================================================*/

.hero-title{

    max-width:1100px;

    margin:0 auto 30px;

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

    font-weight:900;

    line-height:.92;

    letter-spacing:-3px;

    text-transform:uppercase;

    color:#fff;

}


/*==================================================
    HERO DESCRIPTION
==================================================*/

.hero-desc{

    max-width:820px;

    margin:0 auto;

    font-size:1.15rem;

    line-height:1.9;

    color:rgba(255,255,255,.90);

}


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

.hero-image{

    margin-top:70px;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:720px;

    object-fit:contain;

    filter:drop-shadow(0 35px 55px rgba(0,0,0,.45));

    transition:transform .45s ease;

}

.hero-image img:hover{

    transform:translateY(-8px) scale(1.03);

}


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

@media(max-width:991px){

    .centralizer-hero{

        min-height:auto;

        padding:120px 0 90px;

    }

    .hero-title{

        font-size:4.8rem;

    }

    .hero-image img{

        max-width:560px;

    }

}


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

@media(max-width:768px){

    .centralizer-hero{

        min-height:auto;

        padding:100px 0 70px;

    }

    .hero-content{

        text-align:center;

    }

    .hero-title{

        font-size:3rem;

        line-height:1;

        letter-spacing:-1px;

    }

    .hero-desc{

        font-size:16px;

        line-height:1.8;

        padding:0 8px;

    }

    .hero-image{

        margin-top:45px;

    }

    .hero-image img{

        max-width:320px;

    }

}


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

@media(max-width:480px){

    .centralizer-hero{

        padding:90px 0 60px;

    }

    .hero-title{

        font-size:2.4rem;

    }

    .hero-desc{

        font-size:15px;

    }

    .hero-image img{

        max-width:260px;

    }

}
/*==================================================
    PRODUCT CATEGORY
==================================================*/

.product-category{

    position:relative;

    padding:110px 0;

    overflow:hidden;

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

}


/* Alternate background for every second section */

.product-category:nth-child(even){

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

}


/* Decorative Glow */

.product-category::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(215,25,32,.08),
        transparent 70%);

    pointer-events:none;

}


/*==================================================
    SECTION HEADER
==================================================*/

.category-header{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

    position:relative;

    z-index:2;

}


/*==================================================
    SMALL LABEL
==================================================*/

.category-number{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}


/*==================================================
    MAIN TITLE
==================================================*/

.category-header h2{

    display:inline-block;

    position:relative;

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

    font-weight:800;

    line-height:1.1;

    letter-spacing:-1px;

    text-transform:uppercase;

    color:#fff;

    padding-bottom:22px;

}


/* Red Underline */

.category-header 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),
        #ff6868
    );

}


/* Optional Description */

.category-header p{

    max-width:700px;

    margin:28px auto 0;

    color:var(--muted);

    line-height:1.8;

    font-size:17px;

}


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

@media(max-width:991px){

    .product-category{

        padding:90px 0;

    }

    .category-header{

        margin-bottom:55px;

    }

}


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

@media(max-width:768px){

    .product-category{

        padding:70px 0;

    }

    .category-header{

        margin-bottom:45px;

    }

    .category-header h2{

        font-size:2.2rem;

        line-height:1.2;

        padding-bottom:18px;

    }

    .category-header h2::after{

        width:70px;

    }

    .category-number{

        font-size:12px;

        letter-spacing:2px;

    }

}


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

@media(max-width:480px){

    .category-header h2{

        font-size:1.9rem;

    }

}
/*==================================================
    PRODUCT GRID
==================================================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    align-items:stretch;

}


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

.product-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    height:100%;

    min-height:500px;

    padding:35px 28px;

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

    backdrop-filter:blur(18px);

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

    border-radius:24px;

    overflow:hidden;

    transition:all .35s ease;

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

}


/* Top Border */

.product-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

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

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}


/* Hover */

.product-card:hover{

    transform:translateY(-10px);

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

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.product-card:hover::before{

    transform:scaleX(1);

}


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

.product-image{

    width:100%;

    height:240px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

}

.product-image img{

    max-width:100%;

    max-height:210px;

    object-fit:contain;

    transition:transform .45s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}


/*==================================================
    PRODUCT TITLE
==================================================*/

.product-card h3{

    font-size:1.65rem;

    font-weight:700;

    text-align:center;

    color:#fff;

    margin-bottom:14px;

}


/*==================================================
    PRODUCT DESCRIPTION
==================================================*/

.product-card p{

    flex:1;

    text-align:center;

    color:var(--text);

    line-height:1.8;

    margin-bottom:28px;

    font-size:15px;

}


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

.product-card a{

    width:100%;

    max-width:220px;

    margin-top:auto;

    text-align:center;

}


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

@media(max-width:992px){

    .product-grid{

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

        gap:28px;

    }

    .product-card{

        min-height:470px;

    }

}


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

@media(max-width:768px){

    .product-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .product-card{

        min-height:auto;

        padding:28px 20px;

        border-radius:20px;

    }

    .product-image{

        height:210px;

        margin-bottom:20px;

    }

    .product-image img{

        max-height:180px;

    }

    .product-card h3{

        font-size:1.35rem;

    }

    .product-card p{

        font-size:14px;

        margin-bottom:22px;

    }

    .product-card a{

        max-width:100%;

    }

}


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

@media(max-width:480px){

    .product-card{

        padding:22px 16px;

    }

    .product-image{

        height:180px;

    }

    .product-image img{

        max-height:150px;

    }

}
/* ==========================
   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;

    }

}