@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
 
body {
    margin: 0;
    /* background-color: #000; */
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
}
 
a {
    text-decoration: none;
}
 
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9); /* Change to your desired background color */
    z-index: 1000;
}
.logo {
    height: 7em; /* relative to the element's font size */
    width: 7em;

    /* background-color: aqua; */

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;

    margin: 0 0px 0 -120px;

}
.logo a {
    height: 90%; /* relative to the element's font size */
    width: 90%;

    /* background-color: rgb(0, 42, 255); */

    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}


.logo a img{
    height: 80%;
    width: auto;
    }

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;

    /* background-color: aqua; */
 
}
 
nav {
    width: 1140px;
    max-width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;

    margin: 0 0px 0 -30px;
}
 
header a {
    color: #eee;
    margin-right: 40px;
    font-size: 15px;
    transition: color 0.3s ease;
    animation: slideUpAnimation 0.5s ease forwards;
    animation-delay: calc(0.3s * var(--i));
    display: inline-block;
    opacity: 0;
}
 
header a:hover {
    color: orange;
}
.right-header{
  display: flex;
  align-items: center;
  justify-content: end;
  grid-gap: .8rem;
  margin-left: -40px;
}
 
.chat-btn{
  background: var(--gradient-color-bg);
  color: #fff;
  padding: 8px 10px;
  border-radius: 5px;
  font-weight: 500;
  transition: all .3s ease;
  margin-right: -120px;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}
 
.hamburger span {
    height: 3px;
    width: 25px;
    background: #eee;
    margin-bottom: 5px;
    transition: 0.3s;
}
 
 
@keyframes slideUpAnimation {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}




    /* ======================  responsive  ====================== */
    /* ======================  responsive  ====================== */
    /* ======================  responsive  ====================== */




    
@media (max-width: 768px) {
    .navbar {
        display: none; /* Initially hidden */
        position: absolute;
        top: -70px; /* Start position above the header */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 0%;
       
        animation: slideDownNavbar 0.5s forwards; /* Apply slide-down animation */
    }
    
    @keyframes slideDownNavbar {
        from {
            top: -200px; /* Start position above the viewport */
        }
        to {
            top: 70px; /* End position below the header */
        }
    }
    
 
    .navbar a {
        margin: 20px 0;
    }
 
 
    .right-header{
 
        margin-top: 1500px;
        margin-right: -50px;

        background-color: brown;

        /* display: none; */
    }
    .hamburger {
 
        /* height: 30px;
        width: 50px; */
        display: flex;
        /* background-color: blue; */
 
        margin-right: -350px;
        padding: 0%;
       
       /* display: block; */
    }
 
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
       
    }
 
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
 
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .navbar.active {
        display: flex;
    }
    header {
        height: 70px;
        width:100%;
        /* background-color: red; */
        position: fixed;
        top: 0;
 
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
 
 
        margin: 0;
    padding: 0%;
    }
 
    header nav{
 
 
        height: 40px;
        width:100%;
    /* background-color: aquamarine; */

/*
    display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center; */
    margin: 0;
    padding: 0%;

   
 
    }
    .logo {

        height: 60px; /* relative to the element's font size */
        width: 60px;
      
       margin: 0 0 0 -160px;
       padding: 0;

       /* background-color: coral; */

    }
    .logo a {
        height: 90%; /* relative to the element's font size */
        width: 90%;
    
        /* background-color: rgb(0, 42, 255); */
    
        margin: 0;
        padding: 0;
    
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
    

    .logo a img{
        height: 80%;
        width: auto;

        margin: 0;
        padding: 0;
        }

      /* .chat-btn{
       
       position: absolute;
       bottom: -830px;
       left: 290px;
     
      } */
}




/* ========  4k  =========== */
/* ========  4k  =========== */


@media screen and (min-width: 3840px) {

    header {

        height: 250px; /* Adjusted height for larger screens */

        width: 100%;

        margin: 0;
        padding: 0;
       

    }

   

    .logo {

        font-size: 65px; /* Increased font size for larger screens */

        margin-left: -1350px; /* Adjusted margin for larger screens */

    }

    .logo a img{
        height: 45%;
        width: auto;
        }

   

    nav {

        width: 1500px; /* Adjusted width for larger screens */

        max-width: 90%; /* Adjusted max-width for larger screens */

      margin-left: 0px;
    }

   

    header a {

        font-size: 45px; /* Increased font size for larger screens */

        margin-right: 60px; /* Adjusted margin for larger screens */

    }

   

    .right-header {

        margin-right: -1000px;
        margin-left: 0px;


    }

    .right-header a{
        font-size:40px ;
        padding: 15px;
        border-radius: 10px;
    }

    .chat-btn {

        margin-right: -150px;

        background-color: blue;

    }

   

    .hamburger {

        display: flex; /* Display hamburger menu icon for larger screens */

        display: none;

    }

}



