@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    text-transform: capitalize;
    font-family: 'Cairo', sans-serif;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: #f6f6f6;
    box-shadow: 0 0 10px #ddd inset;
    
}

::-webkit-scrollbar-thumb {
    background-color: #5a2c74 ;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(107, 64, 102);
}

/*==============================
            navbar - header 
============================*/

.container-header {
    width: 100%;
    min-height: 100vh;
    padding-left: 6%;
    padding-right: 6%;
    box-sizing: border-box;
    overflow: hidden;
    background-image: url(images/header.png);
    background-position: center;
    background-size: cover;
    aspect-ratio: 3 / 1  !important;
}

.container-header .navbar-main {
    width: 100%;
    display: flex;
    align-items: center;
}

.container-header .navbar-main .logo-link {
    text-decoration:none ;
    margin-left: 25px;
    color: #000;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 20px;
    text-align: center;
    
}

.container-header .navbar-main .logo-link span {
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: -10px;
    display: block;
    margin-top: 5px;
}

.container-header .logo {
    width:75px;
    cursor: pointer;
    margin:30px 0 ;
}

.menu {
    width: 25px;
    cursor: pointer;
    display: none;
}

.container-header nav {
    flex: 1;
    text-align: right;
    direction: rtl;
}

.container-header nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}

.container-header nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 17px;

}

.container-header nav ul li .active {
    color: #fff ;
    border: 1px solid #5a2c74 ;
    padding: 7px 20px;
    border-radius: 10px;
    background-color: #5a2c74;
}

.container-header nav ul li .active:hover {
    color: #fff;
}

.container-header nav ul li a:hover {
    color: #5a2c74;
}

.row-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}

.col-1-left {
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}

.col-1-left h2 {
    font-size: 45px;
}

.col-1-left h2 span {
    color: #5a2c74 ;
}

.col-1-left h3 {
    font-size: 20px;
    color: #707070;
    font-weight: 100;
    margin: 20px 0 10px;
}

.container-header button {
    width: 140px;
    border: 0;
    padding: 12px 10px ;
    outline: none;
    color: #fff;
    background-color: #5a2c74;
    border-radius: 6px;
    cursor: pointer;
    transition: width 0.5s;
}

.container-header button img {
    width: 30px;
    display: none;
}

.container-header button:hover img {
    display: block;
}

.container-header button:hover {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col-1-left::after {
    content: "";
    width: 10px;
    height: 75%;
    background: linear-gradient(#fff,#5a2c74);
    position: absolute;
    left: -40px;
    top: 8px;
}

.col-2-right {
    position: relative;
    flex-basis: 60%;
    text-align: center;
}

.col-2-right .controller {
    width: 55%;
    text-align: center;
}

@media only screen and (max-width:667px){
    .container-header nav ul {
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    .container-header {
        min-height: 125vh !important;
        background-image: url(images/header-mop.png);
        background-position: center;
        background-size: cover;
    }
    .container-header nav ul li {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .container-header nav ul li a {
        color: #000;
    }
    #menulist {
        overflow: hidden;
        transition: 0.5s;
        margin-top: 40px ;
    }
    .row-info {
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    .col-2-right {
        flex-basis: 100%;
        margin-bottom: 50px;
    }
    .col-2-right .controller {
        width: 77%;
    }
    .col-1-left {
        flex-basis: 100%;
    }
    .col-1-left h2 {
        font-size: 35px;
    }
    .col-1-left h3 {
        font-size: 15px;
    }
    .container-header nav ul li .active {
        color: #5a2c74 ;
        border: none ;
        padding: 0px ;
        background-color: inherit;
    }
    .container-header .logo {
        width:35px;
        cursor: pointer;
        margin:30px 0 ;
    }
    .container-header .navbar-main .logo-link {
        font-size: 15px; 
    }
    .container-header .navbar-main .logo-link span {
        display: none;
    }
}

@media only screen and (max-width:1100px){
    .container-header nav ul {
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    .container-header {
        min-height: 115vh;
        background-image: url(images/header-mop.png);
        background-position: center;
        background-size: cover;
    }
    .container-header nav ul li {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .container-header nav ul li a {
        color: #000;
    }
    .menu {
        display: block !important;
    }
    #menulist {
        overflow: hidden;
        transition: 0.5s;
        margin-top: 40px ;
    }
    .row-info {
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    .col-2-right {
        flex-basis: 100%;
        margin-bottom: 50px;
    }
    .col-2-right .controller {
        width: 77%;
    }
    .col-1-left {
        flex-basis: 100%;
    }
    .col-1-left h2 {
        font-size: 35px;
    }
    .col-1-left h3 {
        font-size: 15px;
    }
    .container-header nav ul li .active {
        color: #5a2c74 ;
        border: none ;
        padding: 0px ;
        background-color: inherit;
    }
}

/*==============================
            services  
============================*/


.service-container {
    min-height: 90vh;
    margin-top: 100px;
}

.heading_container {
    display: flex;
    justify-content: space-around;
    width: 30%;
    margin: auto;
    margin-bottom: 70px;
    flex-direction: row-reverse;
}

.heading_container h2 {
    margin-left: 20px ;
    color: #5a2c74;
    font-size: 30px;
}

.heading_container hr {
    width: 50%;
    color: #5a2c74;
    height: 3px !important;

}

.service_section {
    text-align: center;
}

.service_section .heading_container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.service_section .box {
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 350px;
}

.service_section .box::before {
    content: "";
    width: 275px;
    height: 275px;
    position: absolute;
    right: -137.5px;
    bottom: -137.5px;
    background-color: #faf8fd;
    z-index: -1;
    border-radius: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.service_section .box .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 125px;
    border-radius: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.service_section .box .img-box img {
    width: 75px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.service_section .box .detail-box {
    margin-top: 15px;
}

.service_section .box .detail-box h5 {
    font-weight: bold;
    position: relative;
}

.service_section .box .detail-box p {
    margin: 15px 0px 25px ;
}

.service_section .box .detail-box a {
    color: inherit;
    text-decoration: none;
    border: 1px solid #5a2c74;
    padding: 5px 15px;
    border-radius: 10px;
    background-color: #5a2c74;
    color: #fff;
}

.service_section .box:hover a {
    background-color: #fff;
    color: #5a2c74;
}

.service_section .box:hover {
    color: #ffffff;
}

.service_section .box:hover::before {
    -webkit-transform: scale(5);
            transform: scale(5);
    background-color: #5a2c74;
}

.service_section .box:hover img {
    -webkit-filter: invert(1);
            filter: invert(1);
}

.service_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
}

.service_section .btn-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #5a2c74;
    color: #ffffff;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #5a2c74;
}

.service_section .btn-box a:hover {
    color: #ffffff;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
}

@media only screen and (max-width:700px){
    .heading_container {
        display: flex;
        justify-content: space-around;
        width: 90%;
        margin: auto;
        margin-bottom: 70px;
        flex-direction: row-reverse ;
    }
    .heading_container h2 {
        margin-right: 20px ;
        color: #5a2c74;
        font-size: 35px;
    }
    .heading_container hr {
        width: 50%;
        color: #5a2c74;
        height: 3px !important;
    }

}

/*===========================
            about us 
==========================*/

.about-container {
    min-height: 70vh;
    background-image: url(images/about-us.png);
    background-position: center;
    background-size: cover;
    
}

.about-title {
    margin-top: 65px ;
    margin-bottom: 30px;
}

.about-title hr {
    margin-top: 30px;
}

.about-container .about-info p {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    word-spacing: 3px;
    color: #8e8e8e;
}

@media only screen and (max-width:667px){
    .about-container {
        flex-direction: column-reverse;
        background-image: url(images/about-mop-bg.png);
        background-position: center;
        background-size: cover;
    }
    .about-container .about-img{
        margin-bottom: 50px;
    }
    .about-container .about-img img {
        width: 350px !important;
    }
    .about-title {
        margin-top: 130px;
        margin-bottom: 70px ;
    }
}

@media only screen and (max-width:992px) and (min-width:668px){
    .about-container {
        flex-direction: column-reverse;
    }
    .about-container .about-img{
        margin-bottom: 50px;
        text-align: center;
    }
    .about-container .about-img img {
        width: 350px !important;
    }
    .about-title {
        margin-top: 130px;
        margin-bottom: 70px ;
    }
    .about-title hr {
        width: 20%;
    }  
    .about-title h2 {
        font-size: 35px ;
    }
}

/*==================================
            how it work 
====================================*/
#how-it-work {
    min-height: 80vh;
    margin-top: 130px;
    position: relative;
}

.how-cards {
    min-height: 60vh ;
    margin-top: 70px !important;
}

.how-cards .card {
    padding: 0px !important;
    -webkit-box-shadow: 0 5px 11px 5px rgba(0, 0, 0, 0.171);
    box-shadow: 0 5px 11px 5px rgba(0, 0, 0, 0.153);
    cursor: pointer;
    transition: 0.4s;
    margin-bottom: 20px;
    height: 350px;
}

.how-cards .card:hover {
    transform:translateY(-3px);
    -webkit-box-shadow: 0 7px 13px 7px rgba(0, 0, 0, 0.358);
    box-shadow: 0 7px 13px 7px rgba(0, 0, 0, 0.279);
}

.how-cards .card img {
    height: 180px !important;
    contain: content;
} 

.card-body {
    text-transform: capitalize;
}

.card-body h5 {
    font-size: 22px;
    color: #5a2c74;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.card-body p {
    color: #959ca4;
    font-size: 16px;
}

@media(max-width: 667px) {
    .how-title::after {
        left: 43%;
    }
    .how-title h1 {
        font-size: 30px;
    }
}

/*==========================================
                clint section 
==========================================*/

.clint-container {
    height: 100vh;
    margin: 50px 0px 100px 0px;
    background-color: #fff;
}

.slide-title {
    padding-top: 100px;
    margin-bottom: 100px;
    color: #5a2c74;
    font-family: sans-serif;
}

.slide-title::after {
    content: "";
    width: 4px;
    height: 80px;
    background-color:#5a2c74 ;
    position: absolute;
    top:4px;
}

.slide-title h1 {
    font-size: 45px;
    font-weight: 600;
}
/*============================
            swiper js 
==============================*/
.slide-container {
    padding-bottom: 50px;
}

.swiper {
    width: 100%;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px !important;
    height: 300px !important;
    -webkit-box-reflect: below 2px linear-gradient(transparent,transparent,#0006);
    cursor: pointer;
    
}

.swiper-slide img {
    display: block;
    width: 100%;
}
/*=====================================
                soon
===================================*/
#soon {
    margin-bottom: 150px;
}

#soon .one-container .one {
    text-align: center;
    cursor: pointer;
    border-radius: 20px;
    margin: 30px;
}

#soon .one-container .one img {
    border-radius: 20px;
    -webkit-box-shadow: 0 7px 13px 7px rgba(0, 0, 0, 0.358);
    box-shadow: 0 7px 13px 7px rgba(0, 0, 0, 0.279);
}
/*=====================================
                contact us 
===================================*/
.form-container {
    height: 90vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 100px !important;

}

.form {
    position: relative;
}

.contact-title {
    text-align: center;
}

.contact-title hr {
    width: 30%;
}

.form-img img {
    width: 350px;
}

.form-con {
    width: 40%;
    position: relative;
    text-transform: capitalize;
    text-align: center;
    border: 1px solid gray;
    padding: 30px 200px !important;
    border-radius: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, textarea {
    border: 0;
    outline: none;
    margin: 10px 0;
    padding: 20px;
    border-radius: 8px;
    background: #ECEFF1;
    width: 350px;
}

form #submit {
    padding: 15px ;
    margin-top: 40px;
    background-color: #fff;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
    outline: none;
    width: 150px;
    color: #000;
    transition: 0.5s ;
    font-weight: 600;
    border: 1px solid #888;
}

form #submit:hover {
    background-color: #5a2c74;
    color: #fff;
}

@media(max-width: 667px) {
    .form h1 {
        font-size: 35px;
        margin-top: 70px;
    }
    .form-container {
        flex-direction: column-reverse;
        margin-top: 80px;
        justify-content: center;
        height: auto;
        padding: 0px !important;
        overflow-x: hidden !important;
    }
    .form-img {
        text-align: center !important;
    }
    .form-img img {
        width: 300px;
        margin-bottom: 30px;
        text-align: center !important;
    } 
    .form-con {
        width: 80% !important;
        border: none;
    }
    .form-info{
        overflow-x: hidden !important;
    }
}

@media screen and (max-width: 991px) and (min-width: 668px){
    .form h1 {
        font-size: 35px;
        margin-top: 70px;
    }
    .form-container {
        flex-direction: column-reverse;
        margin-top: 80px;
        justify-content: center;
        height: auto;
        padding: 0px !important;
    }
    .form-img {
        text-align: center !important;
    }
    .form-img img {
        width: 300px;
        margin-bottom: 30px;
        text-align: center;
    } 
    .form-con {
        width: 80% !important;
        border: none;
    }
    .form-info{
        overflow-x: hidden !important;
    }
    .contact-title {
        margin-top: 100px;
        text-align: center;
    }
    .contact-title h2 {
        font-size: 35px;
    }
    .contact-title hr {
        width: 10%;
    }
}

/*===========================
            footer
============================*/
.footer-section {
    background-color: #f6f6f6;
}

footer .brand{
    color: #5a2c74 !important;
    font-size: 22px;
    font-weight: 600;
}

footer a{
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

footer a:hover{
    color: #5a2c74 !important;
}

/* media queries */
@media(min-width: 992px){
    .nav-item{
        border-bottom: none;
    }
}

.col-section-container {
    padding-top: 80px;
    position: relative;
}

.copyright {
    text-align: center;
}

.copyright a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

/*======================
        whats app icon
====================/*

/* modal */
.modal-header {
    background-color: rgb(45, 183, 66);
    color: #fff;
}

.modal-header .modal-title  .header-img {
    width: 50px;
    margin-right: 30px;
}

.modal-header .btn-close {
    color: #fff;
}

.modal-body h6 {
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}
.modal-body .ico-information {
    margin: auto;
    background-color: #efefef;
    padding: 15px 0px;
    display: flex;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
}

.modal-body .ico-information a {
    text-decoration: none; 
    color: black;

}

.ico-btn {
    width: 60px;
    position: absolute;
    right: 25px;
    bottom: 20px;
    animation: updown 2s alternate infinite;
    cursor: pointer;
    position: fixed;
    border: none;
    z-index: 55555555555;
}

.ico-btn img {
    width: 50px ;
}

.whatsapp-icon .btn {
    border: none;
}

.icon-app {
    width: 70px;
}

.ico-information {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.ico-information img {
    width: 40px;
}

.ico-information p {
    font-size: 20px;
    color:rgb(9, 116, 232) ;
    font-family: sans-serif;
}

.modal-content {
    width: 450px !important;
    margin: auto;
}



@media(max-width: 667px){

    .icon-app {
        width: 40px;
        right: 5px;
        bottom: 20px;
        outline: none;
    }
    .modal-dialog{
        width: 95% !important;
        margin: auto !important;
    }
    .modal-content {
        width: 350px !important;
        margin: auto;
    }
    body {
        overflow-x: hidden;
    }
}  

@media(max-width: 368px){
    .modal-content {
        width: 335px !important;
        margin: auto;
    }
}

