
/* Awareness Section Styles */
.awareness-section {
  background: #e0e0e0; /* darker gray background to set apart */
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* soft shadow around section */
}

.awareness-section .overlay {
  background-color: rgba(0, 0, 0, 0.03); /* subtle dark tint for depth */
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Card Styles (Smaller + Equal Height) */
.info-card {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,0.2); /* darker border for contrast */
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.05);
  font-size: 0.9rem;
  transition: transform 0.3s ease, 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;

  /* Equal Height & Vertical Center */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Hover Lift Effect */
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  border-color: var(--bs-info); /* border highlight on hover */
}

/* Icon Animation (Smaller Icons) */
.icon-style {
  color: var(--bs-info);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.info-card:hover .icon-style {
  transform: scale(1.1);
}

/* Heading Adjustment */
.info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

/* Link Styles */
.info-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.info-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Tighter Grid Spacing */
.awareness-section .row {
  margin-bottom: 1rem;
}

.awareness-section .col-lg-3,
.awareness-section .col-md-4,
.awareness-section .col-sm-6 {
  margin-bottom: 1rem;
}

/* Initial state for AOS fade-up (optional extra smoothness) */
.info-card {
  opacity: 0;
  transform: translateY(20px);
}

[data-aos].aos-animate .info-card {
  opacity: 1;
  transform: translateY(0);
}
