/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

    /* AI Bot Starts */
    
    .ai-bot-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .ai-bot-icon img {
      width: 70px;
      /* Adjust the size of the icon as needed */
      border-radius: 60%;
      /* Make the icon circular */
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
      /* Add a shadow effect */
  }

  .ai-bot-icon:hover {
      transform: scale(1.1);
      /* Zoom in slightly on hover */
  }
/* AI Bot Ends */

/* for logo start */
.logo{
  margin-left: -30px;
}
/* for logo end */

.sidebar {
  position: fixed;
  height: 100vh;
  width: 260px;
  background: #11101d;
  padding: 15px;
  z-index: 99; 
  /*position: fixed;
  top: 0;
  width: 85vw;
  z-index: 1000;
  background: linear-gradient(to , rgba(143, 143, 143, 0.196), rgba(137, 255, 243, 0.333));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(147, 255, 97, 0.772);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  backdrop-filter: blur(1px);*/
}
.logo {
  font-size: 25px;
  padding: 0 15px;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
}
.menu-content {
  position: relative;
  height: 100%;
  width: 100%;
  margin-top: 40px;
  overflow-y: scroll;
}
.menu-content::-webkit-scrollbar {
  display: none;
}
.menu-items {
  height: 100%;
  width: 100%;
  list-style: none;
  transition: all 0.4s ease;
}
.submenu-active .menu-items {
  transform: translateX(-56%);
}
.menu-title {
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
}
.item a,
.submenu-item {
  padding: 16px;
  display: inline-block;
  width: 100%;
  border-radius: 12px;
  font-size: 22px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-weight: 100;
}
.item i {
  font-size: 22px;
}
.item a:hover,
.submenu-item:hover,
.submenu .menu-title:hover {
  background: rgba(255, 255, 255, 0.1);
}
.submenu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.submenu {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: calc(-100% - 26px);
  height: calc(100% + 100vh);
  background: #11101d;
  display: none;
}
.show-submenu ~ .submenu {
  display: block;
}
.submenu .menu-title {
  border-radius: 12px;
  cursor: pointer;
}
.submenu .menu-title i {
  margin-right: 10px;
}
.navbar,
.main {
  left: 260px;
  width: calc(100% - 260px);
  /* background-color: rgb(116, 64, 64); */
  transition: all 0.5s ease;
  z-index: 1000;
}
.sidebar.close ~ .navbar,
.sidebar.close ~ .main {
  left: 0;
  width: 100%;
}
.navbar {
  position: fixed;
  color: #fff;
  padding: 15px 20px;
  font-size: 25px;
  background: rgb(10,10,10);
  cursor: pointer;
  height: 90px;
}
.navbar #sidebar-close {
  cursor: pointer;
  position: relative;
  margin-left: 25px;
  margin-top: 10px;
}

.custom-cursor{
  position:fixed;
  width:50px;
  height:50px;
  background-image : url("../static/das.png");
  background-size:cover;
  pointer-events: none;
  -webkit-transition:all 50ms linear;
  transition:all 50ms linear;

}
.main {
  position: relative;
  display: flex;
  z-index: 100;
  /* top:-10px; */
  background-color: rgb(10,10,10);
}
.uil uil-bars navOpenBtn{
  margin-left: 23px;
}
.main h1 {
  color: #0d0d0d;
  font-size: 50px;
  

}

.nav {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 200px;
  background: #11101d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
}
.nav,
.nav .nav-links {
  display: flex;
  align-items:left;
}
.nav {
  /* justify-content: space-between;
  top: 0;*/
  justify-content: space-between;
  width: 81.8vw;
  position: fixed;
  z-index: 1000;
  background: linear-gradient(to top, rgba(143, 143, 143, 0.196), rgba(137, 255, 243, 0.333));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(147, 255, 97, 0.772);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  backdrop-filter: blur(1px); 
  margin-left: 260px;
}
a {
  color: #fff;
  text-decoration: none;
}
.nav .logo {
  font-size: 10px;
  font-weight: 500;
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
}


.nav .navOpenBtn .nav .navCloseBtn {
  display: none;
}