

/* About Section Styles */

.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1A083D, #4B0082);
    opacity: 0; /* Initial state for animation */
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-section.show {
    opacity: 1;
    transform: translateY(0);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(167, 113, 247, 0.3);
    max-width: 80%;
    transition: all 0.5s ease-in-out;
}

/* Profile Image with Glow Effect */
.profile-container {
    margin-right: 30px;
}

.profile-img {
    width: 280px; /* Increase size */
    height: 280px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 0px 25px rgba(167, 113, 247, 0.8);
    animation: fadeZoom 1s ease-in-out;
}

/* Keyframe Animation */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



.profile-img:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 30px rgba(167, 113, 247, 0.8);
}

/* About Content */
.about-content {
    max-width: 60%;
    color: #fff;
    text-align: left;
}

.about-title {
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Strengths Section */
.strengths {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensures responsiveness */
    margin-top: 20px;
}

.strength-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    width: 30%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.strength-card.show {
    opacity: 1;
    transform: translateY(0);
}

.strength-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 20px rgba(167, 113, 247, 0.6);
}

.strength-card i {
    font-size: 30px;
    color: #A371F7;
    margin-bottom: 10px;
}

/* Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.parallax {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Activate animations when scrolled */
.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
