/* Modern Card Designs */
.service-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
}

.service-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.service-card-modern p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features-modern {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features-modern li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 0.95rem;
}

.service-features-modern li::before {
  content: '✓';
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.service-buttons-modern {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-service-primary {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.btn-service-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.btn-service-secondary {
  background: transparent;
  color: #1e3c72;
  padding: 12px 24px;
  border: 2px solid #1e3c72;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.btn-service-secondary:hover {
  background: #1e3c72;
  color: white;
  transform: translateY(-2px);
}

/* Feature Cards */
.feature-card-modern {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffd700;
  border-radius: 16px 16px 0 0;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-icon-modern {
  width: 70px;
  height: 70px;
  background: #ffd700;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #1e3c72;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.feature-card-modern h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.feature-card-modern p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.feature-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-buttons .btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.feature-buttons .btn-primary {
  background: #1e3c72;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.feature-buttons .btn-primary:hover {
  background: #2a5298;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.feature-buttons .btn-secondary {
  background: transparent;
  color: #1e3c72;
  border: 2px solid #1e3c72;
}

.feature-buttons .btn-secondary:hover {
  background: #1e3c72;
  color: white;
  transform: translateY(-2px);
}

/* Statistics Cards */
.stats-card-modern {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.stats-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.stats-number-modern {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.stats-label-modern {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card-modern,
  .feature-card-modern,
  .stats-card-modern {
    padding: 1.5rem;
  }
  
  .service-buttons-modern {
    flex-direction: column;
  }
  
  .btn-service-primary,
  .btn-service-secondary {
    width: 100%;
  }
}

