
.wh-section {
  background: #ffffff;
  padding: 72px 32px;
  font-family: "Poppins";
}
.wh-tag {
  display: inline-block;
  background: #e8f3ff;
  color: #0978ef;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1.5px solid #b3d8fb;
}

.wh-heading {
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  color: #07242f;
  margin: 0 0 16px;
}

/* Tablet */
@media (max-width: 1024px) {
  .wh-heading {
    font-size: 38px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .wh-heading {
    font-size: 30px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .wh-heading {
    font-size: 24px;
  }
}
.wh-heading span {
  color: #0978ef;
}
.wh-desc {
  font-size: 15px;
  color: #5a6a85;
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.75;
}
.wh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.wh-card {
  background: #fff;
  border: 1.5px solid #dce9f8;
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  animation: fadeUp 0.6s ease both;
}
.wh-card:nth-child(1) {
  animation-delay: 0.05s;
}
.wh-card:nth-child(2) {
  animation-delay: 0.12s;
}
.wh-card:nth-child(3) {
  animation-delay: 0.19s;
}
.wh-card:nth-child(4) {
  animation-delay: 0.26s;
}
.wh-card:nth-child(5) {
  animation-delay: 0.33s;
}
.wh-card:nth-child(6) {
  animation-delay: 0.4s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wh-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0978ef08, #01439208);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.wh-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 48px rgba(9, 120, 239, 0.13),
    0 4px 12px rgba(9, 120, 239, 0.08);
  border-color: #0978ef;
}
.wh-card:hover::before {
  opacity: 1;
}
.wh-card:hover .wh-icon-wrap {
  background: #0978ef;
  transform: scale(1.1) rotate(-5deg);
}
.wh-card:hover .wh-icon-wrap i {
  color: #fff;
}
.wh-card:hover .wh-card-title {
  color: #0978ef;
}
.wh-card:hover .wh-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #0978ef;
}
.wh-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #e8f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
}
.wh-icon-wrap i {
  font-size: 24px;
  color: #0978ef;
  transition: color 0.3s ease;
}
.wh-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0a1f44;
  margin: 0 0 10px;
  transition: color 0.3s ease;
  line-height: 1.3;
}
.wh-card-desc {
  font-size: 13.5px;
  color: #6b7c99;
  line-height: 1.7;
  margin: 0;
}
.wh-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.wh-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}
.wh-divider-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0978ef);
  border-radius: 2px;
}
.wh-divider-line.right {
  background: linear-gradient(90deg, #0978ef, transparent);
}
.wh-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0978ef;
}
.wh-header-inner {
  text-align: center;
  margin-bottom: 0;
}
