/* Cards Component Styles */

/* Service Cards */
.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 24px 20px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.service-content p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-content .btn {
  align-self: flex-start;
}

/* Feature Cards */
.feature {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature i {
  font-size: 2.5rem;
  color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.feature p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

/* Value Cards */
.value-item {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-item i {
  font-size: 2.5rem;
  color: #1e3a8a;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.value-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.value-item p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-image img {
    height: 160px;
  }
  
  .service-content {
    padding: 20px 16px 16px 16px;
  }
  
  .service-content h3 {
    font-size: 1.2rem;
  }
  
  .feature,
  .value-item {
    padding: 24px 16px;
  }
  
  .feature i,
  .value-item i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .service-image img {
    height: 120px;
  }
  
  .service-content {
    padding: 16px 12px 12px 12px;
  }
  
  .service-content h3 {
    font-size: 1.1rem;
  }
  
  .feature,
  .value-item {
    padding: 20px 12px;
  }
  
  .feature h3,
  .value-item h3 {
    font-size: 1.1rem;
  }
} 