 /* Base Section Styling */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
  /* Applying your background image */
  background-image: url('../../../images/empowering-life-science.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #446bb3; /* Solid fallback matching the image base color */
}
.hero-section .small-caption{
  color:#55fef9
}
.hero-section .small-caption:after{
  background-color: #55fef9!important
}
/* The Animated Overlay */
.dot-shimmer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks to pass through to buttons/content */
  
  /* A subtle white-to-transparent gradient mesh */
  background: radial-gradient(
    circle at 50% 50%, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0) 70%
  );
  background-size: 200% 200%;
  
  /* Blends the gradient nicely with the background image dots */
  mix-blend-mode: overlay; 
  
  /* Smooth, infinite animation loop */
  animation: waveMotion 12s ease-in-out infinite alternate;
}

/* Hero Content Styles (Centered & Readable) */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.hero-section .card-white{
    background-color:white;
    border-radius:1rem
}
.hero-section .card-white h2{
    color: #4568b2;
    font-size: 30px;
    font-family: 'Cairo';
    font-weight: bold;
    line-height: 1;
}
.hero-section .card-white p{
      color: #0c2f62;
    font-size: 18px;
    font-weight: normal;
    font-family: 'Cairo';
}
.hero-section p.description{
  font-family: 'Cairo';
   color: white;
   font-size:19px;
   font-weight: normal;
}
.hero-section h3{
      font-size: 45px;
}
/* Keyframe Animation: Simulates a slow, floating light wave across the dots */
@keyframes waveMotion {
  0% {
    background-position: 0% 50%;
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: 100% 50%;
    opacity: 0.7;
  }
}