/* Glass Navbar */
.glass-nav {
    z-index: 9;
    background: rgb(0 0 0 / 24%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 9px 32px rgba(0, 0, 0, 0.25), inset 0 0 8px rgba(255, 255, 255, 0.15);
    padding: 0px 0px;
    display: inline-flex;
    border: 0px solid #fff;
}

/* Nav Links */
.nav-link {
    color: #fff !important;
    font-weight: 500;
    opacity: 0.85;
    transition: .3s;
}

.nav-link:hover {
    opacity: 1;
}



/* Green Circle Arrow */
.arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #57d163;
    color: #000;
    font-weight: bold;
}



.header {
    text-align: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}



.arrow img {
    width: 100%;
    aspect-ratio: 1/1;
}

.navbar-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 23px;
    font-family: 'Poppins';
}

.navbar-nav>li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: calc(100% - 1px);
    background-color: #fff;
    opacity: 0.2;
}

.navbar-nav>li {
    position: relative;
}



.current-menu-item a {
    color: #FFFFFF99;
}

/* CTA Button */
.book-btn>a {
    color: #fff;
    padding: 19px 15px 19px 60px;
    border: 0px solid rgba(255, 255, 255, 0.25);
    transition: .3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    ---border-radius: 14px;
    border-radius: var(---border-radius);
    background-color: rgba(255, 255, 255, 0.07);
    background-blend-mode: luminosity;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.4) -22%, rgba(255, 255, 255, 0.1) 83%);
    font-family: 'Poppins';
    font-weight: 500;
}

/* ICON */
.book-btn>a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 13px;
    height: 36px;
    width: 36px;

    background-image: url("../icons/right-Icon.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    transform: translateY(-50%) translateX(0);
    transition: transform .2s ease, opacity .2s ease;
}


.book-btn>a:after {
    background: linear-gradient(var(--angle), rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 37%, rgba(255, 255, 255, 0) 57%, rgba(255, 255, 255, 0.1) 100%);
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
    border-radius: var(---border-radius);
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.07);
    background-blend-mode: luminosity;
}

/* STEP 1: Slide Right + Fade */
.book-btn>a:hover::before {
    transform: translateY(-50%) translateX(0);
    opacity: 0;
}

/* STEP 2: Re-enter From Left */
.book-btn>a:hover::before {
    animation: iconSlide .5s ease forwards;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 90deg;
    inherits: false;
}


/* 🚀 hover animation */
.book-btn>a:hover:after {
    animation: rotateAngle 2.5s linear infinite;
}

/* body:not(.page-template-homepage) {
    margin-top: 100px;
} */

.body_navopan .hero-desc {
    z-index: unset;
}

.body_navopan {
    overflow: hidden;
}

.body_navopan:before {
    position: fixed;
    inset: 0;
    content: "";
    z-index: 10;
    background: rgb(0 0 0 / 24%);
    backdrop-filter: blur(3px);
}


@keyframes iconSlide {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateY(-50%);
        opacity: 0;
    }

    41% {
        transform: translateY(-50%) translateX(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}


.navbar-nav {
    align-items: center;
}




.page-template-homepage .main-header-wrapper {
    display: none;
}

@media(max-width: 991px) {
    .header {
        position: fixed !important;
        transform: unset !important;
        margin-bottom: 0 !important;
        left: 0px !important;
        right: 0px !important;
        top: -100px !important;
        z-index: 9999;
        transition: 0.3s;
    }

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        border: 1px solid #FFF;
        /* background: rgba(204, 204, 204, 0.21); */
        backdrop-filter: blur(13.75px);
        border-radius: 12px;
        align-items: center;
        z-index: 1;
        position: relative;
    }

    .glass-nav {
        border-radius: 8px;
        background: #454545;
        box-shadow: unset;
        height: auto;
    }

    .header-brand img {
        height: 44px;
    }

    .navbar-toggler span {
        width: 69%;
        height: 1px;
        background-color: #fff;
        display: block;
        position: absolute;
        left: 50%;
        translate: -50% 0;
        transition: 0.3s;
    }


    .navbar-toggler {
        height: 39px;
        width: 50px;
        position: relative;
        border-radius: 8px;
        box-shadow: none !important;
    }

    .navbar-toggler span:first-child {
        top: 13px;
    }

    .navbar-toggler span:last-child {
        top: 23px;
    }

    .navbar-toggler[aria-expanded="true"] span:first-child {
        rotate: 45deg;
        top: 18px;
    }

    .navbar-toggler[aria-expanded="true"] span:last-child {
        rotate: -45deg;
        top: 18px;
    }

    .header-mobile {
        background-color: #000000d6;
        margin-top: 20px;
        height: calc(100dvh - 120px) !important;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        display: flex;
        transition: 0.3s ease;
        padding: 20px;
        position: relative;
        top: -100vh;
    }

    .header-mobile.collapsing {
        height: calc(100vh - 134px) !important;
        transition: 0.3s ease;

    }

    .navbar-nav>li:not(:last-child):after {
        display: none;
    }


    .btn.book-btn {
        position: absolute;
        bottom: 0;
        width: calc(100% - 28px);
        text-align: center;
        transform: translateX(-50%);
        left: 50%;
        padding: 0 0 16px;
    }

    .btn.book-btn a {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        padding: 12px 20px 12px 20px;
        background: rgba(255, 255, 255, 0.05);
        background-blend-mode: plus-lighter;
        box-shadow: 5px 5px 14.5px 32px rgba(201, 201, 201, 0.09) inset;
    }

    .book-btn>a::before {
        position: unset;
        transform: unset;
    }

    .navbar-nav a {
        font-size: 30px;
    }

    .navbar-nav>li:not(:last-child) {
        margin-bottom: 16px;
    }

    .btn.book-btn a {
        font-size: 18px;
    }


    .header-mobile.show {
        top: 0;
    }

    body.page-template-homepage {
        margin-top: 100px;
    }

    .page-template-homepage .main-header-wrapper {
        display: block;
    }


    .book-btn>a:hover::before {
        animation: iconSlider .5s ease forwards;
    }

    @keyframes iconSlider {
        0% {
            transform: translateX(0);
            opacity: 1;
        }

        40% {
            opacity: 0;
        }

        41% {
            transform: translateX(-40px);
            opacity: 0;
        }

        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .header.fixed-header {
        top: 0 !important;
    }
}


@media(min-width: 991px) {
    .banner-slide-content .navbar {
        background: rgb(158 158 158 / 5%);
    }
}



/* loader start  */

.loader-screen {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}



/* Heading */
.loader-title {
    font-size: clamp(36px, 4vw, 60px);
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.loader-title span {
    color: #1EFF00;
}

/* Greeting wrapper */
.greeting-wrapper {
    height: 28px;
    overflow: hidden;
    position: relative;
}

/* Slide container */
.greeting-slide {
    display: flex;
    flex-direction: column;
    animation: verticalSlide 3s infinite;
}

.greeting-slide div {
    text-align: center;
    font-size: 18px;
    color: #fff;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.loader-screen {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.is-loading .loader-screen {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.6s ease;
}

/* Vertical animation */
@keyframes verticalSlide {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(0);
    }

    35% {
        transform: translateY(-28px);
    }

    65% {
        transform: translateY(-28px);
    }

    70% {
        transform: translateY(-56px);
    }

    95% {
        transform: translateY(-56px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Bottom Spray */
.color-spray {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 100%;
    height: 51%;
    pointer-events: none;
}

/* 1️⃣ Blue Base */
.color-spray::before {
    content: "";
    position: absolute;
    background: radial-gradient(circle at 50% 95%, #4a12d8 0%, transparent 70%);
    filter: blur(60px);
    opacity: 1;
    animation: blueMove 3s ease-in-out infinite;
    left: -20%;
    bottom: 0;
    top: 0;
    width: 60%;
    transition: 1s;
}

/* 2️⃣ Medium Green */
.color-spray .center-spray {
    background: radial-gradient(circle at 30% 85%,
            rgba(30, 255, 0, 0.6) 0%,
            transparent 65%);
    filter: blur(70px);
    opacity: 1;
    animation: greenMove 4s ease-in-out infinite;
    position: absolute;
    left: 67%;
    bottom: 0;
    transform: translateX(-50%);
    width: 72%;
    top: 0;
}

/* 3️⃣ Small Green Accent */
.color-spray::after {
    content: "";
    position: absolute;
    background: radial-gradient(circle at 75% 88%,
            rgba(30, 255, 0, 0.7) 0%,
            transparent 45%);
    filter: blur(100px);
    opacity: 1;
    animation: accentMove 3s ease-in-out infinite;
    right: -5%;
    top: 0;
    bottom: 0;
    width: 72%;
}


.color-spray:is(:before, :after, div) {
    opacity: 0.7;
}



/* Spray Animation */
@keyframes blueMove {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.1;
    }

    100% {
        scale: 1.05;
    }
}

@keyframes greenMove {
    0% {
        opacity: 0.6;
        scale: 1;
    }

    50% {
        opacity: 0.75;
        scale: 1.15;
    }

    100% {
        opacity: 0.65;
        scale: 1.1;
    }
}

@keyframes accentMove {
    0% {
        opacity: 0.7;
        scale: 1;
    }

    50% {
        transform: translateY(-30px) scale(1.15);
        opacity: 0.9;
        scale: 1.15;
    }

    100% {
        opacity: 0.75;
        scale: 1.1;
    }
}


.is-loading {
    overflow: hidden;
}



@media(max-width: 991px) {
    .header-wrapper {
        border: none;
        backdrop-filter: unset;
    }

    .navbar-toggler {
        background-color: unset;
        border: none;
    }

    .glass-nav {
        background-color: unset;
    }

}

/* loader start  */