/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-header {
    background: url('background-image.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: white;
    font-size: 30px;
}

.contact-section {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.info-box {
    display: inline-block;
    width: 30%;
    text-align: center;
    padding: 10px;
}

.info-box img {
    width: 50px;
    height: 50px;
}

form {
    max-width: 600px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
}

button {
    background: green;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

button:hover {
    background: darkgreen;
} */

/* Banner */
/* .banner {
    width: 100%;
    height: 900px;
    overflow: hidden;
    position: relative;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.banner {
    width: 100%;
    height: 900px;
    overflow: hidden;
    position: relative;
}

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

.banner .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds a dark overlay */
    padding: 20px;
    border-radius: 10px;
}

/* Contact Section Styling */
.contact-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Contact Info Boxes */
.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px auto;
    max-width: 1100px; /* Adjust width */
}

.info-box {
    flex: 1; /* Distributes equal space */
    min-width: 250px; /* Prevents too-small boxes */
    text-align: center;
    padding: 20px;
}

.info-box i {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.info-box img {
    width: 70px; /* Adjust icon size */
    height: auto;
    margin-bottom: 10px;
}

.info-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 8px;
}
/* .info-box i {
    font-size: 40px;
    color: #0b0c0b;
    margin-bottom: 10px;
} */

.info-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 120px;
    resize: none;
}

button {
    background: green;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
}

button:hover {
    background: darkgreen;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    .info-box {
        width: 100%;
        margin-bottom: 20px;
    }

    form {
        width: 90%;
    }
}

