/* Header Styling */
.header {
    background-color: transparent; 
    color: #0b3954;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 3.0em; 
    font-weight: 700;
    color: #003366;
    text-align: center;
}

header p {
    font-size: 1.2em;
    color: #0b3954;
    text-align: center;
}

/* Executive Container */
.executive-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

/* Executive Card */
.executive-card {
    background-color: white;
    width: 250px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* remove underline*/
.executive-card a {
    text-decoration: none; 
}

.executive-photo {
    width: 150px;             
    height: 150px;            
    border-radius: 50%;       
    object-fit: cover;        
    margin-bottom: 15px;
}

.executive-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #003366;
    margin: 10px 0;
}

.executive-title {
    font-size: 1.1em;
    color: #666;
    line-height: 1;
    margin: 12px 0;
    text-decoration: none;
}


