* {
    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;
  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);
  }
  
  .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 {
    
    width: 80%;
    padding: 20px;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 24px;
  }
  
 button{
  border: none;
  background-color: transparent;
 }
  button a{
    text-decoration: none;
    border: none;
    font-size: 20px;
    margin-right: 35px;
    padding: 5px 10px;
    cursor: pointer;
    color: rgba(1, 29, 59, 1);
    font-weight: 600;
  }
.active{
    color: rgba(254, 207, 15, 1);
  }
  
  header .search-bar {
    border: 2px solid rgba(1, 33, 66, 1);
    border-radius: 15px;
    padding: 12px;
    width: 216px;
  }
  
  .services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 5rem;
  }
  
  .service-card {
    display: flex;
    align-items: center;
    background-color: white;
    justify-content: space-around;
    border: 2px solid #001F3F;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
  

.service-icon img{
  height: 150px;
  width: 150px;
}
span{
  position: relative;
    right: 39px;
    top: 5px;
}
span img{
  width: 18px;
}
  
  .service-info h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: rgba(1, 29, 59, 1);
  }
  
  .service-info p {
    margin: 7px 0;
    color: rgba(1, 29, 59, 1);
  }
  
 .renawal-section{
  text-align: center;
 }
  .renawal-img img{
    height: 520px;
  }

  /* responsive-divison */

  @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;
  }

  .sub-nav{
    flex-wrap: wrap;
    gap: 15px;
  }
  main {
    
    width: 100%;
    padding: 0;
  }
  button a{
    margin-right: 0;
    padding: 0;
    font-size: 12px;
    margin: 0 9px;
  }
  .input-searxh{
    margin: 0 4rem;
  }

  .services {
    margin-top: 2rem;
  }
  .service-card {
   gap: 5px;
  }
  
  }


  
/* 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;

}