@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all .2s linear;
  text-decoration: none;
}

html {
  font-size: 65.5%;

}

header.header {
  background-color: #002e5f;
  color: #ffffff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 60%;
  height: 36px;
  top: 0;
  left: 0;
}

.header .navbar ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .navbar ul li {
  margin: 0 1.5rem;
}

.header .navbar ul li a {
  font-size: 23px;
  color: #ffffff;
}

.header .navbar ul li a:hover {
  color: #f0b129;
  text-decoration: none;
}

.header .logo i {
  padding: 0.5rem;
}

.header .fa-bars {
  color: #fff;
  cursor: pointer;
  font-size: 45px;
  display: none;
  margin-top: 5px;
  margin-bottom: 5px;
}

.heading {
  padding-top: 40px;
  display: inline-block;
  font-size: 3.5rem;
  color: #002e5f;
  position: relative;
  letter-spacing: .2rem;
  margin: -2rem auto 2rem auto;
}

.career-heading {
  text-align: center;
  margin-top: 100px;
}

.career-heading p {
  font-size: 2rem;
  text-align: center;
  color: #333;
}


.container {
  padding: 20px;
  border-radius: 8px;
}

/* Form Headers */
h3 {
  font-size: 28px;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Labels */
label {
  font-size: 14px;
  color: #3f3f3f;
  font-weight: bold;
}

sup {
  color: #ff0000;
  font-size: 15px;
}

.custom-dropdown {
  font-size: 13px; /* Adjust font size as needed */
}

.custom-dropdown option {
  font-size: 13px; /* Ensure dropdown options also have larger font */
}

/* Input Fields */
input,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 20px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease;
}

input,
select {
  width: 100%;
  padding: 10px;
  font-size: 24px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  margin-top: 5px;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="number"] {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="tel"] {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input[type="date"] {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input[type="radio"] {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  border:none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* File Input */
input[type="file"] {
  font-size: 13px;
  padding: 5px;
  cursor: pointer;
  border: none;
}

.gender-options {
  display: flex;
  align-items: center;

}

.gender-options input[type="radio"] {
  margin-right: 0px;
}
.gender-options input:focus {
  box-shadow: none;
  background-color:none;
}
.gender-options label {
  margin-right: 10px;
}

/* Buttons */
.btn-submit {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 500px;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #0056b3;
}

/* Radio Buttons */
input[type="radio"] {
  font-size: 1rem;
}

/* Textarea */
textarea {
  resize: none;
}

/* Row Styling */
.row {
  margin-bottom: 15px;
}

.row div {
  padding: 10px;
}



/* Footer styling */

.footer {
  width: 100%;
  margin: 0;
  background-color: #002e5f;
  color: #fff;
  padding: 0px 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

.footer h4 {
  font-size: 28px;
  color: #f8f8f8;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 15px;
  text-align: left;
}

.footer a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffa705;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  text-align: center;/
}

.footer-links ul li {
  padding: 8px 0;
  font-size: 16px;
  width: 100%;
  max-width: 200px;
  text-align: center;

}

.footer-links ul li i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}

.footer-contact {
  font-size: 1.1rem;
}

.footer-contact ul {
  margin: 0 auto;
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 12px;
}

.footer-contact a {
  color: #ffffff;
  font-size: 19px;
  font-family: 'century';
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.3s;
  text-transform: none;
}

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

.footer-contact .fa-li {
  position: relative;
  left: 0;
  font-size: 16px;
  color: #ffffff;
  width: 25px;
  text-align: center;
  line-height: 1.5;
  margin-right: 6px;
}

.footer-contact .fa-phone {
  transform: rotate(90deg);
  /* Ensure no rotation */
  display: inline-block;
  /* Proper alignment */
}

.footer-contact li:hover {
  color: #ffa705;
  text-decoration: none;
}

.footer-contact .fa-li:hover {
  color: #ffa705;
  text-decoration: none;
}

.social-links {
  margin-top: 10px;
  margin-bottom: 5px;
}

.social-links a {
  font-size: 24px;
  margin-right: 15px;
  margin: 0 12px;
  color: #fff;
}

.social-links a:hover {
  color: #ffcc00;
}

.footer-bottom {
  background: #111;
  text-align: center;
  font-size: 1rem;
  margin-bottom: -80px;
}

.footer-bottom p {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fffcfc;
}


.back-to-top {
  position: fixed;
  display: none;
  background-color: #00bfff;
  color: #ffffff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  right: 15px;
  bottom: 20px;
  border-radius: 10%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 999;
}


.back-to-top i {
  color: #ffffff;
}

.back-to-top i:hover {
  color: black;
}


@media (min-width: 310px) and (max-width: 395px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 6px;
  }

  .header .logo img {
    width: 40%;
    height: 34px;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0;
  }

  .header .fa-bars {
    display: block;
    font-size: 40px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 0.4rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 1.6rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .btn-submit {
    font-size: 18px;
    margin-left: 100px;
  }

  .footer h4 {
    font-size: 30px;
    color: #f8f8f8;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-links ul li {
    padding: 8px 0;
    text-align: center;
  }

  .footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
  }

  .social-links {
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    right: 10px;
    bottom: 40px;
  }
}

@media (min-width: 396px) and (max-width: 480px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 12px;
  }

  .header .logo img {
    width: 40%;
    height: 34px;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0;
  }

  .header .fa-bars {
    font-size: 45px;
    display: block;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 0.6rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.0rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .btn-submit {
    font-size: 18px;
    margin-left: 130px;
  }

  .footer h4 {
    font-size: 30px;
    color: #f8f8f8;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-links ul li {
    padding: 8px 0;
    text-align: center;
  }

  .footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
  }

  .social-links {
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: center;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    right: 15px;
    bottom: 30px;
  }
}

@media (min-width: 481px) and (max-width: 739px) {

  .navbar {
    display: flex;
    align-items: center;
    margin-top: 14px;
  }

  .header .logo img {
    width: 50%;
    height: 3rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .fa-bars {
    display: block;
    color: white;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .header .navbar ul {
    height: 100%;
    width: 100%;
    flex-flow: column;
  }

  .header .navbar ul li {
    margin: 0.4rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 1.6rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .btn-submit {
    font-size: 18px;
    margin-left: 190px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    right: 10px;
    bottom: 40px;
  }
}

@media (min-width: 740px) and (max-width: 815px) {

  .navbar {
    display: flex;
    align-items: center;
    margin-top: 25px;
  }

  .header .logo img {
    width: 60%;
    height: 4rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .fa-bars {
    font-size: 55px;
    display: block;
    color: white;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .header .navbar ul {
    height: 100%;
    width: 100%;
    flex-flow: column;
  }

  .header .navbar ul li {
    margin: 0.6rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.2rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .btn-submit {
    font-size: 18px;
    margin-left: 280px;
  }

  .footer-contact {
    font-size: 1.1rem;
    margin-top: -120px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    right: 15px;
    bottom: 40px;
  }
}


@media (min-width: 816px) and (max-width: 950px) {

  .navbar {
    display: flex;
    align-items: center;
    margin-top: 30px;
  }

  .header .logo img {
    width: 50%;
    height: 4rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .fa-bars {
    font-size: 60px;
    display: block;
    color: white;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .header .navbar ul {
    height: 100%;
    width: 100%;
    flex-flow: column;
  }

  .header .navbar ul li {
    margin: 0.6rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.4rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .career-heading {
    text-align: center;
    margin-top: 110px;
  }

  .btn-submit {
    font-size: 22px;
    margin-left: 280px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 1;
    padding: 10px 20px;
  }

  .footer-left {
    text-align: left;
  }

  .footer-right {
    text-align: right;
  }

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

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

  .social-links {
    margin-top: 15px;
  }

  .footer-bottom {
    margin-top: 20px;
    background: #111;
    text-align: center;
    padding: 10px 0;
  }

  .footer-bottom p {
    margin: 0;
    color: #fffcfc;
  }

  .footer-left,
  .footer-right {
    flex: unset;
    padding: 10px 0;
  }

  .footer-right {
    text-align: center;
  }

  .footer-contact {
    font-size: 1.1rem;
    margin-top: -130px;
  }

  .footer h4 {
    font-size: 32px;
    color: #f8f8f8;
    margin-bottom: 12px;
    font-weight: bold;
  }

  .footer p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 15px;
  }

  .footer a {
    color: #ffffff;
    font-size: 19px;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    right: 20px;
    bottom: 30px;
  }

}

@media (min-width: 951px) and (max-width: 1000px) {
  .navbar {
    display: flex;
    align-items: center;
    margin-top: 55px;
  }

  .header .logo img {
    width: 60%;
    height: 5rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
  }

  .header .fa-bars {
    font-size: 88px;
    display: block;
    color: white;
    margin-right: 10px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 1rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 2.8rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .heading {
    margin-top: 30px;
  }

  .btn-submit {
    font-size: 22px;
    margin-left: 280px;
  }

  .footer p {
    font-size: 18px;
    text-align: center;
  }

  .footer-contact {
    font-size: 1.1rem;
    margin-top: -100px;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    right: 35px;
    bottom: 20px;
  }
}

@media (min-width: 1001px) and (max-width: 1190px) {
  html {
    font-size: 50%;
  }

  .navbar {
    display: flex;
    align-items: center;
    margin-top: 55px;
  }

  .header .logo img {
    width: 70%;
    height: 5rem;
    top: 0;
    left: 0;
    background-size: cover;
  }

  .header .navbar {
    position: fixed;
    top: -120%;
    left: 0;
    height: auto;
    width: 100%;
    background-color: white;
    z-index: 1000;
    border-top: .1rem solid rgba(0, 0, 0, .3);
  }

  .navbar ul {
    display: flex;
    height: 100%;
    width: 100%;
    flex-flow: column;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0;
  }

  .header .fa-bars {
    font-size: 77px;
    display: block;
    color: white;
    margin-right: 10px;
  }

  .header .fa-bars:hover {
    color: #00bfff;
  }

  .header .navbar ul li {
    margin: 1rem 0;
  }

  .header .navbar ul li a {
    color: grey;
    font-size: 3.0rem;
  }

  .header .fa-times {
    transform: rotate(90deg);
  }

  .header .nav-toggle {
    top: 5.8rem;
  }

  .heading {
    margin-top: 20px;
  }

  .btn-submit {
    font-size: 22px;
    margin-left: 400px;
  }

  .footer p {
    font-size: 18px;
    text-align: justify-left
  }

  .footer h4 {
    font-size: 24px;
    font-weight: bold;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    right: 30px;
    bottom: 40px;
  }
}