
.aboutHero {
  position: relative;
  min-height: 60vh;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #1A1C1E, #5a5754, #fafafa);;
  padding-top: 5vh;
  padding-bottom: 10vh
}

.aboutHero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #444444, #222222);
  color: var(--brand-blue);
  margin-bottom: 3vh;
}

.aboutHero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.aboutHero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero-button {
  text-decoration: none;
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .aboutHero-content h1 {
    font-size: 2.2rem;
  }
  .aboutHero-content p {
    font-size: 1rem;
  }
}

/* Cards for expertise */

.aboutHero-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0px;
  
}

:root {
  --brand-blue: #03cce6;
  --brand-green: #7ee700;
  --aboutHero-blue: #00d4ff;
  --aboutHero-green: #00ff87;
}

.card {
  background: linear-gradient(135deg, #444, #222);
  background-attachment: fixed;
  padding: 30px 15px;
  max-width: 300px;
  box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column; /* Stacks items vertically */
  gap: 15px;               /* Adds clean space between the image and other elements */
  min-height: 150px;
  height: auto;
  text-align: center;
}

.card h3 {
  margin-top: 0px;;
  position: relative;
  top: 10px;
  color: var(--brand-green); 
  font-size: 1.5rem;
}

.card .stat{
    font-size:4rem;
    font-weight: bold;
}

.card p {
  margin:0px;
  position: relative;
  top: 15px;
  font-size: 1rem;
  line-height: 1;
  color: var(--brand-blue);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card img{
  width: 100%;
  max-width: 100px;  
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 10%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .card {
    min-height: 120px;
    padding: 15px;
  }

  .card h3{
    font-size: 1rem;
  }

  .card p{
    font-size: .8rem;
  }
}