/* Services Showcase Section */
.services-showcase-section {
  padding: 6rem 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-showcase-wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

/* Header */
.services-showcase-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.services-showcase-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0b0b31;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.services-showcase-header p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Showcase Grid */
.services-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

/* Video Card */
.services-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  background: transparent;
  height: 700px;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  background: transparent;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-video-card:hover .video-overlay {
  opacity: 1;
}

.video-overlay i {
  font-size: 2.5rem;
  color: white;
  margin-left: 5px;
}

/* Content Card */
.services-content-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.services-icon-badge i {
  font-size: 2rem;
  color: white;
}

.services-content-card h2 {
  font-size: 2rem;
  color: #0b0b31;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.services-content-card > p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

/* Features List */
.services-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #444;
}

.feature-item i {
  color: #007BFF;
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA Button */
.services-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.services-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

.services-cta-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.services-cta-button:hover i {
  transform: translateX(5px);
}

/* Industry Applications */
.industry-applications {
  background: white;
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.industry-applications h3 {
  text-align: center;
  font-size: 2.5rem;
  color: #0b0b31;
  margin-bottom: 3rem;
  font-weight: 600;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.application-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.application-card:hover {
  transform: translateY(-8px);
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.app-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.application-card:hover .app-icon {
  transform: scale(1.1) rotate(5deg);
}

.app-icon i {
  font-size: 1.8rem;
  color: white;
}

.application-card h4 {
  font-size: 1.25rem;
  color: #0b0b31;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.application-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-showcase-grid {
    grid-template-columns: 1fr;
  }

  .services-video-card {
    height: 500px;
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .services-showcase-section {
    padding: 4rem 2rem;
  }

  .services-showcase-header h1 {
    font-size: 2.8rem;
  }

  .industry-applications {
    padding: 3rem 2rem;
  }

  .industry-applications h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-showcase-section {
    padding: 3rem 1.5rem;
  }

  .services-showcase-header h1 {
    font-size: 2.2rem;
  }

  .services-showcase-header p {
    font-size: 1rem;
  }

  .services-video-card {
    height: 400px;
  }

  .services-content-card {
    padding: 2rem;
  }

  .services-content-card h2 {
    font-size: 1.75rem;
  }

  .services-features-list {
    grid-template-columns: 1fr;
  }

  .applications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .industry-applications {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-showcase-section {
    padding: 2.5rem 1rem;
  }

  .services-showcase-header h1 {
    font-size: 1.8rem;
  }

  .services-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .services-video-card {
    height: 300px;
  }

  .services-content-card {
    padding: 1.5rem;
  }

  .services-content-card h2 {
    font-size: 1.5rem;
  }

  .industry-applications h3 {
    font-size: 1.75rem;
  }
}
