.elementor-149 .elementor-element.elementor-element-ce0cff4{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-bd3a53c */.awards-section {
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.award-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.award-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0, 183, 255, 0.1), transparent);
  transition: all 0.5s ease;
  z-index: 0;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 183, 255, 0.2);
}

.award-card:hover::after {
  left: 100%;
}

.award-card h3 {
  font-size: 1.3rem;
  color: #0077aa;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
}

.award-card p {
  font-size: 0.95rem;
  color: #555;
  z-index: 1;
  position: relative;
}/* End custom CSS */