/* Page Hero Section */
.page-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/services-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

/* Service Overview Section */
.service-overview {
  padding: 4rem 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.overview-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.overview-content h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.overview-content p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Services Grid Sections */
.bpo-services,
.tech-services {
  padding: 6rem 0;
}

.bpo-services {
  background: #fff;
}

.tech-services {
  background: #f8fafc;
}

.bpo-services h2,
.tech-services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

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

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-card ul li {
  color: #4b5563;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-card ul li:before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
}

.learn-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: #fff;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #4b5563;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.9)), url('../assets/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #fff;
  color: #2563eb;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .overview-content h2,
  .bpo-services h2,
  .tech-services h2,
  .why-choose-us h2,
  .cta-section h2 {
    font-size: 2rem;
  }

  .service-card,
  .feature-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p,
  .overview-content p,
  .cta-section p {
    font-size: 1rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .feature-card i {
    font-size: 2rem;
  }
}