/* Slideshow styles - enhanced with dark orange/green */
.slideshow-container {
  position: relative;
  max-width: 500px;
  margin: 30px auto 20px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s;
  border: 1px solid rgba(255,140,0,0.2);
}

.slideshow-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border-color: #FF8C00;
}

.slideshow-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.5s ease;
}

.slideshow-controls {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.slideshow-btn {
  background: #FF8C00;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slideshow-btn:hover {
  background: #00a651;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,166,81,0.3);
}

.slideshow-counter {
  font-size: 14px;
  color: #333;
  background: #f9f9f9;
  padding: 6px 15px;
  border-radius: 40px;
  border: 1px solid #FF8C00;
}

.slideshow-status {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #00a651;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #FF8C00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: 30px 0 40px;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,166,81,0.2);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
  border-color: #FF8C00;
}

.service-card img {
  width: 50%;
  margin-top: 10px;
  border-radius: 12px;
  transition: transform 0.3s;
}

.service-card:hover img { transform: scale(1.05); }

.service-card h3 {
  padding: 12px;
  font-size: 18px;
  color: #FF8C00;
  margin: 0;
}

.service-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding: 0 8px 12px;
}

.active-service {
  border: 2px solid #FF8C00;
  background: #fffaf5;
  transform: scale(1.02);
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #FF8C00;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  height: 3px;
  width: 60px;
  background: #00a651;
  transition: width 0.4s;
}

.section-title:hover::after { width: 120px; }

.featured { margin-bottom: 30px; }

@media (max-width: 768px) {
  .service-grid { flex-direction: column; align-items: center; }
  .service-card { width: 100%; max-width: 300px; }
  .slideshow-image { height: 250px; }
  .slideshow-btn { padding: 6px 12px; font-size: 12px; }
  .section-title { font-size: 22px; }
}