
.career {
    
  background: var(--gray);
  color: var(--dark-gray);
}

.career .section-title {
    padding: 60px 20px 20px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.career h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.career p {
  font-size: 1.1rem;
  color: #ff6600;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}

.job-card {
  flex: 0 0 370px; /* fixed width for each card */
  background: var(--light);
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 8px 30px rgba(249, 110, 52, 0.25);
}


.job-card:hover {
  box-shadow: 0 8px 30px rgba(249, 110, 52, 0.25);
}




.job-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.job-card p {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #555;
}


.job-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

.job-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  color: var(--light);
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(249,110,52,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

#prevBtn {
  left: 8px;
}

#nextBtn {
  right: 8px;
}

.slider-arrow:hover {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.apply-now {
  background-color: #ff6f3c; /* Primary orange */
  color: #fff;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  user-select: none;

}

.btn.apply-now:hover {
  background-color: #fff;
  color: #ff854f;
  box-shadow: 0 6px 18px rgb(255 111 60 / 0.6);
}

.btn.apply-now:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,111,60,0.5);
}

.btn.apply-now.apply-clicked {
  animation: clickedEffect 0.4s ease forwards;
}

@keyframes clickedEffect {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 4px 12px rgb(255 111 60 / 0.4);
  }
  50% {
    transform: scale(0.85);
    opacity: 0.5;
    box-shadow: none;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: none;
  }
}
.footer-about {
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers everything horizontally */
    text-align: center; /* Ensures text is centered under the video */
}

.footer-video {
    display: block;
    margin: 0 auto 10px; /* Center and space below */
    width: 200px; /* Adjust size as needed */
    height: auto;
    border-radius: 6px; /* Optional: rounded corners */
    object-fit: cover; /* Ensures video maintains aspect ratio */
   
}
  /* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: 0.3s;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: #20b954;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .job-slider {
    display: block; /* or flex; flex-direction: column; */
    transform: none !important; /* Remove horizontal slide transform */
  }

  .job-card {
    width: 100% !important; /* Full width */
    margin-bottom: 20px;
    flex: none;
  }

  .slider-arrow {
    display: none; /* Hide prev and next arrows */
  }
  .btn.apply-now {
    width: 100%; /* Full width on mobile */
    padding: 15px 0;
    font-size: 1.2rem;
  }
}
