body{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size:14px;
	color:#888;
  overflow-x: hidden;
}
.content-display{
  max-height: 520px;
  overflow-y: scroll;
  width: 100%;
}
.login-bg{background-image: url('../front.png'); background-repeat: no-repeat; background-size: cover; height: 100vh;}
.login-form{width: 32%; display: block; float: right; margin-top: 3em; background: #f5f5f5; border-radius: 7%; padding: 1em;}

.login-div{padding: 10px 7px;}
a {
    text-decoration: none;
    cursor: pointer;
}
.login-page {
    width: 100%;
    height: 100vh;
    display: inline-block;
    display: flex;
    align-items: center;
}
.form-right i {
    font-size: 100px;
}
.side-navbar {
    width: 250px;
    height: 100%;
    position: fixed;
    margin-left: -300px;
    background-color: #06005f;
    transition: 0.5s;
    color: #FFF;
  }
   .nav-link a{
    color: #FFFFFF !important;
    cursor: pointer;
   }
/* Base styling for nav items */
.nav-item ul {
  list-style: none;
  padding-left: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

.nav-item ul li {
  position: relative; /* For positioning child elements */
}

.nav-item ul li a {
  display: block;
  background: #F5F5F5;
  color: #333 !important;
  padding: 0.5em 1em;
  text-decoration: none;
  border: 1px solid #ddd; /* Optional: Adds a border around items */
  position: relative; /* For positioning pseudo-elements */
}

.nav-item ul li a:hover {
  background: #e0e0e0; /* Light grey background on hover */
}

/* Add tree lines and arrows */
.nav-item ul li::before {
  content: '';
  position: absolute;
  left: -1.5em; /* Adjust based on your design */
  top: 50%;
  height: 1em;
  width: 1em;
  border-left: 1px solid #ddd; /* Vertical line */
  border-bottom: 1px solid #ddd; /* Horizontal line */
  border-radius: 0 0 0 0; /* For corner styling */
  transform: translateY(-50%);
}

.nav-item ul li > ul {
  display: none; /* Hide nested lists by default */
  padding-left: 2em; /* Indent nested lists */
}

.nav-item ul li:hover > ul {
  display: block; /* Show nested lists on hover */
}

.nav-item ul li > ul > li::before {
  border: none; /* Remove line for sub-items */
}

.nav-item ul li > ul > li > ul::before {
  border: none; /* Remove line for sub-sub-items */
}

.nav-item ul li > ul > li > ul > li::before {
  border-left: 1px solid #ddd; /* Vertical line for deeper levels */
  border-bottom: 1px solid #ddd; /* Horizontal line for deeper levels */
  left: -2.5em; /* Adjust based on your design */
}
/* add ucstom css in nav menu */
/* article blog css */
.blog-article {
  transition: transform 0.3s ease-in-out;
}
.blog-article a:hover{
   cursor: pointer;
}

.blog-article:hover {
  transform: scale(1.02);
  background: #F5F5F5;
}

.img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.blog-article:hover .img-container img {
  transform: scale(1.1);
}

/* blog css end */

   .nav-item ul li a:hover{
    background: #DDD;
    color: #008000 !important;
    padding-left: 2em !important;
   }
   .nav-link{
    cursor: pointer;
   }
  
  .nav-link:active,
  .nav-link:focus,
  .nav-link:hover {
    background-color: #ffffff26;
  }
  
  .my-container {
    transition: 0.4s;
  }
  
  .active-nav {
    margin-left: 0;
  }
  
  /* for main section */
  .active-cont {
    margin-left: 250px;
  }
  
  #menu-btn {
    background-color: #100901;
    color: #fff;
    margin-left: -62px;
  }
  
  .my-container input {
    border-radius: 2rem;
    padding: 2px 20px;
  }