/* ===== CAREERS PAGE ===== */

.careers-hero {
  position: relative;
}

.careers-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.careers-hero-text {
  position: absolute;
  left: 8%;
  top: 40%;
  color: #fff;
}

.careers-hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.careers-hero-text p {
  font-size: 18px;
}

.careers-section {
  /* max-width: 1100px; */
  /* margin: 80px auto; */
  padding: 0 20px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
}


.careers-section1 {
    /* max-width: 1100px;  */
/*    
  padding: 0 20px; */
  text-align: center;
  margin-bottom: 0px;
  margin-top: 15px;
  
}
.light-bg {
  background: #f8f8f8;
  padding: 80px 20px;
}

.job-list,
.hiring-steps {
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.job-list li,
.hiring-steps li {
  margin-bottom: 10px;
}
/* ===== CAREER FORM (BRANDED) ===== */
/* ===== CAREER FORM (FULLY BRANDED) ===== */

.career-form {
  max-width: 1000px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ececec !important;
  border: 1px solid #d0d0d0;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Inputs, Select, Textarea */
.career-form input,
.career-form select,
.career-form textarea {
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1.5px solid #7BAF42;   /* BRAND COLOR */
  transition: all 0.3s ease;
  font-family: inherit;
  background: #fff;
  color: #333;
}

/* Placeholder */
.career-form input::placeholder,
.career-form textarea::placeholder {
  color: #999;
}

/* Focus State */
.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  outline: none;
  border-color: #7BAF42;
  box-shadow: 0 0 0 3px rgba(123, 175, 66, 0.18);
}

/* File input */
.career-form input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

/* Remove ugly resize */
.career-form textarea {
  resize: none;
}

/* Submit Button */
.career-form button {
  background: #7BAF42;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

/* Button Hover */
.career-form button:hover {
  background: #6aa53a;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(123, 175, 66, 0.45);
}

/* ===== JOB CARDS ===== */

.job-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px;
  margin-top: 0px;
  margin-bottom: 0px;

}

.job-card{
  width:320px;
  padding:28px;
  border-radius:20px;
  background:#fff;
  text-align: left !important;
  position:relative;

  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:.35s ease;
  border:1px solid rgba(0,0,0,0.05);

  display:flex;                 /* ADD */
  flex-direction:column;        /* ADD */
  justify-content:space-between;/* ADD */
}


/* Hover animation */
.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.job-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2a2a2a;
}

.job-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
    text-align: left;
}

.job-card span {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #6fb23f;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}
.career-form button {
  background: linear-gradient(135deg, #6fb23f, #4e8f2d);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.career-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(111,178,63,0.4);
}
.career-form input,
.career-form select,
.career-form textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
}

.career-form input:focus,
.career-form textarea:focus,
.career-form select:focus {
  outline: none;
  border-color: #6fb23f;
}
/* ===== SELECTION PROCESS ===== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 50px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.process-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.process-card span {
  font-size: 36px;
  font-weight: 700;
  color: #7BAF42;
  display: block;
  margin-bottom: 10px;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2a2a2a;
}

.process-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers-section,
.job-card {
  animation: fadeUp 0.8s ease forwards;
}
/* ===== WHY WORK WITH RINATI TEXT IMPROVEMENT ===== */

.video-bg-section p {
  max-width: 850px;        /* limits line length */
  margin: 20px auto 0;    /* center + spacing */
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}
.video-bg-section h2 {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .video-bg-section p {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 10px;
  }

  .video-content {
    padding: 35px 25px;
  }
}
/* ===== CURRENT OPENINGS SECTION ===== */
.openings-section{
  padding:100px 80px;
  text-align:center;
  background:#f7f7f7;
}

/* grid */
.openings-grid{
  display:flex;
  justify-content:center;
  gap:35px;
  flex-wrap:wrap;
  margin-top:50px;
}

/* job card */
.job-card{
  width:320px;
  padding:28px;
  border-radius:20px;
  background:#fff;
  text-align:left !important;;
  position:relative;

  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:.35s ease;
  border:1px solid rgba(0,0,0,0.05);
}

/* hover effect */
.job-card:hover{
  transform:translateY(-12px);
  box-shadow:0 35px 70px rgba(0,0,0,0.18);
  border:1px solid #7BAF42;
  background:#fbfff5;
}

/* title */
.job-card h3{
  font-size:20px;
  color:#1B5E20;
  margin-bottom:8px;
  font-family:"Prosto One";
}

/* location */
.job-location{
  font-size:14px;
  color:#7BAF42;
  margin-bottom:12px;
  font-weight:600;
  font-family:"Prosto One";
  text-align: left !important;
  display: block;
}

/* description */
.job-desc{
  font-size:14px;
  color:#555;
  line-height:1.6;
  margin-bottom:18px;
  font-family:"Prosto One";
}

/* button */
.apply-btn{
  padding:10px 22px;
  border:none;
  border-radius:30px;
  background:#7BAF42;
  color:#fff;
  font-weight:600;
  align-self: flex-start;
  cursor:pointer;
  transition:.3s;
  font-family:"Prosto One";
  margin-top: auto;
}

/* button hover */
.apply-btn:hover{
  background:#1B5E20;
  color:#000;
  transform:scale(1.05);
}
.apply-btn{
  text-decoration:none;   /* ❌ remove underline */
}


/* ===== SCROLL ANIMATION ===== */
.job-card{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp .8s ease forwards;
}

.job-card:nth-child(2){animation-delay:.2s;}
.job-card:nth-child(3){animation-delay:.4s;}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* responsive */
@media(max-width:768px){
  .openings-section{
    padding:80px 20px;
  }
}
.job-card .job-location{
  margin:0 !important;
  text-align:left !important;
}
