.about-title h1 {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 20px 0;
    color: #333;
}

.gradient-text {
    background: linear-gradient(90deg, #05bff2 0%, #05bff2 45%, #9ccc58 55%, #9ccc58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.profile-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-left: 130px;
}
.profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 25px;
}

    /* Round Image */
    .profile-image img {
        width: 600px;
        height: 550px;
        object-fit: cover;
        border-radius: 10%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

        .profile-image img:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }


/* Text Styling */
.profile-text {
    max-width: 700px;
    text-align: inherit;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column; /* image first, then text */
        align-items: center;
        text-align: center;
        margin-left: 5px;
    }

    .profile-image {
        order: -1; /* move image above the text */
        width: 100%;
    }

    .profile-image img {
        margin-right: 60px;
        width: 100% !important;
        height: auto;
    }

    .profile-text {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        margin-right: 60px;
    }
}



/* out story and our vision */

  body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 40px;
      background-color: #fff;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-heading h1 {
      font-size: 40px;
      font-weight: bold;
      color: #333;
    }

    .column {
      margin-bottom: 60px; /* space between sections */
      margin-left: 70px;
    }

    .column h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .column h2 span {
      margin-right: 10px;
    }

    .column p {
      line-height: 1.6;
      color: #444;
    }

    .column ul {
      padding-left: 20px;
    }

    .column ul li {
      margin-bottom: 10px;
    }

    .bold {
      font-weight: bold;
    }

    /* Full width on small screens */
@media (max-width: 768px) {
  .column {
    width: 100%;
    margin-left: 5px;
  }
}
