 /*───────────── ABOUT SECTION ───────────── */
    /*───────────── BASIC ───────────── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

/*───────────── BASIC END ───────────── */
 .card-box {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      padding: 40px;
      margin: 60px auto;
      max-width: 1200px;
     justify-self: center;
    }

    /* === Section Title === */
    .about-heading {
      text-align: center;
      background-color: #ffffff;
    }

    .about-heading h2 {
      font-size: 32px;
      font-weight: bold;
      color: #0096FF;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

    .about-heading h2::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 4px;
      background-color: #0096FF;
      border-radius: 2px;
    }

    /* === Founder Section Layout === */
    .founder-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-top: 40px;
      flex-direction: row; /* Desktop: image left, text right */
    }

    /* === Image Styling === */
    .founder-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .founder-image img {
      width: 100%;
      max-width: 300px;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
      height: 350px;
      margin-top: -80px;
    }

    .founder-image img:hover {
      transform: scale(1.03);
    }

    /* === Content Styling === */
    .founder-content {
      flex: 2 1 400px;
      text-align: left; /* Align text left on desktop */
      padding: 0 20px;
    }

    .founder-content h1 {
      font-size: 2.8rem;
      margin-top: -30px;
    }

    .founder-content h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin: 10px 0 20px;
    }

    .founder-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 700px;
      margin: auto;
      color: #333;
      text-align: justify;
    }

    /* === Responsive for Tablet & Mobile === */
    @media (max-width: 768px) {
      .card-box {
        padding: 30px 20px;
        margin: 30px;
      }

      .founder-section {
        flex-direction: column; /* Stack image on top, text below */
        text-align: center;
      }

      .founder-image img {
        max-width: 300px;
        height: 250px;
        margin-top: 10px;
      }

      .founder-content {
        margin-top: -20%;
        text-align: center;
        padding: 0 10px;
      }

      .founder-content h1 {
        font-size: 2.2rem;
        margin-top: 10px;
      }

      .founder-content h3 {
        font-size: 1.2rem;
      }

      .founder-content p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .card-box {
        padding: 20px 15px;
      }

      .founder-content h1 {
        font-size: 1.8rem;
      }

      .founder-content h3 {
        font-size: 1rem;
      }

      .founder-content p {
        font-size: 0.95rem;
      }
    }
    /*───────────── ABOUT SECTION END ───────────── */