/* -------------------------------------------------
   MESSAGE FROM RECTOR
---------------------------------------------------*/
.rector-section {
    margin-top: 40px;
}

.rector-title {
    text-align: center;
    font-size: 30px;
    color: #800000;
    font-weight: 700;
    margin-bottom: 25px;
}

.rector-message p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
    text-align: justify;
}

/* Profile Area */
.rector-profile {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.rector-photo img {
    width: 220px;           /* increase size */
    height: 220px;          /* equal height for perfect circle */
    border-radius: 50%;     /* circle */
    object-fit: cover;      /* crop nicely */
    border: 4px solid #800000;
}


.rector-details {
    flex: 1;
}

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

.rector-designation {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

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

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

.rector-contact {
    font-size: 15px;
    margin-top: 10px;
    color: #333;
}

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

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

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

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