/*================ Fonts =================*/
:root {
    --default-font: "Cairo", sans-serif;
    --heading-font: "Cairo", sans-serif;
    --nav-font: "Cairo", sans-serif;
}

/*=============== Global-Style-Css ===============*/
html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    /* background-color: #F6F4FE; */
}

* {
    font-family: cairo,sans-serif;
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #3E3F66;
}

    a:hover {
        text-decoration: none;
        color: #3E3F66;
    }

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
    }
}

.row_am {
    padding: 50px 0;
    margin: 50px 0;
    background: #eee;
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

    .owl-carousel .owl-dots button {
        display: block;
        width: 15px;
        height: 15px;
        background-color: #D4D2DD;
        border-radius: 15px;
        margin: 0 5px;
    }

    .owl-carousel .owl-dots button {
        background-color: #0C1230;
        background: none;
    }


/*======================================*/
.relative {
    position: relative;
    z-index: 1;
}

button,
button:focus {
    border: none !important;
    box-shadow: inherit !important;
    outline: inherit !important;
}

.site-heading h5 {
    text-transform: uppercase;
    font-weight: 800;
    color: #5138ee;
    font-size: 18px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.bg-dark .site-heading h5,
.bg-theme .site-heading h5,
.shadow .site-heading h5 {
    color: #ffffff;
    opacity: 0.8;
}

.site-heading p {
    margin-bottom: 3rem;
    margin-top: 10px;
}

.bg-dark .site-heading p,
.bg-theme .site-heading p,
.shadow .site-heading p {
    color: #ffffff;
}

.site-heading h2 {
    font-size: 2.5rem;
    color: #000;
    display: block;
    font-weight: 900;
    position: relative;
    margin-bottom: 0;
    line-height: 1.4;
}

.bg-dark .site-heading h2,
.bg-theme .site-heading h2,
.shadow .site-heading h2 {
    color: #ffffff;
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #0396a6;
    position: relative;
    z-index: 1;
    left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
    background: #FEC824;
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: #0396a6;
}

.site-heading.light .devider:before,
.bg-theme .site-heading .devider:before,
.shadow .site-heading .devider:before,
.bg-dark .site-heading .devider:before {
    background: #FEC824;
}

.area-title {
    font-size: 40px;
    line-height: 1.2;
}

.site-heading {
    margin-bottom: 30px;
    margin-top: 0;
    overflow: visible;
    text-align: center;
}

/*=============== Preloader ================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0C1230;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #3859F6;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #32236F;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*=========== Header-Css-Start ================*/
header {
    position: relative;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

    header.fix_style {
        position: fixed;
        top: 0;
        backdrop-filter: blur(5px);
        background-color: #ffffffb4;
        padding: 15px 0;
        transition: none;
        opacity: 0;
        pointer-events: none;
    }

    header.fixed {
        pointer-events: all;
        opacity: 1;
        transition: .4s all;
    }

        header.fixed .navbar {
            padding: 0;
        }

.rtl .navbar {
    direction: rtl;
    padding-left: 0;
    padding-right: 0;
    padding-top: 35px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

    .navbar-expand-lg .navbar-nav .nav-link {
        color: #000;
        padding: 5px 30px;
        font-weight: 500;
    }

        .navbar-expand-lg .navbar-nav .nav-link:hover {
            color: #000;
        }

        .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
            color: #ffffff;
            background-color: #0396a6;
            font-size: 16px;
            padding: 9px 40px;
            border-radius: 25px;
            margin-left: 0 !important;
            margin-right: 20px !important;
            position: relative;
        }

            .navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
            .navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 42px;
                z-index: -1;
            }

            .navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
                animation: pulse-blue-medium-sm 3.5s infinite
            }

            .navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
                animation: pulse-blue-small-sm 3.5s infinite
            }

.navbar-brand img {
    width: 165px;
}

.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .toggle-bar,
    .toggle-bar::before,
    .toggle-bar::after,
    .toggle-wrap.active .toggle-bar,
    .toggle-wrap.active .toggle-bar::before,
    .toggle-wrap.active .toggle-bar::after {
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

.toggle-bar {
    width: 25px;
    margin: 10px 0;
    position: relative;
    border-top: 4px solid #253996;
    display: block;
}

    .toggle-bar::before,
    .toggle-bar::after {
        content: "";
        display: block;
        background: #253996;
        height: 4px;
        width: 30px;
        position: absolute;
        top: -12px;
        right: 0px;
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -ms-transform-origin: 13%;
        -webkit-transform-origin: 13%;
        transform-origin: 13%;
    }

.white_header .toggle-bar,
.white_header .toggle-bar::before,
.white_header .toggle-bar::after {
    border-top: 4px solid #ffffff;
}

.toggle-bar::after {
    top: 4px;
}

.toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
}

    .toggle-wrap.active .toggle-bar::before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .toggle-wrap.active .toggle-bar::after {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }


.navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

    .navbar-expand-lg .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #0396a6;
        transition: width 0.3s ease;
    }

    .navbar-expand-lg .navbar-nav .nav-link:hover::after {
        width: 100%;
    }


@media (max-width: 768px) {
    .navbar-brand img {
        width: 100px;
    }

    .rtl .navbar {
        padding-top: 15px;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 15px 0;
        border-radius: 15px;
        margin-top: 15px;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: center !important;
    }

        .navbar-nav .nav-item {
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }

        .navbar-nav .nav-link {
            padding: 10px 0 !important;
            font-size: 16px;
        }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .navbar-nav .nav-link.dark_btn {
                width: 85%;
                margin: 10px auto !important;
                display: block;
                text-align: center;
                padding: 10px 0;
                font-size: 16px;
            }

    header {
        padding: 10px 0 !important;
    }
}

/*================== Hero-Slider ==================*/
.banner_section {
    margin-top: 70px;
    position: relative;
}

    .banner_section .container {
        position: relative;
    }

    .banner_section .row {
        align-items: center;
    }

    .banner_section .banner_text {
        margin-top: -200px;
    }

.rtl .banner_section .banner_text h1 {
    margin-bottom: 2rem;
    font-size: 55px;
    color: #0C1230;
    letter-spacing: -1.5px;
    font-weight: 700;
}

    .rtl .banner_section .banner_text h1 span {
        color: #0396a6;
    }

.rtl .banner_text h1,
.rtl .banner_text p {
    direction: rtl !important;
    text-align: right !important;
}

.banner_section .app_btn {
    display: flex;
    align-items: center;
}

    .banner_section .app_btn li a {
        display: block;
        padding: 12px 30px;
        border: 2px solid #0396a6;
        position: relative;
        border-radius: 12px;
        font-weight: 600;
        transition: .4s all;
    }

.store_btn1 {
    background-color: #ffffff;
    color: #000;
    margin-right: 15px;
}

    .store_btn1:hover {
        background-color: #0396a6;
        color: #ffffff;
    }

.store_btn2 {
    background-color: #0396a6;
    color: #ffffff;
}

    .store_btn2:hover {
        background-color: #ffffff;
        color: #0396a6;
    }

.banner_section .app_btn li:last-child {
    margin-right: 25px;
}


@media (max-width: 768px) {
    .banner_section .app_btn {
        flex-direction: column;
        align-items: stretch;
    }

    .banner_section .store_btn1 {
        margin-right: 0px !important;
    }

    .banner_section .app_btn li {
        margin-right: 0 !important;
        width: 100%;
        margin-bottom: 15px;
    }

        .banner_section .app_btn li a {
            text-align: center;
            width: 100%;
        }
}

.banner_section .banner_slider {
    display: flex;
    position: relative;
}

    .banner_section .banner_slider .left_icon {
        position: absolute;
        left: 15px;
        bottom: 70px;
        z-index: 9999;
    }

    .banner_section .banner_slider .right_icon {
        position: absolute;
        right: 15px;
        top: 70px;
    }

    .banner_section .banner_slider .slider_frame {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        width: 328px;
    }

    .banner_section .banner_slider #frmae_slider::before {
        content: "";
        position: absolute;
        left: 5px;
        top: 5px;
        background-color: #fff;
        width: calc(100% - 10px);
        height: 92%;
    }

    .banner_section .banner_slider::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 475px;
        height: 475px;
        border-radius: 100%;
        background-color: #0396a6;
        z-index: -5;
    }

    .banner_section .banner_slider #frmae_slider {
        width: 305px;
        margin: 0 auto;
    }

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}

section#banner_section .owl-dots {
    margin-top: 40px;
}

section#banner_section button.owl-dot.active span {
    background-color: #0396a6;
}

/*=================== Feature-Detail ==================*/
.slider_img img {
    border: 1px solid transparent;
    border-radius: 30px;
}

.features_section .feature_detail {
    background-color: #ffffff;
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    padding: 60px 40px 20px;
}

    .features_section .feature_detail .feature_img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -75px;
    }

.features_section .feature_box {
    max-width: 410px;
}

.features_section .data_block {
    text-align: center;
    margin-bottom: 50px;
    padding-inline: 20px;
}

    .features_section .data_block .icon {
        font-size: 44px;
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        color: #0396a6;
        border-radius: 50%;
        transition: 0.3s ease-in-out;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .features_section .data_block:hover .icon {
        background: #0396a6;
        color: white;
        transform: translateY(-5px);
    }

    .features_section .data_block h4 {
        font-size: 20px;
        color: #0396a6;
        font-weight: 700;
        margin-bottom: 10px;
    }

.features_section .container {
    max-width: 1370px;
}

@media (max-width: 768px) {

    .features_section .feature_detail {
        flex-direction: column;
        padding: 20px 20px 40px;
        margin-top: 20px;
    }

        .features_section .feature_detail .feature_img {
            position: relative;
            top: 0;
            margin: 0 auto 40px;
            left: 0;
            transform: none;
            width: 70%;
            z-index: 2;
        }

            .features_section .feature_detail .feature_img img {
                width: 100%;
                display: block;
            }

    .features_section .feature_box {
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }

    .features_section .data_block {
        margin-bottom: 40px;
        padding-inline: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .features_section .data_block .icon {
            width: 80px;
            height: 80px;
            font-size: 34px;
            margin: 0 auto 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .features_section .data_block h4 {
            font-size: 18px;
        }

    .features_section .feature_detail .right_data .data_block .icon, .features_section .feature_detail .left_data .data_block .icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/*================ HOW ITS WORKS SECTION ===================*/
.how-its-works {
    margin-block: 60px;
    background-color: #0396a6;
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
    /* background-repeat: no-repeat; */
    /* background-size: 50%; */
    /* background-position: right; */
}

    .how-its-works .site-heading h2 {
        color: #fff;
    }

    .how-its-works .site-heading .devider,
    .how-its-works .site-heading .devider:before {
        background: #fff;
    }

    .how-its-works h2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .how-its-works p {
        font-size: 1.05rem;
        max-width: 750px;
        margin: 0 auto 50px;
        line-height: 1.8;
    }

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    border-radius: 18px;
    transition: 0.3s ease;
}

    .step:hover {
        transform: translateY(-5px);
    }

.step-icon {
    width: 85px;
    height: 85px;
    margin-bottom: 20px;
}

    .step-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.step-title {
    font-size: 1.4rem;
    margin: 12px 0;
    font-weight: 700;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    opacity: 0.95;
}

.steps-container .fa-chevron-left {
    font-size: 2.8rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    padding-top: 20px;
    opacity: 0.9;
}

    .steps-container .fa-chevron-left:hover {
        opacity: 1;
    }

@media (max-width: 992px) {
    .step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .how-its-works h2 {
        font-size: 2.1rem;
    }

    .how-its-works p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .steps-container {
        flex-direction: column;
        gap: 35px;
    }

        .steps-container .fa-chevron-left {
            display: none;
        }
}

@media (max-width: 480px) {
    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

/*======== Video Button Play =========*/
.video-play-button {
    color: #5138ee;
    font-size: 30px;
    left: 50%;
    padding-left: 7px;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

    .video-play-button:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #ffffff repeat scroll 0 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-animation: pulse-border 1500ms ease-out infinite;
        animation: pulse-border 1500ms ease-out infinite;
    }

    .video-play-button.theme:before,
    .video-play-button.theme:after {
        background: #FEC824 repeat scroll 0 0;
    }

    .video-play-button:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 80px;
        height: 80px;
        background: #ffffff repeat scroll 0 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        transition: all 200ms;
        -webkit-transition: all 200ms;
        -moz-transition: all 200ms;
        -ms-transition: all 200ms;
        -o-transition: all 200ms;
    }

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.video-play-button.theme i {
    display: block;
    position: relative;
    z-index: 3;
    color: #253996;
    font-size: 20px;
}

.video-play-button.relative {
    position: relative;
    display: inline-block;
    left: 30px;
    height: 68px;
    width: 68px;
    line-height: 68px;
    text-align: center;
    margin-top: 0 !important;
    top: 55px;
    margin-left: 10px;
}

    .video-play-button.relative::before,
    .video-play-button.relative::after {
        height: 68px;
        width: 68px;
        line-height: 68px;
    }

    .video-play-button.relative i {
        line-height: 70px;
        font-size: 25px;
    }

/* ========= Home App Landing ===========*/

@media only screen and (min-width: 1200px) {
    .screenshot-area .screenshot-carousel.owl-carousel .owl-stage {
        left: -300px;
    }
}

@media only screen and (max-width: 1200px) {
    .screenshot-area .item .content h4 {
        justify-content: center;
    }
}

.screenshot-carousel .thumb {
    position: relative;
    z-index: 1;
    padding: 15px;
    border-radius: 50px;
    overflow: hidden;
}

    .screenshot-carousel .thumb::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        height: 100%;
        width: 100%;
        background: url(../assets/img/mobile_frame_svg.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .screenshot-carousel .thumb img {
        height: auto;
        width: auto;
        margin: auto;
        border-radius: 30px;
    }

    .screenshot-carousel .thumb .video-play-button {
        z-index: 10;
        position: absolute;
        bottom: 77px;
        height: auto;
        top: auto;
        transform: translateX(-50%);
        font-size: 14px;
        display: none;
    }

        .screenshot-carousel .thumb .video-play-button i {
            position: relative;
            left: -3px;
        }

.screenshot-carousel.owl-carousel.owl-theme .owl-dot span {
    height: 20px;
    width: 20px;
    border: 2px solid #dddddd;
    background: transparent;
    position: relative;
    z-index: 1;
}

.screenshot-carousel.owl-carousel.owl-theme .owl-dots {
    margin-top: 50px;
    margin-bottom: 50px;
}

.screenshot-carousel.owl-carousel.owl-theme .owl-dot span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    background: #0C1230;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.screenshot-carousel.owl-carousel.owl-theme .owl-dot.active span::after {
    opacity: 1;
    visibility: visible;
}

.relative .trial-box {
    border-radius: inherit;
}

div#screenshot .owl-dots button.owl-dot {
    background: none;
}



/*================== Services ====================*/
.services {
    padding-bottom: 4rem;
}

    .services .container {
        max-width: 1200px;
    }

    .services .site-heading h2 {
        font-size: 2.5rem;
        color: #000;
        font-weight: 700;
        margin-bottom: .5rem;
    }

    .services .site-heading p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.7;
        text-align: center;
        margin-top: 1rem;
    }

    .services .service-item {
        height: 100%;
        padding: 2rem 2.5rem;
        padding-bottom: 0rem !important;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 1px solid #eaeaea;
        direction: rtl;
        text-align: right;
        margin-bottom: 2rem;
    }

        .services .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-color: #0396a6;
        }

        .services .service-item .icon i {
            font-size: 3rem;
            color: #0396a6;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
            text-align: right;
        }

        .services .service-item:hover .icon i {
            transform: scale(1.1) rotate(5deg);
            COLOR: #0396a6;
        }

        .services .service-item h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
            color: #000;
            line-height: 1.4;
            text-align: right;
        }

        .services .service-item p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
            flex-grow: 1;
            text-align: right;
            word-break: break-word;
        }

    .services .row .col-lg-4:nth-child(n+4):nth-child(-n+6) .service-item {
        margin-top: 2rem;
    }

@media (max-width: 768px) {
    .services .service-item {
        margin-bottom: 1.5rem !important;
        padding: 1.5rem 1.75rem !important;
    }

    .services .row {
        row-gap: 1.5rem;
    }

    .services .service-item .icon i {
        font-size: 2.5rem;
    }
}

/*---------- Contact Section -----------*/
.contact {
    padding: 80px 0;
    direction: rtl;
}

    .contact .info-box {
        background-color: #0396a6;
        color: #ffffff;
        padding: 2.5rem;
        border-radius: 1.25rem;
        height: 100%;
        text-align: right;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .contact .info-box h3 {
            color: #fff;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .info-box.aos-init.aos-animate .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #ffffff;
    position: relative;
    z-index: 1;
    left: 10px;
}

.info-box.aos-init.aos-animate .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: #fff;
}

 

        .contact .info-box p {
            opacity: 0.9;
            line-height: 1.8;
            margin-bottom: 1.8rem;
        }

    .contact .info-item {
        display: flex;
        gap: 1.25rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }

        .contact .info-item:last-child {
            margin-bottom: 0;
        }

        .contact .info-item .icon-box {
            width: 3.2rem;
            height: 3.2rem;
            background-color: rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .contact .info-item:hover .icon-box {
            background-color: rgba(255, 255, 255, 0.32);
        }

        .contact .info-item .icon-box i {
            font-size: 1.4rem;
            color: #ffffff;
        }

        .contact .info-item .content h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .contact .info-item .content p {
            margin-bottom: 0.25rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

    .contact .contact-form {
        background-color: #ffffff;
        padding: 2.5rem;
        border-radius: 1.25rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
        height: 100%;
        text-align: right;
    }

        .contact .contact-form h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: #0396a6;
        }

        .contact .contact-form p {
            color: #666;
            margin-bottom: 1.75rem;
        }

        .contact .contact-form .form-control {
            background: transparent;
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 20px;
            transition: 0.3s;
            background-clip: padding-box;
            border: 1px solid #eee;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
        }

            .contact .contact-form .form-control:focus {
                border-color: #253996;
                box-shadow: 0 0 0 3px rgba(6, 92, 194, 0.15);
                background-color: #fff;
            }

            .contact .contact-form .form-control::placeholder {
                color: #aaa;
            }

        .contact .contact-form .btn {
            background-color: #0396a6;
            color: #fff;
            padding: 0.85rem 2rem;
            border-radius: 1rem;
            font-weight: 700;
            transition: 0.3s ease;
        }

            .contact .contact-form .btn:hover {
                background-color: #fff;
                border: 1px solid #0396a6 !important;
                color: #000;
            }

@media (max-width: 992px) {

    .contact .info-box,
    .contact .contact-form {
        padding: 1.8rem;
    }
}

/*----------------------- Footer  ---------------------------*/
.footer {
    background-color: #0396a6;
    color: #fff;
    padding: 30px 20px 10px;
    text-align: center;
    direction: rtl;
}

    .footer .site-name h2 {
        font-size: 2.8rem;
        font-weight: 700;
        margin: 0;
        letter-spacing: 1px;
        color: #ffffff;
    }

    .footer .site-description p {
        margin: 20px auto 0;
        font-size: 16px;
        max-width: 750px;
        line-height: 1.8;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
    }

    .footer .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

        .footer .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 20px;
            color: #fff;
            background-color: transparent;
        }

            .footer .social-links a:hover {
                color: #0396a6;
                transform: scale(1.1);
                background: #fff;
            }

    .footer .footer-divider {
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        margin: 10px 0;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    direction: ltr;
}

    .footer-bottom .credits a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
    }


.how-its-works::before {
    content: "";
    background-image: url('../assets/img/shapes.png');
    background-size: 50%;
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-position: right center;
}

section.row_am.features_section .site-heading h2 span {
    color: #0396a6;
}

.site-heading.text-center strong {
    color: #0396a6;
}

.how-its-works .site-heading h2 span {
    color: #000;
}