/* testimonials.css */

:root {
    /* Variables for easy customization */
    --testimonial-gap: 1.5rem; /* Gap between cards */
    --testimonial-padding: 1.75rem; /* Padding inside cards */
    --testimonial-border-radius: 10px; /* Slightly more rounded corners */
    --testimonial-bg-start: #f8f9fa;  /* Very light grey start */
    --testimonial-bg-end: #e9ecef;    /* Slightly darker grey end */
    --testimonial-text-color: #000000; /* Black text as requested */
    --testimonial-meta-color: #495057; /* Dark grey for meta info */
    --testimonial-border-color: #dee2e6; /* Subtle border color */
    --testimonial-shadow: 0 4px 12px rgba(0, 0, 0, 0.07); /* Softer shadow */
    --testimonial-link-color: #0056b3;        /* A professional, accessible blue */
    --testimonial-link-hover-color: #003d80;  /* A darker shade for hover/focus */
    --testimonial-link-underline-color: rgba(0, 86, 179, 0.5); /* Slightly transparent */
  }
  
  
  /**
  * Futuristic Business Help Section
  */
  
  .futuristic-business-help {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    background: #0a0f1a;
    border-radius: 16px;
    color: #cbd5e1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow:
      0 0 30px rgba(37, 99, 235, 0.4),
      inset 0 0 20px rgba(37, 99, 235, 0.2);
  }
  
  .futuristic-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #3ddcff;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-shadow:
      0 0 8px #3ddcff,
      0 0 20px #0ff;
    position: relative;
    overflow: visible;
  }
  
  .futuristic-services {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }
  
  .service-card {
    background: #121a35;
    border-radius: 12px;
    padding: 1.3rem 1.8rem;
    position: relative;
    box-shadow:
      0 0 10px rgba(61, 220, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 0 20px #3ddcff,
      0 0 30px #0ff;
  }
  
  .accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #3ddcff 0%, #0ff 100%);
    border-radius: 0 6px 6px 0;
    box-shadow:
      0 0 12px #3ddcff,
      0 0 20px #0ff;
    animation: slideGlow 1.5s ease-in-out infinite alternate;
  }
  
  @keyframes slideGlow {
    0% {
      box-shadow:
        0 0 8px #3ddcff,
        0 0 15px #0ff;
    }
    100% {
      box-shadow:
        0 0 20px #3ddcff,
        0 0 35px #0ff;
    }
  }
  
  .service-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.55;
    color: #e0e7ff;
  }
  
  .service-card strong {
    color: #3ddcff;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  
  /* Scroll fade-in animation */
  @media (prefers-reduced-motion: no-preference) {
    .service-card {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideIn 0.8s forwards;
    }
    .service-card:nth-child(1) { animation-delay: 0.15s; }
    .service-card:nth-child(2) { animation-delay: 0.3s; }
    .service-card:nth-child(3) { animation-delay: 0.45s; }
    .service-card:nth-child(4) { animation-delay: 0.6s; }
    .service-card:nth-child(5) { animation-delay: 0.75s; }
    .service-card:nth-child(6) { animation-delay: 0.9s; }
  }
  
  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
/*
  * Modern Business Help Section
  */
.business-help-section {
  max-width: 700px;
  margin: 2rem auto;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.highlight-animate {
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #7f53ac 0%, #657ced 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
  0% { text-shadow: 0 0 8px #7f53ac; }
  100% { text-shadow: 0 0 24px #657ced; }
}

.service-highlight {
  font-size: 1.1rem;
  margin: 1.2rem 0;
  position: relative;
}

.highlighted {
  background: linear-gradient(120deg, #f9d423 0%, #ff4e50 100%);
  border-radius: 0.3em;
  padding: 0.1em 0.3em;
  color: #fff;
  font-weight: 600;
  animation: highlight-fade-in 1.2s cubic-bezier(.77,0,.18,1) both;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(249,212,35,0.18);
}

@keyframes highlight-fade-in {
  0% { background-size: 0 100%; opacity: 0; }
  60% { background-size: 100% 100%; opacity: 1; }
  100% { background-size: 100% 100%; opacity: 1; }
}

/*
  * Tech Business Help Section
  */
.tech-business-help {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(32, 40, 60, 0.09);
}

.tech-section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a2847;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  border-left: 6px solid #2563eb;
  padding-left: 1rem;
}

.tech-services-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tech-service-card {
  display: flex;
  align-items: flex-start;
  background: #f6f8fa;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(32, 40, 60, 0.04);
  padding: 1.2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.tech-service-card:hover {
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.11);
}

.tech-accent-bar {
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2563eb 0%, #0ea5e9 100%);
  border-radius: 2px;
  margin-right: 1.2rem;
  transform: translateY(40px);
  opacity: 0;
  animation: slideInAccent 0.7s cubic-bezier(.77,0,.18,1) forwards;
}

.tech-service-card:nth-child(1) .tech-accent-bar { animation-delay: 0.1s; }
.tech-service-card:nth-child(2) .tech-accent-bar { animation-delay: 0.2s; }
.tech-service-card:nth-child(3) .tech-accent-bar { animation-delay: 0.3s; }
.tech-service-card:nth-child(4) .tech-accent-bar { animation-delay: 0.4s; }
.tech-service-card:nth-child(5) .tech-accent-bar { animation-delay: 0.5s; }
.tech-service-card:nth-child(6) .tech-accent-bar { animation-delay: 0.6s; }

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

.tech-service-content {
  color: #26334d;
  font-size: 1.08rem;
  line-height: 1.6;
}

.tech-service-content strong {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.06em;
  letter-spacing: -0.01em;
}