body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    overflow-x: hidden;
    background-color: #121212;

}

.navBar {
    position: absolute;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    z-index: 5;
}

.hide {
    display: none;
}

.navLogo {
    margin-left: 100px;
    width: auto;
    height: 100%;
    transition: transform 0.5s ease; /* Added a transition property for smooth transformation */
}

@keyframes scaleAndTranslate {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(4) translate(90px, 65px);
    }
}

.navLogo.large {
    z-index: 4;
    transform: scale(4) translate(90px, 65px);
    animation: scaleAndTranslate 0.5s ease;
}

/* Reverse animation for scaling out */
@keyframes reverseScaleAndTranslate {
    0% {
        transform: scale(4) translate(90px, 65px);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    @keyframes scaleAndTranslate {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(4) translate(60px, 65px);
        }
    }

    .navLogo.large {
        z-index: 4;
        transform: scale(4) translate(60px, 65px);
        animation: scaleAndTranslate 0.5s ease;
    }

    /* Reverse animation for scaling out */
    @keyframes reverseScaleAndTranslate {
        0% {
            transform: scale(4) translate(60px, 65px);
        }
        100% {
            transform: scale(1);
        }
    }
}

@media (max-width: 1000px) {
    @keyframes scaleAndTranslate {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(4) translate(45px, 65px);
        }
    }

    .navLogo.large {
        z-index: 4;
        transform: scale(4) translate(45px, 65px);
        animation: scaleAndTranslate 0.5s ease;
    }

    /* Reverse animation for scaling out */
    @keyframes reverseScaleAndTranslate {
        0% {
            transform: scale(4) translate(45px, 65px);
        }
        100% {
            transform: scale(1);
        }
    }
}






.navLogo img {
    height: 100px;
    width: auto;
}

.menu {
    margin-right: 50px;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;

}

.menu-btn {
    width: 100px; /* Double the width */
    height: 100px; /* Double the height */
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50px; /* Set it to half the width for a circular button */
}

.menu-btn__burger {
    width: 50px; /* Half the width of the button */
    height: 6px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.menu-btn__burger::before,
.menu-btn__burger::after {
    content: '';
    width: 50px; /* Half the width of the button */
    height: 6px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    position: absolute;
}

.menu-btn__burger::before {
    top: -18px; /* Increase the distance between bars */
}

.menu-btn__burger::after {
    top: 18px; /* Increase the distance between bars */
}

.menu-btn.open .menu-btn__burger {
    background: transparent;
    box-shadow: none;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg);
    top: 0;
}

.navContainer {
    top: 0;
    right: 0;
    position: fixed;
    height: 100%;
    width: 40%;
    background-color: #0D0D0D;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out; /* Add a transition for smooth sliding */
    z-index: 1;
    border-left: 5px solid #1d1d1d; /* Replace 'yourBorderColor' with the desired color */
}




.slide-right {
    transform: translateX(+100%); /* Slide in from the left (negative value) */
}


.navTabsList {
    margin-top: 180px;
    list-style: none; /* Remove the default list-style (usually bullets) */
    padding: 0; /* Remove default padding */
  }
  
  .navTab a {
    text-decoration: none; /* Remove underline on links */
    color: inherit; /* Inherit the default text color */
    font-size: inherit; /* Inherit the default font size */
    font-family: inherit; /* Inherit the default font family */
  }
  
  .blurDiv {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0dc6;
    backdrop-filter: blur(10px); /* Adjust the blur value as needed */ /* Ensure the overlay is above the content */
    opacity: 0; /* Start with zero opacity */
  /* Add transition for smooth fade in/out */
    z-index: 1;
    transition: opacity 0.2s ease;
}

.blurDivActive{
    opacity: 1;
    transition: opacity 0.2s ease;

}


.navTab {
    padding: 10px 20px;
    margin-left: 0;
    font-size: 24px;
    color: #fff;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease; /* Add transition for background color */
    text-decoration: none;
}

.navTab:hover {
    background-color: #1d1d1d; /* Change to a slightly lighter gray on hover */
}

.navTabsList a {
    text-decoration: none;
    color: inherit; /* Ensures the text color remains the same as the parent */
}

@media (max-width: 800px) {
    .navContainer{
        width: 100%;
    }

     .menu{
        margin: 0;
        margin-right: 10px;
    }

    .navLogo{
        margin: 50px;
    }
    .navTabsList li{
        margin-left: 0px;
    }
    
}



