﻿.about-section {
    justify-content: center;
    text-align: center;
    color: #eaeaea;
}

.about-content {
    animation: SlideInFromUp 0.6s ease-out;
}
 
.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 25%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.about-text h1 {
    margin:15px;
    font-size: 32px;
    color: #e0f7fa;
}

.about-text p {
    margin-top:0px;
    font-size: 18px;
    color: #e0f7fa;
}

.hero {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 30px;
    color: #e0f7fa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connect-box {
    
    text-align: center;
    padding: 20px 0;
}

    .connect-box h3 {
        font-size: 20px;
        margin-bottom: 8px;
        color: #e0f7fa;
    }

    .connect-box p {
        font-size: 14px;
        margin-bottom: 20px;
        color: #e0f7fa;
    }

.social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
}

    .social-btn i {
        font-size: 18px;
    }

    /* Individual platform colors */
    .social-btn.github {
        background-color: #333;
    }

        .social-btn.github:hover {
            background-color: #555;
        }

    .social-btn.linkedin {
        background-color: #0e76a8;
    }

        .social-btn.linkedin:hover {
            background-color: #1485bf;
        }

    .social-btn.youtube {
        background-color: #c4302b;
    }

        .social-btn.youtube:hover {
            background-color: #e43c38;
        }

.about-scroll p {
    font-size: 18px;
    color: #e0f7fa;
}