﻿/* ================= CHAIRMAN MESSAGE ================= */

.chairman-section {
    padding: 30px 0;
    background: #ffff;
    text-decoration:solid;
}

.chairman-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0b1f4b;
    margin-bottom: 50px;
}

/* LAYOUT */
.chairman-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* CONTENT */
.chairman-content {
    flex: 2;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

/* IMAGE */
.chairman-image {
    flex: 1;
    text-align: center;
}

    .chairman-image img {
        width:100%;
        max-width: 260px;
        height:auto;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }
.chairman-name {
    margin-top: 10px; /* ✅ 10px niche */
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    background: #0b1f4b; /* white card look */
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* SIGNATURE */
.chairman-signature { 
    margin-top: 40px;
    font-size: 15.5px;
    color: #333;
    text-align: right;
}

/* ================= PAGE LOAD ANIMATIONS ================= */

.animate-left-load {
    opacity: 0;
    transform: translateX(-120px);
    animation: leftIn 1s ease forwards;
}

.animate-right-load {
    opacity: 0;
    transform: translateX(120px);
    animation: rightIn 1s ease forwards;
    animation-delay: 0.5s;
}

.animate-top-load {
    opacity: 0;
    transform: translateY(-120px);
    animation: topIn 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes leftIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rightIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes topIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .gd-header {
        position: absolute;
        top: 0;
        z-index: 9999;
        background: #fff;
    }
    .chairman-wrapper {
        flex-direction: column;
    }

    .chairman-signature {
        text-align: left;
    }

    .chairman-title {
        font-size: 26px;
    }
}
