﻿/* Principal Section */
.image-frame {
    border: 6px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: inline-block;
}

    .image-frame img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .image-frame:hover img {
        transform: scale(1.05);
    }

/* Section Title */
.section-title {
    margin-bottom: 25px;
}

/* Message Blocks */
.message-block {
    border-left: 4px solid #ffd800;
    padding-left: 15px;
    margin-bottom: 25px;
}

    .message-block h5 {
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 18px;
        color: #b21f1f;
    }

    .message-block p {
        line-height: 1.7;
        color: #555;
    }

/* Signature */
.signature {
    margin-top: 30px;
    text-align: right;
}

    .signature .name {
        font-size: 20px;
        font-weight: 600;
    }

    .signature .designation {
        font-style: italic;
        color: #777;
    }
