* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #f5f5f5;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: white;
}
.navbar a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    margin: 0 15px;
}
.navbar a:hover {
    text-decoration: underline;
}
.contact-container {
    width: 100%;
    /* max-width: 900px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    background: url('./Contactimg.avif') no-repeat center;
    background-size: cover;
    position: relative;
}
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}
.contact-form h2 {
    text-align: left;
    margin-bottom: 20px;
    font-weight: 600;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.contact-form button:hover {
    background: #1a252f;
}

.contact-contain {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}
.contact-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.map iframe {
    width: 450px;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-info {
    text-align: left;
    font-size: 18px;
    max-width: 500px;
    line-height: 1.6;
}
.contact-info p {
    margin: 15px 0;
}
.contact-info a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-info strong {
    font-size: 20px;
    color: #333;
}

footer {
    background-color: #2a8b9d;
    color: white;
    padding: 30px 10%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h2 {
    font-size: 24px;
    margin: 0;
}

.footer-left p {
    font-size: 16px;
    margin-top: 5px;
}

.footer-right p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-right a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}
