/* Hero Section Improvements - Better Visibility */

/* Removed all overlays - image background now fully visible */

/* Improve image brightness */
.hero img {
  filter: brightness(1.2) contrast(0.9);
}

/* Enhanced text visibility */
.hero .container {
  position: relative;
  z-index: 10;
}

.hero h1.text-display {
  color: var(--heading-color);
  text-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.7),
    0 2px 4px rgba(255, 255, 255, 0.9),
    0 0 2px rgba(0, 0, 0, 0.8);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero p.lead {
  color: var(--default-color);
  text-shadow: 
    0 3px 6px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(255, 255, 255, 0.9),
    0 0 1px rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

/* Better button visibility */
.hero .btn-get-started {
  background: var(--accent-color);
  color: white;
  box-shadow: 
    0 4px 12px rgba(1, 95, 201, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero .btn-get-started:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(40, 139, 203, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Icon boxes with better contrast */
.hero .icon-box {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.hero .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero .icon-box .icon {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(1, 95, 201, 0.3);
}

.hero .icon-box .title a {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.25rem;
}

.hero .icon-box .description {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero .icon-box {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (max-width: 576px) {
  .hero .icon-box {
    background: rgba(255, 255, 255, 0.92);
  }
}