/********************************************************
1. body start
 *******************************************************/
:root {
    --text-color: #000;
    --primary-color: #fc7303;
    --secondary-color: #A457F1;
    --white-color: #ffffff;
    --green-color: #8cdf5f;
    --dark-color: #222222;

    --sf-primary-blue: #009EDB;
    --sf-primary-blue-dark: #007DC5;
    --sf-primary-orange: #FDB913;
    --sf-primary-orange-dark: #F7941D;
}

.page-wrapper {
    -webkit-font-smoothing: antialiased;
}

.panel {
    background-color: white;
}

.reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.reveal {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "Poppins", serif !important;
    background-color: var(--white-color);
    overflow-x: hidden;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: "Poppins", serif;
}

img {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
}

/* width */

::-webkit-scrollbar {
    width: 10px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #dddddd;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #fcc060, #f07b46, #fcc060);
    border-radius: 25%;
    width: 5px;
}

.container {
    max-width: 1240px;
}

/* botton css start*/
.ma_btn {
    min-width: 170px;
    min-height: 45px;
    border-radius: 5px;
    background-color: var(--primary-color);
    font-size: 16px;
    color: var(--white-color);
    font-weight: 500;
    display: inline-flex;
    border: none;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    position: relative;
    transition: 0.3s;
    padding: 0 30px;
}


    .ma_btn:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.7);
        top: 0;
        height: 100%;
        width: 0%;
        transition: none;
        border-radius: 5px;
    }

    .ma_btn:hover::after {
        width: 100%;
        opacity: 0;
        -webkit-transition: all 0.8s ease-out 0s;
        -o-transition: all 0.8s ease-out 0s;
        -moz-transition: all 0.8s ease-out 0s;
        -ms-transition: all 0.8s ease-out 0s;
        transition: all 0.8s ease-out 0s;
    }

    .ma_btn:hover {
        color: var(--white-color);
    }
/* botton css end */
/********************************************************
1. body end
 *******************************************************/

/* Index Page Css Start */

/* header section css start */

.ma_navbar_wrapper {
    display: flex;
    align-items: center;
}

.ma_brand_logo a img {
    max-width: 350px;
    max-height: 70px;
    object-fit: contain;
}

.ma_navbar_menu {
    margin-left: auto;
}

    .ma_navbar_menu ul li {
        display: inline-block;
        margin-right: 55px;
    }

        .ma_navbar_menu ul li:last-child {
            margin-right: 0;
        }

        .ma_navbar_menu ul li a {
            color: #000000;
            font-size: 16px;
            font-weight: 400;
            position: relative;
            display: inline-block;
            border-bottom: solid 1px transparent;
            line-height: 1.8;
        }

            .ma_navbar_menu ul li a:hover {
                color: var(--primary-color);
                border-bottom: solid 1px #fc7303;
            }

            .ma_navbar_menu ul li a.active {
                color: #fc7303;
                border-bottom: solid 1px #fc7303;
            }

/* header section css end */

.ma_header_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 15px;
    align-items: center;
}

.ma_header_btn {
    display: flex;
    align-items: center;
    grid-gap: 30px;
}

.ma_user_list ul {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

    .ma_user_list ul li {
        margin-right: -15px;
    }
/* .ma_user_list ul li:nth-child(1) img {
    animation: mirrorflip 5s 0s linear infinite;
}
.ma_user_list ul li:nth-child(2) img {
    animation: mirrorflip 6s 0s linear infinite;
}
.ma_user_list ul li:nth-child(3) img {
    animation: mirrorflip 7s 0s linear infinite;
}
.ma_user_list ul li:nth-child(4) img {
    animation: mirrorflip 8s 0s linear infinite;
}
.ma_user_list ul li:nth-child(5) img {
    animation: mirrorflip 9s 0s linear infinite;
}
.ma_user_list ul li:nth-child(6) img {
    animation: mirrorflip 10s 0s linear infinite;
} */
@keyframes mirrorflip {
    0% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
    }

    50% {
        transform: scale(-1, 1);
        -webkit-transform: scale(-1, 1);
        -moz-transform: scale(-1, 1);
        -o-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
    }

    100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
    }
}

.ma_user_list ul li:last-child {
    margin: 0 0 0 30px;
    color: #ffffff;
    font-weight: 200;
    font-size: 18px;
}

    .ma_user_list ul li:last-child span {
        font-weight: 700;
    }

.ma_banner_section {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: url('../images/a-index/SFP_02.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* Fill container, maintain aspect ratio, crop if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

    .banner-content h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .banner-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }


@media (max-width: 768px) {
    .ma_banner_section {
        height: 60vh; /* Slightly shorter on mobile for better UX */
        border-radius: 20px;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.img-background-horizontal {
    background-image: url("../../../../../../cdn.pixabay.com/photo/2020/12/18/15/29/mountains-5842346_1280.jpg");
    background-size: 105vw auto;
    background-position: 0% 0%;
    height: 100vh;
    width: 100vw;
}

@keyframes horizontalMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 20%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.ma_banner_image {
    text-align: right;
    position: relative;
}

.ma_waves {
    position: absolute;
    top: 220px;
    right: 300px;
}

.ma_wave {
    width: 610px;
    height: 610px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 50%;
    margin-left: 50%;
    left: -350px;
    position: absolute;
    bottom: -350px;
    z-index: -1;
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0;
    -webkit-animation: ma_pulse 6000ms ease-out infinite;
    -moz-animation: ma_pulse 6000ms ease-out infinite;
    -ms-animation: ma_pulse 6000ms ease-out infinite;
    -o-animation: ma_pulse 6000ms ease-out infinite;
    animation: ma_pulse 6000ms ease-out infinite;
}

    .ma_wave:nth-of-type(2) {
        -webkit-animation-delay: 1200ms;
        -moz-animation-delay: 1200ms;
        -ms-animation-delay: 1200ms;
        -o-animation-delay: 1200ms;
        animation-delay: 1200ms;
    }

    .ma_wave:nth-of-type(3) {
        -webkit-animation-delay: 2400ms;
        -moz-animation-delay: 2400ms;
        -ms-animation-delay: 2400ms;
        -o-animation-delay: 2400ms;
        animation-delay: 2400ms;
    }

    .ma_wave:nth-of-type(4) {
        -webkit-animation-delay: 3400ms;
        -moz-animation-delay: 3400ms;
        -ms-animation-delay: 3400ms;
        -o-animation-delay: 3400ms;
        animation-delay: 3400ms;
    }

    .ma_wave:nth-of-type(5) {
        -webkit-animation-delay: 4400ms;
        -moz-animation-delay: 4400ms;
        -ms-animation-delay: 4400ms;
        -o-animation-delay: 4400ms;
        animation-delay: 4400ms;
    }

@-webkit-keyframes ma_pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

@keyframes ma_pulse {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

/* .ma_banner_section:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url(../images/bgafter.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite alternate;
}
@keyframes pulse {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(0.9);
    }
} */
.ma_banner_content {
    max-width: 460px;
}

.ma_banner_text > h1 {
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
}

.ma_banner_text > p {
    color: #F2E5F8;
    font-size: 16px;
    font-weight: 400;
    margin: 15px 0 30px;
}

/* Three Box css */
.ma_features_flex {
    padding: 20px 19px;
    background-color: #ffffff;
    border: 1px solid #F1F1F1;
    transition: all 0.3s;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    margin: 0 0 30px;
    cursor: pointer;
}

    .ma_features_flex:nth-child(3) {
        margin-bottom: 0;
    }

    .ma_features_flex:hover {
        background-color: #fc7303;
        box-shadow: 2px 4px 20px 0px #fc73034D;
        transition: all 0.3s;
        transform: translate(0px, 3px);
    }

        .ma_features_flex:hover .ma_features_icon {
            background-color: #ffffff;
        }

.ma_features_icon {
    width: 50px;
    height: 50px;
    background-color: #FFF2FD;
    border-radius: 10px;
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ma_features_text h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 5px;
}

.ma_features_flex:hover .ma_features_text h4 {
    color: #ffffff;
}

.ma_features_text p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
}

.ma_features_flex:hover .ma_features_text p {
    color: #ffffff;
}

/* Three Box css */
.ma_features_section {
    padding: 90px 0;
}

    .ma_features_section .container-fluid {
        background-color: #ffffff;
        padding: 90px 0;
    }

.ma_about_section {
    padding: 90px 0;
    background-color: #ffffff;
}

.ma_about_text .ma_main_heading {
    text-align: left;
    margin-bottom: 0;
}

.ma_about_text p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.ma_elegant_list h6 {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-top: 20px;
    padding-left: 30px;
    line-height: normal;
}

    .ma_elegant_list h6 img {
        position: absolute;
        top: 0;
        left: 0;
    }

.ma_main_heading {
    text-align: center;
    margin-bottom: 45px;
}

    .ma_main_heading h5 {
        font-size: 16px;
        color: #fc7303;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .ma_main_heading h2 {
        font-size: 30px;
        color: var(--dark-color);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .ma_main_heading p {
        color: #000;
        font-size: 16px;
        font-weight: 400;
    }

/* Customizable css */
.ma_customizable_section .container-fluid {
    background-image: url(../images/customizable_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 90px 0;
    border-radius: 30px;
    max-width: 1770px;
    background-attachment: fixed;
}


.ma_features_customizable {
    padding: 20px 14px;
    text-align: center;
    border: 1px solid #ffffff;
    background-color: rgb(255 255 255 / 40%);
    transition: all 0.3s;
    border-radius: 20px;
}

    .ma_features_customizable:hover {
        transition: all 0.3s;
        transform: translate(0px, 3px);
    }

        .ma_features_customizable:hover .ma_features_icon img {
            filter: brightness(5);
        }

        .ma_features_customizable:hover .ma_features_icon {
            background-color: #fc7303;
            transition: all 0.3s;
        }

.ma_text_customizable {
    text-align: center;
}

.ma_features_customizable .ma_features_icon {
    margin: auto;
    transition: all 0.3s;
    background-color: #ffffff;
    box-shadow: 4px 4px 14px 0px rgb(0 0 0 / 6%);
}

.ma_text_customizable h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 15px 0 5px;
}

.ma_text_customizable p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* Customizable css */

/* How It Work css */
.ma_howwork_section {
    overflow: hidden;
}

    .ma_howwork_section .container-fluid {
        background-image: url(../images/work_bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 90px 0;
        border-radius: 30px;
        max-width: 1770px;
        background-color: #ffffff;
        background-attachment: fixed;
    }

    .ma_howwork_section .row {
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

.ma_work_box {
    padding: 20px 14px;
    text-align: center;
    border: 1px solid #ffffff;
    background-color: rgb(255 255 255 / 40%);
    transition: all 0.3s;
    border-radius: 20px;
}

    .ma_work_box:hover {
        transition: all 0.3s;
        transform: translate(0px, 3px);
    }

    .ma_work_box h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark-color);
        margin: 20px 0 0;
    }

    .ma_work_box p {
        color: var(--text-color);
        font-size: 16px;
        font-weight: 400;
        margin: 10px 0 0;
    }


.ma_video_box {
    position: unset;
    bottom: -140px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    width: 65%;
    margin: 60px auto 0;
}

    .ma_video_box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

div#vimeo-video {
    text-align: center;
    margin-top: 60px;
}

    div#vimeo-video img {
        max-width: 1170px;
        max-height: 486px;
        object-fit: contain;
    }

.ma-video-icon {
    background-color: #fc7303;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(250 55 221 / 30%);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(252, 89, 124, 0);
    }
}

.ai_video_heading {
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff), linear-gradient(90deg, #CD64FF 0%, #7636FF 100%);
    display: inline-flex;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ma-tutorial-video {
    transition: all .5s ease-in-out;
    position: relative;
    z-index: 9;
}

.video-active {
    transform: scale(1.2);
}


.ma-tutorial-video {
    transition: all .5s ease-in-out;
    position: relative;
    z-index: 9;
}

.video-active {
    transform: scale(1.2);
}

.ma-video-overlay {
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .5s ease-in-out;
    z-index: 1;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
}

body.ma-hover-section .ma-video-overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
/* How It Work css */

/* Screenshots css */
.ma_screenshots_section {
    padding: 90px 0 0;
}

    .ma_screenshots_section .container {
        max-width: 1200px;
        position: relative;
    }

.ma_slider_wrapper .swiper-pointer-events {
    padding: 60px 38px 0;
}

.swiper-pointer-events {
    overflow: hidden;
    position: relative;
}

.ma_slider_wrapper {
    position: relative;
}

.ma_screenshots_section .container::after {
    position: absolute;
    content: "";
    background-image: url(../images/slider_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ma_mobile_img {
    text-align: center;
}

    .ma_mobile_img img {
        transition: all 0.3s;
        max-width: 293px;
        max-height: 593px;
        transform: scale(1);
    }

.ma_slider_wrapper .swiper-slide.swiper-slide-active .ma_mobile_img img {
    transition: all 0.3s;
    position: relative;
    transform: scale(1.1);
    margin-top: -30px;
}

.swiper-button-prev,
.swiper-button-next {
    border: 1px solid #222222;
    border-radius: 5px;
    width: 45px;
    height: 45px;
    transition: all 0.3s;
}

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        border: 1px solid #fc7303;
    }

        .swiper-button-prev:hover svg path {
            fill: #fc7303;
            stroke: #fc7303;
            transition: all 0.3s;
        }

        .swiper-button-next:hover svg path {
            fill: #fc7303;
            transition: all 0.3s;
        }

    .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        content: "";
    }

    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after {
        content: "";
    }

.ma_slider_wrapper .swiper-button-prev {
    left: 10px;
}

.ma_slider_wrapper .swiper-button-next {
    right: 10px;
}

/* Screenshots css */

/* Testimonials css */
.ma_testimonials_section .container-fluid {
    background-image: url(../images/testimonial_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 90px 0;
    border-radius: 30px;
    max-width: 1770px;
    position: relative;
    background-attachment: fixed;
}

.ma_testimonials_section .container {
    max-width: 1314px;
}

.ma_testimonials_slider .swiper-pointer-events {
    padding: 10px 50px 15px;
}

.ma_testimonials_slider .swiper-button-prev {
    left: 0;
}

.ma_testimonials_slider .swiper-button-next {
    right: 0;
}

.ma_clients_wrapper {
    position: relative;
    max-width: 540px;
    margin: auto;
}

img.ma_quote {
    position: absolute;
    bottom: -15px;
    right: 20px;
}

.ma_clients_content {
    padding: 30px;
    border: 1px solid #ffffff;
    background-color: rgb(255 255 255 / 40%);
    transition: all 0.3s;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.ma_clients_review {
    padding: 30px;
    border: 1px solid #ffffff;
    background-color: rgb(255 255 255 / 40%);
    transition: all 0.3s;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ma_clients_content p {
    font-size: 15px;
    font-weight: 400;
    color: #757575;
}

.ma_clients_name h4 {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
}

.ma_clients_name p {
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    margin-top: 5px;
}

.ma_clients_rating {
    flex: 1;
    text-align: right;
}

/* Testimonials css */

/* Pricing Table css */
.ma_testimonials_section {
    background-color: #ffffff;
    padding: 90px 0;
}

.ma_pricing_section {
    padding-bottom: 45px;
}

    .ma_pricing_section .ma_main_heading {
        margin-bottom: 75px;
    }

.marquee__group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 3fr));
    grid-gap: 30px;
}


.pricing-box {
    border-radius: 20px;
    background-color: #ffffff;
    padding: 30px;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #F1F1F1;
    transition: all 0.3s;
}

    .pricing-box:hover {
        transition: all 0.3s;
        transform: translate(0px, 3px);
    }

.ma_pricing_section .container {
    max-width: 1260px;
}

.pricing-box h5 {
    font-size: 18px;
    color: #222222;
    font-weight: 400;
    margin: 0 0 20px;
}

.pricing-text span {
    font-size: 60px;
    color: #fc7303;
    font-weight: 700;
    line-height: normal;
}

.pricing-text sub {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    position: relative;
    bottom: 0;
}

.pricing-box ul {
    text-align: left;
    padding: 10px 0px;
}

.pricing-box ul {
    text-align: left;
    padding: 10px 0px 10px;
    border-top: 1px solid rgb(223 223 223 / 30%);
    margin-top: 20px;
}

    .pricing-box ul li {
        transition: all 0.3s ease-in-out;
        margin: 20px 0;
        font-size: 16px;
        color: #222222;
        font-weight: 400;
        position: relative;
        padding-left: 25px;
    }

        .pricing-box ul li.ma_crosstext {
            color: #000;
        }

        .pricing-box ul li img {
            position: absolute;
            top: 3px;
            left: 0;
        }

.ma_price_btn a.ma_btn {
    min-width: 310px;
}

.pricing-box.price-active {
    background-color: #fc7303;
    padding: 40px 30px;
    position: relative;
    top: -25px;
}

    .pricing-box.price-active h5 {
        color: #ffffff;
    }

    .pricing-box.price-active span {
        color: #ffffff;
    }

    .pricing-box.price-active .pricing-text sub {
        color: #ffffff;
    }

    .pricing-box.price-active ul li {
        color: #ffffff;
    }

.price-active .ma_price_btn a.ma_btn {
    background-color: #ffffff;
    color: var(--primary-color);
}

    .price-active .ma_price_btn a.ma_btn:hover {
        background-color: #222222;
        color: #ffffff;
    }

.pricing-box.price-active ul li.ma_crosstext {
    color: #DFD9DE;
}

/* Pricing Table css */

/* Blog Table css */
.ma_blogs_section .container-fluid {
    background-image: url(../images/blog_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 90px 0;
    border-radius: 30px;
    max-width: 1770px;
    position: relative;
    background-attachment: fixed;
}

.ma_blog_wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

    .ma_blog_wrapper:hover {
        transition: all 0.3s;
        transform: translate(0px, 3px);
    }

.ma_blog_img {
    width: 270px;
    flex: none;
}

.ma_blog_content ul {
    display: flex;
    gap: 20px;
}

    .ma_blog_content ul li {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #000;
    }

.ma_blog_content h5 a {
    color: #222222;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    display: inline-block;
}

    .ma_blog_content h5 a:hover {
        color: #fc7303;
    }

.ma_blog_content p {
    color: #757575;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

a.blog_btn {
    display: inline-block;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
}

    a.blog_btn:hover {
        color: #fc7303;
    }

.ma_blog_wrapper.ma_blog_wrapper2 {
    flex-direction: column;
}

/* Blog Table css */

/* Form css */
.ma_form_section {
    padding: 90px 0;
}

.ma_contact_wrapper {
    margin-right: 6px;
}

    .ma_contact_wrapper .ma_main_heading {
        text-align: left;
        margin-bottom: 30px;
    }

.ma_md_input {
    margin-bottom: 30px;
    line-height: normal;
}

    .ma_md_input label {
        font-weight: 400;
        color: var(--dark-color);
        margin-bottom: 10px;
    }

    .ma_md_input input {
        width: 100%;
        height: 45px;
        border: 1px solid #F1F1F1;
        border-radius: 5px;
        color: var(--dark-color);
        padding: 0 20px;
        background-color: #ffffff;
    }

    .ma_md_input textarea {
        width: 100%;
        height: 133px;
        border: 1px solid #F1F1F1;
        background-color: #ffffff;
        border-radius: 5px;
        color: var(--dark-color);
        padding: 20px;
        resize: none;
    }

        .ma_md_input input::placeholder,
        .ma_md_input textarea::placeholder {
            color: #B9B9B9;
        }

/* Form css */
/* Footer css */
.ma_footer_section {
    background-image: url(../images/footer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #ffffff;
    padding: 90px 0;
}

.ma_footer_details {
    max-width: 320px;
}

    .ma_footer_details p {
        color: #000;
        margin-top: 30px;
        font-size: 16px;
        font-weight: 400;
    }

.ma_footer_box h3 {
    font-size: 24px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 30px;
}

.ma_footer_links ul li a {
    display: inline-flex;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

    .ma_footer_links ul li a:hover {
        color: #fc7303;
    }

    .ma_footer_links ul li a:after {
        position: absolute;
        content: "";
        top: 8px;
        left: 0;
        width: 9px;
        height: 9px;
        background-color: #fc7303;
        border-radius: 100px;
    }

.ma_footer_btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.ma_footer_wrapper {
    background-color: #151006;
    padding: 15px 0;
}

.ma_footer_copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ma_footer_copy {
    max-width: 1300px;
    margin: auto;
    width: 100%;
}

    .ma_footer_copy p {
        color: var(--white-color);
        font-weight: 400;
        font-size: 16px;
    }

.ma_social_icon ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    grid-gap: 30px;
}

    .ma_social_icon ul li a img {
        transition: 0.3s;
    }

    .ma_social_icon ul li a:hover img {
        transform: rotate(360deg);
    }

/* Index Page Css Start */



/***** loader ******/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

    .loader img {
        width: 80px;
    }
/***** loader ******/

/**----------------------------------------
START: Theme Preloader CSS
----------------------------------------*/
body.loaded {
    overflow: hidden !important;
    height: 100% !important;
}

.preloader {
    position: fixed;
    z-index: 10;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: black;
    z-index: 99999999999999;
}

    .preloader svg {
        position: absolute;
        top: 0;
        width: 100vw;
        height: 110vh;
        fill: #050709;
    }

    .preloader .preloader-heading .load-text {
        font-size: 20px;
        font-weight: 200;
        letter-spacing: 15px;
        text-transform: uppercase;
        z-index: 20;
    }

.load-text span {
    -webkit-animation: loading 1s infinite alternate;
    animation: loading 1s infinite alternate;
}

    .load-text span:nth-child(1) {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .load-text span:nth-child(2) {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .load-text span:nth-child(3) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .load-text span:nth-child(4) {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .load-text span:nth-child(5) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .load-text span:nth-child(6) {
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
    }

    .load-text span:nth-child(7) {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

@-webkit-keyframes loading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* END: Preloader */
@media(max-width: 1499px) {
}


@media(max-width: 1199px) {
    .ma_blog_wrapper.ma_blog_wrapper2 {
        margin-bottom: 30px;
    }

    .ma_blog_wrapper.ma_blog_wrapper2 {
        align-items: flex-start;
    }
}


@media(max-width: 991px) {
    .ma_toggle_btn {
        display: block;
        position: absolute;
        right: 0px;
        top: 40px;
    }

    .ma_brand_logo {
        width: 100%;
        position: relative;
    }

    .ma_navbar_menu ul {
        position: fixed;
        top: 0px;
        left: -260px;
        width: 260px;
        height: 100%;
        background-color: #ffffff;
        box-shadow: 1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
        transition: all 0.3s ease-in-out;
        padding: 0px 20px 20px;
        z-index: 9;
    }

        .ma_navbar_menu ul li {
            display: block;
            margin-right: 0;
        }

            .ma_navbar_menu ul li a {
                display: block;
                padding: 15px 0;
                color: #222222;
                border-bottom: solid 1px #ececec;
            }

    .ma_toggle_btn span {
        width: 30px;
        height: 4px;
        background-color: #fc7303;
        margin-bottom: 5px;
        display: block;
        margin-left: auto;
        margin-top: -17px;
        transition: all 0.3s ease-in-out;
    }

    .menu-open .ma_toggle_btn {
        top: 50px;
    }

        .menu-open .ma_toggle_btn span {
            margin-top: -13px;
        }

        .menu-open .ma_toggle_btn > span:nth-child(2) {
            transform: translateX(20px);
            visibility: hidden;
            opacity: 0;
        }

        .menu-open .ma_toggle_btn > span:nth-child(1) {
            transform: rotate(45deg);
            transform-origin: 24px -1px;
        }

        .menu-open .ma_toggle_btn > span:nth-child(3) {
            transform: rotate(-45deg);
        }

    .menu-open .ma_navbar_menu ul {
        left: 0;
    }

    .ma_blog_wrapper.ma_blog_wrapper2 {
        margin: 30px 0 0;
    }

    .ma_features_section {
        padding: 70px 0;
    }

    .ma_customizable_section .container-fluid {
        padding: 70px 0;
    }

    .ma_about_section {
        padding: 70px 0;
    }

    .ma_howwork_section .container-fluid {
        padding: 70px 0;
    }

    .ma_video_box {
        position: unset;
        text-align: center;
        margin-top: 40px;
        padding: 0 15px;
    }

    .col-lg-1.ma_arrow_box {
        text-align: center;
    }

    .ma_screenshots_section {
        padding: 70px 0 0;
    }

    .ma_slider_wrapper .swiper-pointer-events {
        padding: 70px 15px;
    }

    .ma_testimonials_section .container-fluid {
        padding: 70px 0;
    }

    .ma_testimonials_section {
        padding: 70px 0;
    }

    .ma_blogs_section .container-fluid {
        padding: 70px 0;
    }

    .ma_form_section {
        padding: 70px 0;
    }

    .ma_footer_section {
        padding: 70px 0;
    }

    .ma_about_text {
        margin-top: 40px;
    }

    .ma_about_box {
        margin-top: 50px;
    }

    .ma_testimonials_slider .swiper-pointer-events {
        padding: 0 25px 15px;
    }
}

@media(max-width: 767px) {
    .ma_howwork_section .row {
        gap: 0;
    }

    .ma_clients_review {
        flex-wrap: wrap;
    }

    .pricing-box.price-active {
        padding: 30px 30px;
        position: relative;
        top: 0;
    }

    .ma_blog_content {
        text-align: center;
    }

        .ma_blog_content ul {
            justify-content: center;
        }

    .ma_blog_wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

        .ma_blog_wrapper.ma_blog_wrapper2 {
            align-items: center;
        }

    .ma_footer_copy {
        flex-direction: column;
        text-align: center;
    }

    .ma_footer_details {
        max-width: 100%;
    }

    .ma_footer_box {
        margin: 20px 0;
    }

    .ma_clients_rating {
        flex: none;
    }

    .ma_slider_wrapper .swiper-slide.swiper-slide-active .ma_mobile_img img {
        transform: scale(1);
        margin-top: 0;
    }

    .ma_slider_wrapper::after {
        background-size: cover;
        border-radius: 30px;
    }
}

@media(max-width: 575px) {
    .ma_mobile_img img {
        max-width: 230px;
        max-height: 500px;
    }

    .ma_price_btn a.ma_btn {
        min-width: auto;
    }
}

.btn-gradient {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    border: none;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    background: linear-gradient(to right, #fcc060, #f07b46, #fcc060); /* smooth repeating gradient #f07b46 */
    background-size: 200% auto;
    background-position: left center;
    transition: background-position 0.5s ease, box-shadow 0.3s ease;
}

    .btn-gradient:hover {
        background-position: right center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

/* responsive css */
.feature-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .feature-box img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-box h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #0297d6;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 0.95rem;
        color: #444;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
