/* ===============================================
   CAREERS SECTION
=============================================== */
/* .career-open-section {
  padding: 80px 0;
} */


/* ===============================================
   SECTION HEADING
=============================================== */
.career-heading {
  font-family: "f4";
  font-size: 28px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.career-heading .dot {
  color: #fa5c40;
}


/* ===============================================
   CAREER CARDS GRID
=============================================== */
.career-grid {
  margin: 0 -15px;
}

.career-grid>[class*="col-"] {
  padding: 0 15px;
  margin-bottom: 30px;
}

.career-card {
  background: #f6f6f6;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.career-card h3 {
  font-family: "f3";
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #333;
}

.career-card p {
  font-family: "f2";
  color: #888;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.career-btn {
  background: #fa5c40;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-family: "f3";
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  font-size: 15px;
}

.career-btn:hover {
  background: #e04a2f;
  transform: translateY(-2px);
}

/* ===============================================
   CULTURE SECTION
=============================================== */
.culture-section {
  padding: 100px 0;
}

/* Top Text */
.culture-top-text {
  font-family: "f3";
  color: #888;
  margin-bottom: 80px;
  font-size: 20px;
  line-height: 1.6;
  text-align: start;
}

.culture-top-text span {
  color: #fa5c40;
}

/* ===============================================
   ROW SPACING SYSTEM
=============================================== */
.culture-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px; /* Equal spacing between ALL rows */
}

.culture-row:last-child {
  margin-bottom: 0; /* Remove extra space after last row */
}

/* ===============================================
   TEXT BLOCK
=============================================== */
.culture-text {
  padding: 0 40px;
}

.culture-text h3 {
  font-family: "f4";
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.culture-text p {
  font-family: "f2";
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===============================================
   IMAGE BLOCK
=============================================== */
.culture-image {
  padding: 0 40px;
}

.culture-image img {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* ===============================================
   RESPONSIVE
=============================================== */

/* Tablet */
@media (max-width: 991px) {

  .culture-section {
    padding: 70px 0;
  }

  .culture-row {
    margin-bottom: 80px; /* Equal spacing for tablet */
    flex-direction: column;
    text-align: center;
  }

  .culture-text,
  .culture-image {
    padding: 0 20px;
  }

  .culture-text {
    margin-bottom: 30px;
  }

  .culture-text h3 {
    font-size: 32px;
  }

  .culture-image img {
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  /* .culture-section {
    padding: 50px 0;
  } */

  .culture-row {
    margin-bottom: 60px; /* Equal spacing for all 3 rows */
  }

  .culture-text h3 {
    font-size: 26px;
  }

  .culture-text p {
    font-size: 14px;
  }

  .culture-image img {
    height: 260px;
  }
}


/* ===============================================
   WORKING PROCESS GALLERY
=============================================== */
/* .process-gallery {
  padding: 80px 0;
} */

.gallery-label {
  font-family: "f4";
  font-size: 24px;
  color: #fa5c40;
  margin-bottom: 10px;
}

.gallery-label span {
  color: #fa5c40;
}

.gallery-title {
  font-family: "f4";
  font-size: 42px;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #333;
}

.gallery-grid {
  margin: 0 -20px;
}

.gallery-grid>[class*="col-"] {
  padding: 0 20px;
  margin-bottom: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* ===============================================
   CAREER CONTACT CTA
=============================================== */
/* .career-contact {
  padding: 80px 0;
} */

.career-contact-wrap {
  align-items: center;
}

.career-contact-left {
  padding-right: 40px;
}

.career-contact-right {
  padding-left: 20px;
}

.career-small {
  font-family: "f3";
  font-size: 24px !important;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.career-headings {
  font-family: "f4";
  font-size: 66px;
  line-height: 1.2;
  color: #333;
}

.career-headings span {
  color: #fa5c40;
}

.career-contact-right h4 {
    font-family: "f4";
    margin-bottom: 10px;
    font-size: 40px;
    color: #333;
}

.career-mail {
  color: #fa5c40;
  text-decoration: none;
  font-family: "f3";
  font-size: 26px;
  transition: color 0.3s ease;
  display: inline-block;
}

.career-mail:hover {
  color: #e04a2f;
}


/* ===============================================
   JOB DETAILS SECTION
=============================================== */
/* .job-details {
  padding: 80px 0;
} */

.job-block {
  margin-bottom: 50px;
}

.job-title {
  color: #fa5c40;
  font-family: "f3";
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.4;
}

.job-details ul {
  padding-left: 20px;
  margin: 0;
}

.job-details li {
  font-family: "f2";
  color: #777;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 15px;
}


/* ===============================================
   JOB APPLICATION FORM
=============================================== */
.job-apply {
  padding: 20px 0;
}

.apply-heading {
color: #fa5c40;
    font-family: "f4";
    margin-bottom: 30px;
    font-size: 34px;
    line-height: 1.3;
}

.apply-form {
  max-width: 100%;
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-bottom: 20px;
}

.apply-form label {
  font-family: "f2";
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.apply-form input,
.apply-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: "f1";
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.apply-form input:focus,
.apply-form select:focus {
  outline: none;
  border-color: #fa5c40;
  box-shadow: 0 0 0 3px rgba(250, 92, 64, 0.1);
}

.apply-btn {
  margin-top: 20px;
  background: #fa5c40;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: "f3";
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.apply-btn:hover {
  background: #e04a2f;
  transform: translateY(-2px);
}


/* ===============================================
   RESPONSIVE - TABLET (≤992px)
=============================================== */
@media (max-width: 992px) {
  .career-grid>[class*="col-"] {
    margin-bottom: 24px;
  }

  .culture-row {
    margin-bottom: 60px;
  }

  /* .culture-text {
    padding-right: 0;
    margin-bottom: 30px;
  } */

  .culture-row.reverse .culture-text {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .culture-text h3 {
    font-size: 26px;
  }

  .career-contact-left {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .career-contact-right {
    padding-left: 0;
  }

  .career-headings {
    font-size: 48px;
  }

  .gallery-grid>[class*="col-"] {
    margin-bottom: 30px;
  }

  .gallery-grid img {
    height: 250px;
  }
}


/* ===============================================
   RESPONSIVE - TABLET SMALL (≤768px)
=============================================== */
@media (max-width: 768px) {

  /* .career-open-section,
  .culture-section,
  .process-gallery,
  .career-contact {
    padding: 60px 0;
  } */

  .career-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .career-card h3 {
    font-size: 20px;
  }

  .culture-text h3 {
    font-size: 24px;
  }

  .gallery-grid>[class*="col-"] {
    margin-bottom: 24px;
  }

  .gallery-grid img {
    height: 220px;
  }

  .gallery-title {
    font-size: 24px;
  }

  .apply-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .job-details,
  .job-apply {
    width: 92%;
    margin: 0 auto;
  }

  .career-headings {
    font-size: 38px;
  }

  .career-small {
    font-size: 15px;
  }
}


/* ===============================================
   RESPONSIVE - MOBILE (≤576px)
=============================================== */
@media (max-width: 576px) {

  /* .career-open-section,
  .culture-section,
  .process-gallery,
  .career-contact {
    padding: 50px 0;
  } */

  .career-grid>[class*="col-"] {
    margin-bottom: 20px;
  }

  .career-card {
    padding: 24px;
    min-height: 180px;
  }

  .career-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .career-card p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .career-heading {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .culture-text h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .culture-text p {
    font-size: 14px;
  }

  .culture-top-text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .gallery-title {
    font-size: 20px;
  }

  .gallery-label {
    font-size: 13px;
  }

  .gallery-grid>[class*="col-"] {
    margin-bottom: 20px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .career-headings {
    font-size: 32px;
  }

  .career-contact-right h4 {
    font-size: 16px;
  }

  .career-mail {
    font-size: 15px;
  }

  .apply-heading {
    font-size: 20px;
  }

  .job-title {
    font-size: 18px;
  }

  .job-details li {
    font-size: 14px;
  }
}


/* ===============================================
   RESPONSIVE - EXTRA SMALL (≤400px)
=============================================== */
@media (max-width: 400px) {
  .career-headings {
    font-size: 28px;
  }

  .career-card {
    padding: 20px;
  }

  .career-btn,
  .apply-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}