@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;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%; /* Ensure the body takes full height of the viewport */
  font-family: "Poppins", sans-serif;
}

.consult-page{
  height: 100%;
  width: 100%;
  background: url("img/Portal-bg.png") ;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}



.main-consult {
  display: flex;
 height: 100%;

}

.consult-left {
  color: white;
  height: 100%;
  display: flex;
  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);

}
.sidelogo img{
  height: 80px;
  width: 90px;
}
.menu-icon img{
  height: 50px;
  width: 95px;
}

.sm-div {
  list-style: none;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.sm-links {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.sm-links :hover {
  color: rgb(222, 220, 220);
}

.logout-button a {
  text-decoration: none;
  display: block;
  color: white;
  font-size: 20px;
  font-weight: 400;
}

.logout-button a:hover {
  color: #dbd7d7;
}

.consult-header-info ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
  margin: 21px 17px;
}

.consult-header-info ul li a {
  font-size: 25px;
}

.consult-header-info ul li a img{
  height: 44px;
  width: 44px;
}
.consult-right {
  width: 100%;
  


}
.consolt-header {
  justify-content: right;
  display: flex;
  padding-bottom: 10px;
  align-items: center;
  
  /* border-bottom: 2px solid #033a70; */
}
.footer-heading h1{
  margin-top: 18rem;
  text-align: left;
  margin-left: 115px;
  font-size: 25px;
  color: #fff;
  
  font-weight: 500;
}
.footer-heading p{
  text-align: justify;
  margin-left: 125px;
  font-size: 19px;
  color: #fff;
}





/* 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;
  margin-bottom: 20px;
}

/* Confirmation Text */
.confirmation-text {
  font-size: 33px;
  margin-top: 30px;
  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;

}

@media only screen and (max-width: 768px) {
  .main-consult {
    flex-direction: column; /* Stack elements vertically */
    height: 800px;
  }


  
  .consult-left {
    position: fixed;
    left: -200px; /* Hide sidebar by default */
    height: 100vh;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .consult-left.show {
    left: 0; /* Show sidebar when toggled */
  }

  .consult-right {
    width: 100%; /* Take full width */
    margin-left: 0; /* Reset margin for full width */
  }

  .menu-icon {
    display: block; /* Ensure the menu icon is visible on mobile */
    cursor: pointer;
  }
  .footer-heading h1 {
    margin-top: 9rem;
    margin-bottom: 18px;
    margin-left: 0;
    text-align: center;
}
.footer-heading p {
  margin-left: 1rem;
  font-size: 12px;
}
.menu-icon-bar{
  position: relative;
  top: 3rem;
  left: 1rem;
  display: block;
}
 
}



.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip {
  display: none;
  position: absolute;
  top: 69px;
  right: -172px;
  transform: translateX(-50%);
  width: 314px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 15px;
  color: #333;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(100px);
  z-index: 10;
  text-align: left;
}

.tooltip::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 87%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 25px 25px 25px;
  border-color: transparent transparent rgba(255, 255, 255, 0.15) transparent;
}

.tooltip .profile-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.tooltip .profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.tooltip .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tooltip h2 {
  font-size: 18px;
  margin: 0;
  color:black;
}

.tooltip .edit a {
  font-size: 12px;
  color: black;
  text-decoration: none;
  cursor: pointer;
  margin-top: 5px;
}

.tooltip .info {
  font-size: 14px;
  color: black;
  margin-top: 10px;
}

.tooltip .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.tooltip .info-row img {
  width: 13px;
  margin: 0 5px;
}

.tooltip-container:hover .tooltip {
  display: block;
}

.right-column{
  margin: 0 5px;
}



