/* Global Styles */
body {
    color: #1f2937;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.6;
  }
  h1, h2, h3, h4, h5 {
    font-weight: 700;
  }
  
  
  /* Hero Section */
  .hero {
    background-color: #4c1d95;
    color: #fff;
    padding: 6rem 0 4rem;
    position: relative;
    z-index: 1;
  }
  .svg-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 0;
  }
  .svg-background svg {
    width: 100%;
    height: auto;
  }
  
  
  /* Buttons */
  .btn-primary {
    background-color: #6d28d9;
    border-color: #6d28d9;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #5b21b6;
    border-color: #5b21b6;
  }
  
  .btn-accent {
    background-color: #f59e0b;
    color: #fff;
    border: none;
  }
  
  .btn-accent:hover {
    background-color: #d97706;
    color: #fff;
  }
  
  .btn-outline-light:hover {
    background-color: #fff !important;
    color: #000 !important;
  }
  
  /* Feature Cards */
  .feature-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: scale(1.03);
  }
  
  .feature-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #6d28d9;
  }
  
  /* Client Logos */
  .client-logo {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin: 0 auto;
  }
  .client-logo:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
  }
  
  
  .client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #000; /* for white logos */
    border-radius: 0.5rem;
    padding: 0.5rem;
  }
  
  .client-logo-wrapper:hover {
    transform: scale(1.1);
  }
  
  /* Footer */
  .footer {
    background-color: #111827;
    color: #fff;
    padding: 2rem 0;
  }
  
  .footer a {
    color: #fff;
  }
  
  .footer a:hover {
    color: #fbbf24;
  }
  
  /* Quote Block */
  blockquote {
    font-style: italic;
    font-size: 1.25rem;
    color: #374151;
  }
  
  blockquote footer {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text {
      padding-right: 0;
      margin-bottom: 2rem;
    }
  
    .hero-image img {
      max-width: 80%;
    }
  }
  .platform-card {
    background-color: #ffffff;
    transition: all 0.3s ease;
  }
  .platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  .platform-card img {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }
  .platform-card h5 {
    color: #4c1d95;
  }
  .card img {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }
  
  .card-title {
    color: #4c1d95;
  }
  
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
  }
  .cta-gradient {
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    position: relative;
    z-index: 1;
  }
  .angled-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 0;
  }
  .section-light {
    background: #f9fafb;
  }
  .section-gradient {
    background: linear-gradient(to right, #ede9fe, #f3e8ff);
  }
  .testimonial-card img {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
  .testimonial-card {
    transition: transform 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .info-section-gradient {
    background: linear-gradient(135deg, #ede9fe, #f5f3ff);
  }
  .card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }
  .timeline-card {
    transition: transform 0.3s ease;
  }
  .timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
  }
  
  .step-circle {
    width: 50px;
    height: 50px;
    background-color: #4c1d95;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  