.work-section {
  padding: 110px 8%;
  background: #05050c;
  color: white;
}

/* HEADER */
.work-header {
  max-width: 720px;
  margin-bottom: 65px;
}

.mini-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3456d3;
}

.work-header h1 {
  font-size: 46px;
  font-weight: 800;
  margin: 18px 0;
  line-height: 1.2;
}

.work-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.work-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.work-card:hover {
  border-color: rgba(52, 86, 211, 0.6);
  transform: translateY(-8px);
}

/* IMAGE BOX */
.work-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 18px;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card:hover img {
  transform: scale(1.08);
}

/* TEXT */
.work-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.work-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* TAG */
.work-type {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 50px;
  background: rgba(52, 86, 211, 0.12);
  color: #bfc6ff;
  font-weight: 600;
}

/* RESPONSIVE */

/* Tablets */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-header h1 {
    font-size: 38px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .work-section {
    padding: 80px 6%;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-header h1 {
    font-size: 30px;
  }

  .work-image {
    height: 200px;
  }
}
/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right */
  width: 60px;        /* icon size */
  height: 60px;
  z-index: 1000;      /* ensures it stays on top */
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* slight hover effect */
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}