  body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .hero-section {
      background: linear-gradient(to right, #004aad, #011f4b); /* Gradient blue */
      color: white;
      text-align: center;
      padding: 60px 20px;
      position: relative;
    }

    .hero-title {
      font-size: 60px;
      font-weight: bold;
      margin: 0;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 20px;
      margin-top: 10px;
    }

    .hero-image {
      margin-top: 30px;
    }

    .hero-image img {
      max-width: 90%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .cta-button {
      margin-top: 20px;
      padding: 12px 24px;
      background-color: #00cc88;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }

    .cta-button:hover {
      background-color: #00b37e;
    }
    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: #fff;
    }

    .why-section {
      background: linear-gradient(to bottom, #ffffff 0%, #eaf6ff 100%);
      text-align: center;
      padding: 80px 20px;
      position: relative;
    }

    .why-section h2 {
      font-size: 40px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .why-section h2 span {
      color: #0078D7; /* Blue color for "CODE NINJAS" */
    }

    .why-section p {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 18px;
      color: #333;
      line-height: 1.6;
    }

    .ninja-left, .ninja-right {
      position: absolute;
      top: 30px;
      width: 150px;
    }

    .ninja-left {
      left: 0;
    }

    .ninja-right {
      right: 0;
    }

    .logos {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 40px;
      opacity: 0.6;
    }

    .logos img {
      height: 30px;
    }

    .testimony-heading {
      margin-top: 60px;
      font-weight: bold;
      font-size: 20px;
    }
    .intro img {
      position: absolute;
      left: 0;
      right: 0;
    }
    .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 500px;
}
 

    .container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 40px;
      background: linear-gradient(to right, #0045a3, #0074d9);
    }

    .image-container {
      position: relative;
      width: 450px;
      margin: 20px;
    }

    .image-container img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .text-content {
      max-width: 500px;
      margin: 20px;
    }

    .text-content h2 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #cce6ff;
    }

    .text-content h1 {
      font-size: 50px;
      margin: 0;
      color: #a4dfff;
    }

    .text-content p {
      margin: 20px 0;
      line-height: 1.6;
      font-size: 18px;
    }

    .learn-more {
      display: inline-block;
      background-color: #00cc88;
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .learn-more:hover {
      background-color: #00b377;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }

      .text-content h1 {
        font-size: 36px;
      }

      .text-content p {
        font-size: 16px;
      }
    }