        .footer-link{
color:#aaa;
text-decoration:none;
display:block;
margin-bottom:8px;
transition:0.3s;
}

.footer-link:hover{
color:#ffc107;
padding-left:6px;
}

footer i{
transition:0.3s;
}

footer i:hover{
color:#ffc107;
}
#backToTop{
position:fixed;
bottom:30px;
right:30px;
background:#0B5ED7;
color:white;
width:45px;
height:45px;
text-align:center;
line-height:45px;
border-radius:50%;
font-size:18px;
display:none;
z-index:999;
transition:0.3s;
}

#backToTop:hover{
background:#084298;
}
        :root {
            --primary-blue: #0B5ED7;
            --industrial-orange: #ffac5c;
            --dark-grey: #1E1E1E;
            --light-grey: #F8F9FA;
            --white: #ffffff;
        }

        body {
            font-family: 'Poppins', sans-serif !important;
            color: var(--dark-grey);
            overflow-x: hidden;
        }

        /* 1. Top Bar */
        .top-bar {
            background: var(--dark-grey);
            color: white;
            font-size: 0.85rem;
            padding: 8px 0;
        }
        .top-bar i { color: var(--industrial-orange); margin-right: 5px; }
        .social-icons a { color: white; margin-left: 15px; transition: 0.3s; }
        .social-icons a:hover { color: var(--industrial-orange); }

        /* 2. Navbar */
        .navbar {
            transition: all 0.4s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 2% 0%;
        }
        .navbar-brand { font-weight: 700; color: var(--primary-blue) !important; }
        .nav-link { font-weight: 500; color: var(--dark-grey) !important; margin: 0 5px; }
        .nav-link:hover, .nav-link.active { color: var(--industrial-orange) !important; }

        /* 3. Hero Section */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(11, 94, 215, 0.7), rgba(30, 30, 30, 0.8)), 
                        url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
        }
        .btn-orange { background: var(--industrial-orange); color: white; border: none; padding: 12px 30px; border-radius: 5px; font-weight: 600; }
        .btn-orange:hover { background: #e65c00; color: white; }

        /* 4. Brand Slider */
        .brand-slider { background: var(--light-grey); padding: 40px 0; overflow: hidden; }
        .brand-track { display: flex; width: calc(250px * 12); animation: scroll 30s linear infinite; }
        .brand-item { width: 200px; padding: 0 30px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #999; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-200px * 6)); } }

        /* 5. Product Cards */
        .category-card {
            border: none;
            border-radius: 12px;
            transition: 0.4s;
            /* background: var(--light-grey); */
            height: 100%;
            position: relative;
        }
        .category-card:hover {
            transform: translateY(-10px);
            /* background: var(--primary-blue); */
            color: rgb(0, 0, 0);
        }
        .category-card i { font-size: 3rem; color: var(--industrial-orange); margin-bottom: 20px; }
        .category-card:hover i { color: white; }

        /* 7. Product Showcase */
        .product-img-wrapper { position: relative; overflow: hidden; border-radius: 8px; }
        .product-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(11, 94, 215, 0.8);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: 0.4s;
        }
        .product-img-wrapper:hover .product-overlay { opacity: 1; }

        /* Back to Top */
        #backToTop {
            position: fixed; bottom: 20px; right: 20px; display: none;
            background: var(--industrial-orange); color: white; padding: 10px 15px; border-radius: 5px;
        }



    .whatsapp-float {
        position: fixed;
        bottom: 80px; /* Above the back to top button */
        right: 20px;
        background: #25d366;
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        text-decoration: none;
        display: flex;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: 0.3s;
    }
    .whatsapp-float i { font-size: 24px; margin-right: 10px; }
    .whatsapp-float:hover {
        background: #128c7e;
        color: white;
        transform: scale(1.05);
    }
    @media (max-width: 768px) {
        .whatsapp-float span { display: none; }
        .whatsapp-float { padding: 15px; border-radius: 50%; }
        .whatsapp-float i { margin-right: 0; }
    }



.product-dropdown{
min-width:320px;
}

.product-dropdown .dropdown-item{
white-space:nowrap;
font-weight:500;
font-size:14px;
padding:10px 20px;
}

.product-dropdown .dropdown-item:hover{
background:#0B5ED7;
color:white;
}



/* ==========================================================================
   Responsive Design for Modern Power Tools
   ========================================================================== */

/* 1. Large Desktops (1280px and up) */
@media (min-width: 1280px) {
    .container { max-width: 1200px; }
    .hero { height: 80vh; } /* Slightly more balanced height */
}

/* 2. Tablets (768px to 1024px) */
@media (max-width: 1024px) {
    .navbar-brand img {
        width: 100px !important; /* Scale down logo */
        top: 0% !important;
    }
    
    .navbar-brand span {
        font-size: 24px !important;
        margin-left: 110px !important;
    }

    .hero h1 { font-size: 2.5rem; }
    
    .category-card { margin-bottom: 20px; }
}

/* 3. Mobile Devices (320px to 480px) */
@media (max-width: 480px) {
    /* Navbar & Logo Adjustments */
    .navbar-brand {
        display: flex;
        align-items: center;
        position: relative;
        /* width: 80%; */
    }

    .navbar-brand img {
        width: 60px !important;
        position: static !important; /* Remove absolute positioning on mobile */
    }

    .navbar-brand span {
        font-size: 10px !important;
        margin-left: 4px !important;
        white-space: normal;
        line-height: 1.2;
    }

    /* Hero Section */
    .hero {
        height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }

    /* Brand Slider Speed */
    .brand-track {
        animation: scroll 15s linear infinite; /* Faster scroll for small screens */
    }

    /* Workflow Section (Stacking borders) */
    .border-end {
        border: none !important;
        border-bottom: 1px solid #dee2e6 !important;
    }

    /* Footer */
    footer {
        text-align: center;
    }

    .footer-link {
        padding: 10px 0;
    }

    /* Floating Buttons */
    #backToTop {
        bottom: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

/* Fix for the Dropdown on Mobile */
@media (max-width: 991px) {
    .product-dropdown {
        min-width: 100%;
        box-shadow: none !important;
        background: #f8f9fa;
    }
    
    .nav-item.dropdown {
        margin-bottom: 10px;
    }
}
.prowork {
    position: absolute;
    background: #fff;
    width: 100%;
    bottom: 0%;
    left: 0%;
    padding: 2% 0%;
    text-decoration:none;
    color: #000;
}

@media (max-width:425px) {
    .hero-section {
    width: 100%;
    height:100% !important;
    overflow: hidden;
}
}


.hero-section {
    width: 100%;
    height: 700px;
    overflow: hidden;
}
.carousel-item img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}






.brand-slider {
    background: #f5f5f5;
    padding: 30px 10px;
}

/* 👉 Main Fix */
.brand-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

/* Logo item */
.brand-item {
    flex: 0 0 auto;
}

.brand-item img {
    /* height: 50px; */
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
}

.brand-item img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-brand span{
    color: #000 !important;
    font-size: 33px;
    font-weight: 600;
    /* margin-left: 20px !important; */
}
.social-icons {
    font-size: 18px !important;
}
a.nav-link {
    font-size: larger !important;
}


@media (min-width: 1440px){
    .navbar-brand img {
        width: 120px !important;
        top: 0% !important;
    }
.navbar-brand span {
    color: #000 !important;
    font-size: 43px;
    font-weight: 600;
    margin-left: 37px !important;
}}