@font-face {
  font-family: "Kohinoor-Bangla";
  src: url("../fonts/Kohinoor_Bangla/KohinoorBangla-Regular.otf")
    format("truetype");
  font-display: swap; /* Add this for better performance */
  font-weight: 100;
}
@font-face {
  font-family: "Kohinoor-Bangla-Bold";
  src: url("../fonts/Kohinoor_Bangla/KohinoorBangla-Bold.otf")
    format("truetype");
  font-display: swap; /* Add this for better performance */
}

:root {
  --section-heading-color: #434343;

  --hero-font-size: 5rem;
  --hero-font-weight: 100;
  --hero-line-height: 0.9;
  --hero-font-color: white;
  --hero-letter-spacing: -3px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #343434;
  font-family: "Kohinoor-Bangla";
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgb(255, 111, 24);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  cursor: grabbing;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(255, 111, 24) transparent;
}

.bg-change {
  background-color: #111;
}

.careers-hero-wrapper {
  background: url("../images/hero/ledgerscareershero.png") no-repeat center
    center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.careers-hero-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;

  z-index: 1;

  background-color: rgba(27, 27, 27, 0.171);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* border-radius: 20px; */
}

.careers-hero-content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 97%;
  height: 93%;
  z-index: 2;
  /* background-color: #161616; */
}

/* Hero Section */
.careers-hero-overlay {
  /* border: 1px solid green; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
  width: 70%;
}
.careers-hero-overlay h1 {
  margin-top: 100px;
  margin-bottom: 30px;
  text-align: center;
  font-size: var(--hero-font-size);
  line-height: var(--hero-line-height);
  letter-spacing: var(--hero-letter-spacing);
  font-weight: var(--hero-font-weight);
  color: var(--hero-font-color);
}
.careers-hero-overlay p {
  font-size: 1.1rem;
  line-height: 1.2;
  width: 80%;
  margin: 0 auto 40px;
  color: #dadada;
  width: 80%;
}

/* UAE Highlight */
.careers {
  position: relative;
  color: white;
  display: inline-block;
  z-index: 1;
  padding: 5px 10px;
}
.careers::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -5px;
  width: 100%;
  height: 150%;
  border: 5px solid #414d6b;
  transform: rotate(-5deg);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

/* Button */
.careers-hero-btn {
  text-align: center;
  width: 100%;
}
.careers-hero-btn button {
  background: rgb(54, 54, 54);
  color: #dadada;
  width: 200px;
  height: 55px;
  font-size: 1.2rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s ease;
  letter-spacing: -1px;
}
.careers-hero-btn button:hover {
  background-color: rgb(27, 27, 27);
}

/* Footer Links */
.careers-hero_list_items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  /* border: 1px solid blue;  */
}

.careers-hero_list_items ul {
  position: relative;
  bottom: 40px;
  left: 58px;
  list-style-type: none;
  line-height: 18px;
  padding: 30px;
  /* border: 1px solid rgba(0, 0, 0, 0.2); */
  background: rgba(46, 56, 77, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
}
.careers-hero_list_items ul li a {
  text-decoration: none;
  color: #dadada;
  font-size: 0.9rem;
  position: relative;
}

.careers-hero_list_items ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #dadada;
  z-index: 1;
  width: 0;
}

.careers-hero_list_items ul li a:hover::after {
  width: 100%;
}

/* ==========================================
   ✅ 1440px — Large Desktops
========================================== */
@media screen and (max-width: 1440px) {
  .careers-hero-overlay {
    margin-top: 5%;
  }
  .careers-hero-overlay h1 {
    font-size: 5rem;
  }

  .careers-hero-overlay p {
    font-size: 1.05rem;
    max-width: 750px;
  }

  .careers-hero-btn button {
    width: 180px;
    height: 50px;
    font-size: 1.1rem;
  }

  .careers-hero_list_items ul {
    bottom: 30px;
    left: 50px;
    padding: 25px;
  }
}

/* ==========================================
   ✅ 1366px — Standard Laptops
========================================== */
@media screen and (max-width: 1366px) {
  .careers-hero-overlay h1 {
    font-size: 4rem;
  }

  .careers-hero-overlay p {
    font-size: 1rem;
    max-width: 700px;
  }

  .careers-hero-btn button {
    width: 170px;
    height: 48px;
    font-size: 1.05rem;
  }

  .careers-hero_list_items ul {
    bottom: 25px;
    left: 40px;
    padding: 20px;
  }
}

/* ==========================================
   ✅ 1024px — Tablets / Small Laptops
========================================== */
@media screen and (max-width: 1024px) {
  .careers-hero-wrapper {
    padding: 40px 0px;
  }
  .careers-hero-overlay h1 {
    font-size: 3.2rem;
  }

  .careers-hero-overlay p {
    font-size: 1rem;
    max-width: 600px;
    
  }

  .careers-hero-btn button {
    width: 160px;
    height: 45px;
    font-size: 1rem;
  }

  .careers-hero_list_items ul {
    bottom: 20px;
    left: 30px;
    padding: 15px 20px;
  }
  .careers-hero_list_items ul li a {
    font-size: 0.7rem;
    line-height: 1;
  }
}

/* ==========================================
   ✅ 768px — iPads / Small Tablets
========================================== */
@media screen and (max-width: 768px) {
  .careers-hero-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
  }

  .careers-hero-overlay h1 {
    font-size: 2rem;
    width: 90%;
    line-height: 1.1;
    margin-top: 0;
  }

  .careers-hero-overlay p {
    font-size: 1rem;
    width: 100%;
    padding: 0;
    max-width: none;
  }

  .careers-hero-btn button {
    width: 150px;
    height: 45px;
    font-size: 1rem;
  }

  .careers-hero_list_items ul {
    flex-direction: row;
    bottom: 15px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* ==========================================
   ✅ 480px — Mobile Phones
========================================== */
@media screen and (max-width: 480px) {
  .careers-hero-content-wrap {
    background-position: center top;
  }
  .careers-hero-overlay{
    width: 100%;
  }

  .careers-hero-overlay h1 {
    font-size: 1.6rem;
    width: 95%;
  }

  .careers-hero-overlay p {
    font-size: 0.9rem;
    line-height: 1.3;
    padding-left: 20px;
    padding-right: 20px;
  }

  .careers-hero-btn button {
    width: 140px;
    height: 40px;
    font-size: 0.95rem;
  }

  .careers-hero_list_items ul {
    flex-direction: column;
    align-items: center;
    bottom: 10px;
    left: auto;
    right: auto;

    padding: 15px 20px;
  }

  .hero_list_items ul{
    margin-bottom: 40px;
  }
}
/* =================================================== */
.careers-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.careers-form-wrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 97%;
  height: 93%;
  background-color: #000000;
}
.form-container {
  background-color: #131313 !important;
  max-width: 1250px;
}

.careers-form-wrap h1 {
  color: #dadada;
  font-size: 5rem;
}
.input-box {
  background-color: #131313;
  color: #4f4f4f;
  border: 1px solid #272727;
}
.file-box {
  background-color: #131313;
  border: 1px solid #272727;
  color: #424242;
  opacity: 0.8;
  width: 285px;
}
.file-icon {
  filter: contrast(0.5);
}
.terms-conditions {
  color: #4f4f4f;
}

.inner-form-container {
  width: 60%;
}
.input-group:first-child .input-box {
  max-width: 290px;
}
.input-group:nth-child(3) {
  max-width: 600px;
}
.input-group.position-input {
  max-width: 400px;
}

.hidden-file-input {
  display: none;
}

.file-name {
  padding: 7px 20px;

  border-radius: 15px !important;
  font-size: 1.2rem;

  outline: none;
  font-style: italic;
}
.file-input-box {
  display: flex;
  width: 100%;
  gap: 30px;
}
/* ==========================================
   ✅ 1440px — Large Desktops
========================================== */
@media screen and (max-width: 1440px) {
  .form-container {
    max-width: 1000px;
  }
  .careers-form-wrap h1 {
    font-size: 4.2rem;
  }

  .inner-form-container {
    width: 65%;
  }

  .file-name {
    width: 260px;
  }
}

/* ==========================================
   ✅ 1366px — Standard Laptops
========================================== */
@media screen and (max-width: 1366px) {
  .careers-form-wrapper {
    height: 100%;
  }
  .careers-form-wrap {
    margin: 1rem;
  }
  .form-container {
    margin: 1rem;
  }
  .careers-form-wrap div h1 {
    font-size: 3.3rem;
  }
  .file-name {
    width: 250px;
    font-size: 1.1rem;
  }
}

/* ==========================================
   ✅ 1024px — Tablets / Small Laptops
========================================== */
@media screen and (max-width: 1024px) {
  .careers-form-wrapper {
    height: 100%;
    /* padding: 50px 0; */
  }
  .form-container {
    max-width: 800px;
    margin-bottom: 30px;
  }

  .careers-form-wrap h1 {
    font-size: 3rem;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .inner-form-container {
    width: 80%;
  }

  .file-name {
    width: 230px;
    font-size: 1rem;
  }

  .input-group {
    gap: 15px;
  }
}

/* ==========================================
   ✅ 768px — iPads / Medium Tablets
========================================== */
@media screen and (max-width: 768px) {
  .careers-form-wrap h1 {
    font-size: 2.5rem !important;
    text-align: center;
    line-height: 1;
  }
  .form-container {
    max-width: 700px;
  }
  .careers-form-wrap {
    padding: 0 0.5rem;
  }
  .inner-form-container {
    width: 90%;
  }

  .form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .file-name {
    width: 132px;
  }
  .file-input-box {
    display: flex;
    gap: 20px;
  }

  .terms-text {
    text-align: center;
    font-size: 0.85rem;
  }

}

/* ==========================================
   ✅ 480px — Mobile Phones
========================================== */
@media screen and (max-width: 480px) {
  .careers-form-wrap h1 {
    font-size: 1.5rem !important;
    padding: 0 1rem;
  }
  .inner-form-container {
    width: 100% !important;
  }

  .file-name {
    font-size: 0.9rem;
    width: 100%;
  }
  .input-group.full-width {
    flex-direction: column;
  }
  .input-group {
    flex-direction: column;
  }
  .file-input-box {
    display: flex;
    width: 100%;
    /*justify-content: center;*/
  }

  .attach-icon img {
    width: 20px;
    height: auto;
  }

  .send-button {
    width: 100%;
  }

  .input-group {
    gap: 10px;
  }
  .input-group:first-child .input-box{
      max-width: 100%;
  }
}

#formAlert {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: top 0.4s ease;
  z-index: 9999;
  font-size: 16px;
}
#formAlert.show {
  top: 20px;
}
#formAlert.success { background-color: #28a745; }
#formAlert.error { background-color: #dc3545; }
