/* Start custom CSS for html, class: .elementor-element-f5f27cf *//* Container for proper alignment */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.service-hero {
  position: relative;
  height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://apexradiodiagnostic.com/wp-content/uploads/2026/03/grok-video-e72ebd4e-fa4c-4459-b6e9-abb00f28aa1a-mp4-image.jpg") center/cover no-repeat;
  filter: saturate(0.9) contrast(1.1);
  z-index: 1;
}

.service-hero-glass {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  animation: fadeUp 1s ease forwards;
}

.service-title {
  font-size: clamp(2rem,5vw,3rem);
  font-weight: 800;
  color: #1D0754;
  margin-bottom: 1rem;
}

.service-tagline {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.btn-primary, .btn-secondary { white-space: nowrap; }

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  margin-top: 80px;
}

.overview-text h2 {
  color: #1D0754;
  font-weight: 700;
  margin-bottom: 1rem;
}

.overview-text p, .overview-text ul {
  color: #555;
  line-height: 1.6;
}

.overview-text ul li {
  margin-bottom: 8px;
}

.overview-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(29,7,84,0.12);
  object-fit: cover;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.benefit-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 20px;
  text-align: left; /* Align text to left */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s, box-shadow .3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(29,7,84,0.2);
}

.benefit-card a.btn {
  margin-top: 1rem; /* Proper spacing from text */
}

/* Procedure Section */
.procedure-steps {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 20px;
}

.procedure-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 50px;
  font-size: 1rem;
  color: #555;
}

.procedure-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: #4AFFE8;
  color: #fff;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* CTA Section */
.service-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(90deg, #ffffff, #f0fcff);
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 60px;
}

.service-cta h2 {
  color: #1D0754;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-cta .btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive */
@media(max-width: 980px){
  .overview-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 600px){
  .benefits-grid { grid-template-columns: 1fr; }
}/* End custom CSS */