.phd-data-analysis-sec {
  padding: 20px 0 60px 0;
}

.data-analysis-hero-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ondezx-service-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 35px;
}

.ondezx-service-box-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none !important;
  color: #0f2b3c;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ondezx-service-box-link .service-box-arrow {
  color: #a0aec0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ondezx-service-box-link:hover {
  border-color: #7db907;
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(125, 185, 7, 0.15);
  color: #008b86;
}

.ondezx-service-box-link:hover .service-box-arrow {
  color: #7db907;
  transform: translateX(4px);
}

/* Category Title Styling */
.category-heading {
  font-size: 22px;
  font-weight: 700;
  color: #0f2b3c;
  margin-top: 30px;
  margin-bottom: 8px;
}