/* normalize */
body {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    /* overflow-x: hidden; */
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
}





/* main */



.footer {
    border-radius: 100px 100px 0px 0px;
    position: relative;
    margin-top: 200px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    /* height: 400px; */
    background: #ffffff00;
    backdrop-filter: blur(25px);
    box-shadow: 0px 0px 10px 10px #40074c;
    position: relative;
}

.footer_title {
    z-index: 2;
}



.footer_top_image {
    width: 300px;
    height: 300px;
    top: -190px;
    position: absolute;
    z-index: -1;
    right: 0px;
}

.short_description {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
}

.short_description_intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.short_description_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.short_description_logobox {
    width: 45px;
    height: 45px
}

.short_description_p {
    max-width: 500px;
    width: 350px;
}

.short_description_p p {
    text-align: center;
}

/* footer row 2 */
.footer_row_2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}

.short_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.icon_link {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(http://localhost/mahan-tech/wp-content/uploads/2026/07/icons8-whatsapp-logo-96.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contact_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* servises */
.short_services {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.services_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
}

.logo_for_gt_700px {
    width: 200px;
    height: 190px;
    display: none;
}

/* copy right */

.copy_right_section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.copy_right_icon {
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* medias */
@media(min-width:1200px) {
    .footer_row_2 {
        gap: 100px;
    }
}
@media(min-width:700px) {

    .footer a {
        font-size: 20px;
    }

    .logo_for_gt_700px {
        display: block;
    }
}

@media(max-width:700px) {
    .footer {
        border-radius: 60px 60px 0px 0px;
    }

}

@media(max-width:650px) {}

@media(max-width:500px) {


    .footer {
        border-radius: 45px 45px 0px 0px;
    }

}

@media(max-width:460px) {
    .footer {
        padding: 15px;
    }

    .contact_box h4,
    .services_ul h4 {
        font-size: 14px;
    }

    .contact_box {
        gap: 5px;
    }

    .footer_row_2 {
        gap: 5px;
        width: 100%;
    }
}

@media(max-width:385px) {}