/* PODIUM SECTION */
.work-podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  padding: 60px 8%;
}

/* BASE CARD */
.podium-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  text-align: center;
  transition: all .35s ease;
  position: relative;
}

.podium-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.podium-card h3 {
  padding: 15px;
  font-weight: 700;
}

/* SIZES */
.first {
  transform: scale(1.08);
  z-index: 2;
}

.second,
.third {
  opacity: .9;
}

/* HOVER */
.podium-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg,#00ffd0,#00c3ff);
  color: #001018;
  padding: 6px 10px;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 6px;
}

/* GALLERY GRID */
.work-gallery {
  padding: 50px 8% 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 18px;
}

.work-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}

.work-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
/* ================= STATS ================= */
.work-stats {
  background: #020617;
  color: white;
  padding: 60px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  text-align: center;
}

.stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat p {
  color: #94a3b8;
  font-size: .9rem;
}

/* ================= CRAFT ================= */
.craft {
  padding: 80px 8%;
  background: linear-gradient(to right,#020617,#020617 60%,#020617ee);
}

.craft-text {
  max-width: 700px;
  color: #e2e8f0;
}

.craft h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.craft p {
  line-height: 1.7;
  color: #cbd5f5;
}

/* ================= QUOTE ================= */
.work-quote {
  padding: 70px 10%;
  text-align: center;
  background: #f8fafc;
}

.work-quote blockquote {
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
  color: #020617;
}

.work-quote span {
  display: block;
  margin-top: 15px;
  color: #64748b;
  font-size: .9rem;
}

/* ================= CTA ================= */
.work-cta {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(135deg,#020617,#000000);
  color: white;
}

.work-cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.work-cta p {
  color: #94a3b8;
  margin-bottom: 25px;
}

.btn-main {
  background: linear-gradient(135deg,#00ffd0,#00c3ff);
  color: #001018;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform .25s ease;
}

.btn-main:hover {
  transform: translateY(-3px);
}
/* ================= PODIUM SECTION ================= */

.work-podium {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: end;
  gap: 30px;
}

/* Base Card */
.podium-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: all .4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* Image */
.podium-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Title */
.podium-card h3 {
  padding: 20px;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Featured (Center Winner) */
.first {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  border: 2px solid rgba(0,255,208,.6);
  background: linear-gradient(to bottom, #ffffff, #f8ffff);
}

/* Subtle scale difference */
.second,
.third {
  opacity: 0.95;
}

/* Hover */
.podium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 90px rgba(0,0,0,.25);
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg,#00ffd0,#00c3ff);
  color: #001018;
  padding: 8px 12px;
  font-size: .75rem;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: .5px;
}
/* ================= MOBILE PODIUM ================= */

@media (max-width: 900px) {
  .work-podium {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .first {
    transform: none;
    order: -1; /* Winner appears first */
  }

  .podium-card img {
    height: 220px;
  }
}
.first::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at top,
      rgba(0,255,208,.25),
      transparent 60%);
  pointer-events: none;
}
