/* Clients Page Styles */
.clients-hero {
  background: linear-gradient(135deg, rgba(1, 113, 227, 0.9), rgba(124, 53, 247, 0.9)),
              url('https://images.pexels.com/photos/3184296/pexels-photo-3184296.jpeg') center/cover;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.clients-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInDown 0.8s ease;
}

.clients-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Clients Showcase Section */
.clients-showcase {
  padding: 80px 0;
  background: white;
}

.clients-showcase .section-title h2 {
  color: #1a3c87;
}

.clients-showcase .section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.client-categories {
  margin-top: 3rem;
}

.category {
  margin-bottom: 3rem;
}

.category h3 {
  font-size: 1.5rem;
  color: #1a3c87;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.category h3 i {
  color: #7c35f7;
  margin-right: 10px;
  font-size: 1.8rem;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
}

.client-logos img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Success Stories Section */
.success-stories {
  padding: 80px 0;
  background: #f8f9fa;
}

.success-stories .section-title h2 {
  color: #1a3c87;
}

.success-stories .section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.story-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.story-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(1, 113, 227, 0.1), rgba(124, 53, 247, 0.1));
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story-header img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.story-header h3 {
  font-size: 1.2rem;
  color: #1a3c87;
  margin: 0;
}

.story-content {
  padding: 1.5rem;
}

.story-content h4 {
  font-size: 1.1rem;
  color: #7c35f7;
  margin: 1rem 0 0.5rem;
}

.story-content h4:first-child {
  margin-top: 0;
}

.story-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.story-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.story-content ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  font-size: 0.95rem;
}

.story-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #7c35f7;
  border-radius: 50%;
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background: white;
}

.industries .section-title h2 {
  color: #1a3c87;
}

.industries .section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.industry-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-top-color: #7c35f7;
}

.industry-card i {
  font-size: 2.5rem;
  color: #7c35f7;
  margin-bottom: 1.5rem;
  display: inline-block;
}

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

.industry-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #0171e3, #7c35f7);
  color: white;
}

.cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta .btn-primary {
  background: white;
  color: #7c35f7;
  font-weight: 600;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cta .btn-primary:hover {
  background: #f8f9fa;
  color: #1a3c87;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .clients-hero h1 {
    font-size: 2.5rem;
  }

  .client-logos {
    justify-content: center;
  }

  .client-logos img {
    max-height: 50px;
    max-width: 150px;
  }
}

@media (max-width: 767px) {
  .clients-hero {
    padding: 80px 0 60px;
  }

  .clients-hero h1 {
    font-size: 2rem;
  }

  .category h3 {
    font-size: 1.3rem;
  }

  .client-logos {
    gap: 1.5rem;
  }

  .client-logos img {
    max-height: 40px;
    max-width: 120px;
  }

  .cta h3 {
    font-size: 1.5rem;
  }

  .cta .btn-primary {
    width: 100%;
  }
}