body {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}
h2 {
  font-weight: 600;
  margin-bottom: 1rem;
}
ul li {
  margin-bottom: 0.5rem;
}
.display-5 fw-bold tagline{
  font-weight: 600;
  color: linear-gradient(90deg, #efd5ff 0%, #515ada 100%);

}
.ai-banner {
  width: 100%;
  overflow: hidden;
}

.ai-banner img {
  width: 100%;
  height: auto;
  min-height: 142px;
  display: block;
  object-fit: contain;
  max-width: 100%;
}
 .section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* Text Left */
    .section-text {
      flex: 1 1 500px;
    }

    .section-text h2 {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
      color: #000;
      margin-bottom: 20px;
    }

    .section-text .highlight {
      font-style: italic;
      background: linear-gradient(to right, #1dbf73, #0d6efd, #6f42c1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-text p {
      font-size: 1.1rem;
      color: #333;
      line-height: 1.7;
      margin-top: 10px;
    }

    /* Image Right */
    .section-image {
      flex: 1 1 260px;
      text-align: center;
    }

    .section-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    gap: 20px; /* smaller gap on mobile */
  }

  .section-text h2 {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .section-text p {
    font-size: 1rem;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .section {
    display: block; /* override flex entirely on mobile */
    padding: 30px 15px;
  }

  .section-text,
  .section-image {
    margin: 0 auto 20px auto;
    text-align: center;
  }

  .section-image {
    margin-bottom: 0;
  }
}
.process-section {
  padding: 80px 20px;
  text-align: center;
}

.process-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1f2020;
  font-weight: bold;
  letter-spacing: 1px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.step-card {
  background: #f3f3f5;
  border: 2px solid #333;
  border-radius: 20px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 0 15px rgba(0, 255, 231, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #0f0bf1 0%, #2c07d1 100%);
  color: #ffff;
  box-shadow: 0 0 25px rgba(211, 70, 45, 0.5);
}

.step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #152524;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.2;
  font-family: monospace;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .step-card {
    width: 100%;
    max-width: 350px;
  }

  .process-title {
    font-size: 2rem;
  }
}