*{
    padding: 0;
    margin: 0;
  }

.navbar-custom {
    background-color: white; /* Set navbar background color to white */
  }
  .navbar-custom .navbar-nav .nav-link {
    color: black; /* Set navbar text color to black */
  }
  .navbar-custom .navbar-brand img {
    width: 150px; /* Adjust image width as per your preference */
}

/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f6f9;
}

/* Header Section */
.top-bar {
    text-align: center;
    padding: 20px;
    background-color: #02395c;
    color: #fff;
}

.top-bar h1 {
    font-size: 2em;
}

.top-bar p {
    font-size: 1em;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 40px;
    background-color: #fff;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.contact-info,
.contact-form {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background-color: #f8f9fb;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5em;
    color: #02395c;
}

.contact-info p {
    margin: 15px 0;
}

.info-item h4 {
    margin-bottom: 5px;
    font-weight: bold;
}

.info-item p {
    color: #555;
}

.social-media a {
    margin-right: 10px;
    color: #02395c;
    text-decoration: none;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact-form button {
    padding: 10px;
    background-color: #02395c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Map Section */
.map-section iframe {
    width: 100%;
    border: 0;
}

/* Footer Section */
footer {
    background-color: #02395c;
    color: #fff;
    padding: 20px 0;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer-col {
    flex: 1;
    padding: 10px;
}

.footer-col h4 {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-col .newsletter input {
    width: 80%;
    padding: 8px;
    margin-right: 5px;
}

.footer-col .newsletter button {
    padding: 8px 10px;
    background-color: #0077c8;
    border: none;
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-links a {
    margin: 0 5px;
    color: #ccc;
    text-decoration: none;
}

