/* ------------- About Section 1 ------------- */
.about-sec1{
    display: flex;
    flex: 1;
    flex-direction: row;
    margin: 0rem 0 0 0;
    width: 90%;
}

.sec1-left{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 0 1rem 0rem;
}

.sec1-left-img{
    max-width: 35vw;
    border-radius: 5%;   
}

.sec1-right{
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 3rem;
    text-align: left;
}

.sec1-right h1 {
    font-size: 2.5rem;
    margin: 0;
    position: relative;
}

.sec1-right h1::after {
    content: "";
    display: block;
    width: 100%;
    bottom: -0.25rem;
    height: 0.2rem;
    background: linear-gradient(90deg, #EF97B4, #8BCCEC);
    border-radius: 2rem;
    margin-top: 0.3rem;
}


.sec1-right p {
    font-size: 1.3rem;
    margin: 2rem 0rem 0 0;
}

/* ------------- About Section 2 ------------- */

.about-sec2{
    display: flex;
    flex: 1;
    flex-direction: column;
    margin: 0rem 0 0 0;
    width: 80%;
}

.sec2-title{
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 5rem 0 1rem 0rem;
}

.sec2-title h1{
    font-size: 3rem;
    padding: 0;
    position: relative;
}

.sec2-title h1::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    width: 100%; /* Set a fixed, shorter width */
    bottom: -0.2rem; /* Adjust as needed */
    height: 0.1rem; /* Thickness of underline */
    background: linear-gradient(90deg, #EF97B4, #8BCCEC);
}

.sec2-founder-container{
    display: flex;
    flex-direction: row;
    flex: 1;
    max-width: 90vw;
    justify-content: space-between;
    align-items: center;
    margin: 0;
} 

.sec2-founder-container img {
    max-width: 100%;
    height: auto;
    flex: 1;
    object-fit: contain;
    max-height: 40vh;
    border-radius: 5%;
}

.about-founder{
    font-size: 1.5rem;
}

/* ------------- Disabled hover animation for founder cards ------------- */
/* .about-founder {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-founder:hover {
    transform: translateY(-1rem);
} */

