/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #002147;
    padding: 20px 0;
    color: #fff;
    width: 100%;
}

.logo h1 {
    margin-left: 40px;
    font-size: 2em;
    font-weight: 600;
}

.logo h1 a {
    color: #ffffff;
}

.menu {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #84c5f4;
}

/* Banner */
.banner {
    background-color: #f0f4f8;
    padding: 60px 0;
    text-align: center;
}

.banner h2 {
    font-size: 2.8em;
    color: #002147;
    font-weight: 600;
}

/* Team Section */
.team-content {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.team-member {
    display: flex;
    align-items: center;
    background: #f0f4f8;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #002147;
}

.member-info h3 {
    font-size: 1.5em;
    color: #002147;
    font-weight: 600;
}

.member-info p {
    font-size: 1em;
    color: #444;
    margin-top: 5px;
}

/* Footer */
footer {
    background: #fffff;
    padding: 30px 0;
    text-align: center;
}

.footer-logos img{
	width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 40px;
    vertical-align: middle}

.scale-up {
    transform: scale(1.5); /* Adjust if needed */
    transform-origin: center;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #0047AB;
    text-decoration: none;
    font-weight: 300;
}

.footer-links a:hover {
    text-decoration: underline;
}
