/* HERO */
.pl-hero {
  height: 450px;
  background: url('../assets/images/Placement.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.pl-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.pl-hero .container {
  position: relative;
  z-index: 2;
}

.pl-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* GRID */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* STATS */
.pl-stats {
  padding: 70px 0;
  background: #f6f7fb;
}

.card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* RECRUITERS */
.pl-companies {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* GRID */
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.company-card {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

/* IMAGE */
.company-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

/* TEXT */
.overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transform: translateY(20px);
  transition: 0.4s;
}

/* HOVER */
.company-card:hover img {
  transform: scale(1.1);
}

.company-card:hover .overlay {
  opacity: 1;
}

.company-card:hover .overlay span {
  transform: translateY(0);
}

/* PROCESS */
.pl-process {
  padding: 70px 0;
  background: #fafafa;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-6px);
}


/* RESPONSIVE */
@media(max-width:992px) {

  .grid-4,
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {

  .grid-4,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .pl-hero h1 {
    font-size: 20px;
  }
.pl-hero p {
    font-size: 12px;
  }
  .pl-hero {
    height: auto;
    padding: 80px 20px;
  }
  .pl-stats {
    padding: 20px 0;
    background: #f6f7fb;
}
.pl-companies {
    padding: 20px 0;
}
.pl-process {
    padding: 20px 0;
    background: #fafafa;
}
}