@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 {
  font-family: "Poppins", sans-serif;
  height: 100%;
}

.consult-page{
  height: 100%;
}

.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;
}

.consult-header-info ul li a {
  font-size: 25px;
}

.consult-header-info ul li a img{
  height: 50px;
  width: 50px;
}
.consult-right {
  width: 100%;
  margin: 20px 40px;
}
.consolt-header {
  display: flex;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #033a70;
}

.main-logo{
  text-align: center;
  margin: 20px 0;
}
.main-logo img{
  height: 187px;
  width: 864px;
}

.consult-form {
  padding: 20px 30px;
  display: flex;
  gap: 100px;
}

.form-left {
  flex: 1;
}
.form-right {
  flex: 1;
}

.form-left div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-right div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.flex-col{
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 25px;
}

label {
  color: #062747;
  font-size: 18px;
  font-weight: 400;
  margin: 5px 10px;
}

input,
select {
  padding: 20px;
  background-color: rgba(234, 234, 234, 1);
  color: #212121;
  font-size: 22px;
  margin: 4px 0px;
  border-radius: 15px;
  border: none;
  outline: none;
  /* backdrop-filter: blur(100px) */

}

input::placeholder {
  color: rgba(1, 29, 59, 1);
  font-size: 20px;
  font-weight: 500;
}

textarea {
  border-radius: 10px;
  background-color: rgba(234, 234, 234, 1);
  border: 1px solid rgba(1, 29, 59, 1);
}
textarea::placeholder {
  color:  rgba(1, 29, 59, 1);
  font-size: 18px;
  text-align: justify;
  margin: 0 10px;
  font-style: normal;
  font-family: 'Arial', sans-serif;
 
}

.button-container {
  display: inline-block;
  margin: 26px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffcc33; /* Yellow background */
  color: #002244; /* Dark blue text color */
  border: none;
  border-radius: 12px; /* Rounded corners */
  padding: 10px 20px;
  font-size: 20px;
 font-weight: bold;
  cursor: pointer;
  width: 160px;
  height: 50px;
  position: relative;
  outline: none;
}

.submit-btn .text {
  flex: 1;
  text-align: left;
}

.submit-btn .arrow {
  background-color: transparent;
  padding-left: 10px;
  border-left: 1px solid #002244; /* Line separator */
  color: #002244;
  font-size: 18px;
}
.right{
  text-align: right;
}

.form-footer {
  text-align: center;
  font-size: 30px;
  margin: 30px 0px;
}

.form-footer a {
  color: #212121;
  margin: 0px 20px;
  text-decoration: node;
  color: #033a70;
}
      /* responsive-section */
  


     

      /* Mobile view styling */
@media only screen and (max-width: 768px) {

  .consult-left {
    position: fixed;
    left: -200px; /* Hide sidebar by default */
    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;
  }
  .main-logo img {
    width: 250px;
    height: 75px;
}
.consult-form {
  flex-wrap: wrap;
  gap: 5px;
}
.consult-right {
  width: 100%;
  margin: 0;
}
.consult-header-info ul li a img {
  height: 40px;
  width: 40px;
}
 
}




.sidebar-toggle a{
  text-decoration: none;
  color: #000;
}




/* 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;
}



/* 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;

}