
    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      color: #333;
    }
    header {
      background-color: #4f46e5;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
    header p {
      font-size: 1.2rem;
    }
    .cta-button {
      background-color: #fff;
      color: #4f46e5;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1rem;
      transition: background 0.3s;
    }
    .cta-button:hover {
      background-color: #e0e7ff;
    }
    section {
      padding: 4rem 1rem;
      max-width: 900px;
      margin: 0 auto;
    }
    h2 {
      text-align: center;
      margin-bottom: 2rem;
      color: #4f46e5;
    }
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .feature {
      flex: 1 1 250px;
      padding: 2rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s;
    }
    .feature:hover {
      transform: translateY(-5px);
    }

    /* New Projects Section */
    .projects-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .project {
      flex: 1 1 280px;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .project:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .project a {
      text-decoration: none;
      color: #4f46e5;
      font-weight: 600;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 500px;
      margin: 0 auto;
    }
    input, textarea {
      padding: 0.8rem;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }
    button[type="submit"] {
      background-color: #4f46e5;
      color: white;
      padding: 0.8rem 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s;
    }
    button[type="submit"]:hover {
      background-color: #3730a3;
    }
    footer {
      background-color: #f3f4f6;
      padding: 2rem 1rem;
      text-align: center;
      margin-top: 2rem;
    }

    #contactBusinessForm .form-control {
    width: 100%;
    box-sizing: border-box; /* include padding in width */
  }


