.btns button {
    height: 55px;
    width: 170px;
    border-radius: 5px;
    margin: 0 10px;
    border: 2px solid white;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.btns button:first-child {
    color: #fff;
    background: none;
}

.btns button:first-child:hover {
    background: white;
    color: black;
}

.btns button:last-child {
    background: white;
    color: black;
}

.about-us,
.contact {
    text-align: center;
    padding: 50px 0;
}

/* Styling for the button */
.reveal-form-button {
    font-weight: 500;
    padding: 10px;
    font-size: 20px;
    background: linear-gradient(to right, #514de9, #514de9);
    border: 2px solid white;
    color: white;
    border-radius: 5px;
}

.reveal-form-button:hover{
    background: linear-gradient(to right, #ffffff, #fdfdfd);
    color: rgb(0, 0, 0);
    border: 2px solid dodgerblue;
}

/* Styling for the form container */
.form-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    width: 80%;
    /* Adjust width as needed */
    max-width: 500px;
    /* Optional: Set maximum width */
}

/* Styling for the close icon */
.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 45px;
    font-weight: 700;
}
