/* body */
* {
  box-sizing: border-box;
  margin: 0rem;
  padding: 0rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* header */
@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&display=swap');

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 14.06rem;
  max-height: 3.5rem;
  margin-right: 0.9375rem;
}

.logo .logo_text {
  color: white;
  font-family: 'Poppins', sans-serif;
  margin: 0rem;
  text-transform: uppercase;
  border-style: solid;
  border-width: 0rem 0rem 0rem 0.0625rem;
  padding: 0.9375rem 0rem 0.9375rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.0625rem;
  text-decoration: none;
}

.desktop-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 0.8125rem 1.25rem 0.8125rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0rem;
  border-style: solid;
  border-width: 0rem 0rem 0.25rem 0rem;
  border-color: white;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1079BF;
  padding: 0.5rem 2.5rem;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Mobile styles */
@media (max-width:640px) {
  .desktop-link {
    display: none;
  }

  .main-nav {
    padding: 0.625rem !important;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 0;
    background-color: #1079BF;
    padding: 1rem;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 0.8125rem 1.25rem 0.8125rem 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0rem;
    border-style: solid;
    border-width: 0rem 0rem 0.25rem 0rem;
    border-color: white;
  }

  .mobile-menu.show {
    display: block;
  }

  .logo {
    flex-direction: column;
    text-align: center;
  }

  .logo img {
    margin-right: 0;
    margin-bottom: 0.625rem;
  }

  .close-menu i {
    color: gray;
    font-size: 1.5rem;
    line-height: 1.5;
    cursor: pointer;
  }

  .close-menu {
    background-color: #1079BF;
    border: none;
  }

  .menu-toggle i {
    color: gray;
    font-size: 1.5rem;
    line-height: 1.5;
    cursor: pointer;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

  .desktop-link {
    display: none;
  }

  .main-nav {
    padding: 0.625rem !important;
  }

  .menu-toggle {
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0px;
    background-color: #1079BF;
    padding: 1rem;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 0.8125rem 1.25rem 0.8125rem 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0rem;
    border-style: solid;
    border-width: 0rem 0rem 0.25rem 0rem;
    border-color: white;
  }

  .mobile-menu.show {
    display: block;
  }

  .close-menu i {
    color: gray;
    font-size: 1.5rem;
    line-height: 1.5;
    cursor: pointer;
  }

  .close-menu {
    background-color: #1079BF;
    border: none;
  }

  .menu-toggle i {
    color: gray;
    font-size: 1.5rem;
    line-height: 1.5;
    cursor: pointer;
  }

}

/* section_1 */

.section_1 {
  text-align: center;
  background-color: #DB3826;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.help_text {
  display: flex;
  width: 100%;
  height: 5rem;
  align-items: end;
  justify-content: center;
  align-items: center;
  /* max-width: 1231px; */
  max-width: 76.94rem;
  margin: 0 auto;
}

.help_text span {
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}

.search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 6.25rem;
  align-items: center;
  max-width: 76.94rem;
  margin: 0 auto;
}

.search-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
}

input[type="search"] {
  width: 100%;
  padding: 0.625rem;
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.0;
  border: none;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.search-btn {
  padding: 0.625rem 0.625rem;
  margin-top: 0.5rem;
  margin-right: 1rem;
  background: #ddd;
  font-size: 1.0625rem;
  border: none;
  cursor: pointer;
  border-radius: 0rem 0.3125rem 0.3125rem 0rem;
  background-color: white;
}



@media screen and (max-width: 600px) {
  .search-container {
    width: 100%;
  }

}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .search-container {
    width: 60%;
  }
}

/* section_2 */


.section_2 {
  margin: 0rem 7.8125rem;
  display: flex;
  justify-content: center;
}

.job_seeker_text {
  width: 100%;
  border-style: solid;
  border-width: 0rem 0rem 0.0625rem 0rem;
  border-color: #E9E9E9;
  /* max-width: 1231px; */
  max-width: 76.94rem;
  margin: 0 auto;
}

.job_seeker_text h1 {
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 2.25rem 0rem;
}

@media screen and (max-width:640px) {
  .section_2 {
    margin: 0rem 0rem 0rem 2.5rem;
  }

  .help_text {
    height: 110px;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

  .section_2 {
    margin: 0rem 0rem 0rem 2.5rem;
  }
}

/* section_3 */

.section_3 {
  margin: 2.25rem 7.8125rem;
}

.section_3_container {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
  max-width: 76.94rem;
  margin: 0 auto;
}

.section_content {
  width: 20rem;
  max-width: 76.94rem;
}

.quetions_links ul li {
  list-style-type: none;
}

.que_lists {
  text-align: left;
  background-color: white;
  border: none;
  list-style-type: none;
  margin-top: 0.625rem;
  color: #015798 !important;
  transition: color 0.3s;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
}


ul li .que_lists:hover {
  color: #222222 !important;
}

.section_content i {
  font-size: 2.1875rem;
}

.que_lists {
  text-decoration: none;
  color: #015798 !important
}

.content_1 h2 {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.0125rem;
}

.seeall_btn {
  border: none;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  background-color: #FFFFFF;
  cursor: pointer;
  text-align: left;

}

.see_all_btn {
  margin-top: 1.25rem;
}

.see_all_btn a:hover {
  color: #DB3826;
}



@media screen and (max-width:640px) {
  .section_3_container {
    display: block;

  }

  .section_3 {
    margin: 0rem 0rem 0rem 2.5rem;

  }

  .section_content {
    margin-top: 2.25rem;
    width: 100%;
  }
}


@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

  .section_3 {
    margin: 2.25rem 0rem 0rem 2.5rem;
  }

  .section_content {
    margin-top: 2.25rem;
    width: 100%;
  }

}

/* section-4 */
/* section_4 is taking section_3 styling. */

.section_4 {
  margin: 0rem 7.8125rem;
}

.section_4_container {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 2.25rem;
  border-style: solid;
  border-width: 0rem 0rem 0.0625rem 0rem;
  border-color: #E9E9E9;
  /* max-width: 1231px; */
  max-width: 76.94rem;
  margin: 0 auto;
}



@media screen and (max-width:640px) {
  .section_4_container {
    display: block;
    margin-left: 2.5rem;

  }

  .section_4 {
    margin: 0rem;
  }


}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .section_4 {
    margin: 0rem;
    padding-bottom: 0rem !important;
  }

  .section_4_container {
    margin-bottom: 2.25rem;
    margin-left: 2.5rem;
  }
}

.fotter {
  padding: 3.5rem 0rem 3.5rem 0rem;
  text-align: center;
}

.fotter p {
  margin-bottom: 0.9375rem;
  color: #22222270;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

.fotter .links a {
  margin-bottom: 0.9375rem;
  color: #0A2868;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (max-width:640px) {

  .fotter {
    padding: 4.5rem 1.25rem;
    text-align: center;
  }
}

/* Simple spacing between FAQ items - no box structure */
.que_lists,
.seeall_que,
.search_que_btn,
.seeall_btn {
    display: block;
    margin-bottom: 12px; /* Space between each FAQ item */
    color: #0A2868;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
}



/* Remove margin from last item */
.que_lists:last-child,
.seeall_que:last-child,
.search_que_btn:last-child,
.seeall_btn:last-child {
    margin-bottom: 0;
}

