.services-hero {
  background-image: url('../images/img6.png'); 
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
}

.services-hero::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.row {
  display: flex;
  flex-wrap: wrap;        
  align-items: stretch;  
}

.row > .col-md-6,
.row > .col-lg-4 {
  display: flex;
  flex: 1;                
  max-width: 100%;       
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1;               
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;   
  display: block;
}

.service-content {
  padding: 20px;
  flex: 1;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #0d3b66;
}

.service-content p {
  font-size: 0.95rem;
  color: #555;
}

.learn-more-link {
  display: inline-block;
  margin-top: 8px;
  color: #006C93; 
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.learn-more-link:hover {
  color: #084298; 
}

.btn-primary {
  background-color: #006C93 !important;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}

.tech-highlight {
  background-color: #f57c00;
}

.services-cta {
  padding: 60px 0;
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
