* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
   html,body {
    font-family: Arial, sans-serif;
    height: 100%;
  }
  
  .container {
    display: flex;
    width: 100%;
    gap: 5rem;
    height: 100%;
  }
  
  .sidebar {
    color: white;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 10px;
  width: 170px;
  background-color: rgba(1, 29, 59, 1);
  ;
  border-radius: 0px 30px 30px 0px;
  box-shadow: 7px 0px 100px 0px rgba(1, 29, 59, 0.5);
  }
  
  .sidebar .logo img {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .middle-icon {
    margin: auto 0;
    font-size: 40px;
    color: white;
  }
  
  .social-logout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .social-links a {
    color: white;
    font-size: 18px;
    text-decoration: none;
  }
  
  .logout a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .logout a i {
    margin-right: 10px;
  }

  
  .sidelogo img{
    height: 80px;
    width: 90px;
    margin: 0 14px;
  }
  .menu-icon img{
    height: 50px;
    width: 95px;
  }
  

  
.consult-header-info ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
}

.consult-header-info ul li a {
  font-size: 25px;
}

.consult-header-info ul li a img{
  height: 50px;
  width: 50px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.top-bar .back {
  display: flex;
  align-items: center;
}

.top-bar .back i {
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.top-bar .back a {
  text-decoration: none;
  color: black;
} 
.top-bar h1 {
  font-size: 24px;
}

.top-bar .icons i {
  font-size: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.divider {
  height: 1px;
  background-color:rgba(1, 29, 59, 1);
  margin-bottom: 20px;
}
  main {
    height: 100%;
    width: 80%;
    padding: 20px;
  }
  
.banner-container{
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.banner-img img{
  width: 100%;
  height: 10rem;
}
  
@media only screen and (max-width: 768px) {

  .sidebar {
    position: fixed;
    left: -200px; /* Hide sidebar by default */
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .sidebar.show {
    left: 0; /* Show sidebar when toggled */
  }

  .sidebar{
    width: 170px;
    margin-left: 0; /* Reset margin for full width */
  }

  .menu-icon {
    display: block; /* Ensure the menu icon is visible on mobile */
    cursor: pointer;
  }
  .sidebar {
    margin: 0;
  }
  .consult-header-info ul li a img {
    height: 35px;
    width: 36px;
}
.consult-header-info ul {
  gap: 20px;
}
.consult-right {
  margin: 0;
}
main {  
  width: 100%;
  padding: 0;
  
}
.banner-img img{
  width: 100%;
  height: 5rem;
}


}

@media (max-width:920px) {
  .banner-img img{
    width: 100%;
  }
  .container {
    gap: 2rem;
  }
}




/* Popup Container */
.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup.hidden {
  display: none;
}

.popup-content {
  background-color:rgba(1, 33, 66, 0.1);
  border-radius: 12px;
  width: 700px;
  text-align: center;
  color: #fff;
  padding: 30px;
  backdrop-filter: blur(100px);

  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 1);
  
}

/* Logo Section */
.logo-box img {
  width: 300px;

}

/* Confirmation Text */
.confirmation-text {
  font-size: 33px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

hr {
  border: none;
  height: 2px;
  background-color: #fff;
  width: 18%;
  margin: 11px auto 30px;
}

/* Button Group */
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.popup-btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  background-color: #4b4b4b;
  color: #fff;
  transition: background-color 0.3s ease;
}

.popup-btn:hover {
  background-color: #636363;
}

.confirm {
  background-color: rgba(254, 207, 15, 1);
  color: #000;
}
.confirm a{
  text-decoration: none;
  color: #000;
}
.confirm:hover {
  background-color: #ffda33;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
}

.social-icons a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f6c708;
}



.menu-icon-bar{
  position: relative;
  top: 3rem;
  left: 1rem;
  display: none;
}

.menu-icon-bar i{
  font-size: 28px;
  color: #fff;

}