.about-container {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: 20px; */
    /* justify-content: center; */
    background-color: #fafafa;
    overflow: hidden;
    border-radius: 20%;
    margin-top: 85px;
}

/* Title Section */
.title h1 {
    font-size: 3rem;
    color: #2c3e50;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

/* Content Section */
.content {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100px;
    margin-top: 20px;
    animation: slideIn 1.5s ease-out forwards;
    opacity: 0;
}

/* Profile Image */
.image img {
    width: 300px;
    height: 250px;
    /* border-radius: 50%; */
    /* border: 3px solid #3498db; */
    /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); */
    opacity: 0;
    animation: fadeInImage 2s ease-in-out 1s forwards;
}

/* Text Section */
.text h2 {
    font-size: 2rem;
    color: #0d0d0e;
    margin-bottom: 10px;
}

.text p {
    font-size: 1.1rem;
    line-height: 1.6;
    width: 500px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 767px){
    .about-container{
        /* max-width: 110px; */
        left: 20px;
         bottom: 20px;
        top: 0;
        border-radius: 0px;
        padding: 20px;
        margin-bottom: 30px;
        align-items: center;
        display: block;
    }

    .text h2 {
        font-size: 5px;
        color: #3498db;
        margin-bottom: 10px;
    }

    .text p {
        font-size: 18px;
        line-height: 1.6;
        width: 300px;
        padding: 10px;
        margin: 10px;
    }
    .content{
        display: inline-block;
    }
    
}

@media (max-width: 992px){
    .about-container{
        /* max-width: 110px; */
        position: relative;
        left: 0px;
         bottom: 20px;
        top: 0;
        border-radius: 0px;
        padding: 20px;
        margin-bottom: 30px;
        align-items: center;
        display: inline-block;
    }

    .text h2 {
        font-size: 5px;
        color: #3498db;
        margin-bottom: 10px;
    }

    .text p {
        font-size: 18px;
        line-height: 1.6;
        width: 300px;
        padding: 10px;
        margin: 10px;
    }
    

}