/* Header open */
.header {
    background-color: hsl(36, 94%, 57%);
    /* padding: 1px; */
}

/* Header closed */


/* banner open */
.banner1 {
    background-image: url(../images/contact_slide.jpg) !important;
    padding: 100px;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    margin-top: 97px !important;
}

.banner1::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}

.about-text h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    font-size: 5rem;
    /* background-color: #fff; */
}

/* banner closed */


/* information open */
.contact-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
}

.contact-icon {
    width: 80px;
    height:80px;
    /* background-color: #007bff; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 40px;
}

.contact-icon img {
    width: 50px;
    height: 50px;
}

.contact-item h3 {
    margin: 5px 0;
    font-size: 18px;
    font-weight: bold;
    color: #000000 !important;
}

.contact-item p {
    margin: 0;
    font-size: 16px;
    color: #000000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        width: 80%;
    }
}

/* information closed */

/* form open */
.text h1 {
    text-align: center;
    font-size: 48px;
}

.form {
    max-width: 100%;
  width: 150%;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.form .title {
    font-size: 25px;
    font-weight: 500;
    position: relative;
}

.form .title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    border-radius: 5px;
    /* background: linear-gradient(135deg, #71b7e6, #9b59b6); */
}

.content form .user-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0px 20px 100px;
}

.form form .user-details .input-box {
    margin-bottom: 15px;
    width: calc(100% / 2 - 20px);
}

.form form .input-box span.details {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.user-details .input-box input {
    height: 45px;
    width: 100%;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

/* .user-details .input-box input:focus,
.user-details .input-box input:valid {
    border-color: #9b59b6;
} */

.form form .gender-details .gender-title {
    font-size: 20px;
    font-weight: 500;
}

.form form .category {
    display: flex;
    width: 80%;
    margin: 14px 0;
    justify-content: space-between;
}

.form form .category label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form form .button {
    height: 45px;
    /* margin: 35px 0px; */
    margin: 20px 0px 0px 620px;
}

.form form .button input {
    height: 100%;
    width: 26%;
    border-radius: 3px;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* background: linear-gradient(135deg, #000000, #9b59b6); */
    background-color: #959af1;
}

.form form .button input:hover {
    /* transform: scale(0.99); */
    /* background: linear-gradient(-135deg, #71b7e6, #9b59b6); */
    background-color: #000000;
}

@media(max-width: 584px) {
    .form {
        max-width: 100%;
    }

    .form form .user-details .input-box {
        margin-bottom: 15px;
        width: 100%;
    }

    .form form .category {
        width: 100%;
    }

    .content form .user-details {
        max-height: 300px;
        overflow-y: scroll;
    }

    .user-details::-webkit-scrollbar {
        width: 5px;
    }
}

@media(max-width: 459px) {
    .form .content .category {
        flex-direction: column;
    }
}

.input-box {
    margin-bottom: 15px;
}

.input-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.input-box select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

.input-box select:focus {
    border-color: 1px solid #ccc;
    ;
    /* Change this to the desired focus color */
}

/* form closed */
