/* Hero Section */
.hero-section {
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
  min-height: 600px;
  position: relative;
}

.hero-section .overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* Services Section */
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.image-wrapper img {
  transition: transform 0.3s ease;
}

.service-card:hover .image-wrapper img {
  transform: scale(1.1);
}

/* Contact Section */
.action-buttons-container {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.8;
} 