/* 


#menu-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

#menu-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-btn {
    background-color: #f1d2cf;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.nav-btn img {
    margin-left: 10px;
    width: 12px;
}

.menu-icon {
    display: none;
} */

.get-in-touch {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(145deg, #d3d5d6, #595a59);
    color: white;
    border-radius: 10px;
    margin: 30px 0;
}

.get-in-touch .title {
    font-size: 36px;
    margin-bottom: 10px;
}

.get-in-touch .sub-title {
    font-size: 16px;
    margin-bottom: 30px;
    font-style: italic;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Make inputs stack vertically */
    gap: 20px;
}

.form-field {
    position: relative;
    margin-bottom: 20px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    font-size: 16px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #a1cde6;
}

.label {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 14px;
    color: #aaa;
    transition: all 0.3s ease;
}

.form-field input:focus + .label,
.form-field textarea:focus + .label {
    top: -10px;
    font-size: 12px;
    color: #ff6f61;
}

.submit-btn {
    background-color: #d1c0be;
    color: rgb(88, 52, 187);
    padding: 15px 40px;
    border: none;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #7ed4e1;
}

.response-message {
    font-size: 16px;
    color: #28a745;
    margin-top: 20px;
}

.note {
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
    color: #333;
}

/* Media Query for Small Screens */
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
        width: 30px;
        cursor: pointer;
    }

    #menu-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #333;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }


    .form-floating {
  width: 300px; /* Adjust width as needed */
  margin: 10px auto; /* Centers the box horizontally */
}

.form-control {
  height: 40px; /* Adjust height as needed */
  font-size: 14px; /* Adjust text size */
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Center vertically */
  background-color: #f8f9fa; /* Light background */
}


    #menu-links li {
        margin: 10px 0;
    }

    .nav-btn {
        font-size: 14px;
    }

    .contact-form {
        flex-direction: column;
    }

    .form-field.col.x-50 {
        width: 100%;
    }
}
