/* Start custom CSS for html, class: .elementor-element-9ab79de */:root{
  --primary:#1D0754;
  --accent:#4AFFE8;
}

/* =========================
   HERO
========================= */

.cat-hero{
  position:relative;
  min-height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background-image:url("https://apexradiodiagnostic.com/wp-content/uploads/2026/04/Microbiology-Infection-Screening.webp");
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(29,7,84,0.88),
    rgba(20,3,61,0.7)
  );
}

.glass-hero{
  position:relative;
  max-width:820px;
  padding:42px;
  text-align:left;

  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.25);
  border-radius:18px;

  box-shadow:0 25px 60px rgba(0,0,0,0.25);

  animation:fadeUp 0.9s ease;
}

.glass-hero h1{
  font-size:44px;
  color:#fff;
  margin-bottom:10px;
}

.glass-hero p{
  color:#d7dbff;
  line-height:1.7;
  margin-bottom:20px;
}

.hero-btn{
  display:inline-block;
  background:var(--accent);
  color:#053d38;
  padding:12px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.hero-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(74,255,232,0.4);
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding:80px 20px;
  background:#fff;
}

.about-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.about-text h2{
  color:var(--primary);
  margin-bottom:12px;
}

.about-text p{
  color:#4d5670;
  line-height:1.7;
  margin-bottom:10px;
}

.about-image img{
  width:100%;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* =========================
   BENEFITS
========================= */

.benefits{
  padding:80px 20px;
  background:linear-gradient(135deg,#f7f9ff,#eef3ff);
  text-align:center;
}

.benefits h2{
  color:var(--primary);
  margin-bottom:30px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1000px;
  margin:auto;
}

.benefit-card{
  background:#fff;
  padding:16px;
  border-radius:12px;
  box-shadow:0 10px 22px rgba(0,0,0,0.05);
  font-weight:500;
  color:#2b2f4a;
  transition:0.3s ease;
}

.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

/* =========================
   HOW IT WORKS
========================= */

.how-it-works{
  padding:80px 20px;
  text-align:center;
  background:#fff;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  max-width:1100px;
  margin:auto;
}

.step{
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  padding:22px;
  transition:0.3s ease;
}

.step:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 35px rgba(0,0,0,0.08);
}

.step span{
  display:inline-block;
  background:var(--accent);
  color:#053d38;
  font-weight:700;
  width:36px;
  height:36px;
  line-height:36px;
  border-radius:50%;
  margin-bottom:10px;
}

/* =========================
   SERVICES GRID
========================= */

.services-section{
  padding:80px 20px;
  background:#fff;
}

.services-container{
  max-width:1200px;
  margin:auto;
}

.section-title{
  color:var(--primary);
  margin-bottom:30px;
  font-size:28px;
}

/* GRID FIXED */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  align-items:stretch;
}

/* CARD */
.service-card{
  background:linear-gradient(145deg,#ffffff,#f7f9ff);
  border:1px solid #e8ecff;
  border-radius:16px;
  overflow:hidden;

  box-shadow:0 12px 25px rgba(0,0,0,0.06);

  display:flex;
  flex-direction:column;

  opacity:0;
  transform:translateY(25px);
  animation:fadeUp 0.8s forwards;
}

/* STAGGER ANIMATION */
.service-card:nth-child(1){animation-delay:0.1s;}
.service-card:nth-child(2){animation-delay:0.2s;}
.service-card:nth-child(3){animation-delay:0.3s;}
.service-card:nth-child(4){animation-delay:0.4s;}
.service-card:nth-child(5){animation-delay:0.5s;}
.service-card:nth-child(6){animation-delay:0.6s;}
.service-card:nth-child(7){animation-delay:0.7s;}
.service-card:nth-child(8){animation-delay:0.8s;}

.service-card:hover{
  transform:translateY(-8px);
  border-color:var(--accent);
  box-shadow:0 20px 45px rgba(29,7,84,0.15);
}

/* IMAGE */
.service-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

/* TEXT */
.service-card h3{
  margin:14px 14px 6px;
  color:var(--primary);
  font-size:15.5px;
}

.service-card p{
  margin:0 14px 16px;
  color:#5a5f7a;
  font-size:13.5px;
  line-height:1.6;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .steps{
    grid-template-columns:repeat(2,1fr);
  }

  .benefits-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .services-grid,
  .about-container,
  .steps,
  .benefits-grid{
    grid-template-columns:1fr;
  }

  .glass-hero h1{
    font-size:32px;
  }
}

:root{
--primary:#1D0754;
--accent:#4AFFE8;
}

/* HERO (MICROBIOLOGY = CLEAN + STERILE LOOK) */
.micro-hero{
background-image:url("https://apexradiodiagnostic.com/wp-content/uploads/2026/04/Microbiology-Infection-Screening.webp");
background-size:cover;
background-position:center;
}

.micro-hero .hero-overlay{
background:linear-gradient(
135deg,
rgba(10,20,50,0.88),
rgba(5,10,25,0.75)
);
}

/* SLIGHTLY COOLER CARD STYLE */
.services-section .service-card{
background:linear-gradient(145deg,#ffffff,#f6fbff);
border:1px solid #e6f2ff;
}

/* MICRO INTERACTION (FEELS LIKE LAB GLASS) */
.service-card:hover{
box-shadow:0 25px 55px rgba(10,20,50,0.18);
border-color:#4AFFE8;
}

.service-card img{
transition:transform 0.4s ease;
}

.service-card:hover img{
transform:scale(1.06);
}

/* MORE “STERILE” LOOK FOR TEXT */
.service-card p{
color:#5a647a;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8763609 *//* 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;
}/* End custom CSS */