.body{
    background-color: #202020;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    margin-top: 30px;
    padding-bottom: 50px;
    padding-top: 20px;
}

.about-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.section-title {
    color: white;
    margin-bottom: 30px;
    font-size: 36px;
    text-align: center;
}

.about-content {
    display: flex;
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 40px;
    width: 90%;
    max-width: 1400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.profile-pic2 {
    border-radius: 10px;
    width: 350px;
    height: 350px;
    margin-right: 40px;
    transition: border-radius 0.3s;
    margin-bottom: 50px;
    background-color: #757272;

}

.about-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 700px;
}

.about-details h2 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
    font-size: 30px;
    font-weight: bolder;
}

.info-cards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.info-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.info-card h3 {
    margin: 10px 0 5px 0;
    color: #9B83FF;
    font-size: 20px;
    text-align: center;
}

.info-card p {
    margin: 0;
    color: #C4C4C4;
    font-size: 16px;
    text-align: center;
}

.about-description {
    margin-bottom: 30px;
    color: #C4C4C4;
    font-size: 18px;
    text-align: center;
}
.iff
{
    color: white;
    font-size: 50px;
}
.contact-button {
    align-self: center;
    background-color: #6A52CC;
    color: #ffffff;
    border: none;
    padding: 15px 100px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #f1c40f;
    color: #333;
}

@media (max-width: 768px) {
    body {
        min-height: auto;
        height: auto;
    }

    .about-section {
        min-height: auto;
        height: auto;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 100%;
        box-shadow: none;
    }

    .profile-pic2 {
        width: 150px;
        height: 150px;
        margin-right: 0;
        margin-bottom: 20px;
        border-radius: 50%;
    }

    .about-details {
        align-items: center;
        text-align: center;
    }

    .info-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: none;
        width: 100%;
        margin: 10px 0;
    }

    .contact-button {
        align-self: center;
    }
}
