.contact-form {
    background-color: #f7f7f7;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.contact-form p {
    font-size: 18px;
    color: #666;
    margin: 20px 0;
}

.work-section input[type="radio"]:checked {
    color: #fff;
}


/* Style the contact details boxes */

.box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.bold-text {
    font-weight: bold;
}

.call-contact {
    color: #009688;
    /* Green color for call */
    font-size: 24px;
    margin-right: 10px;
}

.mail-contact {
    color: #2196F3;
    /* Blue color for email */
    font-size: 24px;
    margin-right: 10px;
}

.box a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}


/* Style the contact form */

form#contact-form {
    margin-top: 30px;
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-size: 18px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.contact-form::placeholder {
    color: #000000;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-textarea {
    resize: vertical;
    height: 150px;
    /* Adjust the height as needed */
}

.selection-work label {
    display: block;
    font-size: 18px;
    color: #333;
    margin-top: 20px;
}

.work-section label {
    font-size: 16px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.submit-contact-button {
    background-color: #009688;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.submit-contact-button:hover {
    background-color: #00796B;
    /* Darker green on hover */
}

.hero {
    color: #000000;
    text-align: center;
}

.hero img {
    max-width: 100%;
    height: 80%;
}


/* Image Container */

.image-container {
    position: relative;
}


/* Text Overlaid on Image */

.image-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0000006d;
    color: #fff;
    padding: 10px 20px;
    font-size: 50px;
}