/* ============================
   HERO SECTION
============================ */
.hero-section {
  color: #fff;
  padding: 140px 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(17, 24, 74, 0.85), rgba(17, 24, 74, 0.85)),
    url('images/career2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;

}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

/* LEFT SIDE */
.hero-left {
  flex: 1 1 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title h2 {
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtext {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 30px;
  padding:10px 150px;
  text-align:justify;
}

.hero-btn {
  display: inline-block;
  background-color: #FCE570;
  color: #000;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.hero-btn:hover {
  background-color: #e6cd56;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero-left h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 20px 40px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-left {
    text-align: center;
    align-items: center;
  }

  .hero-btn {
    align-self: center;
  }

  .hero-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-left h2 {
    font-size: 1.9rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
}

/* ============================
   WHY CHOOSE US SECTION
============================ */
.reason-section {
  background-color: #fff;
  padding: 100px 5%;
  color: #11184a;
}

.reason-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
  
}

.reason-left {
  flex: 1 1 35%;
}

.reason-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #11184a;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}

.reason-right {
  flex: 1 1 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.reason-box {
  background-color: #FCE570;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reason-title{
     font-size: 1.2rem;
     margin-bottom: 10px;
}

.reason-box p {
     font-size: 0.9em;
    line-height: 1.6;
    color: #11184a;
    margin: 0;
    font-weight: 500;
    text-align:justify;
}

/* Reason Responsive */
@media (max-width: 1024px) {
  .reason-left h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 900px) {
  .reason-container {
    flex-direction: column;
    text-align: center;
  }

  .reason-left {
    flex: 1 1 100%;
    margin-bottom: 40px;
  }

  .reason-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .reason-left h2 {
    font-size: 2rem;
  }

  .reason-box {
    padding: 30px;
  }
}

/* ============================
   IN-HOUSE FORM SECTION
============================ */
.form-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 100px auto;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #FCE570;
  border-radius: 40px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(17, 24, 74, 0.05);
}

.form-container {
  flex: 1 1 600px;
  text-align: center;
}

.form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #11184A;
  margin-bottom: 10px;
}

.form-container p {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FORM */
.inhouse-form {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

.inhouse-form label {
  display: block;
  font-weight: 600;
  color: #11184A;
  margin-bottom: 8px;
  font-size: 1rem;
}

.inhouse-form input,
.inhouse-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 74, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  background-color: #fffef6;
  transition: all 0.3s ease;
}

.inhouse-form input:focus,
.inhouse-form textarea:focus {
  border-color: #11184A;
  box-shadow: 0 0 0 3px rgba(17, 24, 74, 0.1);
  outline: none;
}

/* SUBMIT */
.form-submit {
  text-align: center;
  margin-top: 20px;
}

.form-btn {
  display: inline-block;
  background-color: #11184A;
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover {
  background-color: #2a3182;
  transform: translateY(-2px);
}

/* Form Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .inhouse-form {
    max-width: 100%;
  }

  .form-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
    .hero-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
  .form-container h2 {
    font-size: 1.7rem;
  }
  .reason-section {
    background-color: #fff;
    padding: 45px;
    color: #11184a;
}
.hero-subtext {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 30px;
  padding:10px;
  text-align:justify;
}
  .form-container p {
    font-size: 1rem;
  }
  .reason-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
  
}
 .reason-left {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }
  .reason-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #11184a;
  margin: 0;
  font-weight: 500;
}

  .form-section {
    padding: 30px 15px;
    margin:10px;
  }
}
