body {
  background: white;
  font-family: "Arial", sans-serif;
}

/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(#0F4F86, #0F4F86);
  display: flex;
  justify-content: center;
  align-items: flex-start; /* start from top, then adjust with padding */
  height: 300px;
  position: relative;
  text-align: center;
  padding-top: 120px; /* ✅ moves text downward neatly */
}

/* --- HERO TITLE --- */
.hero-title {
  font-family: 'La Belle Aurore', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 120px;
  line-height: 120px;
  color: white;
  margin: 0;
  text-transform: capitalize;
}

/* --- RESPONSIVE DESIGN --- */

/* ✅ Tablets */
@media (max-width: 1024px) {
  .hero-section {
    height: 500px;
    padding-top:220px;
  }

  .hero-title {
    font-size: 90px;
    line-height: 100px;
  }
}

/* ✅ Small Tablets / Large Phones */
@media (max-width: 768px) {
  .hero-section {
    height: 250px;
    padding-top: 110px;
     /* padding-top:10px; */
  }

  .hero-title {
    font-size: 65px;
    line-height: 75px;
  }
}

/* ✅ Smartphones */
@media (max-width: 480px) {
  .hero-section {
    height: 250px;
    padding-top:160px;
  }

  .hero-title {
    font-size: 40px;
    line-height:10px;
  }
}

/* ✅ Very Small Devices */
@media (max-width: 360px) {
  .hero-section {
    height: 230px;
    padding-top: 140px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }
}




.urologist-section {
  text-align: center;
  padding: 60px 20px;
  color: #2F3133;
  font-weight: 600;
}

.urologist-section h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem; /* ~32px on most browsers */
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.urologist-section p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem; /* Base 16px, scales naturally */
  line-height: 1.6;
  letter-spacing: 0;
  margin: 0 auto;
  max-width: 800px;
  color: #2F3133;
  padding: 0 10px;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* For large tablets & small laptops (≤1200px) */
@media (max-width: 1200px) {
  .urologist-section {
    padding: 50px 15px;
  }
  .urologist-section h2 {
    font-size: 1.8rem;
  }
  .urologist-section p {
    font-size: 0.95rem;
    max-width: 700px;
  }
}

/* For tablets (≤768px) */
@media (max-width: 768px) {
  .urologist-section {
    padding: 40px 15px;
  }
  .urologist-section h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .urologist-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 90%;
  }
}

/* For mobile phones (≤480px) */
@media (max-width: 480px) {
  .urologist-section {
    padding: 30px 10px;
  }
  .urologist-section h2 {
    font-size: 1.4rem;
  }
  .urologist-section p {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 100%;
  }
}



    /* SECTION */
  /* ====== SECTION CONTAINER ====== */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #fff;
}

.procedures-section {
  padding: 60px 10%;
  display: flex;
  justify-content: center;
  background: #fff;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 100%;
  /* max-width: 1200px; */
}

/* ====== EACH CARD ====== */
.procedure-card {
  background-color: #fff;
  border: 1.5px solid #1162A8;
  border-radius: 12px;
  text-align: center;
  padding: 35px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.procedure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* ====== ICON BOX ====== */
.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  /* background-color: #0f4f86; */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.icon-box img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

/* ====== TEXT ====== */
.procedure-card p {
  font-size: 20px;
  font-weight: 600;
  color: #2F3133;

  line-height: 1.4;
  margin: 0;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .procedures-section {
    padding: 40px 8%;
  }
}

@media (max-width: 768px) {
  .container {
    gap: 20px;
  }
  .procedure-card {
    padding: 28px 12px;
  }
  .icon-box {
    width: 65px;
    height: 65px;
  }
  .icon-box img {
    width: 38px;
    height: 38px;
  }
  .procedure-card p {
    font-size: 15px;
  }
}