
header {
    background-color: #0056b3; /* Slightly darker blue for header */
    padding: 10px 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #ffa500;
    text-decoration: underline;
}







* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.contact-image img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-title h1 {
    font-size: 2.5em;
    color: #333;
    text-align: right;
}

hr {
    border-top: 5px solid rgb(112, 203, 255);
    margin: 20px 0;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
}

.contact-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-box i {
    font-size: 2em;
    color: rgb(112, 203, 255);
    margin-bottom: 10px;
}

.contact-box h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    word-wrap: break-word; /* Ensure text does not overlap */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-title h1 {
        margin-top: 20px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        margin-bottom: 20px;
    }
}
.footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer p {
    margin: 0;
    color: #333;
    font-size: 1em;
}