:root{
    --primary:#111111;
    --secondary:#1b1b1b;
    --accent:#E53935;
    --white:#FFFFFF;
    --light:#F5F7FA;
    --dark:#1F2937;
    --text:#4B5563;
}


/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    line-height:1.7;

    background:#fff;

    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
    display:block;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

.section-padding{
    padding:90px 0;
}


/* =========================
   TOP BAR
========================= */

.top-bar{

    background:#E53935;

    padding:10px 0;

    color:#fff;

    font-size:14px;

    font-weight:500;
}

.topbar-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;
}

.top-left{

    display:flex;

    align-items:center;

    gap:10px;
}

.top-left i{

    font-size:14px;
}

.top-right{

    display:flex;

    align-items:center;

    gap:25px;
}

.top-right a{

    color:#fff;

    font-weight:500;
}

.top-right a:hover{

    opacity:.8;
}

.top-right i{

    margin-right:6px;
}


/* =========================
   NAVBAR
========================= */

.custom-navbar{

    position:sticky;

    top:0;

    z-index:9999;

    background:#fff;

    /* padding:14px 0; */

    transition:.4s ease;

    box-shadow:
    0 2px 15px rgba(0,0,0,.06);
}


/* NAVBAR ON SCROLL */

.custom-navbar.scrolled{

    /* padding:8px 0; */

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(10px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}


/* =========================
   LOGO
========================= */

.navbar-brand{

    display:flex;

    align-items:center;
}

.logo{

    height:80px;

    width:auto;

    object-fit:contain;

    transition:.3s ease;
}


/* SMALL LOGO */

.custom-navbar.scrolled .logo{

    height:80px;
}


/* =========================
   MENU
========================= */

.navbar-nav{

    gap:24px;
}

.nav-item{

    position:relative;
}

.nav-link{

    color:#111 !important;

    font-size:16px;

    font-weight:400;

    letter-spacing:.3px;

    transition:.3s;

    position:relative;

    padding:8px 0 !important;
}


/* HOVER */

.nav-link:hover{

    color:#E53935 !important;
}


/* ACTIVE */

.nav-link.active{

    color:#E53935 !important;
}


/* =========================
   PRODUCTS DROPDOWN
========================= */

.custom-dropdown{

    position:relative;
}


/* HIDE MENU */

.custom-dropdown-menu{

    position:absolute;

    top:120%;

    left:0;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;

    background:#fff;

    border:none;

    border-radius:14px;

    overflow:hidden;

    min-width:280px;

    padding:14px 0;

    box-shadow:
    0 12px 30px rgba(0,0,0,.12);

    display:block;
}


/* SHOW ON HOVER */

.custom-dropdown:hover .custom-dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}


/* DROPDOWN ITEMS */

.dropdown-item{

    padding:10px 25px;

    font-weight:400;

    font-size:16px;

    color:#111;

    transition:.3s;
}

.dropdown-item:hover{

    background:#E53935;

    color:#fff;
}


/* =========================
   DROPDOWN ARROW
========================= */

.dropdown-arrow{

    font-size:11px;

    margin-left:10px;

    transition:.3s ease;
}


/* ROTATE ARROW */

.custom-dropdown:hover .dropdown-arrow{

    transform:rotate(180deg);
}


/* =========================
   BUTTON
========================= */

.quote-btn{

    background:#E53935;

    color:#fff;

    padding:10px 25px;

    border-radius:50px;

    font-size:16px;

    font-weight:400;

    transition:.3s;

    display:inline-block;

    box-shadow:
    0 8px 20px rgba(229,57,53,.18);
}

.quote-btn:hover{

    background:#c62828;

    color:#fff;

    transform:translateY(-2px);
}


/* =========================
   MOBILE BUTTON
========================= */

.navbar-toggler{

    border:none;

    font-size:28px;

    color:#111;
}

.navbar-toggler:focus{

    box-shadow:none;
}


/* =========================
   SECTION TITLE
========================= */

.section-title{

    color:#111;

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;
}


/* =========================
   CARD
========================= */

.card-custom{

    background:#fff;

    border:none;

    border-radius:18px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.card-custom:hover{

    transform:translateY(-6px);
}

/* =========================
   FOOTER
========================= */

.footer{

    background:#111111;

    color:#fff;

    padding:80px 0 25px;

    position:relative;
}


/* TOP BORDER */

.footer::before{

    content:'';

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#E53935;
}


/* LOGO */

.footer-logo{

    height:120px;

    width:auto;

    /* margin-bottom:20px; */
}


/* TEXT */

.footer-text{

    color:rgba(255,255,255,.75);

    line-height:1.8;

    margin-bottom:25px;
}


/* TITLES */

.footer-title{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;
}


/* UNDERLINE */

.footer-title::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-10px;

    width:55px;

    height:3px;

    background:#E53935;

    border-radius:10px;
}


/* LINKS */

.footer-links li{

    margin-bottom:14px;
}

.footer-links a{

    color:rgba(255,255,255,.75);

    transition:.3s;
}

.footer-links a:hover{

    color:#E53935;

    padding-left:6px;
}


/* CONTACT */

.footer-contact-item{

    display:flex;

    gap:14px;

    margin-bottom:18px;

    align-items:flex-start;
}

.footer-contact-item i{

    color:#E53935;

    margin-top:5px;

    font-size:16px;
}

.footer-contact-item a,
.footer-contact-item span{

    color:rgba(255,255,255,.75);

    line-height:1.7;
}


/* SOCIAL */

.footer-social{

    display:flex;

    gap:12px;
}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1b1b1b;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;
}

.footer-social a:hover{

    background:#E53935;

    transform:translateY(-3px);
}


/* BOTTOM */

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);

    font-size:14px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.footer{

    text-align:center;
}

.footer-title::after{

    left:50%;

    transform:translateX(-50%);
}

.footer-contact-item{

    justify-content:center;
}

.footer-social{

    justify-content:center;
}

}


@media(max-width:767px){

.footer{

    padding:60px 0 20px;
}

.footer-logo{

    height:70px;
}

.footer-title{

    font-size:22px;
}

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.topbar-wrapper{

    flex-direction:column;

    gap:10px;

    text-align:center;
}

.navbar-nav{

    margin-top:20px;

    gap:12px;
}

.quote-btn{

    margin-top:15px;

    width:100%;

    text-align:center;
}

.logo{

    height:65px;
}

.custom-navbar{

    padding:12px 0;
}


/* MOBILE DROPDOWN */

.custom-dropdown-menu{

    position:relative;

    top:0;

    opacity:1;

    visibility:visible;

    transform:none;

    display:none;

    margin-top:10px;

    box-shadow:none;

    border:1px solid #eee;

    border-radius:12px;

    min-width:100%;
}

.custom-dropdown:hover .custom-dropdown-menu{

    display:block;
}

}


@media(max-width:767px){

.logo{

    height:58px;
}

.top-left span{

    font-size:12px;
}

.top-right{

    /* flex-direction:column; */

    gap:30px;
}

.section-title{

    font-size:32px;
}

}


@media(max-width:576px){

.top-bar{

    font-size:12px;
}

.logo{

    height:52px;
}

.section-padding{

    padding:60px 0;
}

.quote-btn{

    padding:14px 25px;
}

}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.float-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.3s ease;
    cursor:pointer;
}

.float-btn i{
    font-size:24px;
}

/* WhatsApp */
.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* Top Button */
.top-btn{
    background:#E53935;
    color:#fff;
}

.top-btn:hover{
    transform:translateY(-5px);
}

/* Mobile */
@media(max-width:768px){

    .floating-buttons{
        right:15px;
        bottom:15px;
    }

    .float-btn{
        width:36px;
        height:36px;
    }

    .float-btn i{
        font-size:18px;
    }
}






