* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: url("img/bodybackground.jpg") no-repeat center center fixed;
  background-size: cover; 
  min-height: 100vh; 
  position: relative;
}

/* Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}
/* Responsive  */
@media (max-width: 1024px) {
  body {
    background-attachment: scroll; 
    background-position: center;
  }
}

@media (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center top; 
  }
}

@media (max-width: 480px) {
  body {
    background-size: cover;
    background-position: top; 
  }
}


    /* Header Styling */
header {
  
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 50px;
  position: relative;
  color: white;
}


.logo img {
  height: 80px;
  width: auto;
   margin-left: 20px;
}


.navbar ul {
   
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding: 5px 0;
  position: relative;
}


.navbar a:hover {
  color: rgb(191, 0, 0);
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: rgb(191, 0, 0);
  transition: width 0.3s;
  bottom: 0;
  left: 0;
}

.navbar a:hover::after {
  width: 100%;
}


.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}


#menu-toggle {
  display: none;
}

/* Responsive  */
 @media (max-width: 480px) {
  body {
    font-size: 15px;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    
    display: none;
    z-index: 999;
  }

  .navbar ul {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  #menu-toggle:checked + .hamburger + .navbar {
    display: block;
  }

  .hamburger {
    display: block;
  }
}



/* Hero Section */

   .career-hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .career-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .career-heading {
       font-family: 'Bebas Neue', sans-serif;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
font-size: 10rem;
      font-weight: bold;
      color: rgb(191, 0, 0);
      z-index: 2;
      text-align: center;
    }

    @media (max-width: 768px) {
      .career-heading {
        font-size: 48px;
      }
    }

    @media (max-width: 480px) {
      .career-heading {
        font-size: 32px;
      }
    }


    
    /* Begin Career Section */
    .begin-career-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 100px 50px;
      gap: 60px;
      flex-wrap: wrap;
       background-color: rgba(0, 0, 0, 0.6); 
     
    }

    .begin-left {
      flex: 1;
      min-width: 250px;
    }

    .begin-left h2 {
        color: white;
      font-size: 48px;
      font-weight: bold;
      font-family: 'Bebas Neue', sans-serif;
      line-height: 1.2;
    }

    .begin-left h2 span {
      color: red;
    }

    .center-line {
      width: 2px;
      height: 140px;
      background-color: red;
    }

    .begin-right {
        color: white;
      flex: 2;
      min-width: 300px;
      font-size: 16px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .begin-career-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 20px;
      }

      .center-line {
        height: 2px;
        width: 60px;
      }
    }
  
 
 
 
 /*banner*/
    
   section.promo-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:500px;
  min-height: 200px;
}


    section.promo-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9); 
      z-index: 1;
    }

    .promo-content {
      position: relative;
      z-index: 2;
    }

    .promo-text {
       font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: bold;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .promo-button {
         margin-top: 0;
      position: relative;
      z-index: 2;
      background-color:rgb(191, 0, 0); 
      color: white;
      font-weight: bold;
        padding: 18px 50px; 
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
       border-radius: 50px; 
    }

    .promo-button:hover {
       background-color: rgb(191, 2, 2);
    }
    /*responsive*/
    @media (max-width: 992px) {
  section.promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 20px;
  }

  .promo-text {
    font-size: 18px;
  }

  .promo-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  section.promo-banner {
    padding: 30px 20px;
  }

  .promo-text {
    font-size: 16px;
    line-height: 1.3;
  }

  .promo-button {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 15px;
  }

  .promo-button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px 15px;
  }

  section.promo-banner {
    padding: 25px 15px;
  }
}


/*apply now section*/

    section.apply-section {
      padding: 50px;
      max-width: 1400px;
      margin: 0 auto;
        background: rgba(0, 0, 0, 0.5);
    }

    h1 {
      font-family: 'Bebas Neue', sans-serif;
      color: white;
      text-align: center;
       font-size: 80px;
      margin-bottom: 40px;
    }

    h1 span {
      color: rgb(191, 0, 0);
    }

    .container {
      display: flex;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
    }

    .left {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .left img {
      width: 100%;
      height: auto;
      display: block;
    }

    .left::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
     
    }

    .right {
      flex: 1;
      padding-left: 50px;
    }

    p {
      color: white;
      margin-bottom: 30px;
      line-height: 1.5;
      max-width: 600px;
    }

    form {
      display: flex;
      flex-wrap: wrap;
    }

    .form-group {
      width: 48%;
      margin-bottom: 30px;
    }

    .form-group.full {
      width: 100%;
    }

    .form-group input {
      width: 100%;
      padding: 10px 0;
      border: none;
      border-bottom: 2px solid #fff;
      background: transparent;
      color: #fff;
    }

    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: none;
      background: #222;
      color: #fff;
    }

    .upload-submit {
      display: flex;
      align-items: center;
      width: 100%;
      margin-top: 20px;
    }

    .upload-box {
      display: flex;
      align-items: center;
      border: 1px solid #fff;
      flex: 1;
      height: 50px;
    }

    .upload-btn {
      display: inline-flex;
      align-items: center;
      background: rgb(191, 0, 0);
      color: #fff;
      border: none;
      padding: 0 20px;
      height: 100%;
      cursor: pointer;
      font-size: 14px;
    }

    .upload-btn i {
      margin-right: 6px;
    }

    .upload-btn input[type="file"] {
      display: none;
    }

    .file-name {
      flex: 1;
      padding: 0 15px;
      font-size: 14px;
      color: #aaa;
    }

    .submit button {
      background: rgb(191, 0, 0);
      color: #fff;
      border: none;
      padding: 15px 30px;
      cursor: pointer;
      font-size: 14px;
      margin-left: 20px;
      height: 50px;
    }
    /* Responsive Design */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    padding: 0 20px;
  }

  .right {
    padding-left: 0;
    margin-top: 30px;
  }

  form {
    flex-direction: column;
  }

  .form-group {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .upload-submit {
    flex-direction: column;
    align-items: flex-start;
  }

  .upload-box, .submit button {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .submit {
    width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 36px;
  }

  p {
    font-size: 14px;
  }

  .upload-btn {
    font-size: 13px;
    padding: 0 15px;
  }

  .file-name {
    font-size: 13px;
  }

  .submit button {
    font-size: 13px;
    padding: 12px 20px;
    height: auto;
  }
}



/*  Promo Banner  */
section.promo-banner {
  position: relative;
  color: white;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  min-height: 220px;
  overflow: hidden;
}

section.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('img/Map%20KPLeads.png'); 
  background-size: cover;
  background-position: center;
  filter: grayscale(100%); 
  z-index: 0;
}


section.promo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65); 
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
}

.promo-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.promo-button {
  position: relative;
  z-index: 2;
  padding: 16px 35px;
  background: linear-gradient(to right, rgb(201, 35, 35),  rgb(191, 0, 0));
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.promo-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/*  Responsive  */
@media (max-width: 1024px) {
  .promo-text {
    font-size: 24px;
  }
  .promo-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  section.promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    gap: 20px; 
  }
  .promo-content {
    max-width: 100%;
  }
  .promo-text {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 18px;
    line-height: 1.4;
  }
  .promo-button {
    width: 100%; 
    padding: 14px;
    font-size: 0.9rem;
  }
}

 /*footer*/
   footer {
    font-family: 'Poppins', sans-serif;
      background: #333;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 40px 60px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
    }
    .footer-logo img {
      height: 90px;
    }
    .footer-column {
      max-width: 300px;
    }
    .footer-column h3 {
      margin: 0 0 10px;
      font-size: 16px;
      text-transform: uppercase;
    }
    .footer-column p,
    .footer-column a {
      margin: 5px 0;
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
    }
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }
    .social-icons a {
      color: #fff;
      font-size: 20px;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #e74c3c;
    }
    /*responsive**/
    @media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-column {
    max-width: none;
    margin-top: 20px;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}
