:root {
  --navy: #061d43;
  --deep-navy: #051d42;
  --text-navy: #071e49;
  --orange: #f79600;
  --blue: #0b67e9;
  --hero-bg: #f8fbff;
  --pale-blue: #eef6ff;
  --stats-bg: #edf5ff;
  --partner-bg: #e9e4ff;
}

* {
  box-sizing: border-box;
}




body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans", sans-serif;
}



.site-footer {
  margin-top: auto;
}

a {
  text-decoration: none;
}
.site-header {
  z-index: 9999;
  background: #061d43;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.page-pad {
  padding-left: 32px;
  padding-right: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  min-height: 99px;
  background: var(--navy);
}

.navbar {
  min-height: 99px;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.brand img {
  display: block;
  /* width: 247px; */
  max-width: 100%;
  height: auto;
}

.navbar-toggler {
  border-color: rgba(255,255,255,.45);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.main-menu {
  gap: 30px;
  font-size: 16px;
  font-weight: 500;
}

.main-menu .nav-link {
  color: #fff;
  padding: 10px 4px;
  white-space: nowrap;
  font-weight: 400 !important;
  font-size: 17px;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
  color: #d7e7ff;
}

.nav-post {
  min-width: 120px;
  padding: 5px 20px;
  color: #fff;
  border: 0;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #fff;
}

.nav-post:hover,
.nav-post:focus {
  color: #fff;
  background: #0342a7;
}

.login-split {
  margin-left: 8px;
  padding-left: 30px;
  border-left: 2px solid #1273df;
}

.hero-section {
  overflow: hidden;
  /* min-height: 514px; */
  /* background:
    radial-gradient(circle at 100% 70%, #8cc8ff 0, #acd8ff 22%, rgba(202,230,255,.72) 42%, rgba(255,255,255,0) 68%),
    linear-gradient(118deg, #fff 0%, #f8fbff 38%, #e8f4ff 66%, #a9d6ff 100%); */
  background: #ffffff;
}

.hero-wrap {
  position: relative;
  min-height: 474px;
  padding-top: 25px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  color: var(--text-navy);
  font-size: 46px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 strong {
  color: var(--orange);
  font-weight: bold;
}

.hero-lead {
  margin: 22px 0 0 2px;
  color: #071742;
  font-size: 25px;
  font-weight: 600;
  line-height: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 43px;
}

.hero-actions .btn {
  min-width: 192px;
  padding: 8px 20px 9px;
  border-radius: 10px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.btn-orange {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.btn-orange:hover,
.btn-orange:focus {
  color: #fff;
  background: #e98d00;
  border-color: #e98d00;
}

.btn-navy {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.btn-navy:hover,
.btn-navy:focus {
  color: #fff;
  background: #0a2856;
  border-color: #0a2856;
}

.hero-map {
  margin-top: 7px;
}

.hero-map img {
  display: block;
  width: 100%;
  height: auto;
}

.partners-strip {
  display: flex;
  align-items: center;
  min-height: 120px;
  background: #ffffff;
  /* border-top: 1px solid #ededed; */
  /* border-bottom: 1px solid #ededed; */
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  width: 76px;
  height: 100%;
  pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(221, 218, 247, 0) 100%);
}
.partners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgb(255 255 255 / 0%) 100%);
}
.partner-logos {
  display: flex;
  width: max-content;
  align-items: center;
  animation: partnersMarquee 24s linear infinite;
}

.partners-marquee:hover .partner-logos {
  animation-play-state: paused;
}

.partner-logo {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding-right: 44px;
  margin-right: 44px;
}

.partner-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 54px;
  transform: translateY(-50%);
  background: rgba(7, 30, 73, .22);
}

.partner-logos img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@keyframes partnersMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.stats-section {
  background: var(--stats-bg);
}

.stats-row {
  min-height: 160px;
  align-items: center;
}

.stat-item {
  position: relative;
  padding: 16px 20px;
}


.stat-number {
  color: var(--text-navy);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}

.stat-label {
  margin-top: 7px;
  color: var(--text-navy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer {
  overflow: hidden;
  color: #fff;
  background: var(--deep-navy);
}

.footer-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.footer-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 2px;
  transform: translateX(-50%);
  background: #00225C;
  background: radial-gradient(circle, rgba(0, 34, 92, 1) 0%, rgb(5 29 66) 100%);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.footer-bottom {
  color: rgba(255,255,255,.96);
  font-size: 17px;
  font-weight: 400;
}

.footer-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color .25s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--orange);
}

.footer-links a:hover::after,
.footer-links a:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.social-links a:hover,
.social-links a:focus {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(247,150,0,.28);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 81px;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--orange);
}
.job-post-section {
  background: #ffffff;
}

.job-post-box {
  background: #edf3ff;
  border: 1px solid #001b4e;
  border-radius: 6px;
  padding: 28px;
}

.job-post-heading i {
  font-size: 22px;
  color: #f4ab00;
}

.job-post-heading h2 {
  font-size: 25px;
  font-weight: 600;
  color: #373737;
}

.custom-input,
.custom-textarea {
  border: 1px solid #2E35AF;
  border-radius: 5px;
  min-height: 26px !important;
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  background: #fff;
  box-shadow: none !important;
}

.custom-textarea {
  resize: none;
  height: 82px;
}

.custom-input:focus,
.custom-textarea:focus {
  border-color: #2d3cff;
}

.post-btn {
  min-width: 140px;
  height: 45px;
  background: #001b4e;
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  border: none;
}

.post-btn:hover {
  background: #012866;
  color: #fff;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
  color: #333;
  opacity: 1;
}

.upload-input {
  position: relative;
  color: transparent;
  cursor: pointer;
}

.upload-input::-webkit-file-upload-button {
  visibility: hidden;
}

.upload-input::before {
  content: "Upload Resume *";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #4a4a4a;
  font-size: 16px;
  pointer-events: none;
}

.upload-label {
  display: none;
}

.talent-heading {
  margin-bottom: 30px;
}

.talent-heading i {
  font-size: 34px;
  color: #f4ab00;
}

.talent-heading h2 {
  font-size: 35px;
  font-weight: 700;
  color: #001b4e;
}

.talent-card {
  background: #edf3ff;
  border-top: 4px solid #001b4e;
  border-radius: 4px;
  padding: 14px 28px;
  margin-bottom: 25px;
}

.talent-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
}

.talent-job,
.talent-desc,
.talent-date {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
}

.talent-job strong,
.talent-date strong {
  color: #222;
}

.talent-arrow {
  width: 68px;
  height: 48px;
  border: 1px solid #001b4e;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #001b4e;
  transition: .3s ease;
}

.talent-arrow:hover {
  background: #001b4e;
  color: #fff;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.custom-pagination {
  gap: 10px;
}

.custom-pagination .page-link {
  border: none;
  background: #dbe6ff;
  color: #001b4e;
  border-radius: 4px;
  min-width: 42px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.custom-pagination .page-item.active .page-link {
  background: #c9d8ff;
  color: #001b4e;
}

.prev-btn,
.next-btn {
  background: #f39b00 !important;
  color: #fff !important;
  padding: 0 18px !important;
}

.search-btn {
  min-height: 46px;
}

.custom-pagination .page-link {
  border: none;
  background: #dbe6ff;
  color: #001b4e;
  border-radius: 4px;
  min-width: 42px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all .3s ease;
}

.custom-pagination .page-link:hover {
  background: #001b4e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 27, 78, .18);
}

.custom-pagination .page-item.active .page-link {
  background: #001b4e;
  color: #fff;
}

.prev-btn:hover,
.next-btn:hover {
  background: #d88700 !important;
  color: #fff !important;
}

.job-meta p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #444;
}

.job-meta i {
  color: #f4ab00;
  font-size: 18px;
}

.custom-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #333 50%),
    linear-gradient(135deg, #333 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.job-detail-title {
  font-size: 30px;
  font-weight: 700;
  color: #001b4e;
  margin-bottom: 24px;
}

.job-detail-box {
  background: #edf3ff;
  border-top: 4px solid #001b4e;
  border-radius: 4px;
  padding: 40px 28px;
}

.job-detail-meta p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.job-detail-meta i {
  color: #f4ab00;
  margin-right: 10px;
}

.about-employer {
  margin-top: 40px;
}

.about-employer h2 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 22px;
}

.about-employer p {
  font-size: 15px;
  line-height: 1.7;
  color: #373737;
  margin-bottom: 26px;
}

.apply-form-box {
  background: #ffffff;
  border: 1px solid #B9D6FC;
  border-radius: 6px;
  padding: 24px 18px;
}

.apply-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 19px;
  margin-top: 0;
}

.apply-btn {
  width: 140px;
  height: 46px;
  background: #001b4e;
  color: #fff;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  font-weight: 500;
}

.apply-btn:hover {
  background: #012866;
  color: #fff;
}
.register-content p {
  margin-bottom: 28px;
}

.register-list {
  padding-left: 22px;
  margin: 0;
}

.register-list li {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 10px;
}

.login-text {
  font-size: 15px;
  color: #f39b00;
  font-weight: 600;
  margin-bottom: 18px;
}

.login-text a {
  color: #f39b00;
  text-decoration: none;
}

.login-text a:hover {
  text-decoration: underline;
}.login-modal-content {
  background: #001b4e;
  border: none;
  border-radius: 6px;
  padding: 28px 24px;
}

.login-modal-title {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}

.popup-input {
  min-height: 46px;
  border: 1px solid #2d3cff;
  border-radius: 4px;
  box-shadow: none !important;
}

.popup-input::placeholder {
  color: #444;
}

.forgot-link {
  display: inline-block;
  margin-bottom: 18px;
  color: #f4ab00;
  text-decoration: none;
  font-size: 15px;
}

.forgot-link:hover {
  color: #ffbe32;
}

.popup-login-btn {
  min-width: 140px;
  height: 46px;
  background: #EE8C04;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
}

.popup-login-btn:hover {
  background: #db8a00;
  color: #fff;
}

.custom-close {
  position: absolute;
  top: -14px;
  right: -14px;

  width: 38px;
  height: 38px;

  background-color: #f39b00;
  border-radius: 50%;

  opacity: 1;
  z-index: 10;
}

.custom-close:hover {
  opacity: 1;
}

.custom-close:focus {
  box-shadow: none;
}
.about-section {
  background: #fff;
}

.about-title {
  font-size: 35px;
  font-weight: 600;
  color: #001b4e;
  margin-bottom: 18px;
}

.about-box {
  background: #edf3ff;
  border-top: 4px solid #001b4e;
  border-radius: 10px;
  padding: 34px 28px;
}

.about-content {
  margin-bottom: 30px;
}

.about-content h2 {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #222;
  margin-bottom: 22px;
}

.about-list-number {
  padding-left: 22px;
  margin-bottom: 28px;
}

.about-list-number li {
  font-size: 15px;
  line-height: 2;
  color: #222;
  margin-bottom: 8px;
}

.about-list {
  padding-left: 18px;
  margin: 0;
}

.about-list li {
  font-size: 15px;
  line-height: 2;
  color: #222;
  margin-bottom: 10px;
}

.about-job-link {
  display: inline-block;
  color: #f39b00;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: .3s ease;
}

.about-job-link:hover {
  color: #d88600;
}


/* =========================
   Responsive
========================= */

@media (max-width: 991.98px) {

  .about-box {
    padding: 28px 22px;
  }

  .about-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {

  .about-title {
    font-size: 28px;
  }

  .about-box {
    padding: 22px 18px;
  }

  .about-content {
    margin-bottom: 36px;
  }

  .about-content h2 {
    font-size: 20px;
  }

  .about-content p,
  .about-list li,
  .about-list-number li {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-job-link {
    font-size: 17px;
  }
}.contact-box {
  background: #edf3ff;
  border: 1px solid #001b4e;
  border-radius: 4px;
  padding: 24px 28px;
}

.contact-info {
  position: relative;
  padding-left: 40px;
}

.contact-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #092550 15%, #092550 85%, transparent);
}

.contact-info h3 {
  font-size: 30px;
  font-weight: 600;
  color: #373737;
  margin-bottom: 18px;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.8;
  color: #373737;
  margin-bottom: 22px;
}

.contact-info a {
  color: #F6B207;
  font-size: 18px;
  text-decoration: underline;
}

.contact-btn {
  width: 100%;
  max-width: 190px;
  height: 46px;
  background: #EE8C04;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
}

.contact-btn:hover {
  background: #db8a00;
  color: #fff;
}


/* =========================
   Team Section
========================= */
.team-member {
    margin: 0px auto 0;
    display: inline-block;
    width: 100%;
}
.team-member ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.team-member ul li {
    float: left;
    display: block;
    padding-left: 0px;
    padding-bottom:0px;
    width: 19%;
    margin-right: 1%;
}

.team_member_box {
    position: relative;
    overflow: hidden;
    height: 395px;
    width: 100%;
    float: right;
    margin: 0 0 0px;
    text-align: center;
    display: block;
    position: relative;
    transition: left 200ms linear;
    -webkit-transition: left 200ms linear;
    -moz-transition: left 200ms linear;
    transition-delay: 250ms;
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
}

.team-member ul li a {
    cursor: pointer;
    text-decoration: none;
} 
.activity_rounded {
    margin-top: 20px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
}

.team_member_box strong {margin-top: 20px;display: block;font-weight: normal;color: #242424; font-size: 20px;text-align: center;}

.clear {
    clear: both;
    line-height: 0;
    height: 0;
    font-size: 0;
}

.team_member_box span {
  margin-top: 5px;
  display: block;
  font-weight: normal;
  color: #242424;

  font-size: 16px;
  text-align: center;
  text-transform: none;
  }

.team_member_box .textbox {
    width: 100%;
    height: 395px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -700px;
    border-radius: 5px;
    background-color: #011639;
    border-bottom: 4px solid #EE8C04;
    background-image: url(../img/section_arrow.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0px 15px;
}

.team_member_box .textbox .activity_rounded img {
    width: 100%;
    margin-top: 0;
}
.team_member_box .textbox img {
    width: auto;
    margin: 20px auto 0px;
}

a.ph_no:hover .phone_noumbers {
    display: block !important;
    z-index: 9999999999;
    position: absolute;
    bottom: 23%;
    background: #000;
    width: 100%;
}

.tmm-name {
  
    font-size: 20px;
    color: #ffffff;
    margin-top: 20px;
    text-align: center;
}


.tmm-post {

    font-size: 16px;
    color: #fff;
    margin-top: 5px;
    text-align: center;
}

.team-member ul li a {
    cursor: pointer;
    text-decoration: none;
}
.textbox {
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}
.team_member_box:hover .textbox {
    margin-top: 0;
}
.activity_rounded img {
    width: 100%;
    margin-top: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
}
.phone_noumbers {
    display: none;
    position: relative;
}
.phone_noumbers p {
    color: #fff;
    padding: 15px 0px 0px 0px;
}

.team-head h2 { font-size: 35px; font-weight: 600; }
.blog-card {
  background: #edf3ff;
  border-top: 4px solid #001b4e;
  border-radius: 4px;
  padding: 18px;
  margin-bottom: 34px;
  transition: .3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.blog-img {
  overflow: hidden;
  border-radius: 2px;
}

.blog-img img {
  width: 100%;
  border: 5px solid #fff;
  transition: .4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content h2 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 18px;
}

.blog-content p {
  font-size: 15px;
  line-height: 24px;
  color: #444;
  margin-bottom: 18px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.blog-meta span {
  font-size: 15px;
  color: #444;
}

.blog-meta strong {
  color: #222;
}

.faq-box {
  background: #edf3ff;
  border-top: 4px solid #001b4e;
  border-radius: 4px;
  padding: 38px 28px;
}

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 8px;
  border-radius: 4px !important;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: #001b4e;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  padding: 10px 22px;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #001b4e;
  color: #fff;
}

.custom-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
  background: #fff;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  padding: 20px 22px;
}

.dashboard-box {
  background: #edf3ff;
  border-top: 4px solid #001b4e;
  border-radius: 4px;
  padding: 38px 28px 70px;
}


/* =========================
   Stats Card
========================= */

.stats-card {
  background: #fff;
  border: 1px solid #001b4e;
  border-radius: 4px;

  padding: 18px 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 136px;
}

.stats-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: #001b4e;
  margin-bottom: 6px;
}

.stats-content h3 span {
  color: #1562ff;
}

.stats-content h2 {
  font-size: 30px;
  font-weight: 600;
  color: #001b4e;
  margin: 0;
}

.stats-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #dfe9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon i {
  font-size: 52px;
  color: #1562ff;
}


/* =========================
   Dashboard Jobs
========================= */

.dashboard-subtitle {
  font-size: 30px;
  font-weight: 600;
  color: #001b4e;
  margin-bottom: 15px;
}

.dashboard-job-card {
  background: #fff;
  border: 1px solid #001b4e;
  border-radius: 4px;

  padding: 22px;
  min-height: 128px;
}

.dashboard-job-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #001b4e;
  margin-bottom: 8px;
}

.dashboard-job-card p {
    font-size: 18px;
    color: #001b4e;
    margin-bottom: 16px;
  }

/* =========================
   Your Jobs
========================= */

.your-jobs-section {
  padding: 14px 0 38px;
  background: #fff;
}

.your-jobs-title {
  gap: 12px;
  margin-bottom: 18px;
  color: #001b4e;
}

.your-jobs-title i {
  color: #f39b00;
  font-size: 34px;
  line-height: 1;
}

.your-jobs-title h1 {
  margin: 0;
  color: #001b4e;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}

.your-job-card {
  min-height: 152px;
  padding: 21px 16px 24px 26px;
  margin-bottom: 38px;
  background: #edf3ff;
  border-top: 3px solid #001b4e;
  border-radius: 4px;
}

.your-job-card h2 {
  margin: 0 0 18px;
  color: #333;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.your-job-meta p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 13px;
  color: #333;
  font-size: 15px;
  line-height: 1.25;
}

.your-job-meta p:last-child {
  margin-bottom: 0;
}

.your-job-meta i {
  width: 14px;
  color: #f4ab00;
  font-size: 15px;
}

.your-job-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.job-action-btn {
  min-width: 78px;
  flex: 0 0 auto;
  min-height: 25px;
  padding: 2px 18px 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all .25s ease;
}

.edit-action {
  background: #f39b00;
}

.app-action {
  min-width: 134px;
  background: #001b4e;
}

.close-action {
  min-width: 135px;
  background: #c6c6c6;
}

.job-action-btn:hover,
.job-action-btn:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 27, 78, .16);
}

.your-jobs-pagination {
  margin-top: 2px;
}

/* =========================
   Job Applications
========================= */

.job-applications-section {
  padding: 17px 0 32px;
  background: #fff;
}

.applications-search-box {
  padding: 25px 22px 40px;
  margin-bottom: 33px;
  background: #edf3ff;
  border: 1px solid #001b4e;
  border-radius: 4px;
}

.applications-search-title {
  gap: 9px;
  margin-bottom: 33px;
}

.applications-search-title i {
  color: #f4ab00;
  font-size: 26px;
  line-height: 1;
}

.applications-search-title h1,
.applications-heading {
  margin: 0;
  color: #001b4e;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.applications-input {
  min-height: 45px;
  padding: 10px 12px;
  border: 1px solid #1b22ff;
  border-radius: 4px;
  color: #222;
  font-size: 16px;
  box-shadow: none;
}

.applications-input:focus {
  border-color: #001b4e;
  box-shadow: 0 0 0 .15rem rgba(0,27,78,.12);
}

.applications-submit {
  min-width: 138px;
  min-height: 45px;
  padding: 9px 30px;
  color: #fff;
  background: #001b4e;
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
}

.applications-submit:hover,
.applications-submit:focus {
  color: #fff;
  background: #062a67;
}

.applications-heading {
  margin-bottom: 29px;
}

.applications-table-box {
  padding: 26px 28px 62px;
  background: #edf3ff;
  border-top: 3px solid #001b4e;
  border-radius: 4px;
}

.applications-table {
  overflow: hidden;
  border: 1px solid #001b4e;
  color: #001b4e;
  background: #fff;
}

.applications-table th {
  padding: 11px 16px;
  color: #fff;
  background: #001b4e;
  border: 1px solid #183866;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.applications-table td {
  padding: 10px 16px;
  color: #001b4e;
  border: 1px solid #001b4e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  vertical-align: middle;
}

.applications-table tr td:not(:last-child),
.applications-table tr th:not(:last-child) {
  border-right: 1px solid #001b4e;
}

.view-application-btn {
  display: inline-flex;
  width: 29px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #f39b00;
  background: #fff;
  border: 1px solid #f39b00;
  border-radius: 5px;
  font-size: 15px;
  transition: all .25s ease;
}

.view-application-btn:hover,
.view-application-btn:focus {
  color: #fff;
  background: #f39b00;
}

.application-modal .modal-backdrop,
.modal-backdrop.show {
  opacity: .72;
}


.application-modal-dialog {
  max-width: 765px;
}

.application-modal-content {
  position: relative;
  padding: 30px;
  background: #001b4e;
  border: 0;
  border-radius: 5px;
}

.application-modal-close {
  position: absolute;
  top: -10px;
  right: -1px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #f39b00;
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.application-detail-table {
  overflow: hidden;
  background: #fff;
}

.application-detail-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 44px;
  border-bottom: 1px solid #001b4e;
}

.application-detail-row:last-child {
  border-bottom: 0;
}

.application-detail-label,
.application-detail-value {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #001b4e;
  font-size: 16px;
  line-height: 1.2;
}

.application-detail-label {
  font-weight: 700;
}

.application-detail-value {
  font-weight: 500;
}

.application-detail-value a {
  color: #f39b00;
  text-decoration: none;
}

.application-detail-value a:hover,
.application-detail-value a:focus {
  color: #d88700;
}

.dashboard-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.dashboard-btn {
  min-width: 78px;
  height: 32px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: .3s ease;
}

.edit-btn {
  background: #f39b00;
}

.edit-btn:hover {
  background: #d88700;
  color: #fff;
}

.app-btn {
  background: #001b4e;
}

.app-btn:hover {
  background: #012866;
  color: #fff;
}



.dashboard-menu {
  margin-left: 24px;
}

.dashboard-toggle {
  width: 48px;
  height: 42px;

  background: #1562ff;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

.dashboard-toggle i {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.dashboard-dropdown {
  min-width: 176px;
  border: 1px solid #011639;
  border-radius: 0 0 4px 4px;
  padding: 0;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 5px;
  background: #EBEBEB;
}

.dashboard-dropdown .dropdown-item {
  font-size: 17px;
  color: #000;
  padding: 7px 14px;
  border-bottom: 1px solid #D9D9D9;
  transition: .3s ease;
  font-weight: 500;
}

.dashboard-dropdown .dropdown-item:hover {
  background: #001b4e;
  color: #fff;
}

.dashboard-dropdown li:last-child .dropdown-item {
  border-bottom: 0;
}

.logout-item {
  font-weight: 600;
}
.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -100px;}

.deployment-box {
  background: #edf3ff;
  border-top: 4px solid #001b4e;
  border-radius: 4px;
  padding: 28px;
}


/* =========================
   Table
========================= */

.deployment-table {
  margin-bottom: 0;
  border: 1px solid #001b4e;
}

.deployment-table thead th {
  background: #001b4e;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 16px;
  border: 1px solid #17376d;
  white-space: nowrap;
}

.deployment-table tbody td {
  background: #fff;
  color: #011639;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid #17376d;
  vertical-align: middle;
}


/* =========================
   Status
========================= */

.status-badge {
  min-width: 100%;
  height: 28px;
  padding: 0 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.building-status {
  background: #e5e5e5;
  color: #001b4e;
}

.requested-status {
  background: #ffd79f;
  color: #001b4e;
}

.deployed-status {
  background: #bcd7ff;
  color: #001b4e;
}


/* =========================
   Action Icons
========================= */

.action-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.action-icons a {
  color: #f39b00;
  font-size: 24px;
  line-height: 1;

  transition: .3s ease;
}

.action-icons a:hover {
  color: #d88700;
}
.tooltip-inner {
  background: #001b4e;
  color: #fff;

  font-size: 13px;
  padding: 6px 10px;
}

.tooltip .tooltip-arrow::before {
  border-top-color: #001b4e !important;
}



/* =========================
   Invoice Modal
========================= */

.invoice-modal .modal-dialog {
  max-width: 760px;
}

.invoice-content {
  background: #001b4e;
  border: 0;
  border-radius: 4px;

  padding: 28px 30px;
}


/* Header */
.invoice-header {
  margin-bottom: 22px;
}

.invoice-header h2 {
  color: #fff;

  font-size: 28px;
  font-weight: 700;

  margin: 0;
}


/* Table */
.invoice-table {
  background: #fff;
}

.invoice-table td {
  border: 1px solid #17376d;

  padding: 14px 16px;

  font-size: 16px;
  color: #001b4e;

  vertical-align: middle;
}

.invoice-label {
  width: 190px;
  font-weight: 700;
}


/* Backdrop */
.modal-backdrop.show {
  opacity: .75;
}

/* =========================
   Edit Profile
========================= */

.edit-profile-box {
  background: #edf3ff;

  border-top: 4px solid #001b4e;
  border-radius: 4px;

  padding: 38px 28px;
}


/* =========================
   Inputs
========================= */

.custom-input {
  height: 44px;

  border: 1px solid #2d3cff;
  border-radius: 4px;

  font-size: 16px;
  color: #3d3d3d;

  box-shadow: none !important;
}

.custom-input::placeholder {
  color: #3d3d3d;
}

.custom-input:focus {
  border-color: #2d3cff;
}


/* =========================
   Upload
========================= */

.upload-box {
  width: 100%;
  height: 44px;

  border: 1px solid #2d3cff;
  border-radius: 4px;

  background: #fff;

  display: flex;
  align-items: center;

  overflow: hidden;

  cursor: pointer;
}

.upload-btn-text {
  min-width: 112px;
  height: 100%;

  background: #001b4e;
  color: #fff;

  font-size: 16px;
  font-weight: 500;

  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-label {
  padding: 0 14px;

  font-size: 16px;
  color: #3d3d3d;
}

.upload-info {
  font-size: 14px;
  color: #4d4d4d;

  margin-top: 4px;
  margin-bottom: 0;
}

.upload-preview {
  margin-top: 10px;
}

.upload-preview img {
  width: 36px;
}


/* =========================
   Password Box
========================= */

.password-box {
  background: #ffffff;
  border: 1px solid #b8cff7;
  border-radius: 4px;
  padding: 18px;
}

.password-box h2 {
  font-size: 24px;
  font-weight: 700;

  color: #3d3d3d;

  margin-bottom: 18px;
}


/* =========================
   Submit Button
========================= */

.submit-btn {
  min-width: 140px;
  height: 44px;

  background: #001b4e;
  color: #fff;

  border: 0;
  border-radius: 4px;

  font-size: 16px;
  font-weight: 600;

  transition: .3s ease;
}

.submit-btn:hover {
  background: #0b2f70;
}
/* =========================
   JOB POSTED MODAL
========================= */

.custom-job-modal-dialog {
    max-width: 820px;
}

.custom-job-modal-content {
    background: transparent;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.job-success-box {
    background: #001b5a;
    padding: 30px 40px;
    text-align: center;
    height: 100%;
}

.build-list-box {
    background: #1565d8;
    padding: 30px 40px;
    text-align: center;
    height: 100%;
}

.job-success-title,
.build-list-title {
    color: #fff;
    font-size: 27px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
}

.job-success-text,
.build-list-text {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.post-another-btn {
    background: #f39b00;
    color: #fff;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    font-size: 18px;
}

.post-another-btn:hover {
    background: #db8a00;
    color: #fff;
}

.build-list-btn {
    background: #001b5a;
    color: #fff;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    font-size: 18px;
}

.build-list-btn:hover {
    background: #00113a;
    color: #fff;
}

/* CLOSE BUTTON */
.application-modal-close{
    position: absolute;
    top: -20px;
    right: -20px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #f39b00;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 46px;
    text-align: center;
    z-index: 999;
    padding: 0;
}
.top-fix {
    z-index: 0 !important;
}

.border-box {
    border: 2px solid #011639;
    position: relative;
    padding: 0px 50px 0px 50px;
    height: 67px;
    border-radius: 5px;
}

.four-box {
    margin-top: -15px;
}


.boxsml {
    display: inline-block;
    background: #edf3ff;
    margin-left: 16px;
    text-align: center;
    padding: 0px 10px;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
}

.pink-color {
    text-decoration: none;
    color: #EE8C04;
}

.btns-box {
    margin-top: 38px;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}

.build_btn {
    background: url(../images/build_btn_bg.png) repeat-x 0 0px;
    text-align: center;
    padding: 5px 10px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-family: "Noto Sans", sans-serif;
    font-size: 15px;
    border: 2px solid #c2c2c2;
    min-width: 140px;
    border-radius: 6px;
    font-weight: normal;
    letter-spacing: 0;
    text-decoration: none;
}



.redio-bg {
    text-align: center;
}
.top-drop {
    display: inline-flex;
    padding: 10px 10px;
}
.redio-bg .form-check-input[type=radio] {
    height: 30px !important;
    border-radius: 50px !important;
    width: 30px !important;
    align-items: center;
    align-content: center;
    margin-top: 0px;
    border: 2px solid #e6e6e6 !important;
}
.redio-bg label {
    color: #000;
    margin: 4px 0px 0px 10px;
}
.bal-main select {
    background: #ffffff !important;
    border: 1px solid #2b2370 !important;
    height: 253px;
    overflow-y: scroll;
    border-radius: 5px !important;
    width: 100%;
    padding: 0 !important;
    margin-bottom: 20px;
}

.bal-main select option {
    background: #ffffff;
    border-bottom: 1px solid #bbbbbb;
    color: #000000;
    font-family: Roboto, sans-serif;
    font-size: 15px !important;
    padding: 6px 10px;
}

.right-left-arrow {
    width: 3%;
    padding: 0;
    align-items: center;
    align-content: center;
}
.box-width {
    width: 46.666667%;
}
.bal-main input {
    border: 1px solid #231D53 !important;
    background: #ffffff !important;
    height: 35px;
    width: 100%;
    background-position: right 4px !important;
    background-size: 31px;
    }

.bal-main label {
    font-size: 15px;
    font-family: Roboto, sans-serif;
    color: #000000;
}


#grade_levels {
    height: 178px;
}
.bal-main select {
    background: #ffffff !important;
    border: 1px solid #2b2370 !important;
    height: 253px;
    overflow-y: scroll;
    border-radius: 5px !important;
    width: 100%;
    padding: 0 !important;
    margin-bottom: 20px;
}



.bal-main input {
    border: 1px solid #231D53 !important;
    background: #ffffff !important;
    height: 35px;
    width: 100%;
    background-position: right 4px !important;
    background-size: 31px;
    border-radius: 5px !important;
}

.right-left-arrow img { width: 22px;  }

input[type="checkbox" i] {
      width: 20px !important;
    height: 20px !important;
    border: 1px solid #141141 !important;
    border-radius: 6px !important;
    margin-right: 9px;
    background: #011639 !important;
}
input[type="checkbox" i]:checked {
    background: #011639 !important;
    background-image: url(../img/check.png) !important;
    background-size: 10px !important;
    background-repeat: no-repeat !important;
    background-position: 4px 4px !important;
}

.form-check-input:checked {
    background-color: #011639 !important;
    border-color: #0d6efd !important;
}
.select-area span {
    position: absolute;
    right: 0;
}

.select-area {
    position: relative;
}


.exp-video {
    background: #E40005;
    color: #ffffff;
    border: 0;
    border-radius: 5px;
    font-family: "Courgette", cursive;
    padding: 4px 15px;
    font-size: 17px;
}


.build_btn {background: #F7F7F7;background: linear-gradient(180deg,rgba(247, 247, 247, 1) 0%, rgba(215, 215, 215, 1) 51%, rgba(247, 247, 247, 1) 100%);text-align: center;padding: 5px 10px;color: #000000;text-transform: uppercase;font-family: "Noto Sans", sans-serif;font-size: 16px;border: 2px solid #c2c2c2;min-width: 140px;border-radius: 6px;font-weight: normal;letter-spacing: 0;text-decoration: none;}

.cont-state ul li{ list-style: none; font-size: 15px; }
hr {
    border-top: 1px solid #B7D5FC;
    opacity: 1;
}



.dark-had {
    background: #051d42;
    z-index: 9999999 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}




.dark-had  .border-box {
    border: 2px solid #edf3ff;}


    /* ZIP CODE MODAL */

.zip-modal-dialog{
    max-width: 780px;
}

.zip-modal-content{
    background: #001b5a;
    border: none;
    border-radius: 6px;
    position: relative;
    overflow: visible;
}

.zip-modal-body{
    padding: 32px 28px 36px;
}

.zip-modal-text{
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 25px;
}

.zip-modal-textarea{
    min-height: 120px;
    border: 2px solid #d7dfff;
    border-radius: 4px;
    font-size: 18px;
    padding: 14px 16px;
    resize: none;
    box-shadow: none !important;
}

.zip-modal-textarea:focus{
    border-color: #2d64ff;
}

.zip-modal-btns{
    display: flex;
    gap: 15px;
    margin-top: 28px;
    margin-bottom: 22px;
}

.zip-modal-note{
    color: #f6a300;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

/* SAME BUTTON CLASS */

.common-btn{
    background: #f6a300;
    color: #fff;
    border: none;
    min-width: 105px;
    height: 44px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}

.common-btn:hover{
    background: #d98f00;
    color: #fff;
}

/* CLOSE BUTTON */

.application-modal-close{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #f6a300;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    position: absolute;
    top: -14px;
    right: -8px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* FIX MODAL OVERLAP ISSUE */
.modal{
    z-index: 999999 !important;
}

.modal-backdrop{
    z-index: 999990 !important;
}

.top-fix,
.sticky-top,
.dark-had,
#bal-cart,
.sticky-bal{
}




.dashboard-box{
    background: #ffffff;
    border: 1px solid #B9D6FC;
    border-radius:6px;
    padding:25px 20px;
}

.job-title-main{
    font-size:24px;
    font-weight: 600;
    color:#001b4e;
    margin-bottom:15px;
}

.job-location{
    font-size:18px;
    color:#102a5c;
}

.job-location i{
    color:#f4a000;
    margin-right:8px;
}

.job-date{
    font-size:16px;
    color:#102a5c;
}

.job-date i{
    color:#f4a000;
    margin-right:8px;
}

.applications-btn{
    background:#0d63ff;
    color:#fff;
    padding:6px 25px;
    border-radius:30px;
    text-decoration:none;
    font-size: 16px;
    line-height:1;
}

.applications-btn:hover{
    color:#fff;
}

.custom-check{
    width:28px;
    height:28px;
    border:1px solid #002060;
    border-radius:0 !important;
}

.payment-box{
    background: #ffffff;
    border: 1px solid #B9D6FC;
    border-radius:6px;
    padding:20px;
}

.pay-text{
    font-size:24px;
    font-weight: 600;
    color:#333;
    margin-bottom:20px;
}

.pay-text span{
    color:#f39b00;
}

.custom-input{
    height: 40px;
    border:1px solid #273cff;
    border-radius:6px;
    box-shadow:none !important;
    font-size: 15px;
    padding: 0px 10px;
}

.address-box{
    height: 80px !important;
    resize:none;
    padding-top:15px;
}

.apply-btn{
    background: #EE8C04;
    color:#fff;
    height: 40px;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
}

.apply-btn:hover{
    background:#e38f00;
    color:#fff;
}

.captcha-box{
    background:#f1f1f1;
    border:1px solid #ddd;
    padding:12px;
    max-width:290px;
}

.captcha-check{
    width:28px;
    height:28px;
}

.captcha-text{
    font-size:11px;
    color:#777;
}

.proceed-btn{
    background:#001b4e;
    color:#fff;
    padding: 8px 30px;
    border-radius:6px;
    font-size: 18px;
    font-weight:600;
}

.proceed-btn:hover{
    background:#00153d;
    color:#fff;
}




.dashboard-box input[type="checkbox" i] {
    width: 20px !important;
    height: 20px !important;
    border: 1px solid #00225B !important;
    border-radius: 0px !important;
    margin-right: 9px;
    background: #ffffff !important;
}
.dashboard-box input[type="checkbox" i]:checked {
    background: #011639 !important;
    background-image: url(../img/check.png) !important;
    background-size: 10px !important;
    background-repeat: no-repeat !important;
    background-position: 4px 4px !important;
}
select.custom-input,
.form-select.custom-input{

    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;

    background-image: none !important;

    padding-right: 40px;
    cursor: pointer;background-position: right 14px center !important;
}



.verify-section{
    background:#f5f5f5;
}

.verify-box{
    background:#eef3fb;
    border-top:4px solid #001b4e;
    border-radius:6px;
    padding:40px 20px 100px;
    min-height:420px;
}

.verify-title{
    font-size: 32px;
    font-weight:700;
    color:#0d63ff;
    margin-bottom:20px;
}

.verify-text{
    font-size: 18px;
    line-height:1.5;
    color:#222;
    margin-bottom:40px;
}

.verify-input{
    width: 210px;
    height: 45px;
    border:1px solid #273cff;
    border-radius:6px;
    padding:12px 18px;
    font-size: 16px;
    box-shadow:none !important;
}

.verify-btn{
    background:#001b4e;
    color:#fff;
    border-radius:6px;
    padding: 9px 40px;
    font-size: 18px;
    font-weight:600;
}

.verify-btn:hover{
    background:#00153d;
    color:#fff;
}

.resend-time{
    font-size: 15px;
    color:#9a9a9a;
    margin: 0px 0 25px;
}

.resend-btn,
.submit-btn{
    background:#f39b00;
    color:#fff;
    border:none;
    border-radius:6px;
    padding: 0px 0px;
    font-size: 18px;
    font-weight:600;
    min-width: 240px;
}

.resend-btn:hover,
.submit-btn:hover{
    background:#df8c00;
    color:#fff;
}
/* SUCCESS MODAL */

.success-modal .modal-dialog{
    max-width:500px;
}

.success-modal-content{
    background:#001b5b;
    border:none;
    border-radius:8px;
    position:relative;
    overflow:visible;
}

.success-modal-body{
    padding:42px 30px 48px;
}

.success-icon{
    width:62px;
    height:62px;
    border:4px solid #fff;
    border-radius:50%;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#fff;
}

.success-title{
    font-size: 30px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
}

.success-text{
    color:#f6a100;
    font-size: 20px;
    margin-bottom:26px;
}

.success-ok-btn{
    background: #EE8C04;
    color:#fff;
    border:none;
    min-width:140px;
    height:48px;
    border-radius:6px;
    font-size: 18px;
    font-weight: 600;
}

.success-ok-btn:hover{
    background:#dc8d00;
    color:#fff;
}

/* CLOSE BUTTON FIX */

.success-modal .application-modal-close{
    position:absolute;
    right: -8px;
    top:-18px;
    width: 35px;
    height: 35px;
    border-radius:50%;
    background:#f39b00;
    color:#fff;
    border:none;
    font-size:34px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

/* BACKDROP FIX */

.modal{
    z-index:99999 !important;
}

.modal-backdrop{
    z-index:9999 !important;
}
/* Hide selected file name completely */

input[type="file"] {
    color: transparent;
}

/* Hide default filename text */
input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}

/* Custom button text */
input[type="file"]::before {
    content: 'Upload Resume';
    color: #000;
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    margin-left: 15px;
}.upload-btn{
    width:100%;
    border:1px solid #3b43ff;
    border-radius:8px;
    padding:12px 15px;
    display:flex;
    align-items:center;
    cursor:pointer;
    background:#fff;
    font-size:16px;
}


/* =========================
   COMMENT SECTION
========================= */

.comment-title{
    font-size:25px;
    font-weight:600;
    color:#001b4e;
    margin-bottom:25px;
}

.comment-count-box{
    background: #edf3ff;
    border: 1px solid #B9D6FC;
    border-radius:6px;
    padding:22px 28px;
}

.comment-count-box h3{
    margin:0;
    font-size:24px;
    font-weight:500;
    color:#333;
}

.comment-form-box{
    background:#fff;
    border: 1px solid #B9D6FC;
    border-radius:6px;
    padding:45px 30px;
}
.comment-form-box .custom-input{
    height:44px;
    border:1px solid #2d3cff;
    border-radius:4px;
    font-size:16px;
    box-shadow:none;
}

.comment-form-box .custom-textarea{
    min-height:110px;
    border:1px solid #2d3cff;
    border-radius:4px;
    resize:none;
    padding:15px;
    box-shadow:none;
}

.comment-form-box .custom-input:focus,
.comment-form-box .custom-textarea:focus{
    border-color:#2d3cff;
    box-shadow:none;
}

.comment-btn{
    min-width:185px;
    height:44px;
    border:none;
    border-radius:5px;
    background:#EE8C04;
    color:#fff;
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    transition:.3s;
}

.comment-btn:hover{
    background:#d88700;
    color:#fff;
}

/* =========================
   COMMENTS SECTION
========================= */

.comments-box{
    background:#edf3ff;
    border:1px solid #b8d6fc;
    border-radius:6px;
    padding:30px;
}

.comments-heading{
    font-size:24px;
    font-weight:500;
    color:#333;
    margin-bottom:28px;
}

.comment-item{
    padding-bottom:25px;
    margin-bottom:25px;
    border-bottom:1px solid #b8d6fc;
}

.comment-name{
    font-size:18px;
    font-weight:500;
    color:#222;
    margin-bottom:12px;
}

.comment-text{
    font-size:15px;
    line-height:1.8;
    color:#222;
    margin-bottom:0;
}

 .error-section{
     
            display:flex;
            align-items:center;
            justify-content:center;
           
        }

        .error-box{
            background:#edf3ff;
            border-top:4px solid #001b4e;
            border-radius:8px;
            padding:70px 40px;
            text-align:center;
            width:100%;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
        }

        .error-code{
            font-size:130px;
            line-height:1;
            font-weight:800;
            color:#001b4e;
            margin-bottom:15px;
        }

        .error-title{
            font-size:42px;
            font-weight:700;
            color:#001b4e;
            margin-bottom:15px;
        }

        .error-text{
            font-size:20px;
            line-height:1.7;
            color:#555;
            margin-bottom:35px;
        }

        .error-btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            min-width:220px;
            height:55px;
            background:#EE8C04;
            color:#fff;
            border-radius:6px;
            text-decoration:none;
            font-size:18px;
            font-weight:600;
            transition:.3s;
        }

        .error-btn:hover{
            background:#d97f00;
            color:#fff;
        }
.date-posted{
    display: inline-flex;
    align-items:center;
    gap:10px;
    color:#001b4e;
    font-size:16px;
    margin-left: 15px;
}

.date-posted i{
    color:#EE8C04;
    font-size:18px;
}

.line { display: none;  }

.Thank-you i {
    color: #00a130;
    font-size: 95px;
}

.Thank-you .success-icon { width: 118px; height: 118px;    border: 6px solid #00a130;}