
.reasons {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.reasons h2 {
    color: #1e3d7e;
    font-size: 24px;
    margin-bottom: 20px;
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.reason-item {
    display: flex;
    align-items: center;
    width: 45%;
    margin-bottom: 20px;
}

.reason-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.reason-text h3 {
    color: #1e3d7e;
    font-size: 18px;
    margin: 0 0 10px 0;
}

.reason-text p {
    color: #333333;
    font-size: 16px;
    margin: 0;
}

.info-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.info-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .reason-item {
        width: 100%;
    }
}
/*Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    text-align: left;
}

.modal-content h2 {
    color: #1e3d7e;
    margin-top: 0;
}

.modal-content p {
    color: #333;
    margin: 10px 0;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .reason-item {
        width: 100%;
    }
}
/* Modal content for contact for Admissions */

.modal1 {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content1 {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    text-align: left;
}

.modal-content1 h2 {
    color: #1e3d7e;
    margin-top: 0;
}

.modal-content1 p {
    color: #333;
    margin: 10px 0;
}

.close-btn1 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn1:hover,
.close-btn1:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.contact-form input[type="submit"]:hover {
    background-color: #0056b3;
}
