/* Enhanced About Page Styles with Corporate Colors */

.section-padding {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.profile-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.profile-image-container:hover {
    transform: translateY(-10px);
}

.profile-image-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 82, 130, 0.3), rgba(49, 130, 206, 0.3));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-image-container:hover:before {
    opacity: 1;
}

.intro-text-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.intro-text-container:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    border-left: 4px solid #2c5282;
    padding-left: 15px;
    margin-bottom: 25px;
}

.about-profile {
    margin-bottom: 25px;
}

.admin-profile {
    list-style: none;
    padding: 0;
}

.admin-profile li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.admin-profile li:hover {
    transform: translateX(5px);
}

.pro-title {
    font-weight: 600;
    color: #333;
    min-width: 120px;
    position: relative;
    display: inline-block;
}

.pro-title:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background: #2c5282;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.admin-profile li:hover .pro-title:after {
    width: 70%;
}

.pro-detail {
    color: #4a4a4a;
    flex-grow: 1;
}

.btn-common {
    background: linear-gradient(45deg, #2c5282, #3182ce);
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.btn-common:hover {
    background: linear-gradient(45deg, #3182ce, #2c5282);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
}

.btn-outline-success {
    border-color: #2c5282;
    color: #2c5282;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #2c5282;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 82, 130, 0.4);
}

/* Animated background for section */
#about {
    position: relative;
    overflow: hidden;
}

#about:before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    background: linear-gradient(0deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    background-size: 20px 20px;
    transform: rotate(10deg);
}

/* Skills section styling */
.skill-item {
    margin-bottom: 20px;
}

.skill-title {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(45deg, #2c5282, #3182ce);
    transition: width 1.5s ease-in-out;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-text-container, .profile-image-container {
        margin-bottom: 30px;
    }

    .admin-profile li {
        flex-direction: column;
        align-items: flex-start;
    }

    .pro-title {
        margin-bottom: 5px;
    }
}
