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;
}

.surgeon-info .text-block{
  gap: 2px;
  width: unset;
  margin-left: unset;
  height: unset;
}
/* --- 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;
  }
  .urologist-section p {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
    text-align: justify;
  }

}

/* ✅ 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: 1.2rem; /* 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%;
  }
  .surgeon-info .text-block{
    max-width: unset !important;
  }
}

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

/* --- SURGEONS GRID SECTION --- */
       /* Reset */
.surgeon-card {
  position: relative;
  border: 2px solid #d6e4f0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Blue highlighted card */
.surgeon-card--highlight {
  background-color: #003b75;
  color: #fff;
}

.surgeon-card--highlight .card-border {
  border: 1px solid #007bff;
}




.surgeon-image {
  width: 300px;          /* You can adjust width (e.g. 150–200px) */
  height: 280px;         /* Equal height for square look */
  object-fit: cover;     /* Keeps proportions while cropping slightly */
  border-radius: 8px;
  display: block;
  margin: 30px auto 10px auto; /* Centers the image with spacing */
  background-color: #fff;
  border-radius: 15px;
}
/* Info container under image */
.surgeon-info {
  position: relative;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 18px;
  min-height: 80px;
}

/* Blue card version */
.surgeon-card--highlight .surgeon-info {
  background-color: #003b75;
}





.text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* move text to the left */
  justify-content: center;
  text-align: left;
  position: relative;
  left: 25px;
  color: #2F3133;
}



.surgeon-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 2;
  color: inherit;
}

/* Icon position inside info area */
.icon-overlay {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background-color: #003b75; */
  padding: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.text-block-text{
  position: relative;
  left:40px;
}


/* ===========================
   GLOBAL SCROLL ANIMATIONS
=========================== */

/* Initial hidden state for all reveal elements */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* When element becomes visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slight stagger effect */
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* Smooth animation on all devices */
@media (max-width: 768px) {
  .reveal {
    transform: translateY(25px);
  }
}

/* =============== PAGE LOADER =============== */
.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: hideLoader 1.8s forwards; /* loader duration */
}

/* Spinner */
.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top-color: #0077ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Hide loader after delay */
@keyframes hideLoader {
  0% { opacity: 1; visibility: visible; }
  80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* Spinner rotation */
@keyframes spin {
  100% { transform: rotate(360deg); }
}


@media (max-width:1920px) {
  /*.top-bar img {
    left:100px; 
  }

   .call-box {
    right:140px;
    font-size: 0.85rem;
  }*/
}