.header {
    background-color: transparent;
    color: #0b3954;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 3.0em;
    font-weight: 700;
    color: #003366;
}

a {
    color: #0078d7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h3 {
    margin-top: 30px;
    font-size: 2.4em;
    margin-bottom: 20px;
    text-align: center;
    color: #002855;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* hero animations */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #091b2c;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeInOut 25s linear infinite, zoomEffect 25s linear infinite;
    background-blend-mode: screen;
}
.contact-hero-image.contact-image-one {
    background-image: url('../../css/images/contact/contact5.jpg');
    animation-delay: 0s;
}

.contact-hero-image.contact-image-two {
    background-image: url('../../css/images/contact/contact1.jpg');
    animation-delay: 5s;
}

.contact-hero-image.contact-image-three {
    background-image: url('../../css/images/contact/contact3.jpg');
    animation-delay: 10s;
}

.contact-hero-image.contact-image-four {
    background-image: url('../../css/images/contact/contact4.jpg');
    animation-delay: 15s;
    background-position: center 20%; 
}

.contact-hero-image.contact-image-five {
    background-image: url('../../css/images/contact/contact2.jpg');
    animation-delay: 20s;
}


/* Leadership Section with hover effect */
.leadership-cards-container {
    display: flex;
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.leadership-card {
    flex: 1 1 calc(50% - 40px);
    max-width: 500px; 
    min-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.icon-container {
    margin-bottom: 15px;
    font-size: 3em;
    color: #0078d7;
}

.btn {
    background-color: #0078d7;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #005bb5;
}

/* Animations */
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomEffect {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}