/* ===== Job Profile Section ===== */
.dr1044jobprofile {
  width: 100%;
  background: #f9fbfd;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden; /* prevent horizontal scroll */
  box-sizing: border-box;
  position: relative;
}

.dr1044jobprofile .job-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
}

/* Header */
.dr1044jobprofile .job-header {
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
}

.dr1044jobprofile .job-header h2 {
  font-size: 2.4rem;
  color: #0b1d2e;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.dr1044jobprofile .job-header p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  word-wrap: break-word; /* wrap long text */
}

/* Buttons */
.dr1044jobprofile .job-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.dr1044jobprofile .job-buttons .btn {
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  white-space: nowrap; /* prevent button text wrapping */
}

.dr1044jobprofile .job-buttons .btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.dr1044jobprofile .job-buttons .btn.whatsapp:hover {
  background: #1ebe57;
  transform: scale(1.08);
}

.dr1044jobprofile .job-buttons .btn.call {
  background: #f0c14b;
  color: #0b1d2e;
}

.dr1044jobprofile .job-buttons .btn.call:hover {
  background: #ffd700;
  transform: scale(1.08);
}

/* Cards */
.dr1044jobprofile .job-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

.dr1044jobprofile .job-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(50px);
  word-wrap: break-word; /* wrap long text inside cards */
}

.dr1044jobprofile .job-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.dr1044jobprofile .job-card h3 {
  font-size: 1.5rem;
  color: #0b1d2e;
  margin-bottom: 12px;
  border-bottom: 2px solid #f0c14b;
  display: inline-block;
  padding-bottom: 5px;
}

.dr1044jobprofile .job-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Fade-in animation */
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .dr1044jobprofile .job-header h2 {
    font-size: 2rem;
  }

  .dr1044jobprofile .job-card h3 {
    font-size: 1.3rem;
  }

  .dr1044jobprofile .job-cards {
    grid-template-columns: 1fr; /* single column on small screens */
  }
}