/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
}

/* Navigation styling */
nav {
    background-color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .logo img {
    max-width: 120px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #133a68;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0d2a4a;
}

/* Banner styling */
.banner {
    background-image: url("assets/BDplane.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.banner h1 {
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Credentials section */
.credentials {
    padding: 40px;
    text-align: center;
}

.credentials h2 {
    font-size: 2.5em;
    color: #133a68;
    margin-bottom: 10px;
}

.credentials p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.entities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 30px;
}

.entities img {
    width: 187.19px;
    height: 187.19px;
}

/* License buttons */
.licenses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.license-btn {
    padding: 10px 20px;
    color: white;
    background-color: #0d2a4a;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.license-btn:hover {
    background-color: #133a68;
}

/* Partners section */
.partners-section {
    padding: 40px;
    text-align: center;
}

.partners-section h2 {
    font-size: 2.5em;
    color: #133a68;
    margin-bottom: 10px;
}

.partners-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partners img {
    height: 100px;
    width: auto;
    padding: 10px;
    border: 2px solid #133a68;
    border-radius: 8px;
    /* background-color: white; */
}

.invite-logo {
    background-color: #133a68;
    border-radius: 8px;
}





/* Footer styling */
footer {
    background-color: #133a68;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1em;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-form {
    max-width: 300px;
    text-align: left;
    width: 100%;
}

.contact-form label {
    font-weight: bold;
    color: #ddd;
}

.contact-form input, .contact-form button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form button {
    background-color: #0d2a4a;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.contact-form button:hover {
    background-color: white;
    color: #0d2a4a;
}

.address p {
    margin: 0;
    font-size: 1em;
    color: #ddd;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2em;
    }

    .credentials h2, .partners-section h2 {
        font-size: 2em;
    }

    .entities img, .partners img {
        height: 100px;
    }
}
