/* Header Styles */
.header{position:fixed;top:0;left:0;right:0;background:white;border-bottom:1px solid #e5e7eb;box-shadow:0 1px 3px rgba(0,0,0,0.1);z-index:1000;}
.header-content{max-width:1200px;height:64px;margin:0 auto;padding:0 20px;display:flex;justify-content:space-between;align-items:center;}
.logo{display:flex;align-items:center;gap:10px;cursor:pointer;}
.logo-icon{width:200px;height:auto;display:flex;align-items:center;justify-content:center;color:white;font-weight:bold;font-size:20px;}
.logo-icon img{max-width:200px;max-height:45px;width:auto;height:auto;margin:0;}
.logo-text h1{font-size:20px;color:#1f2937;}
.logo-text p{font-size:11px;color:#6b7280;margin-top:-4px;}
/*Navigation Menu for Mobile*/
.nav{display:flex;gap:30px;align-items:center;}
.nav a{width:auto;position:relative;display:flex;align-items:center;justify-content:center;gap:10px;text-align:center;color:#333;text-decoration:none;font-weight:bold;padding:10px 20px;transition:0.2s ease color;}
.nav a:hover,
.nav a.active{color:#dc2626;}
.nav a::before,
.nav a::after{content:'';position:absolute;border-radius:50%;transform:scale(0);transition:0.2s ease transform;}
nav a::before {width:6px;height:6px;top:0;left:10px;}
nav a::after{width:4px;height:4px;top:5px;left:18px;}
.nav a svg{width:22px;height:22px;}
.nav a.btn{color:#fff;}
.nav a.btn:hover{color:#fff;}
@media (min-width: 1024px) {
    .header-content{padding:0;}
    .logo-icon{width:248px;}
    .logo-icon img{max-width:247px;max-height:56px;}
}

/* New Mobile Menu Navigation */
.menu-container{position:fixed;top:0;left:0;z-index:2;display:flex;align-items:stretch;overflow:hidden;height:100vh;width:100vw;pointer-events:none;}
.menu{display:flex;justify-content:center;align-items:center;position:absolute;height:100vh;width:100vw;z-index:3;top:0;left:0;right:0;bottom:0;transform:translateY(-100%);transition:transform 0.5s;transition-delay:0.5s;visibility:hidden;list-style:none;}
.menu ul li{font-weight:100;font-size:45px;color:white;min-height:45px;padding:15px;text-align:center;list-style:none;}
.menu ul li a{cursor:pointer;width:100%;display:flex;align-items:center;justify-content:flex-start;gap:10px;font-size:30px;font-weight:lighter;text-decoration:none;color:#fff;}
.menu ul li svg{width:30px;height:30px;}
.menu-sliders{flex:1;display:flex;justify-content:center;align-items:center;transition:flex 0.45s;}
.menu-sliders:nth-child(2){flex:1 0 100%;background:transparent;}
.menu-sliders:nth-child(odd){background:#453d4a;}
/* .plus-btn-pos{position:absolute;top:20px;right:20px;z-index:5;} */
.plus-btn-pos{position:relative;z-index:5;}
.plus-btn{width:40px;height:40px;border-radius:6px;background:white;position:relative;box-shadow:0 0px 2px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0);cursor:pointer;}
.plus-btn div{position:absolute;top:50%;left:50%;width:16px;height:3px;background:#453d4a;transition:transform 0.3s;transition-delay:0.5s;}
.plus-btn .r1{transform:translateX(-50%) translateY(100%) rotate(-180deg);}
.plus-btn .r2{transform:translateX(-50%) translateY(-160%) rotate(-180deg);}
/* .plus-btn:hover{background:#0259a5;}
.plus-btn:hover div{background:white;} */
.plus-btn:active{box-shadow:none;}
body.menu-open .menu-sliders:nth-child(2){flex:0 0 0%;}
body.menu-open .menu{transform:translateY(0%);visibility:visible;pointer-events:all;}
body.menu-open .plus-btn .r1{transform:translateX(-50%) translateY(-50%) rotate(-45deg);}
body.menu-open .plus-btn .r2{transform:translateX(-50%) translateY(-50%) rotate(-135deg);}

/*link color On hover*/
nav a:first-child:hover,
nav a:first-child.active{color:#ed3833;}
nav a:nth-child(2):hover,
nav a:nth-child(2).active{color:#19c1ae;}
nav a:nth-child(3):hover,
nav a:nth-child(3).active{color:#812b80;}
nav a:nth-child(4):hover,
nav a:nth-child(4).active{color:#216392;}

/*Dots (2 Circle) background On hover*/
nav a:nth-child(1)::before,
nav a.active:nth-child(1)::before {
    background-color:yellow;
}
nav a:nth-child(1)::after,
nav a.active:nth-child(1)::after {
    background-color:red;
}
nav a:nth-child(2)::before,
nav a.active:nth-child(2)::before{
    background-color:#00e2ff;
}
nav a:nth-child(2)::after,
nav a.active:nth-child(2)::after{
    background-color:#89ff00;
}
nav a:nth-child(3)::before,
nav a.active:nth-child(3)::before{
    background-color:purple;
}
nav a:nth-child(3)::after,
nav a.active:nth-child(3)::after{
    background-color:palevioletred;
}
nav a:nth-child(4)::before,
nav a.active:nth-child(4)::before{
    background-color:rgb(5, 99, 145);
}
nav a:nth-child(4)::after,
nav a.active:nth-child(4)::after{
    background-color:rgb(128, 220, 239);
}

/*bottom border line*/
#indicator{width:60px;height:3px;position:absolute;left:58%;bottom:0;background-color:#fff;border-radius:5px;transition:0.2s ease left;}
nav a:hover:before,
nav a.active::before,
nav a:hover:after,
nav a.active::after{transform:scale(1);}
nav a:nth-child(1):hover ~ #indicator,
nav a.active:nth-child(1) ~ #indicator{background:linear-gradient(130deg, yellow, red);}
nav a:nth-child(2):hover ~ #indicator,
nav a.active:nth-child(2) ~ #indicator{left:68%;background:linear-gradient(130deg, #00e2ff, #89ff00);}
nav a:nth-child(3):hover ~ #indicator,
nav a.active:nth-child(3) ~ #indicator{left:81.2%;background:linear-gradient(130deg, purple, palevioletred);}
nav a:nth-child(4):hover ~ #indicator,
nav a.active:nth-child(4) ~ #indicator{left:70%;background:linear-gradient(130deg, rgb(3, 138, 159), rgb(112, 204, 216));}

@media (max-width: 768px) {
    ._hmburger{
        width:55px;
        height:55px;
        border-radius:10px;
        /* background:white;
        box-shadow:rgb(136 165 191 / 48%) 6px 2px 16px 0px, rgb(255 255 255 / 80%) -6px -2px 16px 0px; */
        cursor:pointer;
        display:flex;
        justify-content:center;
        align-items:center;
        padding:5px;
        transition:all .5s ease;
        margin:0;
    }
    /* ._hmburger:hover{background:rgb(56 56 56);} */
    ._hmburger-strip{transition:all .5s ease;}
    ._hmburger-strip div{width:30px;height:3px;border-radius:2px;margin:8px;
        background:rgb(56 56 56);
        transition:all .55s cubic-bezier(0.075, 0.82, 0.165, 1);
    }
    /* ._hmburger:hover ._hmburger-strip div{background:white;} */
    /* Strip */
    ._hmburger-strip div:first-child{width:14px;}
    ._hmburger-strip div:last-child{width:23px;}
    .open-nav ._hmburger ._hmburger-strip div:first-child{width:13px;transform: rotate(45deg) translateY(1px) translateX(5px);}
    .open-nav ._hmburger ._hmburger-strip div:nth-child(2){transform:rotate(-45deg);}
    .open-nav ._hmburger ._hmburger-strip div:last-child{width:18px;transform:rotate(45deg) translateY(-13px) translateX(2px);}

    /*Navigation Menu*/
    ._mbnvbg {
        width: 100%;
        height: 100vh;
        background-image:radial-gradient(ellipse 59% 100% at 93% 30%, #ffffe8, rgba(219, 232, 231, .5) 90%), radial-gradient(ellipse 59% 140% at 0 120%, #faffcd, rgba(219, 232, 231, 0.4) 60%), radial-gradient(ellipse 60% 100% at 5% 20%, #ffffff, rgb(255 255 255 / 50%) 100%), radial-gradient(ellipse 60% 100% at 100% 110%, #ffffff, rgba(219, 232, 231, .5) 90%);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        border-top:1px solid #e5e7eb;
        position: absolute;
        top: 64px;
        right: -10000px;
        z-index: 9999;
        transition:right 0.5s ease;
    }
    .open-nav ._mbnvbg{right:0;transition:right 0.5s ease;}
    ._mbnvbg .nav{flex-flow:column;align-items:flex-start;gap:15px;padding:30px 15px 15px 15px;}
    ._mbnvbg .nav a{width:100%;font-size:20px;padding:10px;justify-content:flex-start;font-weight:normal;}
    ._mbnvbg .nav a:before,
    ._mbnvbg .nav a:after{content:unset;}
    ._mbnvbg .nav a svg{width:28px;height:28px;}
}