.home_page_div {
        padding: 20px;
    }

    .left_side_div,
    .right_side_div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left_side_div {
        margin-bottom: 70px;
    }

    .des_div {
        width: 60%;
    }

    .img_1,
    .img_2 {
        width: 400px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .description_1,
    .description_2 {
        font-size: 18px;
        font-weight: 500;
        text-align: justify;
        color: #161616;
        margin-bottom: 20px;
    }

    .quotes1 {
        margin-bottom: 25px;
    }

    .head_h2 {
        color: black;
        margin-bottom: 20px;
        font-size: x-large;
    }

    .popup {
        background-color: #fff;
        /* Popup background color */
        width: 600px;
        /* Adjust width as needed */
        padding: 20px;
        border-radius: 7px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        /* Box shadow for depth effect */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .close {
        position: absolute;
        top: 6px;
        right: 15px;
        cursor: pointer;
        color: black;
        font-weight: 500;
        font-size: xx-large;
    }

    .pop_h3 {
        color: black;
        font-size: larger;
        margin-bottom: 10px;
    }

    .pop_div_1 {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .pop_div_2 {
        margin-bottom: 20px;
    }

    .login_h5 {
        font-size: large;
        color: black;
    }

    .pop_p {
        color: black;
        font-weight: 400;
    }

    .centered-buttons {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .popup_button {
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.25;
        user-select: none;
        white-space: nowrap;
        text-align: center;
        padding: 0.65rem 1.5rem;
        border-radius: 3rem;
        text-transform: capitalize;
        color: white;
        background-color: #007bff;
        box-shadow: var(--shadow-medium);
        transition: all 0.3s ease-in-out;
    }

    .popup_button:hover {
        background-color: #0dcaf0;
        color: white;
    }

    @media screen and (max-width: 992px) {
        .quotes1 {
            color: black;
        }
    }

    @media screen and (max-width: 425px) {
        .popup {
            width: 90%;
        }
    }

    @media screen and (min-width:425px) and (max-width: 690px) {
        .popup {
            width: 70%;
        }
    }

    @media screen and (max-width:768px) {

        .left_side_div,
        .right_side_div {
            display: flex;
            flex-direction: column;
        }

        .pic2_div {
            order: -1;
            /* This will push pic2_div to the top */
        }

        .pic1_div,
        .pic2_div {
            margin-bottom: 10px;
        }

        .des_div {
            width: 100%;
        }

        .img_2 {
            width: 350px;
        }
    }

    