.mission-area {
    padding: 80px 5%;
    /* background: linear-gradient(135deg, #f0f4f8, #e6f0ff); */
}

.mission-wrapper {
    max-width: 1300px;
    margin: auto;
}

/* Top Section */
.mission-header-box {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    background: radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
    padding: 60px;
    border-radius: 25px;
    margin-bottom: 60px;
}

.mission-left h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.mission-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}

/* Cards */
.mission-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card-box {
    background: radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.mission-card-box:hover {
    transform: translateY(-10px);
}

.card-label {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #777;
}

.mission-card-box h3 {
    font-size: 28px;
    margin: 15px 0;
}

.mission-card-box p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.7;
}

/* Badge */
.mission-badge {
    margin-top: 30px;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-users img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: -10px;
    border: 2px solid #fff;
}

.badge-text small {
    font-size: 11px;
    color: #888;
}

.badge-text strong {
    display: block;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {

    .mission-header-box {
        flex-direction: column;
        padding: 40px;
    }

    .mission-left h2 {
        font-size: 40px;
    }

    .mission-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .mission-cards-grid {
        grid-template-columns: 1fr;
    }

    .mission-left h2 {
        font-size: 32px;
    }

    .mission-area {
        padding: 50px 20px;
    }
}


/* pop css **************************/
/* MODAL BACKGROUND */
/* — MODAL BACKDROP — */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

/* — CARD STYLE — */
.modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 450px;
  width: 100%;
  padding: 25px 30px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeIn 0.4s ease-in-out;
}

/* — ANIMATION — */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* — INPUT FIELDS — */
.modal-content input {
  width: 100%;
  padding: 12px 14px;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: 0.3s;
}

.modal-content input:focus {
  border-color: #4caf50;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.35);
}

/* — BUTTONS — */
.modal-content button {
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-login {
  background: #28a745;
  color: #fff;
}

.btn-login:hover {
  background: #239a3b;
}

.btn-interested {
  background: #0d6efd;
  color: #fff;
}

.btn-interested:hover {
  background: #0a58ca;
}

/* — HEADER TITLE — */
.modal-content h2 {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #222;
}

/* — CLOSE ICON — */
.close-modal {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 21px;
  cursor: pointer;
  color: #888;
  transition: 0.2s;
}

.close-modal:hover {
  color: #333;
}

/* — FLEX BUTTON WRAPPER — */
.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

/* — RESPONSIVE — */
@media (max-width: 480px) {
  .modal-content {
    padding: 20px 18px;
  }

  .modal-content input {
    font-size: 14px;
  }

  .modal-content button {
    font-size: 14px;
  }
}

/* gallery css *****************************/

/* ===== CAREER AUTO SCROLL GALLERY ===== */

/* ===== CAREER GALLERY REFINED ===== */

.career-gallery-section {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f5f6f8, #eceff3); */
  overflow: hidden;
}

.career-gallery {
  overflow: hidden;
  position: relative;
}

.career-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMove 28s linear infinite;
}

/* Smaller professional cards */
.career-item {
  min-width: 250px;      /* reduced width */
  height: 350px;         /* reduced height */
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.career-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover */
.career-item:hover {
  transform: translateY(-8px);
}

/* Smooth Infinite Scroll */
@keyframes scrollMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */

/* Desktop = 4 visible */
@media (min-width: 1200px) {
  .career-item {
    min-width: 240px;
    height: 340px;
  }
}

/* Laptop = 3 visible */
@media (max-width: 1199px) {
  .career-item {
    min-width: 220px;
    height: 300px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .career-item {
    min-width: 180px;
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .career-item {
    min-width: 150px;
    height: 200px;
    border-radius: 16px;
  }

  .career-track {
    gap: 15px;
  }
}


/* contact us form css ************************************************/

/* ===== CONTACT SECTION ===== */

.contact-section {
    /* background: #0b3a53; */
    padding: 80px 0;
    color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-small {
    letter-spacing: 3px;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-desc {
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-info-box p {
    margin: 8px 0;
}

/* RIGHT SIDE (FORM) */

.contact-right {
    flex: 1;
    min-width: 300px;
    background: radial-gradient(rgb(0, 56, 92) 0%, rgb(0, 28, 44) 100%);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
}

textarea {
    resize: none;
    height: 120px;
}

button {
    background: #ea2c1b;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #ff3b2e;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-title {
        font-size: 24px;
    }
}