/* ===============================
   INFINA PARALLAX HEADER
   =============================== */
.infina-parallax {
  position: relative;
  width: 100vw;
  height:95vh;
  margin-left: calc(50% - 50vw);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 455px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  overflow: visible;
}

/* Overlay content (heading + breadcrumb) */
.infina-parallax-overlay {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  z-index: 2;
}

/* Title styling */
.infina-parallax-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* Blue accent text */
.infina-blue {
  color: #4CCDED;
}

/* Breadcrumbs */
.infina-breadcrumb {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #fefefe;
  margin-top: 10px;
}

.infina-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.infina-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.infina-breadcrumb span,
.infina-breadcrumb a:last-child {
  color: #4CCDED;
  pointer-events: none;
  text-decoration: none;
}

/* ===============================
   CIRCLE ICON (Service Detail)
   =============================== */
.circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 207px;
  height: 207px;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 10;
  background: #4CCDED;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Icon inside circle */
.center-icon {
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}



/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 992px) {
  .infina-parallax {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .circle {
    width: 150px;
    height: 150px;
    border-width: 6px;
    transform: translate(-50%, 40%);
  }

  .center-icon img {
    max-width: 65%;
  }

  .infina-parallax-title {
    font-size: clamp(24px, 4vw, 36px);
  }
}

@media (max-width: 480px) {
  .infina-parallax {
    background-attachment: scroll;
    min-height: 320px;
  }

  .circle {
    width: 120px;
    height: 120px;
    border-width: 5px;
    transform: translate(-50%, 35%);
  }

  .center-icon img {
    max-width: 70%;
  }
}
