
/* ==========================================
   GOOGLE FONT
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box; 
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050505;
    color:#fff;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

/* ==========================================
   CONTAINER
========================================== */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:rgba(8,8,8,.45);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:all .35s ease;
}


.header .container{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ==========================================
   LOGO
========================================== */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:48px;
    width:auto;
}

/* ==========================================
   NAVIGATION
========================================== */

.navbar{
    display:flex;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:38px;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    font-size:15px;
    font-weight:500;
    color:#ffffff;
    transition:.35s;
    display:flex;
    align-items:center;
    gap:6px;
    position:relative;
}

/* Underline Animation */

.nav-links li a::after{

    content:'';
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#fff;
    transform:translateX(-50%);
    transition:.35s;

}

.nav-links li a:hover::after,
.nav-links li a.active::after{

    width:100%;

}

.nav-links li a:hover{

    color:#fff;

}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown{
    position:relative;
}

.dropdown i{
    font-size:11px;
}

.mega-menu{

    position:absolute;
    top:65px;
    left:50%;
    transform:translateX(-50%);

    width:420px;

    background:#111;

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

    border-radius:18px;

    display:flex;

    justify-content:space-between;

    padding:25px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

}

.dropdown:hover .mega-menu{

    opacity:1;

    visibility:visible;

    top:55px;

}

.mega-column{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.mega-column a{

    color:#d8d8d8;

    font-size:14px;

    transition:.3s;

}

.mega-column a:hover{

    color:#fff;

    padding-left:8px;

}

/* ==========================================
   BUTTONS
========================================== */

.nav-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.call-btn{

    padding:12px 22px;

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

    border-radius:50px;

    font-size:15px;

    transition:.35s;

}

.call-btn:hover{

    background:#fff;

    color:#000;

}

.quote-btn{

    padding:12px 24px;

    background:#fff;

    color:#000;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.quote-btn:hover{

    background:transparent;

    color:#fff;

    border:1px solid #fff;

}

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

.menu-toggle{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:26px;

    height:2px;

    background:#fff;

    margin:6px 0;

}

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

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

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

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;

    width:55%;
    max-width:320px;
    min-width:260px;

    height:100vh;

    background:#0b0b0b;

    z-index:1000;

    transition:.4s ease;

    padding:30px;

    display:flex;
    flex-direction:column;

    border-left:1px solid rgba(255,255,255,.08);
    box-shadow:-20px 0 60px rgba(0,0,0,.5);
}

.mobile-menu.active{
    right:0;
}

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.mobile-header img{
    width:160px;
}

.close-menu{
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu ul{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.mobile-menu ul li a{
    font-size:18px;
    color:#fff;
    font-weight:500;
}

.mobile-buttons{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:15px;
}
/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

.navbar{

display:none;

}

.nav-buttons{

display:none;

}

.menu-toggle{

display:block;

}

.logo img{

height:42px;

}

.header .container{

height:75px;

}

}

@media(max-width:576px){

.container{

width:92%;

}

.logo img{

height:38px;

}

}

.mobile-dropdown-btn{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    padding:10px 0;
}

.mobile-dropdown-btn i{
    transition:.3s;
}

.mobile-submenu{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    padding-left:18px;
}

.mobile-submenu li{
    margin:14px 0;
}

.mobile-submenu a{
    color:#bdbdbd;
    font-size:15px;
}

.mobile-dropdown.active .mobile-submenu{
     max-height:800px;
}

.mobile-dropdown.active .mobile-dropdown-btn i{
    transform:rotate(180deg);
}



@media(max-width:768px){

    .mobile-menu{
        width:70%;
    }

}

@media(max-width:480px){

    .mobile-menu{
        width:75%;
    }

}



/* Products Dropdown */
.nav-links li {
    position: relative;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all .25s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,.08);
    color: #ffffff;
    padding-left: 28px;
}


/* Mobile Products Dropdown */

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding-left: 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 400px;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.mobile-dropdown-toggle i {
    transition: transform .3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 0;
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
}

.mobile-dropdown-menu li a:hover {
    color: #fff;
}

.dropdown > a i {
    margin-left: 6px;
    transition: transform .3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-social{
    display:flex;
    align-items:center;
    gap:14px;
}

.nav-social a{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;

    color:#fff;
    background:transparent;

    text-decoration:none;
    transition:all .35s ease;
}

.nav-social a i{
    font-size:18px;
}

.nav-social a:hover{
    background:#fff;
    color:#000;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(255,255,255,.15);
}

.nav-social a:hover .fa-whatsapp{
    color:#25D366;
}

.nav-social a:hover .fa-instagram{
    color:#E1306C;
}

.nav-social a:hover .fa-facebook-f{
    color:#1877F2;
}

.nav-social a:hover .fa-linkedin-in{
    color:#0A66C2;
}


@media (max-width:768px){

    .nav-social{
        gap:10px;
    }

    .nav-social a{
        width:40px;
        height:40px;
    }

    .nav-social a i{
        font-size:16px;
    }

}
/* Hide top navbar social icons on mobile */
@media (max-width: 768px) {

    .nav-social {
        display: none !important;
    }

}
