/* --- Messages Section Styling --- */
.messages-section {
    padding: 80px 5%;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    color: #0a3d62;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
}

.messages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* ५०-५०% विभागणी */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.message-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 5px solid #f39c12; /* Golden accent */
    transition: 0.3s;
}

.message-card:hover {
    transform: translateY(-5px);
}

.message-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.message-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f39c12;
}

.profile-info h3 {
    color: #0a3d62;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.profile-info span {
    color: #f39c12;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.message-text {
    position: relative;
}

.message-text i {
    font-size: 2rem;
    color: rgba(10, 61, 98, 0.1);
    position: absolute;
    top: -10px;
    left: -10px;
}

.message-text p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    font-size: 1.05rem;
}

/* --- Mobile View --- */
@media (max-width: 992px) {
    .messages-grid {
        grid-template-columns: 1fr; /* मोबाईलवर एकाखाली एक */
    }
}

@media (max-width: 600px) {
    .message-card {
        padding: 25px;
    }
    .message-profile {
        flex-direction: column;
        text-align: center;
    }
}