@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #F0F3F5;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* Header & Navbar */
header {
    padding-bottom: 25px;
    width: 100%;
    overflow: hidden; /* Ensures no extra space */
}

.top-banner {
    background: #001833 !important; /* Matches navbar's starting color */
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Adds a soft dark blur */
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: linear-gradient(to bottom, rgba(0, 24, 51, 1) 0%, rgba(0, 43, 91, 0.95) 50%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom: none;
    width: 100%;
}

.logo {
    margin-left: 60px; /* Slightly shifts the logo right */
}

.logo img {
    width: 140px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 50px; /* Keeps navigation aligned properly */
}

.nav-links li {
    display: inline;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline;
}

/* Navigation Button Styles */
nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

/* Underline Animation */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Hover Effect */
/* nav ul li a:hover::after {
    width: 100%;
    left: 0;
} */

/* Active Page Effect */
nav ul li a.active {
    background: #FF5733; /* Highlight effect */
    border-radius: 5px;
    padding: 10px 15px;
}

.nav-links a:hover {
    background: #FF5733 !important;  /* Red background on hover */
    color: white !important;
    border-radius: 8px;
}


/* Contact Section (Restored as Original) */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
    gap: 50px;
}

.contact-form {
    flex: 1;
    padding: 20px;
    background: #e3f2fd;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding-right: 40px;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
}

.contact-form p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background: #003366;
    color: white;
    font-size: 1.2rem;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #0055a4;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: linear-gradient(to right, #003366, #004080);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-info,
.footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-info h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-info p,
.footer-contact p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-icons img:hover {
    transform: scale(1.2);
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-form input {
    width: 90%;
    max-width: 350px;
    padding: 10px;
    margin-top: 5px;
    border-radius: 20px;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
}

.footer-contact-form input::placeholder {
    color: white;
    opacity: 0.8;
}

.footer-contact-form button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: background 0.3s ease;
}

.footer-contact-form button:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }
}