/* ========== Why Work With Us Section ========== */
.why-work-section {
  padding: 60px 0 0px 0px;
}

.why-work-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  padding: 36px 32px;
}

.why-work-bg-gray {
  background-color: #efefef;
}

.why-work-card h5 {
  font-family: "Kanit-semibold";
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0px;
  color: #000000;
  margin-bottom: 16px;
}

.why-work-card h5::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 160px;
  background: #1692ce;
  margin-top: 10px;
}

.why-work-card p {
  font-family: "Lato-regular";
  font-size: 16px;
  line-height: 24px;
  color: #8f8f8f;
  margin-bottom: 0;
}

.why-work-img-card {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.why-work-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(22, 76, 146, 0.7) 0%,
    rgba(7, 23, 44, 0.7) 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
}

.why-work-overlay h5 {
  font-family: "Kanit-semibold";
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 16px;
}

.why-work-overlay p {
  font-family: "Lato-regular";
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .why-work-card,
  .why-work-img-card {
    height: 260px;
  }
  .why-work-card,
  .why-work-overlay {
    padding: 28px 24px;
  }
  .why-work-card h5 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 767.98px) {
  .why-work-section {
    padding: 40px 0;
  }
  .why-work-card,
  .why-work-img-card {
    height: auto;
    min-height: 220px;
  }
  .why-work-card h5 {
    font-size: 22px;
    line-height: 30px;
  }
  .why-work-overlay h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .why-work-card p,
  .why-work-overlay p {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 575.98px) {
  .why-work-section {
    padding: 30px 0;
  }
  .why-work-card,
  .why-work-img-card {
    height: auto;
    min-height: 180px;
  }
  .why-work-card,
  .why-work-overlay {
    padding: 24px 20px;
  }
  .why-work-card h5 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .why-work-card h5::after {
    width: 60px;
    height: 3px;
    margin-top: 8px;
  }
}

/* ========== Interview Process Section ========== */
.interview-process-header {
  padding: 60px 0 40px;
}

.interview-process-section {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}

.interview-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.interview-bg-overlay {
  background-image: url("../img/Career/interview-process-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.interview-process-title {
  font-family: "Kanit-semibold";
  font-size: 36px;
  line-height: 40px;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.interview-process-title::before {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #164c92;
  border-radius: 2px;
  margin: 0 auto 15px;
}

.interview-process-title span {
  color: #1692ce;
}

.interview-process-desc {
  font-family: "Lato-medium";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #8f8f8f;
  text-align: center;
  margin: 0 auto 0;
}

.interview-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.interview-step {
  display: flex;
  align-items: center;
  gap: 24px;
}

.step-1 .step-bar {
  min-width: 350px;
}

.step-2 .step-bar {
  min-width: 480px;
}

.step-3 .step-bar {
  min-width: 600px;
}

.step-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  background: #efefef;
  border-radius: 0 50px 50px 0;
  padding: 12px 8px 12px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  position: relative;
}

.step-bar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  background: #efefef;
}

.step-label {
  font-family: "Kanit-semibold";
  font-size: 18px;
  color: #000000;
  white-space: nowrap;
}

.step-number {
  width: 110px;
  height: 70px;
  min-width: 110px;
  border-radius: 100px;
  background: #0082bd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Kanit-medium";
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
}

.step-text {
  font-family: "Lato-medium";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #ffffff;
  max-width: 503px;
}

@media (max-width: 991.98px) {
  .interview-process-header {
    padding: 50px 0 30px;
  }
  .interview-process-title {
    font-size: 30px;
  }
  .interview-process-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .interview-process-desc br {
    display: none;
  }
  .interview-process-section {
    padding: 60px 0;
  }
  .step-1 .step-bar {
    min-width: 240px;
  }
  .step-2 .step-bar {
    min-width: 340px;
  }
  .step-3 .step-bar {
    min-width: 440px;
  }
  .step-label {
    font-size: 16px;
  }
  .step-number {
    width: 75px;
    height: 60px;
    min-width: 75px;
    font-size: 28px;
    line-height: 32px;
  }
  .step-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 767.98px) {
  .interview-process-header {
    padding: 40px 0 25px;
  }

  .interview-process-title {
    font-size: 24px;
    line-height: 32px;
  }

  .interview-process-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .interview-process-desc br {
    display: none;
  }

  .interview-process-section {
    padding: 40px 0 50px;
  }

  .interview-steps {
    gap: 35px;
  }

  .interview-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .step-1 .step-bar,
  .step-2 .step-bar,
  .step-3 .step-bar {
    min-width: auto;
    width: 75%;
  }

  .step-bar {
    padding: 10px 6px 10px 20px;
    gap: 12px;
  }

  .step-label {
    font-size: 15px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 22px;
  }

  .step-text {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
    color: #ffffff;
    padding-left: 10px;
  }
}

@media (max-width: 575.98px) {
  .interview-process-header {
    padding: 30px 0 20px;
  }

  .interview-process-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
  }

  .interview-process-desc {
    font-size: 13px;
    line-height: 20px;
  }

  .interview-process-section {
    padding: 30px 0 40px;
  }

  .interview-steps {
    gap: 24px;
  }

  .step-1 .step-bar,
  .step-2 .step-bar,
  .step-3 .step-bar {
    width: 85%;
  }

  .step-bar {
    padding: 8px 6px 8px 16px;
    gap: 10px;
  }

  .step-label {
    font-size: 13px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }

  .step-text {
    width: 100%;
    max-width: 100%;
    font-size: 13px;
    line-height: 20px;
    padding-left: 5px;
  }
}

/* ========== Current Openings Section ========== */
.current-openings-section {
  padding: 60px 0 80px;
  background: #f5f5f5;
}

.current-openings-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.current-openings-title {
  font-family: "Kanit-semibold";
  font-size: 36px;
  line-height: 40px;
  color: #000000;
}

.current-openings-title::before {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #164c92;
  border-radius: 2px;
  margin: 0 auto 15px;
}

.current-openings-title span {
  color: #1692ce;
}

.opening-card {
  background-color: #efefef;
  border-radius: 22px;
  padding: 38px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.opening-role {
  font-family: "Kanit-semibold";
  font-size: 22px;
  line-height: 30px;
  color: #164c92;
  margin-bottom: 8px;
}

.opening-req-title {
  font-family: "Kanit-semibold";
  font-size: 16px;
  color: #000000;
  margin-bottom: 10px;
}

.opening-list {
  padding-left: 20px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.opening-list li {
  font-family: "Lato-regular";
  font-size: 15px;
  line-height: 24px;
  color: #8f8f8f;
  margin-bottom: 4px;
}

.opening-skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.opening-skill-tag {
  display: inline-block;
  background: #eef3fa;
  color: #164c92;
  font-family: "Lato-regular";
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 14px;
  white-space: nowrap;
}

.opening-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(270deg, #04405c 3.57%, #164c92 58.78%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 15px 24px;
  font-family: "Kanit-medium";
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.opening-apply-btn i {
  display: inline-block;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-10px);
  transition:
    width 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.opening-apply-btn:hover {
  background: #164c92;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(22, 76, 146, 0.4);
}

.opening-apply-btn:hover i {
  width: 18px;
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991.98px) {
  .current-openings-section {
    padding: 50px 0 60px;
  }

  .opening-card {
    padding: 30px 24px;
  }

  .opening-role {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 767.98px) {
  .current-openings-section {
    padding: 40px 0 50px;
  }

  .current-openings-title {
    font-size: 28px;
  }

  .current-openings-title-wrap {
    margin-bottom: 24px;
  }

  .opening-card {
    padding: 24px 20px;
  }

  .opening-role {
    font-size: 18px;
    line-height: 26px;
  }

  .opening-list li {
    font-size: 14px;
  }

  .opening-apply-btn {
    width: 100%;
  }

  /* Reset extra padding on card 2 for mobile */
  .current-openings-section .col-md-6.px-4 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
}

@media (max-width: 575.98px) {
  .current-openings-section {
    padding: 30px 0 40px;
  }

  .current-openings-title {
    font-size: 24px;
  }

  .opening-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .opening-role {
    font-size: 17px;
  }

  .opening-req-title {
    font-size: 14px;
  }

  .opening-list li {
    font-size: 13px;
    line-height: 22px;
  }

  .opening-apply-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ========== CAREER APPLY MODAL ========== */
.career-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.career-modal {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 44px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.career-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f0f2f5;
  color: #333;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.career-modal-close:hover {
  background: #164c92;
  color: #fff;
  transform: rotate(90deg);
}
.career-modal-header {
  margin-bottom: 28px;
}
.career-modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, #164c92, #2e86de);
  color: #fff;
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.career-modal-title {
  font-family: "Kanit-medium";
  font-weight: 600;
  font-size: 28px;
  color: #0d0d0d;
  margin-bottom: 6px;
}
.career-modal-subtitle {
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 14px;
  color: #888;
  margin: 0;
}
.career-form-label {
  display: block;
  font-family: "lato-regular", Lato, sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.career-form-label span {
  color: #e74c3c;
}
.career-form-input {
  width: 100%;
  padding: 12px 20px;
  border: 0.8px solid rgba(226, 226, 226, 0.6);
  border-radius: 50px;
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 14px;
  color: #333;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
}
.career-form-input::placeholder {
  color: #999;
}
.career-form-input:focus {
  border-color: #164c92;
  box-shadow: none;
}
.career-form-input[readonly] {
  background: #eef3fa;
  color: #164c92;
  font-weight: 500;
  cursor: default;
}
.career-file-upload {
  position: relative;
}
.career-file-upload input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.career-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px dashed #c5cdd8;
  border-radius: 10px;
  background: #f8fafc;
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 14px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  word-break: break-all;
  overflow-wrap: break-word;
}
.career-file-label span {
  word-break: break-all;
  overflow-wrap: break-word;
}
.career-file-label i {
  font-size: 20px;
  color: #164c92;
}
.career-file-upload:hover .career-file-label {
  border-color: #164c92;
  background: #f0f5fc;
  color: #164c92;
}
.career-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 36px;
  background: linear-gradient(270deg, #04405c 3.57%, #164c92 58.78%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: "Kanit-medium";
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}
.career-submit-btn:hover {
  background: #164c92;
  box-shadow: 0 6px 24px rgba(22, 76, 146, 0.35);
  transform: translateY(-2px);
}
.career-submit-btn i {
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .career-modal {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .career-modal-title {
    font-size: 22px;
  }
}

/* ========== SUCCESS MODAL ========== */
.career-success-modal {
  max-width: 460px;
  text-align: center;
  padding: 50px 40px;
}
.career-success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.career-success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: successBounce 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.career-success-icon i {
  font-size: 48px;
  color: #28a745;
}
@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.career-success-title {
  font-family: "Kanit-medium";
  font-weight: 600;
  font-size: 28px;
  color: #0d0d0d;
  margin-bottom: 12px;
}
.career-success-message {
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
  max-width: 360px;
}
.career-success-modal .career-submit-btn {
  margin-top: 20px;
  padding: 12px 48px;
  width: auto;
}

/* ========== FREE APPLY SECTION ========== */
.free-apply-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(22, 76, 146, 0.1);
  margin: 0 60px;
}
.free-apply-left {
  background: linear-gradient(160deg, #0a2a4a 0%, #164c92 60%, #2e86de 100%);
  padding: 50px 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.free-apply-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.free-apply-left::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.free-apply-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
}
.free-apply-title {
  font-family: "Kanit-medium";
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 14px;
}
.free-apply-desc {
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}
.free-apply-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.free-apply-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 14px;
}
.free-apply-feature i {
  font-size: 18px;
  color: #54a0ff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
}
.free-apply-email-box {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}
.free-apply-email-box p {
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.free-apply-email-box a {
  font-family: "lato-regular", Lato, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #54a0ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.free-apply-email-box a:hover {
  color: #ffffff;
}
.free-apply-email-box a i {
  font-size: 16px;
}
.free-apply-right {
  background: #ffffff;
  padding: 44px;
  height: 100%;
}

@media (max-width: 991.98px) {
  .free-apply-wrapper {
    margin: 0 8px;
  }
  .free-apply-left {
    padding: 36px 24px;
  }
  .free-apply-right {
    padding: 30px 20px;
  }
  .free-apply-title {
    font-size: 22px;
    line-height: 32px;
  }
}

/* ========== LEADERSHIP SECTION ========== */
.leadership-section {
  padding: 60px 0 80px;
  /* background: #eef1f5; */
}

/* Section Title */
.leadership-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.leadership-heading {
  font-family: "Kanit-semibold";
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0px;
  margin: 0;
}

.leadership-heading::before {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #164c92;
  border-radius: 2px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-heading span {
  color: #1565c0;
}

/* Leader Card */
.leader-card {
  margin-bottom: 40px;
}

.leader-card:last-child {
  margin-bottom: 0;
}

.leader-card-inner {
  display: block;
  width: 100%;
  background: #efefef;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.leader-card-inner > .row {
  width: 100%;
  margin: 0;
}

/* Leader Image */
.leader-img-wrap {
  width: 100%;
  min-height: 325px;
  position: relative;
  overflow: visible;
}

.leader-img-wrap .leader-img {
  overflow: hidden;
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.leader-linkedin-btn {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #164c92;
  color: #ffffff;
  font-family: "Kanit-Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #ffffff;
  padding: 12px 30px 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
  width: calc(90% + 20px);
}

.leader-linkedin-btn:hover {
  background: #0d47a1;
  color: #ffffff;
}

.leader-linkedin-btn .linkedin-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

/* Reverse card - LinkedIn button centered */
.leader-card-reverse .leader-linkedin-btn {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

/* Leader Content */
.leader-content {
  flex: 1;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-name {
  font-family: "Kanit-Medium";
  font-size: 28px;
  color: #000000;
  line-height: 40px;
  letter-spacing: 0px;
  margin: 0 0 4px;
}

.leader-designation {
  font-family: "Lato";
  font-size: 20px;
  font-weight: 600;
  color: #8f8f8f;
  line-height: 24px;
  letter-spacing: 0%;
  margin: 0 0 18px;
}

.leader-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leader-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-family: "Lato-Medium";
  font-size: 16px;
  color: #8f8f8f;
  line-height: 26px;
  letter-spacing: 0%;
}

.leader-points li:last-child {
  margin-bottom: 0;
}

.leader-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #8f8f8f;
  border-radius: 50%;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 991.98px) {
  .leadership-section {
    padding: 50px 0 60px;
  }

  .leadership-heading {
    font-size: 30px;
  }

  .leader-card .col-3,
  .leader-card-reverse .col-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .leader-card .col-9,
  .leader-card-reverse .col-9 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
  }

  .leader-img-wrap {
    min-height: 280px;
  }

  .leader-content {
    padding: 24px 30px;
  }

  .leader-name {
    font-size: 22px;
    line-height: 32px;
  }

  .leader-designation {
    font-size: 16px;
  }

  .leader-points li {
    font-size: 14px;
  }

  .leader-linkedin-btn {
    font-size: 16px;
    padding: 10px 20px 10px 16px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .leadership-section {
    padding: 40px 0 50px;
  }

  .leadership-title-wrap {
    margin-bottom: 30px;
  }

  .leadership-heading {
    font-size: 24px;
  }

  .leader-card {
    margin-bottom: 30px;
  }

  .leader-card .row,
  .leader-card-reverse .row {
    flex-direction: column;
  }

  .leader-card .col-3,
  .leader-card .col-9,
  .leader-card .col-4,
  .leader-card .col-8,
  .leader-card-reverse .col-3,
  .leader-card-reverse .col-9,
  .leader-card-reverse .col-4,
  .leader-card-reverse .col-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .leader-card-reverse .col-3,
  .leader-card-reverse .col-4 {
    order: -1;
  }

  .leader-img-wrap {
    max-width: 250px;
    min-height: 300px;
    margin: 16px auto 0;
  }

  .leader-linkedin-btn {
    font-size: 16px;
    padding: 10px 20px 10px 16px;
    border-radius: 10px;
  }

  .leader-content {
    padding: 20px 24px;
    text-align: left;
  }

  .leader-name {
    font-size: 20px;
    line-height: 30px;
  }

  .leader-designation {
    font-size: 15px;
  }

  .leader-points li {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .leader-img-wrap {
    max-width: 200px;
    min-height: 235px;
  }

  .leader-content {
    padding: 16px;
  }

  .leader-name {
    font-size: 18px;
    line-height: 28px;
  }

  .leader-designation {
    font-size: 13px;
  }

  .leader-points li {
    font-size: 13px;
    line-height: 20px;
  }

  .leader-linkedin-btn {
    font-size: 14px;
    padding: 8px 16px 8px 12px;
  }
}

/* ========== Contact Information Section ========== */
.contact-info-section {
  padding: 60px 0 80px;
}

.contact-info-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.contact-info-title {
  font-family: "Kanit-semibold";
  font-size: 36px;
  line-height: 40px;
  color: #000000;
}

.contact-info-title::before {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #164c92;
  border-radius: 2px;
  margin: 0 auto 15px;
}

.contact-info-title span {
  color: #164c92;
}

.contact-map-wrap {
  height: 100%;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  height: 500px;
}

.contact-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-details-card {
  background: #efefef;
  border-radius: 0 16px 16px 0;
  padding: 40px 82px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #164c92;
  font-size: 22px;
}

.contact-address-separator {
  border: none;
  border-top: 1px solid #d5d5d5;
  margin: 4px 0;
}

.contact-detail-label {
  font-family: "Kanit-semibold";
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 8px;
}

.contact-detail-text {
  font-family: "Lato-regular";
  font-size: 15px;
  line-height: 24px;
  color: #8f8f8f;
  margin-bottom: 8px;
}

.contact-detail-text:last-child {
  margin-bottom: 0;
}

/* Contact Info Responsive */
@media (max-width: 991.98px) {
  .contact-info-section {
    padding: 50px 0 60px;
  }

  .contact-info-title {
    font-size: 30px;
  }

  .contact-details-card {
    padding: 32px 28px;
  }

  .contact-detail-label {
    font-size: 16px;
  }

  .contact-detail-text {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 767.98px) {
  .contact-info-section {
    padding: 40px 0 50px;
  }

  .contact-info-title {
    font-size: 28px;
  }

  .contact-info-title-wrap {
    margin-bottom: 30px;
  }

  .contact-map-wrap {
    border-radius: 16px 16px 0 0;
    height: 280px;
  }

  .contact-details-card {
    border-radius: 0 0 16px 16px;
    padding: 28px 24px;
    gap: 24px;
  }

  .contact-detail-item {
    gap: 12px;
  }

  .contact-icon-wrap {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 20px;
    border-radius: 12px;
  }

  .contact-detail-label {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contact-detail-text {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 575.98px) {
  .contact-info-section {
    padding: 30px 0 40px;
  }

  .contact-info-title {
    font-size: 24px;
  }

  .contact-info-title-wrap {
    margin-bottom: 24px;
  }

  .contact-map-wrap {
    height: 200px;
    border-radius: 12px 12px 0 0;
  }

  .contact-details-card {
    padding: 20px 16px;
    gap: 18px;
    border-radius: 0 0 12px 12px;
  }

  .contact-detail-item {
    gap: 10px;
  }

  .contact-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .contact-detail-label {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .contact-detail-text {
    font-size: 13px;
    line-height: 20px;
  }

  .contact-address-separator {
    margin: 2px 0;
  }
}

/* ========== Get in Touch Section ========== */
.contact-section {
  background-color: #efefef;
}

/* .contact-heading-line, .contact-title, .contact-subtitle, .contact-subtitle a
   are defined in style.css — duplicates removed. */

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  left: 19px;
  z-index: 3;
  width: 760px;
}

/* .contact-input, .contact-input:focus, .contact-input::placeholder,
   .contact-textarea, .contact-submit-btn, .contact-submit-btn:hover,
   .contact-img-wrapper, .contact-img-wrapper img — all defined in
   style.css; duplicates removed. */

/* Get in Touch Responsive */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 40px 0;
  }
  .contact-form-wrapper {
    left: 0;
    width: 100%;
  }
  .contact-title {
    font-size: 28px;
    line-height: 36px;
  }
  .contact-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .contact-subtitle br {
    display: none;
  }
  .contact-img-wrapper {
    text-align: center;
    margin-top: 30px;
  }
  .contact-img-wrapper img {
    max-width: 80%;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 30px 0;
  }
  .contact-heading-line {
    width: 50px;
    margin-bottom: 12px;
  }
  .contact-title {
    font-size: 22px;
    line-height: 30px;
  }
  .contact-subtitle {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .contact-form-wrapper {
    left: 0;
    width: 100%;
    padding: 20px;
  }
  .contact-input {
    padding: 11px 14px;
    font-size: 13px;
  }
  .contact-img-wrapper img {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 24px 0;
  }
  .contact-heading-line {
    width: 45px;
    height: 2px;
    margin-bottom: 10px;
  }
  .contact-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .contact-subtitle {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 16px;
  }
  .contact-form-wrapper {
    left: 0;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
  }
  .contact-input {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 6px;
  }
  .contact-submit-btn {
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
  }
  .contact-textarea {
    min-height: 120px;
  }
}

/* ========== CTA Section ========== */
.cta-section {
  background: rgb(26, 75, 140);
  height: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}
.cta-section-contact {
  background: rgb(26, 75, 140);
  height: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -29px;
  width: 100%;
}

.cta-title {
  font-family: "Kanit-semibold";
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
}

/* .cta-btn and .cta-btn:hover are defined in innerpages.css —
   duplicates removed. */

@media (max-width: 991.98px) {
  .cta-section {
    height: auto;
    padding: 50px 30px;
    margin-top: 30px;
  }
  .cta-section-contact {
    height: auto;
    padding: 50px 30px;
  }
  .cta-title {
    font-size: 26px;
    line-height: 36px;
  }
  .cta-title br {
    display: none;
  }
  .cta-btn {
    font-size: 13px;
    padding: 11px 18px;
  }
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 36px 20px;
    margin-top: 20px;
  }
  .cta-section-contact {
    padding: 36px 20px;
  }
  .cta-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
  }
  .cta-btn {
    font-size: 13px;
    padding: 10px 18px;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 28px 16px;
    margin-top: 16px;
  }
  .cta-section-contact {
    padding: 28px 16px;
  }
  .cta-title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
  }
  .cta-btn {
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 8px;
  }
}

.margin-top-cta {
  margin-top: 146px;
}
