body {
    padding-top: 70px;
}

#main {
    padding-top: 10px;
}

.about {
    padding: 0 0 30px;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    color: #222222;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #eab203;
    bottom: -10px;
    left: calc(50% - 25px);
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
}

.intro-text h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #333333;
}

.profile-card {
    background: #fcfcfc;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0%;
    background: linear-gradient(to bottom, #eab203, #f7e7a2);
    transition: height 0.5s ease-out;
}

.profile-card:hover::before {
    height: 100%;
}

.profile-image {
    text-align: center;
    margin-bottom: 20px;
}

.profile-image img {
    border-radius: 10px;
    max-width: 75%;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-card:hover .profile-image img {
    transform: scale(1.03);
}

.profile-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222222;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.profile-content h3::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #eab203;
}

.profile-content p {
    margin-bottom: 15px;
    text-align: justify;
    color: #333333;
    line-height: 1.7;
}

.contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    color: #333;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #eab203;
}

.contact-info a i {
    margin-right: 5px;
    font-size: 18px;
}

[data-aos="profile-fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s, opacity 0.6s;
}

[data-aos="profile-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .profile-content {
        margin-top: 20px;
    }

    .profile-image img {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 0 0 20px;
    }

    .profile-card {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .intro-text h3 {
        font-size: 1.1rem;
    }
}