@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

body {
  font-family: Montserrat, sans-serif;
  color: #3B2E77;
  background-color: #e4f3fb;
  font-size: 15px;

}

a {
  color: #3B2E77;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn:hover {
  color: #ffffff;
}

h2 {
  font-size: 2.6rem;
}

.primary-color {
  color: #91307B;
}

.secondary-color {
  color: #3B2E77;
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
  /* or 20px to add left spacing */
}


/* Make your header sit on top of the page and be transparent */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 50;
}

/* Ensure your nav inside the header also loses its white bg */
#header nav {
  background: transparent !important;
}


.cta__button--primary {
  border-radius: 9999px;
  /* fallback for very old browsers */
  background-color: #91307B;

  /* ★ gradient from dark purple on the left to magenta on the right ★ */
  background-image: linear-gradient(90deg,
      #3B2E77 0%,
      #91307B 100%);

  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);

  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow,
    transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Full-screen hero with background image */
.hero-section {
  background-image: url('../assets/images/home.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  color: white;
}

/* Frosted-glass effect */
.frosted-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
}

/* Gradient button from secondary → primary */
.btn-gradient {
  background: linear-gradient(to right,
      var(--bs-secondary),
      var(--bs-primary));
  color: #fff;
}

.btn-gradient:hover {
  opacity: 0.9;
}

/* Responsive logo height: 56px on xs, 80px on sm+ */
.logo {
  height: 56px;
}

@media (min-width: 576px) {
  .logo {
    height: 80px;
  }
}

.mobile-only {
  display: none;
}

/* Ensure this header sits on top if you overlap content */
#header {
  z-index: 50;
}

.lung-section {
  position: relative;
  min-height: 600px;
  background-color: #e4f3fb;
  background: url('../assets/images/lung-treatment-new.jpeg') center/cover no-repeat;
  overflow: hidden;
}


.lung-section .path-bg {
  height: 600px;
  width: 100%;
  background: url('../assets/images/path2.png') center/cover no-repeat;
}

.treatment-section {
  position: relative;
  min-height: 650px;
  background-color: #e4f3fb;
  overflow: hidden;
  background: url('../assets/images/treatment.jpeg') center/cover no-repeat;
}

.treatment-section .path-bg {
  height: 650px;
  width: 100%;
  background: url('../assets/images/path2.png') center/cover no-repeat;
}



/* helper text color */
.text-purple {
  color: #5f3080;
  background: linear-gradient(90deg, #a1338b, #3f51b5);
  /* Your gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.doctor-section img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 5%;
  margin-bottom: 20px;
}

.doctor-section h3 {
  font-size: 20px;
  font-weight: 600;
}

.doctor-section h4 {
  font-size: 20px;
  font-weight: 400;
}

.doctor-section p {
  font-size: 14px;

}

.condition-section {
  position: relative;
  min-height: 550px;
  background-color: #e4f3fb;
  overflow: hidden;
  background: url('../assets/images/condition.jpeg') center/cover no-repeat;
}

.condition-section .path-bg {
  height: 550px;
  width: 100%;
  background: url('../assets/images/path.png') center/cover no-repeat;
}



.facility-section {
  position: relative;
  min-height: 600px;
  background-color: #e4f3fb;
  background: url('../assets/images/facilities.jpeg') center/cover no-repeat;

  overflow: hidden;
}


.facility-section .path-bg {
  height: 600px;
  width: 100%;
  background: url('../assets/images/path.png') center/cover no-repeat;
}

.contact-section {
  position: relative;
  min-height: 500px;
  background-color: #e4f3fb;
  background: url('../assets/images/hospital-img.png') center/cover no-repeat;
  overflow: hidden;
}

.contact-section p {
  font-size: 14px;
}

.footer-section {
  background-image: linear-gradient(90deg,
      #3B2E77 0%,
      #91307B 100%);
}

.footer-section i {
  font-size: 30px;
  color: #ffffff;
  padding: 0px 10px;
}

@media (max-width: 767px) {

  .condition-section,
  .treatment-section,
  .lung-section,
  .facility-section,
  .contact-section {
    height: auto !important;
    background: unset !important;
  }

  .path-bg {
    height: auto !important;
    background: unset !important;
  }

  .mobile-only {
    display: block;
  }

  h2 {
    font-size: 2rem;
  }
  .hero-section h1 {
    margin-top: 100px;
  }

  .cta__button--primary {
  
    padding: 0.2rem 0.5rem;
  }
  .logo {
    height: 50px;
  }
}