*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:Arial, Helvetica, sans-serif;

    color:var(--secondary-color);

    background:var(--white);

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

/* =====================================
   NAVBAR
===================================== */

.custom-navbar{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    z-index:999;
    background:#ffffff;
    padding:12px 0;
    transition:.3s;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

/* Navbar after scroll */

.custom-navbar.scrolled{
    background:#111827;
    box-shadow:0 5px 20px rgba(0,0,0,.20);
}

/* Logo */

.logo{
    width:55px;
    height:55px;
    object-fit:contain;
    flex-shrink:0;
}

/* Brand */

.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

#companyName{
    color:#222;
    font-size:20px;
    font-weight:700;
    white-space:nowrap;
}

/* White text after scroll */

.custom-navbar.scrolled #companyName{
    color:#fff;
}

/* Menu */

.custom-navbar .nav-link{
    color:#fff !important;
    font-weight:500;
    margin-left:15px;
    transition:.3s;
}

.custom-navbar .nav-link:hover{
    color:#fbbf24 !important;
}

.custom-navbar .nav-link.active{
    color:#fbbf24 !important;
}

/* Menu after scroll */

.custom-navbar.scrolled .nav-link{
    color:#fff;
}

.custom-navbar.scrolled .nav-link:hover{
    color:#ffc107;
}

/* Search */

.search-box{
    width:260px;
}

/* Dropdown */

.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Mobile */

@media(max-width:991.98px){

    .top-header{
        display:none;
    }

    .custom-navbar{
        top:0;
        background:#111827;
    }

    .logo{
        width:45px;
        height:45px;
    }

    #companyName{
        color:#fff;
        font-size:16px;
    }

    .navbar-collapse{
        background:#fff;
        margin-top:15px;
        padding:20px;
        border-radius:10px;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
    }

    .navbar-collapse .nav-link{
        color:#222 !important;
        margin-left:0;
        padding:10px 0;
    }

    .search-box{
        width:100%;
        margin-top:15px;
    }

}

/* Toggler */

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    filter:invert(1);
}
/* ===========================
        HERO
=========================== */

.hero{

    position: relative;

    height: 500px;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

}

.hero .container{

    max-width: 1320px;

    padding-left: 60px;

    padding-right: 60px;

}

@media (max-width:768px){

.hero .container{

    padding-left:20px;

    padding-right:20px;

}

}

.hero-content{
    max-width: 650px;
}

/* ==========================
   Mega Menu
========================== */

/* Mega Menu */

.mega-dropdown{
    position: static;
}

.mega-menu{

    width: 900px !important;      /* Fixed width */
    max-width: 90%;
    left: 50% !important;
    transform: translateX(-50%);
    margin-top: 0;

    border: 0;
    border-radius: 10px;

    background: #fff;

    padding: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.mega-menu .dropdown-item{
    padding:4px 0;
    font-size:14px;
}

.mega-menu .dropdown-item:hover{

    background:transparent;
    color:#0d6efd;
}

.mega-menu h6{

    margin-bottom:12px;
    border-bottom:1px solid #eee;
    padding-bottom:8px;
}

@media (max-width:991px){

    .mega-menu{

        width:100% !important;
        max-width:100%;
        left:0 !important;
        transform:none;
    }

}


/* ==============================
Search Box
============================== */

.search-box{

    width:350px;

}

.search-box .form-control{

    border-left:none;

    box-shadow:none;

}

.search-box .input-group-text{

    border-right:none;

}

.search-box input{

    height:42px;

}

.search-box input:focus{

    box-shadow:none;

}

@media(max-width:991px){

.search-box{

    width:100%;

    margin:15px 0;

}

}

/* ==========================
   Categories
========================== */

.categories{

    background:#f8f9fa;

}

.category-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    height:100%;

    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.category-card img{

    width:100%;

    height:180px;

    object-fit:cover;

}

.category-card h5{

    margin-top:20px;

    font-weight:600;

}

.category-card p{

    color:#666;

    padding:0 15px 20px;

}

/* ==========================
   Featured Products
========================== */

.featured-products{

    background:#ffffff;

}

.product-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.product-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.product-body{

    padding:20px;

}

.product-body h5{

    font-weight:600;

}

.product-body p{

    color:#666;

}

.product-body h4{

    font-weight:bold;

}

/* ==========================
   Footer
========================== */

/*==========================
        FOOTER
==========================*/

.footer{

    background:#1f2937;

    color:#fff;

    padding:70px 0 25px;

}

.footer-logo{

    height:65px;

    width:auto;

    margin-bottom:15px;

}

@media (max-width:768px){

    .logo{
        width:50px;
    }

}

.footer h5{

    color:#ffc107;

    font-weight:600;

    margin-bottom:20px;

    position:relative;

}

.footer h5::after{

    content:"";

    display:block;

    width:45px;

    height:3px;

    background:#ffc107;

    margin-top:8px;

    border-radius:5px;

}

.footer p{

    display:block;

    margin-bottom:12px;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d1d5db;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffc107;

    padding-left:6px;

}

.footer-contact p{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:15px;

}

.footer-contact i{

    color:#ffc107;

    font-size:18px;

    margin-top:3px;

}

.footer hr{

    border-color:rgba(255,255,255,.15);

    margin:35px 0 20px;

}

.social-icons{

    display:flex;

    justify-content:flex-end;

    gap:15px;

}

.social-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#374151;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    background:#ffc107;

    color:#212529;

    transform:translateY(-4px);

}

.footer-bottom{

    color:#9ca3af;

    font-size:15px;

}

.footer-bottom strong{

    color:#ffc107;

}

/*=========================




        FOOTER
=========================*/
/* 
.footer{

    background:#1f2937;

    color:#fff;

    padding:60px 0 20px;

}

.footer-logo{

    height:70px;

}

.footer h5{

    color:#ffc107;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:10px;

}

.footer-links a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffc107;

    padding-left:5px;

}

.footer p{

    color:#ccc;

    margin-bottom:10px;

}

.footer i{

    color:#ffc107;

    margin-right:8px;

}

.footer hr{

    border-color:#555;

}

.social-icons a{

    color:#fff;

    font-size:24px;

    margin-left:15px;

    transition:.3s;

}

.social-icons a:hover{

    color:#ffc107;

}

/*=========================
      WHY CHOOSE US
==========================*/

.why-card{

    background:#fff;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.icon-box{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#ffc107;

    display:flex;

    justify-content:center;

    align-items:center;

}

.icon-box i{

    font-size:42px;

    color:#212529;

}

.why-card h4{

    font-weight:700;

    margin-top:20px;

}

.why-card p{

    font-size:15px;

    line-height:1.7;

} */

/*==============================
        BRANDS
==============================*/

.brand-card{

    background:#fff;

    border-radius:12px;

    padding:20px;

    text-align:center;

    transition:.3s;

    border:1px solid #eee;

    height:100%;

}

.brand-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

}

.brand-card img{

    height:70px;

    width:auto;

    object-fit:contain;

    filter:grayscale(100%);

    transition:.3s;

}

.brand-card:hover img{

    filter:none;

    transform:scale(1.08);

}

.brand-card h6{

    font-weight:600;

}



/*=============================
    BUSINESS STATISTICS
=============================*/

.statistics-section{

    background:#f8f9fa;

}

.stat-card{

    background:#ffffff;

    border-radius:15px;

    padding:35px 20px;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    height:100%;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.stat-icon{

    width:80px;

    height:80px;

    background:#ffc107;

    border-radius:50%;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

}

.stat-icon i{

    font-size:36px;

    color:#212529;

}

.stat-number{

    font-size:40px;

    font-weight:700;

    margin-top:20px;

    color:#0d6efd;

}

.stat-title{

    font-size:17px;

    color:#555;

    margin-bottom:0;

}

/*==========================
      TESTIMONIALS
==========================*/

.testimonial-card{

    background:#fff;

    border-radius:15px;

    padding:25px;

    height:100%;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.testimonial-header{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #ffc107;

}

.testimonial-review{

    color:#555;

    line-height:1.7;

    font-style:italic;

}

.testimonial-rating{

    font-size:18px;

}


/*==========================
      OUR PROCESS
==========================*/

.process-section{

    background:#ffffff;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:15px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.process-step{

    position:absolute;

    top:15px;

    right:20px;

    font-size:40px;

    font-weight:700;

    color:#f1f1f1;

}

.process-icon{

    width:80px;

    height:80px;

    background:#ffc107;

    border-radius:50%;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

}

.process-icon i{

    font-size:35px;

    color:#212529;

}

.process-card h4{

    margin-top:20px;

    font-weight:700;

}

.process-card p{

    color:#666;

    line-height:1.7;

}


/*=========================
        GALLERY
=========================*/

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:15px;

    cursor:pointer;

}

.gallery-image{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}

.gallery-card:hover .gallery-image{

    transform:scale(1.1);

}

.gallery-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    background:rgba(0,0,0,.65);

    color:#fff;

    padding:20px;

    opacity:0;

    transition:.4s;

}

.gallery-card:hover .gallery-overlay{

    opacity:1;

}

/*=========================
          FAQ
=========================*/

.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:10px !important;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.accordion-button{

    font-weight:600;

    padding:20px;

}

.accordion-button:not(.collapsed){

    background:#ffc107;

    color:#212529;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:20px;

    line-height:1.8;

    color:#555;

}

/*=========================
        CONTACT
==========================*/

.contact-section{

background:#f8f9fa;

}

.contact-info p{

font-size:18px;

margin-bottom:20px;

}

.contact-info i{

width:35px;

color:#ffc107;

font-size:22px;

}

.contact-section form{

background:#fff;

padding:30px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-section textarea{

resize:none;

}

.contact-section iframe{

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}


.about-hero{

    background-image:url("../images/about/about-banner.jpg");

    background-size:cover;

    background-position:center;

    padding:140px 0;

    color:#fff;

    text-align:center;

    position:relative;

}

.about-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.about-hero .container{

    position:relative;

    z-index:2;

}

.about-hero h1{

    font-size:52px;

    font-weight:700;

}

.about-hero p{

    font-size:22px;

}

.contact-card{

    border-radius:15px;

    background:#fff;

    transition:.3s;

}


.contact-card:hover{

    transform:translateY(-5px);

}


.contact-card .icon-box{

    font-size:35px;

    color:#0d6efd;

}

.floating-widget{

    position: fixed;

    right: 20px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 12px;

    z-index: 9999;

}

.floating-widget a{

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    text-decoration: none;

    font-size: 22px;

    box-shadow: 0 5px 15px rgba(0,0,0,.2);

}

.whatsapp{

    background:#25D366;

}

.call{

    background:#0d6efd;

}

.email{

    background:#ff9800;

}

.top{

    background:#212529;

}


/* Common Button Style */
.floating-widget a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    margin:10px 0;
    border:3px solid #fff;
    box-shadow:0 6px 15px rgba(0,0,0,.3);
    transition:all .3s ease;
}

.floating-widget a:hover{
    transform:scale(1.1);
    box-shadow:0 10px 20px rgba(0,0,0,.4);
}

/* Individual Colors */
.call-btn{
    background:#0d6efd;      /* Blue */
}

.whatsapp-btn{
    background:#25D366;      /* WhatsApp Green */
}

.email-btn{
    background:#dc3545;      /* Red */
}

.map-btn{
    background:#fd7e14;      /* Orange */
}

.quote-btn{
    background:#6f42c1;      /* Purple */
}

/* ===========================================
   TOP HEADER
=========================================== */

.top-header{
    background:#0f172a;
    color:#fff;
    font-size:14px;
    height:40px;
    display:flex;
    align-items:center;
    width:100%;
    z-index:1031;
}

.top-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-header a{
    color:#fff;
    text-decoration:none;
    margin-right:20px;
}

.top-header a:hover{
    color:#ffc107;
}

.top-header i{
    color:#ffc107;
    margin-right:6px;
}

.top-right{
    color:#fff;
}


/* ===========================================
   NAVBAR
=========================================== */

.custom-navbar{

    background:#0f172a;
    padding:10px 0;
    transition:.3s;
    z-index:1030;

}

/* White navbar after scroll */

.custom-navbar.scrolled{

    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/* Logo */

.logo{

    width:70px;
    height:auto;

}

/* Company Name */

#companyName{

    color:#fff;
    font-size:22px;
    font-weight:700;
    white-space:nowrap;

}

.custom-navbar.scrolled #companyName{

    color:#222;

}

/* Navigation */

.custom-navbar .nav-link{

    color:#fff !important;
    font-weight:500;
    margin-left:10px;
    transition:.3s;

}

.custom-navbar.scrolled .nav-link{

    color:#222;

}

.custom-navbar .nav-link:hover{

    color:#fbbf24 !important;

}

/* Search */

.search-box{

    width:260px;

}


/* ===========================================
   MOBILE
=========================================== */

@media(max-width:991.98px){

.top-header{

display:none;

}

.custom-navbar{

 background:#0f172a;
 padding:12px 0;
 box-shadow:0 2px 15px rgba(0,0,0,.15);

}

.logo{

width:50px;

}

#companyName{

font-size:16px;
max-width:140px;
overflow:hidden;
text-overflow:ellipsis;

}

.navbar-collapse{

background:#fff;
margin-top:15px;
padding:20px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.navbar-collapse .nav-link{

color:#222 !important;
padding:12px 0;
margin-left:0;

}

.navbar-collapse .nav-link:hover{

color:#0d6efd !important;

}

.search-box{

width:100%;
margin-top:15px;

}

}

/* ===========================================
   TOGGLER
=========================================== */

.navbar-toggler{

border:none;

}

.navbar-toggler:focus{

box-shadow:none;

}

.navbar-toggler-icon{

filter:invert(1);

}

.custom-navbar.scrolled .navbar-toggler-icon{

filter:none;

}


.category-menu-item{

    border-radius:10px;
    transition:.3s;

}

.category-menu-item:hover{

    background:#f8f9fa;

}

.category-menu-item img{

    object-fit:cover;

}