/* ========================================
   CLIENT LOGO MARQUEE BANNER
   ======================================== */

.logo-marquee-section {
  background: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 12s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-item img {
  height: 120px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.marquee-star {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3291F6;
  opacity: 0.4;
}

.marquee-star svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   SERVICES SHOWCASE - White/Light Theme
   ======================================== */

/* Section Base */
.services-showcase {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 145, 246, 0.3), transparent);
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-title {
  font-size: 64px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #1a1a2e 0%, #3291F6 50%, #1a1a2e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.services-subtitle {
  font-size: 22px;
  color: #4a5568;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.3s forwards;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
  perspective: 1000px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Premium Service Card */
.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  opacity: 0;
  animation: fadeUpCard 0.8s ease-out forwards;
}

/* Staggered Animation Delays */
.service-card:nth-child(1) {
  animation-delay: 0.2s;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.6s;
}

.service-card:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeUpCard {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(50, 145, 246, 0.15),
    0 0 0 1px rgba(50, 145, 246, 0.1);
  z-index: 10;
}

/* Featured Card Styling */
.service-card.featured {
  background: linear-gradient(165deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(50, 145, 246, 0.15);
  position: relative;
}

.service-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, #3291F6, transparent, #3291F6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card.featured:hover::before {
  opacity: 0.3;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: #3291F6;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(50, 145, 246, 0.3);
}

/* Interactive Service Icon */
.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8faff;
  border-radius: 20px;
  margin-bottom: 28px;
  color: #3291F6;
  transition: all 0.5s ease;
  border: 1px solid rgba(50, 145, 246, 0.1);
}

.service-card:hover .service-icon {
  background: #3291F6;
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(50, 145, 246, 0.4);
  border-color: #3291F6;
}

/* Typography */
.service-name {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.service-card:hover .service-name {
  color: #3291F6;
}

.service-description {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.service-features li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: #4a5568;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #3291F6;
  font-weight: 800;
  font-size: 14px;
  opacity: 0.6;
  transition: all 0.3s;
}

.service-card:hover .service-features li {
  color: #1a1a2e;
  padding-left: 32px;
}

.service-card:hover .service-features li::before {
  opacity: 1;
  transform: scale(1.2);
}

/* Card CTA */
.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
  width: 100%;
  color: #3291F6;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  background: rgba(50, 145, 246, 0.05);
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-cta svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-cta {
  background: #3291F6;
  color: #fff;
  transform: translateY(2px);
}

.service-card:hover .service-cta svg {
  transform: translateX(5px);
}

/* CTA Section */
.services-cta-section {
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(50, 145, 246, 0.06) 0%, rgba(50, 145, 246, 0.02) 100%);
  border: 1px solid rgba(50, 145, 246, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.services-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(50, 145, 246, 0.4), transparent);
}

.services-cta-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.services-cta-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 28px;
}

.services-main-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3291F6, #1a73e8);
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(50, 145, 246, 0.3);
}

.services-main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(50, 145, 246, 0.4);
}

.services-main-cta svg {
  transition: transform 0.3s ease;
}

.services-main-cta:hover svg {
  transform: translateX(4px);
}