.sparq-about {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
  }

  .sparq-about h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
  }

  .sparq-about h3 {
    font-size: 26px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #0077cc;
    text-align: center;
  }

  .sparq-about p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
  }

  .founding-box {
    background: #f5f7fa;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    margin-top: 40px;
  }

  .owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .owner-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .owner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  }

  .owner-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 15px;
  }

  .owner-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
  }

  .owner-title {
    color: #0077cc;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .owner-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-box {
    background: linear-gradient(135deg, #0077cc, #005fa3);
    color: #fff;
    padding: 50px 30px;
    border-radius: 18px;
    text-align: center;
    margin-top: 70px;
  }

  .cta-box h3 {
    color: #fff;
    margin-top: 0;
  }

  .cta-box p {
    color: #eaf4ff;
  }

  .cta-box a {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #0077cc;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cta-box a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  }

  @media (max-width: 600px) {
    .founding-box {
      padding: 25px;
    }
  }
  

.img-circle-fit {
  width: 100%;       /* Ensures the image takes the full width of the container */
  height: 100%;      /* Ensures the image takes the full height of the container */
  object-fit: cover; /* Crops and centers the image while maintaining aspect ratio */
  object-position: center; /* Explicitly centers the focal point */
}