/* ===================================
   Hero Section Fixes
   =================================== */

/* Fix hero circle positioning */
.inner-hero .all-images .circle-area {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero .all-images .circle-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.inner-hero .all-images .circle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inner-hero .all-images .circle-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inner-hero .all-images .circle-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Ensure hero text is properly contrasted */
.inner-hero .inner-heading h1 {
  color: var(--had-white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.inner-hero .page-prog a,
.inner-hero .page-prog p {
  color: var(--had-white) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.inner-hero .page-prog .icon {
  color: var(--had-accent-orange) !important;
}

/* Fix hero background overlay for better contrast */
.inner-hero .hero1-single-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 95, 153, 0.4);
  z-index: 1;
}

.inner-hero .inner-heading {
  position: relative;
  z-index: 10;
}

.inner-hero .all-images {
  position: relative;
  z-index: 10;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .inner-hero .all-images .circle-area {
    width: 100px;
    height: 100px;
  }
  
  .inner-hero .all-images .circle-arrow img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 767px) {
  .inner-hero .all-images .circle-area {
    width: 80px;
    height: 80px;
    margin-top: 30px;
  }
  
  .inner-hero .all-images .circle-arrow img {
    width: 16px;
    height: 16px;
  }
  
  .inner-hero .inner-heading {
    text-align: center;
  }
}