:root{
    --primary:#448cf8;
    --secondary:#2258a3;
    --dark:#0b2340;
    --light:#f8fafc;
    --muted:#6c757d;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:#fff;
    color:#212529;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* TOP BAR */
.top-bar{
    background:linear-gradient(90deg, #2d7df5 0%, #2d6fe2 100%);
    color:#fff;
    padding:8px 0;
    font-size:15px;
}

.top-bar a{
    color:rgba(255, 255, 255, 0.95);
    text-decoration:none;
}

.top-bar a:hover{
    color:#fff;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.top-bar-left,
.social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-bar .divider{
    width:1px;
    height:16px;
    background:rgba(255, 255, 255, 0.4);
}

.social-icons a{
    color:#fff;
    font-size:18px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#dbeafe;
}

/* LOGO */
.logo-img{
    height:70px;
    width:auto;
}

/* NAVBAR */
.navbar-custom{
    background:#fff;
    padding:18px 0;
    transition:all 0.35s ease;
}

.navbar-brand{
    font-size:2.45rem;
    font-weight:700;
    letter-spacing:0.01em;
    color:var(--dark) !important;
}

.navbar-nav .nav-link{
    color:#4d5868 !important;
    font-weight:600;
    padding:12px 16px;
    font-size:18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--primary) !important;
}


/* NAVBAR TOGGLER */
.navbar-toggler{
    border:1px solid #448cf8;
    padding:7px 10px;
}

.navbar-toggler:focus{
    box-shadow:0 0 0 0.2rem rgba(68, 140, 248, 0.25);
}


/* DROPDOWN */
.dropdown-menu{
    position:relative;
    min-width:250px;
    padding:10px;
    border:1px solid #1380f4;
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 30px rgba(0, 0, 0, 0.12);
    overflow:hidden;
    z-index:1000;
}

.dropdown-menu::before{
    content:"";
    position:absolute;
    inset:0;
    padding:2px;
    border-radius:inherit;
    background:linear-gradient(90deg, #0d6efd, #00c6ff, #4da3ff, #0d6efd);
    background-size:300% 300%;
    animation:borderRotate 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    mask-composite:exclude;

    pointer-events:none;
    z-index:-1;
}

.dropdown-menu .dropdown-item{
    color:#1f2937;
    font-size:17px;
    font-weight:500;
    padding:12px 18px;
    border-radius:10px;
    transition:all 0.3s ease;
    position:relative;
}

.dropdown-menu .dropdown-item:hover{
    background:linear-gradient(135deg, #2777ee, #00b4ff, #41ce93);
    color:#fff;
    transform:translateX(5px);
}

.dropdown-menu .dropdown-item::after{
    content:"→";
    float:right;
    opacity:0;
    transition:all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover::after{
    opacity:1;
    transform:translateX(4px);
}

.dropdown-menu:hover{
    border-color:#00c6ff;
    box-shadow:
        0 0 10px rgba(77, 163, 255, 0.7),
        0 0 20px rgba(0, 198, 255, 0.5),
        0 0 35px rgba(13, 110, 253, 0.3);
}

/* BUTTONS */
.btn-primary-custom{
    background:var(--primary);
    border:1px solid var(--primary);
    color:#fff;
    border-radius:30px;
    padding:0.65rem 1.4rem;
    font-weight:600;
    transition:all 0.3s ease;
}

.btn-primary-custom:hover{
    background:#0b5ed7;
    border-color:#2974e6;
    color:#fff;
}

.btn-wa{
    background:#25d366;
    color: #fff;
    border:none;
    border-radius:30px;
    padding:0.65rem 1.25rem;
    display:inline-flex;
    align-items:center;
    gap:0.5rem;
    font-weight:600;
    transition:all 0.3s ease;
}

.btn-wa:hover{
    background:#1da851;
    color:#fff;
}

.btn-primary{
    background-color:#0d6efd !important;
    border-color:#0d6efd !important;
    color:#fff !important;
}

/* HERO BANNER */
.hero-banner{
    position:relative;
    width:100%;
    height:800px;
    margin:0;
    padding:0;
    overflow:hidden;
}

.banner-img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}

/* Overlay */
.banner-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(41, 74, 124, 0.82) 0%,
        rgba(24, 59, 112, 0.55) 45%,
        rgba(91, 148, 233, 0.2) 100%
    );
    z-index:1;
    pointer-events:none;
}


/* Banner Content */
.banner-content{
    position:absolute;
    top:90%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90%;
    max-width:700px;
    text-align:center;
    color:#fff;
    z-index:2;
    padding:0 15px;
}

.banner-content .tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255, 255, 255, 0.15);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255, 255, 255, 0.25);
    border-radius:30px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.banner-content h1{
    font-size:64px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
}

.banner-content p{
    font-size:20px;
    line-height:1.8;
    color:#f1f5f9;
    margin-bottom:35px;
}


/* Hero Button */
.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#00b4ff;
    color:#fff;
    font-weight:600;
    border-radius:50px;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0, 180, 255, 0.35);
}

.hero-btn:hover{
    background:#008dd1;
    color:#fff;
    transform:translateY(-3px);
}

/* HERO SECTION */
.hero h1{
    font-size:clamp(2.5rem, 4vw, 4.2rem);
    line-height:1.05;
    margin-bottom:1rem;
}

.hero p{
    font-size:1.1rem;
    max-width:680px;
    margin-bottom:1.75rem;
    color:rgba(255, 255, 255, 0.92);
}

.hero .hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
}

/* PRODUCT CARDS */
.product-card{
    border:none;
    border-radius:12px;
    overflow:hidden;
    transition:all 0.3s ease;
    box-shadow:0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-img{
    width:100%;
    height:250px;
    object-fit:contain;
    object-position:center;
    background:#fff;
    display:block;
}

.product-card .card-body{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.product-card h5{
    font-weight:600;
    color:#0d6efd;
    margin-bottom:10px;
}

.product-card p{
    font-size:15px;
    color:#6c757d;
    flex-grow:1;
}

.product-card .btn{
    margin-top:15px;
    border-radius:30px;
    padding:10px 25px;
    font-weight:600;
    transition:all 0.3s ease;
}

.product-card .btn:hover{
    transform:scale(1.05);
}

/* STATISTICS */
.counter-box{
    padding:25px;
    border-radius:10px;
    transition:all 0.3s ease;
    cursor:pointer;
}

.counter-box p{
    color:#161515;
    transition:color 0.3s ease;
}

.counter-box:hover{
    background:#eaebec;
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(0, 0, 0, 0.2);
}

.counter-box:hover p{
    color:#0d24f6;
}

/* GET A QUOTE */
.quote-section{
    background:#f8f9fa;
}

.quote-section h2{
    color:#0b5ed7;
    font-weight:700;
}

.quote-section .form-control,
.quote-section .form-select{
    padding:15px;
    border-radius:10px;
}

.quote-section button{
    border-radius:50px;
    font-size:18px;
}

/* CONTACT */
.contact-section{
    background:var(--primary);
}

.contact-section p{
    color:#100f0f !important;
}

/* WhatsApp */
.whatsapp-btn{
    background:#25d366;
    color:#fff !important;
    width:100px;
    height:50px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    margin-left:15px;
}

.whatsapp-btn i{
    font-size:20px;
}

.whatsapp-btn:hover{
    background:#25d366;
    color:#fff !important;
}

/* FOOTER */
.footer-section{
    background:linear-gradient(135deg, #0742af, #154fa7, #6c96ef);
    color:#fff;
    padding:70px 0 20px;
}

.footer-logo{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    width:200px;
    height:auto;    
    display:block;
}

.footer-logo-link{
    display:inline-block;
    background:#fff;
    padding:0;
    border-radius:10px;
    line-height:0;
}

.footer-logo{
    display:block;
    margin:0;
}

.footer-section .footer-logo:hover{
    transform:scale(1.05);
    transition:0.3s ease;
}

.footer-text{
    color:#fff;
    line-height:1.8;
}

.footer-section h5{
    margin-bottom:20px;
    font-weight:600;
    color:#05f1f9;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#01cdf1;
    padding-left:8px;
}

/* Footer Social */
.footer-section .social-icons{
    margin-top:5px;
}

.footer-section .social-icons a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255, 255, 255, 0.15);
    border-radius:50%;
    color:#fff;
    margin-right:10px;
    font-size:18px;
    transition:0.3s;
}

.footer-section .social-icons a:hover{
    background:#fff;
    color:#0077b6;
    transform:translateY(-5px);
}

.footer-section hr{
    border-color:rgba(255, 255, 255, 0.2);
    margin:40px 0 20px;
}

.footer-bottom p{
    margin:0;
    opacity:0.85;
}

.footer-section .btn-info{
    border-radius:30px;
    padding:10px 25px;
    font-weight:600;
}

/* BORDER ANIMATION */
@keyframes borderRotate{

    0% {
        background-position:0% 50%;
    }

    50% {
        background-position:100% 50%;
    }

    100% {
        background-position:0% 50%;
    }

}

/* TABLET - 1200px */
@media (max-width:1200px){

    .hero-banner{
        height:600px;
    }

    .banner-img{
        object-position:center;
    }

    .product-img{
        height:220px;
    }

}

/* TABLET - 992px */
@media (max-width:992px){

    /* Top Bar */
    .top-bar{
        font-size:14px;
    }

    .top-bar .container{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .top-bar-left,
    .social-icons{
        justify-content:center;
        flex-wrap:wrap;
        width:100%;
    }

    .top-bar-left span{
        display:inline-block;
        margin:5px;
    }

    .divider{
        display:none;
    }

    /* Logo */
    .logo-img{
        height:60px;
    }

    /* Navbar */
    .navbar-nav{
        text-align:center;
        padding-top:15px;
    }

    .navbar-nav .nav-link{
        padding:10px 0;
    }

    .navbar-collapse{
        background:#fff;
        padding:15px;
        border-radius:10px;
        margin-top:10px;
    }

    .d-flex.align-items-center.gap-2.ms-lg-4{
        flex-direction:column;
        width:100%;
        margin-top:15px;
    }

    /* Hero Banner */
    .hero-banner{
        height:520px;
    }

    .banner-img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
    }

    .banner-content{
        top:85%;
        width:90%;
    }

    .banner-content h1{
        font-size:42px;
    }

    .banner-content p{
        font-size:18px;
    }

    /* Hero */
    .hero{
        min-height:60vh;
        text-align:center;
        padding:80px 0;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero p{
        margin:auto;
        margin-bottom:25px;
    }

    /* Products */
    .product-img{
        height:200px;
    }

}

/* MOBILE-768px */
@media (max-width:768px){

    /* Navbar */
    .navbar-custom{
        padding:12px 15px;
    }

    .navbar-brand{
        font-size:1.8rem;
    }

    .navbar-toggler{
        margin-left:auto;
    }

    .navbar-collapse{
        width:100%;
        margin-top:10px;
    }

    .navbar-nav {
        text-align:center;
    }

    /* Hero Banner */
    .hero-banner{
        height:520px;
    }

    .banner-content{
        top:85%;
        left:50%;
        transform:translate(-50%, -50%);
        width:92%;
        padding:0 12px;
    }

    .banner-content .tag{
        font-size:13px;
        padding:6px 16px;
        margin-bottom:15px;
    }

    .banner-content h1{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:15px;
    }

    .banner-content p{
        font-size:15px;
        line-height:1.6;
        margin-bottom:20px;
    }

    /* Hero Buttons */
    .hero-actions{
        flex-direction:column;
    }

    .hero-actions .btn{
        width:100%;
    }

    /* Products */
    .product-img{
        height:180px;
    }

    .product-card h5{
        font-size:18px;
    }

}

/* SMALL MOBILE-576px */
@media (max-width:576px) {

    /* Top Bar */
    .top-bar{
        padding:10px 5px;
        text-align:center;
    }

    .top-bar .container{
        flex-direction:column;
        gap:8px;
    }

    .top-bar-left{
        flex-direction:column;
        justify-content:center;
        gap:5px;
    }

    .top-bar-left span{
        display:block;
    }

    .social-icons{
        justify-content:center;
        gap:10px;
    }

    .social-icons a{
        font-size:15px;
    }

    /* Logo */
    .logo-img{
        height:50px;
    }

    /* Navbar */
    .navbar-brand{
        font-size:22px;
    }

    .navbar-brand img{
        height:55px;
    }

    /* Hero Banner */
    .hero-banner{
        height:500px;
        background:#eaf5ff;
    }

    .banner-img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
    }

    .banner-content{
        top:85%;
        width:94%;
    }

    .banner-content h1{
        font-size:1.75rem;
    }

    .banner-content p{
        font-size:14px;
    }

    /* Hero */
    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:15px;
    }

    /* Hero Button */
    .hero-btn{
        width:100%;
        max-width:250px;
        padding:12px 28px;
        font-size:15px;
    }

    /* Products */
    .product-img{
        height:160px;
    }

    .product-card{
        margin-bottom:15px;
    }

    .product-card h5{
        font-size:16px;
    }

}

/* VERY SMALL PHONES-425px */
@media (max-width:425px){

    .hero-banner{
        height:470px;
    }

    .banner-content{
        top:85%;
        width:95%;
    }

    .banner-content h1{
        font-size:1.5rem;
        line-height:1.2;
    }

    .banner-content p{
        font-size:13px;
        line-height:1.5;
    }

    .banner-content .tag{
        font-size:12px;
    }

    .hero-btn{
        padding:10px 22px;
        font-size:14px;
    }

}