/*body {*/
/*  margin: 0;*/
/*  font-family: sans-serif;*/
/*  background-color: #f3f4f6;*/
/*  font-family: Arial, sans-serif;*/
/*}*/

.navbar {
  background-color: #497dc2;
  color: white;
  padding: 12px 16px;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-left img {
  width: 100%;
  height: 10vh;
}

.logo {
  height: 24px;
}

.site-name {
  font-weight: 600;
  font-size: 25px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
}

.quick-btn {
  background-color: #497dc2;
  color: white;
  border: 0.0001px solid white;
  border-radius: 5px;
}

.quick-btn:hover {
  background-color: #155a9b;
}

.login-btn {
  background-color: white;
  color: #1a4e91;
}

.login-btn:hover {
  background-color: #e5e7eb;
}

.search-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 27px;
}

.search-input {
  padding: 6px 32px 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  border: none;
}

.search-icon-inside {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #1660a7;
  font-size: 14px;
  pointer-events: none;
}

.search-icon {
  background-color: #497dc2;
  border: 0.5px solid white;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  color: white;
}








.dropdown-container {
  position: relative;
  display: inline-block;
  margin: 0;
}

.dropdown-button {
  background-color: #497dc2;
  color: white;
  padding: 8px 14px;
  border: 1px solid white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-button:hover {
  background-color: #3a6ab0;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 80%;
  right: 0;
  margin-top: 6px;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 6px 0;
  list-style: none;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 10px 16px;
  cursor: pointer;
  color: #497dc2;
  white-space: nowrap;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.dropdown-menu li:hover {
  background-color: #f5f7fa;
}

/* Keep dropdown visible when hovering the button or menu */
.dropdown-container:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

.home-icon {
  color: #1660a7;
  font-size: 18px;
}

.container1 {
  display: flex;
  gap: 10px;
  margin-top: 0px;
  margin-left: 100px;
  margin-right: 100px;
  background-color: white;
  border-radius: 10px;
}

.icn {
  margin-top: 15px;
  margin-left: 22px;
}

.container1 .pa1 {
  color: #1660a7;
}

.container2 {
  background-color: white;
  margin-left: 100px;
  margin-right: 100px;

  margin-top: 50px;
  display: flex;
  gap: 20px;
  position: relative;
  border: none;
  border-bottom: 1px solid white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.container2 .para{
position: absolute;
left: 220px;
}

.para .p1 {
  color: #1660a7;
  font-family: Arial, sans-serif;
}

.para .p2 p {
  font-size: 20px;
  font-weight: lighter;
  font-family: Arial, sans-serif !important;
}

.heading {
  font-size: 6px;
  margin-left: 21px;
  margin-top: 20px;
  display: flex;
}

.heading img {
  width: 22%;
  height: 29%;
  margin-top: 10px;
}

.bot {
  position: relative; /* or remove 'position' entirely if not needed */
  margin-left: auto; /* pushes it to the right */
}

.bot button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 15px;
  font-size: 14px;
  background-color: rgb(238, 238, 238);
  color: #949494;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bot button:hover {
  background-color: #f0f0f0;
  border-color: #1660a7;
  color: #1660a7;
}

.bot button i {
  font-size: 16px;
  color: inherit;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 999;
  padding: 6px 0;
}

.dropdown-content a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
}

.bot:hover .dropdown-content {
  display: block;
}

.bot button i {
  font-size: 16px;
  color: inherit;
}

.left_container {
  margin-left: 91px;
  text-align: center;
  height: 613px;
  background-color: rgba(231, 235, 238, 0.5);
  border: none;
  width: 30%;
  margin-top: -20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left_container .para1 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
}

.warning-icon {
  background: none;
  background-color: transparent;
  color: gray;
  font-size: 45px;
}

.para2 {
  font-family: Arial, sans-serif;
  margin-top: 50px;
}

.left_container .para2 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: auto;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  padding-bottom: 30px;
}

.left_container .para3 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: auto;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  padding-bottom: 30px;
}

.container3 {
  display: flex;
    /* justify-content: space-between;
    align-items: center; */
  padding: 10px;
}

.right_container {
  margin-right: 90px;
  margin-top: -97px;
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 21px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 60%;
}

.form-wrapper {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 110px;
  font-family: Arial, sans-serif;
}

.form-description {
  font-size: 14px;
  margin-bottom: 15px;
  color: #333;
}

.form-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-weight: bold;
  color: #1660a7;
  background-color: #eaf2fd;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.form-group {
  margin-top: 20px;
}

label.required::before {
  content: "* ";
  color: #007bff;
}

input[type="text"],
.captcha-input {
  width: 97%;
  padding: 10px;
  margin-top: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.helper-text {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.captcha-img {
  width: 100px;
  height: 40px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.captcha-arrow {
  font-size: 20px;
  color: #333;
}

.captcha-input {
  width: 120px;
}

.submit-box {
  margin-top: 30px;
  padding: 20px;
  background-color: #edf5fd;
  border-top: 2px solid #1660a7;
  border-radius: 0 0 6px 6px;
  text-align: center;
}

.submit-btn {
  background-color: #1660a7;
  color: white;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.submit-btn i {
  font-size: 14px;
}

.captcha-container {
  margin-top: 20px;
}

.captcha-combined {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px dotted #ccc;
  border-radius: 5px;
  padding: 8px 233px;
  width: fit-content;
  background-color: white;
}

.captcha-img {
  width: 90px;
  height: 40px;
  object-fit: contain;
}

.captcha-arrow {
  margin: 0 10px;
  font-size: 20px;
  color: #333;
}

.captcha-input-box {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 6px 8px;
  width: 120px;
}

.footer {
  background-color: #3a3c3f;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 30px;
  font-family: Arial, sans-serif;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cfd4d8;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-box,
.social-box {
  background-color: transparent;
  border: 1px solid #cfd4d8;
  padding: 15px;
  border-radius: 10px;
}

/* .social-box{
  width: 270px;
}
.contact-box{
  width: 270px;
} */

.contact-box p {
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-box ul,
.social-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-box ul li,
.social-box ul li {
  color: #cfd4d8;
  font-size: 14px;
  margin: 8px 0;
  border-bottom: 1px dotted #cfd4d8;
  padding-bottom: 6px;
}

.social-box ul li {
  /* border: none; */
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer i {
  margin-right: 8px;
  color: #fff;
}

.footer-coly {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  /* background-color: #1c1e22; /* Optional background */
  padding: 0px 20px;
  position: relative;
  bottom: 144px;
  right: 20px;
}
.footer-coly .new2{
  position: absolute;
  left: 280px;
}


.footer-coly h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-coly ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-coly ul li {
  margin-bottom: 8px;
}

.footer-coly ul li a {
  color: #cfd4d8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-coly ul li a:hover {
  color: white;
  text-decoration: underline;
}



.footer-bottom {
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 1px dotted #cfd4d8;
  width: 100%;
  margin-top: 45px;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-logos img {
  height: 40px;
  object-fit: contain;
}

.footer-copy a {
  color: #ccc;
  text-decoration: underline;
}

.footer-copy {
  border-top: 1px dotted #cfd4d8;
  padding-top: 10px;
  width: 100%;
}

.footer-bottom .sec {
  display: flex;
  margin-left: 60px;
  gap: 60px;
  margin-top: 10px;
}

.footer-bottom .p1 {
  font-size: 13px;
}







/* <---------------------------------------------------------------------> */
/* Doc2 quick css */
.containers2 {
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 23px;
  background-color: white;
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  position: relative;
  border: none;
  border-bottom: 1px solid white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.containers2 .paara2 {

  color: #3b77ac;
}

.left_container .pa1 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
  color: #3b77ac;
}

.left_container .pa2 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
  color: #3b77ac;
}

.left_container .pa3 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
  color: #3b77ac;
}

.left_container .pa4 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
  color: #3b77ac;
}


.solution-center {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
}

.intro p {

  padding: 8px;
  border-radius: 5px;
  color: #1c1c1c;
}

.question-box {

  background-color: #e8ebee;

  padding: 1px 0px 1px 22px;


  border-radius: 5px;

}

.option-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.option-btn {
  background-color: #f4f6f9;
  border: 1px solid #d2d6dc;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
}

.option-btn:hover {
  background-color: #e3e7ec;
}

.option-number {
  font-size: 18px;
  margin-right: 10px;
  color: #005f9e;
  margin-bottom: 8px;
}

.rights_container {
  margin-right: 90px;
  margin-top: -31px;
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 21px;
  height: 585px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.containers {
  background: #fff;
  max-width: 750px;
  margin: 32px auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  padding: 32px 32px 24px 32px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 2px;
}

.edevlet-logo {
  width: 56px;
  height: 56px;
}

.edevlet-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 2px;
}

.edevlet-subtitle {
  font-size: 0.95em;
  color: #666;
  font-weight: 500;
}

.gov-logo {
  text-align: right;
}

.govtr-logo {
  width: 164px;

}

.govtr-title {
  font-size: 0.95em;
  font-weight: 500;
}

.govtr-link {
  font-size: 0.85em;
}

.tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px
}

.tab {
  flex: 1;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px 8px 8px 8px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.tab:hover {
  color: rgb(56, 56, 255);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 255, 0.3);
}



.info-text {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

.info-text a {
  color: #1976d2;
  text-decoration: underline;
  font-weight: 500;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login-form label {
  font-weight: 500;
  margin-bottom: 2px;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 8px;
  margin-bottom: 8px;
}

.input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 1em;
  outline: none;
}

.input-icon {
  color: #bbb;
  font-size: 1.2em;
  margin-left: 8px;
  cursor: pointer;
}

.forgot-text {
  font-size: 0.95em;
  color: #333;
  margin-bottom: 2px;
}

.blue-text {
  color: #1976d2;
  font-weight: 500;
}

.forgot-link {
  color: #1976d2;
  text-decoration: underline;
  font-size: 1em;
  margin-bottom: 10px;
  display: inline-block;
}

.button-row {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 18px;
}

.cancel-btn {
  background: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 24px;
  padding: 10px 32px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.cancel-btn:hover {
  background: #d0d0d0;
}

.login-btyn {
  background: linear-gradient(90deg, #1976d2 0%, #1565c0 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 14px 100px;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.login-btyn:hover {
  background: linear-gradient(90deg, #1565c0 0%, #1976d2 100%);
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
  margin-bottom: 18px;
}

.form-label {
  min-width: 180px;
  max-width: 180px;
  font-weight: bold;
  text-align: left;
  margin-right: 16px;
  color: #222;
}

.input-group {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
}

.input-group input {
  width: 100%;
  padding: 10px 36px 10px 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
  pointer-events: none;
}

.forgot-text {
  margin-top: -8px;
  font-size: 12px;
  color: #333;
  max-width: 404px;
  margin-left: 196px;
  box-sizing: border-box;
}

.blue-text {
  color: #007BFF;
  font-weight: 500;
}

.button-row {
  border-radius: 5px solid;
}

.forgot-link {
  position: relative;
  left: 228px;
}

/* <-------------------------------------------------------------------------> */
/* Doc 3 */
.conteiners2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: white;
}

.containerss2 {
  background-color: white;
  margin-left: 100px;
  margin-right: 100px;

  margin-top: 50px;
  display: flex;
  gap: 0px;
  position: relative;
  border: none;
  border-bottom: 1px solid white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.containerss2 .para .p1 {
  margin-top: 32px;
}
.containerss2 .para {
   position: absolute;
    right: 790px;
}
.containerss2 .bote {
       position: absolute;
    left: 1000px;
    top: 33px;
}


.container2 .bot {
  position: absolute;
  top: 37px;
  right: 45px; /* Move to the right side */
  display: flex;
  justify-content: center;
}

.bote button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 15px;
  font-size: 14px;
  background-color: rgb(238, 238, 238);
  color: #949494;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bote button:hover {
  background-color: #f0f0f0;
  border-color: #1660a7;
  color: #1660a7;
}

.bote button i {
  font-size: 16px;
  color: inherit;
}





.bote .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 999;
  padding: 6px 0;
}

.bote .dropdown-content a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.bote .dropdown-content a:hover {
  background-color: #f5f5f5;
}


.bote:hover .dropdown-content {
  display: block;
}




.egov-container {
  background: white;
  margin-right: 182px;
  margin-bottom: 110px;
}

.egov-header {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.egov-header h2 {
  margin: 50px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.egov-header a {
  font-size: 14px;
  color: #0073e6;
  text-decoration: none;
}

.egov-contact {
  padding: 20px;
}

.egov-contact h3 {
  background-color: #f0f0f0;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;

}

.contact-row {
  display: flex;
  padding: 10px 0;
  border-top: 1px dotted #ccc;
}

.contact-label {
  flex: 0 0 150px;
  font-weight: 600;
  color: #69abed;

}

.contact-value {
  flex: 1;
  color: #444;
}

.contact-value a {
  color: #0073e6;
  text-decoration: none;
}

.contact-row:first-of-type {
  border-top: none;
}

.lefty_container {
  margin-left: 91px;

  text-align: center;

  height: 900px;
  background-color: rgba(231, 235, 238, 0.5);

  border: none;
  width: 19%;
  margin-top: -20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lefty_container .para1 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
}

.lefty_container .para2 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
}

.lefty_container .para3 {
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
  padding-top: 40px;
}

.righty_container {
  margin-right: 90px;
  margin-top: -60px;
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 21px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location {
  position: relative;
  bottom: 70px;
}




/* <-------------------------------------------------------------------------> */
/* Doc 4 */


.containery {
  background: #fff;
  max-width: 800px;
  margin: 24px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 36px 36px 24px 36px;
  margin-bottom: 22px;
}

.containery h1 {
  text-align: center;
  color: #3b77ac;
  font-size: 2em;
  margin-bottom: 24px;
}

.containery h2 {
  color: #3b77ac;
  font-size: 1.2em;
  margin-top: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}

.containery ul,
ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 24px;
}

.containery .footerr {
  margin-top: 32px;
  padding: 16px 0 0 0;
  border-top: 1px solid #e0e0e0;
  color: #888;
  font-size: 0.95em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.containery .footerr .note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.containery .footerr .date {
  font-size: 0.95em;
}

.containery a {
  color: #3b77ac;
  text-decoration: underline;
}

.containery .yellow-box {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  color: #b8860b;
  padding: 10px 16px;
  border-radius: 6px;
  margin-top: 18px;
  font-size: 0.98em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.containery .yellow-box img {
  height: 24px;
}





/* <----------------------------------------------------------------------------------> */
/* Doc 5 */

.main .hero {
  background: url("{{ asset('asset/images/m00019.1.8.0.png') }}") center/cover no-repeat;
  min-height: 298px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0px;
  position: relative;
}

.main .hero .search-bar-container {
  width: 600px;
  max-width: 90vw;
  /* margin: 0 auto; */
  margin-top: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main .hero .search-bar-container .search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 0 18px;
  width: 135%;
  height: 52px;
  margin-bottom: 18px;
}

.search-bar input {
  border: none;
  outline: none;
  font-size: 1.1em;
  flex: 1;
  background: transparent;
  padding: 0 10px;
  height: 40px;
}

.search-bar .fa-search {
  color: #497dc2;
  font-size: 1.3em;
  cursor: pointer;
}

.subtitle {
  color: #fff;
  font-size: 1.15em;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.features-row {
    display: flex;
    margin-top: -80px !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 36px;
    padding: 36px 24px 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon i {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

.feature-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .feature-box {
        width: 100%;
        max-width: 300px;
    }

    .features-row {
        justify-content: center;
    }
}

/* @media (min-width: 1201px) {
  .features-row {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
} */


.feature-icon {
  background: #497dc2;
  color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 6px;
  color: #222;
  text-align: center;
}

.feature-desc {
  color: #666;
  font-size: 0.98em;
  text-align: center;
}

.main .box1 {
  position: relative;
  /* background-color: white; */
}

.main {
  background-color: white;
}

.box2 .slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 250px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.box2 .slider-container .slide {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.box2 .slider-container .slide .slide-item {
  min-width: 100%;
  display: flex;
}

.box2 .slider-container .slide .slide-item .left {
  width: 70%;
  background-size: cover;
  background-position: center;
}

.box2 .slider-container .slide .slide-item .right {
  width: 30%;
  padding: 40px;
  /* background: #ffffff; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
}

.nav-left {
  left: 10px;
}

.left {
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.nav-right {
  right: 10px;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

.box2 {
  display: flex;
  background: linear-gradient(to top, #FFF 0, #e7ebee 100%), #f0f0f0;
}

/* .card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      width: 290px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    } */
.card {
  width: 30%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  height: 260px;
  margin-top: 50px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease; */

}

.card img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 5px;
  font-size: 20px;
}

.card p {
  color: #555;
  font-size: 14px;
}

.slider-card .right h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.slider-card .right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.slide-item .right button {
  /* background-color: #007bff; */
  background-color: white;
  color: #fff;
  padding: 12px 20px;
  /* border: none; */
  border: 1px solid rgb(103, 103, 255);
  border-radius: 16px;
  color: rgb(103, 103, 255);

  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* .slide-item .right button:hover {
  background-color: #0056b3;
} */

.box3 .card-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px 30px;
  max-width: 1272px;
  margin: 20px auto;
  box-sizing: border-box;
}

.box3 .card-container .box3-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  padding: 15px 12px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  cursor: pointer;
}

.box3 .card-container .box3-card:hover {
  background-color: #edf2f7;
}

.box3 .card-container .box3-card img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: white;
  padding: 5px;
}

.box3 .card-container .box3-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a202c;
}

.box3 {
  background: #e7ebee;
  background: -webkit-gradient(linear, left top, left bottom, from(#d9dee3), color-stop(25%, #e7ebee)), #f0f0f0;
  /* position: relative; */
  padding-top: 40px;
  padding-bottom: 70px;

}

.box4 {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 0px;
  padding: 70px 20px;
  background: linear-gradient(to right, #407ab1, #7ab2d6);
  flex-wrap: wrap;
}

.box4-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.box4-card:hover {
  transform: translateY(-5px);
}

.box4-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #f1f3f6;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box4-icon-wrapper i {
  font-size: 26px;
  color: #00aaff;
}

.box4-card h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.box4-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.box4-card a {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.box5 {
  background: rgb(231, 235, 238);
  border-radius: 12px;
  padding: 8px 0 32px 0;
  /* margin: 40px auto; */
  /* max-width: 1365px; */
}

.box5-title {
  text-align: center;
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 32px;
  color: #333;
  letter-spacing: 1px;
}

.box5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.box5-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  padding: 12px;
  border-radius: 6px;
  transition: background 0.3s;
}

.box5-item:hover {
  background: #eef1f5;
}


.box5-num {
  /* font-size: 1.3em; */
  color: #b0b0b0;
  font-weight: 600;
  /* margin-right: 8px; */
  min-width: 18px;
  text-align: right;
}

.box5-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  /* margin-right: 10px; */
}

.box5-inst {
  font-size: 1em;
  color: #222;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.box5-serv {
  color: #666;
  font-size: 0.98em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.box6 {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin: 40px auto;
  max-width: 1200px;
}

.box6-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  width: 40%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.box6-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.box6-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.box6-content {
  padding: 22px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.box6-title {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 2px;
  color: #222;
}

.box6-desc {
  color: #666;
  font-size: 1em;
}

.box7 {
  background: #24948b;
  padding: 48px 0 60px 0;
  color: #fff;
  text-align: center;
}

.box7-title {
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.box7-desc {
  max-width: 900px;
  margin: 0 auto 32px auto;
  font-size: 1.0em;
  color: #f3f3f3;
  line-height: 1.5;
}

.box7-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 28px;
  /* max-width: 1100px; */
  margin: 0 auto;
  margin-left: 100px;
  margin-right: 80px;
}

.box7-item {
  background: #fff;
  color: #24948b;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 16px 8px;
  /* font-size: 1.08em; */
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  min-width: 0;
}

.box7-item i {
  font-size: 1.5em;
  color: #24948b;
  min-width: 28px;
}

.box7-item:hover {
  background: #e0f7f5;
  color: #19706b;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
}

.box8 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-height: 353px;
  background: #fff url(/asset/images/t001.webp) no-repeat left center;
  background-size: cover;
  padding-left: 48px;
  box-sizing: border-box;
}

.box8-content {
  max-width: 540px;
  margin-right: 6vw;
  /* background: rgba(255,255,255,0.97); */
  border-radius: 16px;
  padding: 40px 36px 36px 36px;
  /* box-shadow: 0 4px 24px rgba(0,0,0,0.04); */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.box8-title {
  font-size: 1.7em;
  font-weight: 500;
  margin-bottom: 18px;
  color: #222;
}

.box8-desc {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 32px;
  max-width: 500px;
}

.box8-stores {
  display: flex;
  gap: 18px;
}

.box8-stores img {
  height: 48px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.15s;
}

.box8-stores img:hover {
  transform: scale(1.07);
}

.box9 {
  position: relative;
  background: #fff;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.box9-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.e-gov.az/assets/images/logo.svg') no-repeat left 2vw center;
  background-size: 38vw;
  opacity: 0.07;
  z-index: 1;
}

.box9-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  /* justify-content: flex-start; */
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 50 auto;
  padding: 32px 0 32px 0;
  gap: 36px;
}

.box9-logo {
  width: 110px;
  min-width: 90px;
  height: auto;
  display: block;
}

.box9-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.box9-title {
  font-size: 1.3em;
  color: #2d3a4a;
  font-weight: 400;
  margin-bottom: 8px;
}

.box9-btn {
  display: inline-flex;
  align-items: center;
  background: #4267b2;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  border-radius: 32px;
  padding: 14px 38px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(66, 103, 178, 0.08);
  transition: background 0.18s;
  letter-spacing: 0.5px;
}

.box9-btn:hover {
  background: #274a8a;
}

.box9-arrow {
  font-size: 1.3em;
  margin-left: 10px;
  font-weight: 400;
}

.box10 {
  position: relative;
  background: #4284be;
  color: #fff;
  text-align: center;
  padding: 60px 0 50px 0;
  overflow: hidden;
}

.box10-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url('https://www.turkiye.gov.tr/images/anasayfa/sosyal-bg.svg') no-repeat center center;
  background-size: cover;
  opacity: 0.18;
  z-index: 1;
}

.box10-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box10-title {
  font-size: 2.1em;
  font-weight: 400;
  margin-bottom: 18px;
  margin-top: 0;
}

.box10-desc {
  font-size: 1.08em;
  margin-bottom: 32px;
  color: #eaf6fa;
  max-width: 700px;
}

.box10-socials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.box10-social {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #222;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.08em;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: background 0.18s, color 0.18s;
}

.box10-social i {
  font-size: 1.2em;
}

.box10-twitter {
  color: #1da1f2;
}

.box10-facebook {
  color: #1877f3;
}

.box10-youtube {
  color: #e53935;
}

.box10-instagram {
  color: #b97a56;
}

.box10-social:hover {
  background: #eaf6fa;
  color: #3498b8;
}

.box10-hashtag {
  font-size: 2.5em;
  color: #eaf6fa;
  margin: 30px 0 18px 0;
  font-weight: 300;
  letter-spacing: 1px;
}

.box10-guide {
  display: inline-block;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: 1px solid #eaf6fa;
  border-radius: 18px;
  padding: 10px 32px;
  font-size: 1.08em;
  margin-top: 8px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.box10-guide:hover {
  background: #fff;
  color: #3498b8;
}

.box11 {
  background: #fff;
  padding: 60px 0 50px 0;
  text-align: center;
}

.box11-title {
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 38px;
  color: #444;
}

.box11-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.box11-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
}

.box11-label {
  font-size: 1.08em;
  color: #555;
  margin-bottom: 12px;
}

.box11-counter {
  display: flex;
  gap: 4px;
}

.box11-counter span {
  display: inline-block;
  background: #5a6a76;
  color: #fff;
  font-size: 2.1em;
  font-family: 'Consolas', 'Courier New', monospace;
  border-radius: 6px;
  padding: 0px 7px;
  margin: 0 1px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.box11-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 36px;
  border: 1.5px solid #5a6a76;
  border-radius: 24px;
  background: #fff;
  color: #444;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  letter-spacing: 0.5px;
}

.box11-btn:hover {
  background: #5a6a76;
  color: #fff;
}

.box11-arrow {
  font-size: 1.3em;
  margin-left: 10px;
  font-weight: 400;
}

.box12 {
  background: #e9eef2;
  padding: 80px 0 80px 0;
  text-align: center;
}

.box12-title {
  font-size: 1.6em;
  color: #377bb7;
  font-weight: 400;
  margin-bottom: 38px;
  line-height: 1.3;
}

.box12-highlight {
  color: #2d5e8c;
  font-weight: 700;
}

.box12-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.box12-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  min-width: 220px;
}

.box12-feature i {
  font-size: 2.5em;
  color: #377bb7;
  margin-bottom: 10px;
}

.box12-feature-title {
  color: #377bb7;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 6px;
}

.box12-feature-desc {
  color: #333;
  font-size: 1em;
  margin-top: 2px;
}








.doc-container {
  background: #fff;
  /* border: 1px solid #e0e0e0; */
  border-radius: 6px;
  padding: 75px;
  max-width: 700px;
  margin: 30px auto;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.doc-header {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
  background-color: #e9e7e7;
  padding: 8px;
  border-radius: 4px;
}

.doc-btn {
  background: #f5f5f5;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  padding: 6px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.doc-btn.green {
  background: #e6f4ea;
  border-color: #4caf50;
  color: #388e3c;
}

.doc-btn:hover {
  background: #e0e0e0;
}

.doc-table {
  /* border-top: 1px solid #bdbdbd; */
  border-bottom: 1px solid #bdbdbd;
  /* margin-bottom: 15px; */
}

.doc-row {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
}

.doc-row:last-child {
  border-bottom: none;
}

.doc-label {
  flex: 0 0 180px;
  padding: 8px 10px;
  /* background: #f7f7f7; */
  font-weight: bold;
  color: #346a99;
  /* border-right: 1px solid #e0e0e0; */
}

.doc-value {
  flex: 1;
  padding: 8px 10px;
}

.doc-alerts {
  margin: 15px 0;
}

.doc-alert {
  background: #f5fafd;
  border: 1px solid #b3e5fc;
  border-radius: 5px;
  padding: 10px 12px;
  margin-bottom: 8px;
  color: #0277bd;
  font-size: 14px;
}

.doc-alert a {
  color: #0277bd;
  text-decoration: underline;
}

.doc-section-title {
  margin: 18px 0 8px 0;
  font-weight: bold;
  font-size: 16px;
}

.doc-signers {
  width: 103%;
  border-collapse: collapse;
  font-size: 14px;
}

.doc-signers th,
.doc-signers td {
  border: 1px solid #e0e0e0;
  padding: 7px 8px;
  text-align: left;
}

.doc-signers th {
  background: #f7f7f7;
  font-weight: bold;
}


/* Responsiness start  */
/* Base fixes for widths and margins */

/* ========== ENHANCED RESPONSIVENESS FIX ========== */

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body, html {
  overflow-x: hidden;
}

/* Default Flex Settings */
.features-row,
.box3 .card-container,
.box5-grid,
.box7-grid,
.box10-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Slider Fix */
.slide-item {
  display: flex;
  flex-direction: row;
}

.slide-item .left,
.slide-item .right {
  width: 50%;
}

/* Responsive Breakpoints */

/* Tablets & Laptops */
/* @media (max-width: 1200px) {
  .container1,
  .container2,
  .containers2,
  .containerss2,
  .navbar-container,
  .box3 .card-container,
  .box5-grid,
  .box7-grid,
  .box4,
  .box6,
  .box10-socials {
    flex-direction: column !important;
    margin: 0 20px;
    align-items: center;
  }

  .box7-grid,
  .box5-grid,
  .box3 .card-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .box6-card,
  .box4-card,
  .box8-content,
  .box9-content {
    width: 100% !important;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature1,
  .feature2,
  .feature3,
  .feature4,
  .feature5 {
    position: static !important;
    width: 100% !important;
  }

  .features-row {
    flex-direction: row !important;
    flex-wrap: nowrap ;
  }

  .box9-content {
    flex-direction: column !important;
    text-align: center;
  }

  .box11-stats {
    flex-direction: column !important;
    gap: 24px;
    align-items: center;
  }

  .search-bar-container,
  .search-bar {
    width: 100% !important;
    padding: 0 10px;
  }

  .slider-container {
    height: auto;
    overflow-x: hidden;
  }

  .slide-item {
    flex-direction: column !important;
  }

  .slide-item .left,
  .slide-item .right {
    width: 100% !important;
    text-align: center;
  }

  .slide-item .right button {
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
  }

  .box12-features {
    flex-direction: row !important;
    gap: 30px;
  }

  .navbar-container,
  .navbar-left,
  .navbar-right {
    flex-direction: column !important;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  .bot,
  .bote {
    position: static !important;
    text-align: center;
  }

  .right_container,
  .left_container,
  .righty_container,
  .lefty_container {
    margin: 20px auto !important;
    width: 100% !important;
  }
} */

/* Mobile Devices */
@media (max-width: 768px) {
  .site-name {
    font-size: 20px;
  }

      .features-row {
  flex-direction:row ;
  flex-wrap: wrap;
      }
      .box2 .slider-container .slide .slide-item .right {
    width: 30%;
    padding: 0px;
    /* background: #ffffff; */
    display: flex
;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
  .box9-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .box11-counter {
    display: flex;
    gap: 1px;
  }

  .box5-title,
  .box7-title,
  .box10-title {
    font-size: 1.5em;
    text-align: center;
  }

  .box8-title,
  .box9-title {
    font-size: 1.3em;
    text-align: center;
  }

  .box12-title {
    font-size: 1.2em;
    padding: 0 10px;
    text-align: center;
  }

  .navbar {
    padding: 10px;
  }

  .footer,
  .footer-links,
  .footer-coly {
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .box5-grid {
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
  }

 .box5-item {
        width: 99% !important;
        display: flex
;
        align-items: center;
        gap: 10px;
        padding: 6px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
    }

  .box5-item img {
    width: 40px;
    height: auto;
  }

  .box5-inst, .box5-serv {
    font-size: 12px;
    text-align: left;
  }

  .box5-num {
    font-size: 1.2em;
    margin-right: 8px;
  }
}

/* form page responsiness  */
@media (max-width: 1024px) {
  .container1,
  .container2,
  .container3 {
    flex-direction: column !important;
    margin: 20px !important;
  }

  .container1 .icn,
  .container1 .pa1,
  .container1 .pa2 {
    margin-left: 0 !important;
    text-align: center;
  }

  .container2 .heading,
  .container2 .para,
  .container2 .bot {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: static !important;
    margin: 0 auto;
  }

  .container2 .bot button {
    width: 100%;
    margin-top: 10px;
  }

  .left_container,
  .right_container {
    width: 100% !important;
    margin: 20px auto !important;
  }

  .form-wrapper {
    margin: 20px !important;
  }

  .captcha-combined {
    flex-direction: row;
    padding: 8px 20px !important;
  }

  .captcha-input-box {
    width: 100% !important;
    margin-top: 10px;
  }
  
}

@media (max-width:768px) {
.captcha-combined{
  flex-direction: column;
}

.sidebar{
  width: 10px !important;
}
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
}

/* Feature Section Wrapper */
.features-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: -80px auto 0 auto; /* overlap the hero */
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Feature Boxes */
.feature-box {
    flex: 1 1 180px;
    max-width: 200px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

.feature-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
  .footer-links,
  .footer-contact,
  .footer-coly {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logos {
    flex-direction: column;
    align-items: center;
  }

  .footer-col,
  .contact-box,
  .social-box,
  .new1,
  .new2 {
    width: 100%;
  }

  .footer {
    padding: 30px 15px 10px 15px;
  }
}
/* === MOBILE === */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 12px;
    gap: 10px;
  }

  .search-wrapper {
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .dropdown-menu {
    left: auto;
    right: 0;
  }
}
@media (max-width: 991px) {
    .features-row {
        justify-content: center;
        padding: 20px 15px;
        margin: -60px 10px 0 10px;
    }

    .feature-box {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 600px) {
    .features-row {
        flex-direction: column;
        align-items: center;
        margin: -40px 10px 0 10px;
    }

    .feature-box {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 13px;
    }
}
@media (max-width: 991px) {
    .containery {
        padding: 25px 15px;
    }

    .containery h1,
    .containery h2 {
        font-size: 1.6rem;
    }

    .containery p,
    .containery ul {
        font-size: 0.95rem;
    }

    .yellow-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .yellow-box img {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .containery {
        padding: 20px 10px;
    }

    .containery h1,
    .containery h2 {
        font-size: 1.4rem;
    }

    .containery p,
    .containery ul {
        font-size: 0.9rem;
    }

    .yellow-box {
        font-size: 0.9rem;
    }

    .footerr .note {
        text-align: center;
        font-size: 0.85rem;
    }
}
@media (max-width: 991px) {
    .container3 {
        flex-direction: column;
    }

    .left_container,
    .rights_container {
        width: 100%;
        min-width: unset;
    }

    .container1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .container1 .pa1 p {
        text-align: left;
        font-size: 18px;
    }

    .paara1,
    .paara2 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }

  .container,
  .main-container,
  .container1,
  .containers2,
  .container3,
  .left_container,
  .rights_container,
  .solution-center {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px !important;
    box-sizing: border-box;
            display: flex
;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
  }

  .main-container,
  .container1,
  .container3 {
    display: flex;
    flex-direction: column !important;
    gap: 15px;
  }

  .container1 .icn,
  .container1 .pa1,
  .containers2 .paara1,
  .containers2 .paara2 {
    text-align: center;
    width: 100%;
  }

  .option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .option-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    text-align: left;
    white-space: normal;
  }

  .question-box .question,
  .solution-center .intro p {
    font-size: 15px;
    text-align: left;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .right_container {
    margin-right: 0;
    margin-top: 0;
    min-width: 100%;
    padding: 20px;
  }
}

/* Small Devices (Phones, 576px and down) */
@media (max-width: 575px) {
  .right_container {
    margin-right: 0;
    margin-top: 0;
    min-width: 100%;
    padding: 15px;
    box-shadow: none;
  }
  .doc-header {
    display: flex
;
    /* justify-content: flex-end; */
    gap: 10px;
    margin-bottom: 15px;
    background-color: #e9e7e7;
    padding: 8px;
    border-radius: 4px;
    min-width: 32vh;
}
.doc-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 75px;
    max-width: 700px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    font-size: 15px;
    display: flex
;
    flex-direction: column;
    align-items: center;
}
}


/* 
@media (max-width: 1025px){
  .captcha-input-box {
    width: 100% !important;
    box-sizing: border-box;
  display: block;
   
  }

} */

@media (max-width: 1350px) {
  .form-group{
    width: 681px;
  }
}

