﻿
.directors-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.director-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    width: 100%;
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
}

    .director-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .director-card img {
        width: 52%;
        height: auto;
        text-align:center;
        margin-top:0px
    }

.director-name {
    font-weight: 700;
    margin: 15px 0 5px;
    color: #333;
    font-size: 0.9rem;
}

.director-role {
    font-weight: bold;
    color: #49887b;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Common Message */
.message-box {
    max-width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: left;
    
}

.highlight {
    color: #4d70a8;
    font-style: italic;
    font-weight: 500;
}

.message-box p {
    margin-bottom: 18px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.shape1 {
    width: 160px;
    height: 160px;
    background: #49887b;
    top: 5%;
    left: -50px;
}

.shape2 {
    width: 120px;
    height: 120px;
    background: #4d70a8;
    bottom: 10%;
    right: -40px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}body {
}
