/* Basic Reset */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0; 
	
}

/* Page Style */
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa; /* Very light grey */
    color: #333;
    line-height: 1.7;
}

.banner h3 a {
    color: #CCFFEE;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.banner h3 a:hover {
    color: #002147;
}


/* Header */
header {
    background: #002147; /* Navy Blue */
    color: white;
    padding: 15px 0;
}

.logo h1 {
    text-align: center;
    font-weight: 600;
    font-size: 2.5rem;
}

.logo a {
    color: white;
    text-decoration: none;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    color: #D6E6F2; /* Light Blue */
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
}

.menu ul li a:hover {
    color: #ffffff;
}

/* Banner Section */
.banner {
    background-image: url("bgimage.JPG");
	background-size: cover;
    background-position: center;
	height: 60vh;
	color: white;
    text-align: center;
    padding: 100px 20px;
}

.banner h2 {
    font-size: 2.5em;
	text-shadow: 2px 2px 4px rgba(0,0,0,1);

}

.banner h3 {
    font-size: 1.2em;
	text-shadow: 2px 2px 4px rgba(0,0,0,1);

}
/* Content Section */
.content {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.content h2 {
    color: #002147;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1em;
}
.video-section {
    text-align: center;
    padding: 50px 20px;
    background: #eef4f7;
}

.video-section h2 {
    color: #002147;
    margin-bottom: 20px;
}

.video-container {
      display: block;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px auto; /* center horizontally */
    padding-bottom: 40%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* 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;
}
