/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* Header Section */
.header {
    position: relative;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}

.nav-bar ul {
    display: flex;
    list-style: none;
}

.nav-bar li {
    margin: 0 15px;
}

.nav-bar a {
    color: #00509e;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
}

.banner-text .title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-text .subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #00aaff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* About Banner */
.about-banner {
    background-image: url('about-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.about-banner h2 {
    font-size: 2.5em;
}

/* Breadcrumb */
.breadcrumb {
    padding: 10px 20px;
    background-color: #f4f4f4;
    color: #555;
    font-size: 0.9em;
}

.breadcrumb a {
    color: #f76c85;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
}

.contact-header .subtitle {
    color: #55abe1;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-header h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
}

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

.contact-form button {
    padding: 15px;
    background-color: #55abe1;
    color: white;
    border: none;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #55abe1; /* Darker pink for hover */
}

/* Map Section */
.map {
    margin: 30px auto;
    max-width: 600px;
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card .icon {
    font-size: 2em;
    color: #55abe1;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    font-size: 0.9em;
}
/* Footer Section */
.footer {
    background-color: #2d2e83; /* Dark blue background */
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}
