/* #preloader{
    position:fixed;
    inset:0;
    background: var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    z-index:99999;
} */

/* .bg{
    position:absolute;
    width:100%;
    height:100%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
    animation: glow 5s ease-in-out infinite;
}

@keyframes glow{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.2);}
} */

/* .jcb{
    position:absolute;
    bottom:60px;
    width:380px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
    animation: jcbMove 3.5s ease-in-out infinite;
}

@keyframes jcbMove{
    0%{transform:translateX(-160%) scale(0.85);}
    50%{transform:translateX(0%) scale(1.05);}
    100%{transform:translateX(160%) scale(0.85);}
} */

/* .jcb {
    position: absolute;
    bottom: 60px;
    width: 380px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
    animation: jcbMove 5s ease-in-out infinite;
} */

/* @keyframes jcbMove {
    0% {
        transform: translateX(200%) scale(0.85);
    }
    50% {
        transform: translateX(0%) scale(1.05);
    }
    100% {
        transform: translateX(-240%) scale(0.85);
    }
} */

/* @keyframes jcbMove {
    0% {
        transform: translateX(-240%) scale(0.85);
    }

    50% {
        transform: translateX(0%) scale(1.05);
    }

    100% {
        transform: translateX(200%) scale(0.85);
    }
} */

/* .brand{
    position:absolute;
    top:30%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
}

.logo{
    width:160px;
    animation: logoEnter 1.6s cubic-bezier(.2,.9,.2,1) forwards;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
}

@keyframes logoEnter{

0%{
    transform:scale(0.2) rotate(-20deg);
    opacity:0;
    filter:blur(12px);
}

50%{
    transform:scale(1.3) rotate(8deg);
    opacity:1;
    filter:blur(0);
}

100%{
    transform:scale(1);
    opacity:1;
}

}

.brand h2{
    margin-top:16px;
    font-size:38px;
    letter-spacing:5px;
    font-weight:800;
    color:var(--secondary);
    animation: textShow 1.5s ease forwards 0.5s;
    text-shadow:0 0 30px rgba(0,0,0,0.3);
}

.brand p{
    margin-top:8px;
    font-size:16px;
    color:var(--secondary);
    animation: fadeUp 1.8s ease forwards 1s;
}

@keyframes textShow{

0%{
    opacity:0;
    transform:translateY(25px) scale(0.7);
    filter:blur(10px);
}

60%{
    opacity:1;
    transform:translateY(-5px) scale(1.1);
    filter:blur(0);
}

100%{
    transform:translateY(0) scale(1);
    opacity:1;
}

}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
} */

/* .hide-preloader{
    opacity:0;
    visibility:hidden;
    transition:0.9s ease;
    transform:scale(1.1);
}

@media(max-width:991px){ */

    /* .section-title{
        font-size:22px;
        text-align:center;
    }

    .section-title { 
        font-size: 20px; 
        margin-bottom: 30px; 
    }

    .logo{
        width:120px;
    }

    .brand h2{
        font-size:28px;
        letter-spacing:3px;
    }

    .brand p{
        font-size:13px;
    } */

    /* .jcb{
        width:300px;
        bottom:55px;
    } */

    /* .brand{
        top:30%;
    } */
/* 
} */

/* #preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #c9ced3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.loader-bg {
    position: absolute;
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(205, 210, 215, 0.85) 0%,
            rgba(195, 201, 206, 0.80) 20%,
            rgba(175, 182, 188, 0.75) 45%,
            rgba(150, 158, 166, 0.65) 70%,
            rgba(110, 120, 130, 0.55) 100%
        );

    filter: blur(55px);
    animation: premiumBlur 5s ease-in-out infinite alternate;
}

@keyframes premiumBlur {

    0% {
        transform: scale(1) translate(-2%, -1%);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.08) translate(2%, 1%);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.15) translate(-1%, 2%);
        opacity: 1;
    }

}

.loader-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.jcb {
    width: 430px;
    max-width: 75%;
    animation: jcbLoading 6s ease-in-out 1;
}

@keyframes jcbLoading {

    0% {
        transform: translateX(-120vw);
        opacity: 0;
    }

    20% {
        transform: translateX(-60vw);
        opacity: 1;
    }

    40% {
        transform: translateX(-15vw);
        opacity: 1;
    }

    48% {
        transform: translateX(0);
        opacity: 1;
    }

    58% {
        transform: translateX(0);
        opacity: 1;
    }

    75% {
        transform: translateX(45vw);
        opacity: 1;
    }

    100% {
        transform: translateX(120vw);
        opacity: 0;
    }

}

.hide-preloader {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

@media (max-width: 991px) {
    .jcb {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .jcb {
        width: 320px;
    }
}

@media (max-width: 576px) {
    .jcb {
        width: 290px;
    }
}

@media (max-width: 480px) {
    .jcb {
        width: 270px;
    }
}

@media (max-width: 400px) {
    .jcb {
        width: 240px;
    }
}

@media (max-width: 300px) {
    .jcb {
        width: 210px;
    }
} */
 
#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    z-index: 999999;

    background: #ffffff;
}


/* ============================= */
/* WHITE BACKGROUND */
/* ============================= */

.loader-blur {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: #ffffff;

    z-index: 1;
}


/* ============================= */
/* GIF CONTAINER */
/* ============================= */

.loader-gif {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: loaderStart 1s ease-out forwards;
}


/* ============================= */
/* SOFT LIGHT BEHIND GIF */
/* ============================= */

.loader-gif::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 300px;
    height: 300px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(11, 58, 99, 0.06);

    filter: blur(45px);

    z-index: -2;

    animation: lightPulse 2.5s ease-in-out infinite;
}


/* ============================= */
/* ATTRACTIVE RIPPLE */
/* ============================= */

.loader-gif::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 190px;
    height: 190px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 2px solid rgba(11, 58, 99, 0.12);

    z-index: -1;

    animation: rippleEffect 2.2s ease-out infinite;
}


/* ============================= */
/* GIF IMAGE */
/* ============================= */

.loader-gif img {
    position: relative;
    z-index: 5;

    width: auto;
    height: auto;

    max-width: 90%;

    display: block;

    filter:
        drop-shadow(0 12px 20px rgba(0, 0, 0, 0.14))
        drop-shadow(0 0 12px rgba(255, 255, 255, 1));

    animation: gifFloat 2s ease-in-out infinite;
}


/* ============================= */
/* LOADER START */
/* ============================= */

@keyframes loaderStart {

    0% {
        opacity: 0;
        transform: scale(0.65);
    }

    60% {
        opacity: 1;
        transform: scale(1.06);
    }

    80% {
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* ============================= */
/* GIF SMOOTH FLOAT */
/* ============================= */

@keyframes gifFloat {

    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.035);
    }

    100% {
        transform: translateY(0) scale(1);
    }

}


/* ============================= */
/* LIGHT PULSE */
/* ============================= */

@keyframes lightPulse {

    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.35;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.75;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.35;
    }

}


/* ============================= */
/* RIPPLE EFFECT */
/* ============================= */

@keyframes rippleEffect {

    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.8;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }

}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {

    .loader-gif img {
        width: 340px;
    }

}


@media (max-width: 768px) {

    .loader-gif img {
        width: 320px;
    }

}


@media (max-width: 576px) {

    .loader-gif img {
        width: 290px;
    }

    .loader-gif::before {
        width: 260px;
        height: 260px;
    }

}


@media (max-width: 480px) {

    .loader-gif img {
        width: 270px;
    }

}


@media (max-width: 400px) {

    .loader-gif img {
        width: 240px;
    }

}


@media (max-width: 300px) {

    .loader-gif img {
        width: 210px;
    }

}

:root {
    --primary: #0B3A63;      
    --secondary: #F5A623;  
    --dark-blue: #0B3A63;  
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Mulish',sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.header-main-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: 0.4s ease;
}

.navbar {
    padding: 20px 0; 
    transition: 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    /* background: var(--primary) !important; */
    background: #fff !important;
    padding: 10px 0 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link {
    /* color: var(--secondary) !important; */
    color: var(--primary) !important;
}

.navbar .container{
    display:flex;
    align-items:center;
}

.navbar-brand{
    display:flex;
    align-items:center;
    margin-right:70px;
    padding:0;
    height:0;
    overflow:visible;
}

.navbar-brand img{
    height:125px !important;
    width:auto !important;
    max-width:none !important;
    display:block;
    position:relative;
    top:11px;          
    transition:.4s ease;
}

.navbar.scrolled .navbar-brand img{
    height:100px !important;
    top:8px;           
}

.navbar-nav{
    align-items:center;
    margin-left:auto;
}

.nav-item{
    margin:0 8px;
}

.nav-link{
    color: #fff !important;
    font-size:18px;
    font-weight:700;
    letter-spacing:.3px;
    transition:.3s;
    padding:10px 14px !important;
}

.nav-link:hover{
    color:var(--secondary)!important;
}

.navbar.scrolled .nav-link{
    color:var(--primary)!important;
}

.navbar.scrolled .nav-link:hover{
    color:var(--primary)!important;
}

.navbar.scrolled .dropdown-toggle::after {
    border-top-color: var(--primary) !important;
}

.signin-btn{
    background:var(--secondary);
    color:var(--primary);
    padding:13px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
    font-size:16px;
    margin-left:18px;
    transition:.3s;
}

.signin-btn:hover{
    transform:translateY(-3px);
    color:#000;
    box-shadow:0 10px 20px rgba(244,178,35,.35);
}

@media (min-width: 992px) {
    .navbar.scrolled .navbar-brand {
        background: transparent !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .navbar.scrolled .navbar-brand img {
        height: 52px !important;
        width: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        margin-top: -10px !important;
    }
}

@media (max-width: 991px) {

    .header-main-wrapper {
        position: relative !important;
        /* background: var(--primary); */
        background: #fff !important;
        padding: 10px 0;
    }
    
    .navbar {
        /* background: var(--primary) !important; */
        background: #fff !important;
        padding: 10px 0 !important;
    }

    .navbar-collapse {
        background: var(--secondary);
        padding: 20px;
        margin-top: 30px;
        position: relative;
        border-radius: 10px;
    }
    
}

@media (max-width:991px){

    .header-main-wrapper{
        position:relative !important;
        /* background:var(--primary); */
        background: #fff !important;
    }

    .navbar{
        /* background:var(--primary) !important; */
        background: #fff !important;
        padding:12px 0 !important;
    }

    .navbar-brand {
        background: transparent !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .navbar-brand img {
        content: url("../logo/logo.png") !important;
        height: 42px !important;
        width: auto !important;
        filter: none !important;
        margin-top: -25px !important;
    }

    .navbar-toggler{
        border:none;
        padding:0;
        box-shadow:none !important;
    }

    .navbar-toggler:focus{
        box-shadow:none !important;
    }

    .offcanvas{
        width:92% !important;
        max-width:340px;
        /* background:var(--primary);
        color:var(--secondary); */
        background: #fff !important;
        color: var(--primary) !important;
        border-left: 1px solid #eeeeee !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08) !important;
    }

    .offcanvas-header{
        /* background:var(--primary); */
        background: #fff !important;
        padding:18px;
        /* border-bottom:1px solid rgba(255,255,255,.12); */
        border-bottom: 1px solid #d8d8d8 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    }

    .offcanvas-header img{
        width:110px;
        height:auto;
    }

    .offcanvas .btn-close{
            filter: invert(71%) sepia(51%) saturate(1487%) hue-rotate(357deg) brightness(98%) contrast(93%);
            opacity: 1;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F4B223' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .offcanvas-body{
        padding:0;
        overflow-y:auto;
        background: #fff !important;
    }

    .offcanvas .navbar-nav{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
    }

    .offcanvas .nav-item{
        width:100%;
        margin:0;
    }

    .offcanvas .nav-link{
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:100%;
        /* color:var(--secondary) !important; */
        color: var(--primary) !important;
        font-size:16px;
        font-weight:700;
        padding:16px 20px !important;
        /* border-bottom:1px solid rgba(255,255,255,.08); */
        border-bottom: 1px solid #d8d8d8 !important;
    }

    .offcanvas .nav-link:hover{
        /* color:var(--secondary) !important;
        background:rgba(255,255,255,.05); */
        color: var(--primary) !important;
        background: rgba(0, 0, 0, 0.03);
    }

    .offcanvas .signin-btn{
        display:block;
        width:calc(100% - 30px);
        margin:20px auto;
        text-align:center;
    }

    .category-submenu,
    .equipment-submenu{
        list-style:none;
        margin:0;
        padding:0;
        /* background:var(--primary); */
        background: #fff !important;
        border-top: 1px solid #d8d8d8 !important; 
    }

    .category-submenu li,
    .equipment-submenu li{
        display:flex;
        align-items:center;
        margin:0;
        /* border-bottom:1px solid rgba(255,255,255,.05); */
        border-bottom: 1px solid #d8d8d8 !important;
    }

    .category-submenu li::before,
    .equipment-submenu li::before{
        content:"•";
        /* color:var(--secondary); */
        color: var(--primary) !important;
        font-size:22px;
        margin-left:15px;
        margin-right:5px;
        flex-shrink:0;
    }

    .category-submenu a,
    .equipment-submenu a{
        flex:1;
        display:block;
        /* color:var(--secondary); */
        color: var(--primary) !important;
        text-decoration:none;
        padding:12px 15px 12px 0;
        font-size:14px;
        transition:.3s;
    }

    .category-submenu a:hover,
    .equipment-submenu a:hover{
        /* color:var(--secondary); */
        color: var(--primary) !important;
        padding-left:8px;
    }
}

@media (max-width:768px){

    .navbar{
        padding:10px 0 !important;
    }

    .navbar-brand img{
        height:72px !important;
    }

    .offcanvas{
        width:92% !important;
        max-width:340px;
    }

    .offcanvas-header{
        padding:16px;
    }

    .offcanvas-header img{
        width:100px;
    }

    .offcanvas .nav-link{
        font-size:15px;
        padding:15px 18px !important;
    }

    .category-submenu a,
    .equipment-submenu a{
        font-size:14px;
        padding:11px 30px;
    }

    .offcanvas .signin-btn{
        width:calc(100% - 28px);
        font-size:15px;
        padding:12px 18px;
    }

}

@media (max-width:576px){

    .navbar{
        padding:8px 0 !important;
    }

    .navbar-brand img{
        height:65px !important;
    }

    .offcanvas{
        width:92% !important;
        max-width:340px;
    }

    .offcanvas-header{
        padding:15px;
    }

    .offcanvas-header img{
        width:95px;
        height:auto;
    }

    .offcanvas-body{
        padding:0;
    }

    .offcanvas .nav-link{
        font-size:14px;
        padding:14px 16px !important;
    }

    .category-submenu a,
    .equipment-submenu a{
        font-size:13px;
        padding:10px 28px;
    }

    .offcanvas .signin-btn{
        width:calc(100% - 24px);
        margin:18px auto;
        padding:11px 16px;
        font-size:14px;
    }

}

@media (max-width:480px){

    .navbar{
        padding:8px 0 !important;
    }

    .navbar-brand img{
        height:58px !important;
    }

    .offcanvas{
        width:92% !important;
        max-width:340px;
    }

    .offcanvas-header{
        padding:14px;
    }

    .offcanvas-header img{
        width:90px;
    }

    .offcanvas .nav-link{
        font-size:14px;
        padding:13px 14px !important;
    }

    .category-submenu a,
    .equipment-submenu a{
        font-size:13px;
        padding:10px 24px;
    }

    .offcanvas .signin-btn{
        width:calc(100% - 20px);
        margin:16px auto;
        padding:10px 15px;
        font-size:13px;
    }

}

@media (max-width:400px){

    .navbar-brand img{
        height:52px !important;
    }

    .offcanvas{
        width:92% !important;
        max-width:340px;
    }

    .offcanvas-header{
        padding:12px;
    }

    .offcanvas-header img{
        width:82px;
    }

    .offcanvas .nav-link{
        font-size:13px;
        padding:12px !important;
    }

    .category-submenu a,
    .equipment-submenu a{
        font-size:12px;
        padding:9px 20px;
    }

    .offcanvas .signin-btn{
        width:calc(100% - 18px);
        padding:10px 12px;
        font-size:12px;
        margin:15px auto;
    }

}


.section-title{
    text-align:center;
    font-family:'Mulish',sans-serif;
    font-size:36px;
    font-weight:800;
    line-height:1.15;
    letter-spacing:-1.5px;
    color:var(--secondary);
    margin-bottom:40px;
    position:relative;
}

.section-title::after{
    content:'';
    width:90px;
    height:5px;
    background:var(--primary);
    display:block;
    margin:18px auto 0;
    border-radius:50px;
}

.scroll-toggle{
    position:fixed;
    right:30px;
    bottom:30px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:var(--secondary);
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 18px 45px rgba(0,0,0,.25);
    transition:.35s ease;
    animation:floatBtn 2s ease-in-out infinite;
}

.scroll-toggle:hover{
    background:var(--primary);
    transform:scale(1.08);
}

.arrow-icon{
    width:30px;
    height:30px;
    fill:var(--primary);
    transition:.35s;
}

.scroll-toggle:hover .arrow-icon{
    fill:var(--secondary);
}

@keyframes floatBtn{

0%,100%{
    transform:translateY(0);
}

50%{
    transform:translateY(-8px);
}

}

@media(max-width:991px){
    
    .scroll-toggle{
        width:55px;
        height:55px;
        right:18px;
        bottom:18px;
    }

    .arrow-icon{
        width:26px;
        height:26px;
    }

}

@media(max-width:576px){
    
    .scroll-toggle{
        width:50px;
        height:50px;
        right:15px;
        bottom:15px;
    }

    .arrow-icon{
        width:22px;
        height:22px;
    }

}

.whatsapp-btn{
    position:fixed;
    right:30px;
    bottom:110px;
    width:64px;
    height:64px;
    border-radius:50%;
    background:linear-gradient(135deg,#25D366,#128C7E);
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
    z-index:9998;
    transition:.35s ease;
    animation:whatsappFloat 2.2s ease-in-out infinite;
}

.whatsapp-icon{
    width:32px;
    height:32px;
    fill:#fff;
    transition:.35s;
}

.whatsapp-btn:hover{
    transform:scale(1.12);
    box-shadow:0 22px 55px rgba(37,211,102,.45);
}

.whatsapp-btn::before{
    content:"";
    position:absolute;
    inset:-8px;
    border:2px solid rgba(37,211,102,.35);
    border-radius:50%;
    animation:ring 2s linear infinite;
}

@keyframes whatsappFloat{
    
0%,100%{ transform:translateY(0); }
50%{ transform:translateY(-8px); }

}

@keyframes ring{

from{
    transform:scale(1);
    opacity:1;
}

to{
    transform:scale(1.25);
    opacity:0;
}

}

@media(max-width:991px){

    .whatsapp-btn{
        width:55px;
        height:55px;
        right:18px;
        bottom:90px;
    }
    
    .whatsapp-icon{
        width:28px;
        height:28px;
    }

}

@media(max-width:576px){

    .whatsapp-btn{
        width:50px;
        height:50px;
        right:15px;
        bottom:80px;
    }

    .whatsapp-icon{
        width:24px;
        height:24px;
    }
    
}

.footer{
    background:linear-gradient(180deg,var(--primary) 0%,var(--primary) 100%);
    color:var(--secondary);
    position:relative;
    padding-top:35px;
    border-top:5px solid var(--secondary);
}

.footer-brand img{
    height:55px !important;
    object-fit:contain;
}

.footer-brand p{
    font-size:14px;
    line-height:1.6;
    margin-top:12px !important;
}

.footer h5{
    color:var(--secondary);
    font-size:15px;
    font-weight:900;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.footer-links li a{
    color:var(--secondary);
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    display:inline-block;
}

.footer-links li a:hover{
    color:var(--secondary);
    transform:translateX(6px);
}

.footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    line-height:1.5;
    margin-bottom:8px;
    word-break:break-word;
}

.footer-contact i{
    color:var(--secondary);
    min-width:18px;
    margin-top:3px;
}

.footer-contact a{
    color:var(--secondary) !important;
    text-decoration:none;
}

.footer-contact a:hover{
    text-decoration:underline;
}

.footer-social{
    margin-top:15px !important;
}

.footer-social a{
    width:40px;
    height:40px;
    line-height:40px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:var(--secondary);
    margin-right:8px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--secondary);
    color:#000;
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:20px;
}

.footer-bottom .container{
    padding-top:12px !important;
}

.footer-bottom p{
    font-size:13px;
}

@media(max-width:991px){

    .footer{
        padding-top:30px;
        text-align:left;
    }

    .footer .container{
        padding-left:25px;
        padding-right:25px;
    }

    .footer .row{
        display:flex;
        flex-wrap:wrap;
        row-gap:20px;
    }

    .footer-nav-col,
    .footer-service-col{

        width:50%;
        flex:0 0 50%;
        text-align:left;
    }

    .footer-nav-col{
        padding-right:25px;
    }

    .footer-service-col{
        padding-left:25px;
    }

    .footer h5{

        font-size:14px;
        margin-bottom:12px;
        text-align:left;
    }

    .footer-links{

        gap:6px;
        align-items:flex-start;
    }

    .footer-links li{

        line-height:1.3;
    }

    .footer-links li a{

        font-size:13.5px;
    }

    .footer-connect-col{
        width:100%;
        flex:0 0 100%;
        margin-top:5px;
    }

    .footer-contact{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-contact p{
        width:280px;
        font-size:13.5px;
        margin-bottom:8px;
        text-align:left;
    }

    .footer-logo-col{
        width:100%;
        flex:0 0 100%;
        order:5;
        margin-top:5px;
    }

    .footer-brand{
        text-align:left;
    }

    .footer-brand img{
        height:50px !important;
    }

    .footer-brand p{
        max-width:350px;
        font-size:13.5px;
        line-height:1.5;
        margin-top:12px !important;
        text-align:left;
    }

    .footer-social{
        display:flex;
        justify-content:flex-start;
        margin-top:15px !important;
    }
    
    .footer-social a{
        width:38px;
        height:38px;
        line-height:38px;
        margin-right:8px;
    }

    .footer-bottom p{
        text-align:center;
        font-size:12px;
    }

}

@media(max-width:400px){

    .footer .container{
        padding-left:18px;
        padding-right:18px;
    }

    .footer-nav-col{
        padding-right:15px;
    }

    .footer-service-col{
        padding-left:15px;
    }

    .footer h5{
        font-size:13px;
    }

    .footer-links li a{
        font-size:13px;
    }

    .footer-contact p{
        width:230px;
        font-size:12.5px;
    }

    .footer-brand img{
        height:45px !important;
    }

    .footer-brand p{
        font-size:12.5px;
    }

    .footer-social a{
        width:35px;
        height:35px;
        line-height:35px;
    }

}

/* .pages-slider-wrapper{
    position:relative;
    display:flex;
    align-items:center;
} */
.pages-slider-wrapper{
    position: relative;
    display: block; /* flex se block ya relative rakhein taaki wrapper control kare */
    width: 100%;
}

.pages-slider{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    width: 100%;
}
.pages-arrow{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:var(--secondary);
    font-size:18px;
    cursor:pointer;
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
}

.pages-prev{
    left:-18px;
}

.pages-next{
    right:-18px;
}

/* .pages-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:10px 0;
    scrollbar-width:none;
    scroll-snap-type:x mandatory;
} */

.pages-slider::-webkit-scrollbar{
    display:none;
}

@media(max-width:991px){

    .pages-slider{
        gap:16px;
        padding:10px 15px;
        scroll-snap-type:x mandatory;
    }

    .pages-arrow{
        display:none;
    }   

}

@media (max-width:767px){

    .pages-slider{
        gap:14px;
        padding:10px 12px;
    }

}

@media (max-width:480px){

    .pages-slider{
        padding:10px;
    }

}

.pages-view-all{
    flex:0 0 calc((100% - 60px) / 4);
    max-width:calc((100% - 60px) / 4);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    cursor:pointer;
    min-height:100%;
    transition:.3s ease;
    scroll-snap-align:start;
}

.pages-view-all:hover{
    transform:translateX(8px);
}

.pages-view-all i{
    width:56px;
    height:56px;
    border-radius:50%;
    background:var(--secondary);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
    transition:.3s ease;
}

.pages-view-all h3{
    font-size:24px;
    font-weight:800;
    line-height:1.5;
    color:var(--secondary);
    margin:0;
    transition:.3s;
}

.pages-view-all:hover i{
    background:var(--secondary);
    color:var(--primary);
}

.pages-view-all:hover h3{
    color:var(--secondary);
}

@media (max-width:991px){

    .pages-view-all{
        flex:0 0 320px;
        max-width:320px;
    }

    .pages-view-all i{
        font-size:38px;
        margin-bottom:18px;
    }

    .pages-view-all h3{
        font-size:22px;
    }

}

@media (max-width:767px){

    .pages-view-all{
        flex:0 0 280px;
        max-width:280px;
    }

    .pages-view-all i{
        font-size:34px;
        margin-bottom:16px;
    }

    .pages-view-all h3{
        font-size:20px;
        line-height:1.4;
    }

}

@media (max-width:480px){

    .pages-view-all{
        flex:0 0 250px;
        max-width:250px;
    }

    .pages-view-all i{
        font-size:30px;
        margin-bottom:14px;
    }

    .pages-view-all h3{
        font-size:18px;
    }

}

.category-dropdown{
    width:700px;
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;

    padding:20px;
    margin-top:18px;

    border:none;
    border-radius:18px;
    /* background:var(--primary) !important;
    box-shadow:0 20px 45px rgba(0,0,0,.15); */

    background: #fff !important;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

    display:none;              
}

.category-dropdown.show{
    display:grid !important;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.category-dropdown li{
    list-style:none;
    margin:0;
    padding:0;
}

.category-dropdown .dropdown-item{
    display:block;
    width:100%;
    padding:12px 16px;
    border-radius:10px;
    /* color:var(--secondary) !important; */
    color:var(--primary) !important;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    white-space:normal;
}

.category-dropdown .dropdown-item:hover,
.category-dropdown .dropdown-item:focus{
    /* background:transparent !important;
    color:#F4B223 !important; */
    background:rgba(0,0,0,0.05) !important;
    color:var(--secondary) !important;
}

.equipment-dropdown{
    width:700px;
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;

    padding:20px;
    margin-top:18px;

    border:none;
    border-radius:18px;
    /* background:var(--secondary);
    box-shadow:0 20px 45px rgba(0,0,0,.15); */

    background: #fff !important;
    box-shadow:0 20px 45px rgba(0,0,0,.15);

    display:none;
}

.equipment-dropdown.show{
    display:grid !important;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.equipment-dropdown li{
    list-style:none;
    margin:0;
    padding:0;
}

.equipment-dropdown .dropdown-item{
    display:block;
    width:100%;
    padding:12px 16px;
    border-radius:10px;
    /* color:var(--primary); */
    color:var(--primary) !important;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    white-space:normal;
}

.equipment-dropdown .dropdown-item:hover,
.equipment-dropdown .dropdown-item:focus{
    /* background:var(--primary);
    color:var(--secondary); */

    background:rgba(0,0,0,0.05) !important;
    color:var(--primary) !important;
}