/* -------------------------------------------------
   RECTOR PROFILE
---------------------------------------------------*/

.profile-section {
    margin-top: 40px;
}

/* Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.profile-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #800000;
}

.profile-header-text h2 {
    font-size: 26px;
    color: #800000;
    margin-bottom: 5px;
}

.profile-designation {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Section Titles */
.profile-title {
    font-size: 22px;
    color: #800000;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Lists */
.profile-list {
    list-style: disc;
    padding-left: 25px;
}

.profile-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #333;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-photo img {
        width: 160px;
        height: 160px;
    }

    .profile-title {
        font-size: 20px;
    }
}


.profile-name {
    font-size: 24px;
    color: #800000;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-position {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #333;
}

.profile-research-links a {
    color: #800000;
    font-weight: 600;
    text-decoration: none;
}

.profile-research-links a:hover {
    text-decoration: underline;
}

.profile-contact {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 8px;
    color: #333;
}

.profile-contact a {
    color: #800000;
    text-decoration: none;
}

.profile-contact a:hover {
    text-decoration: underline;
}
