@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Portfolio Template Styles */
:root {
	--white-color: #ffffff;
	--black-color: #000000;
    --primary-color: #6A49F2;
	--heading-color: #32236F;
	--background-color: rgba(255, 255, 255, 0.8);
    --text-color: #3E3F66;
	--plat-boxshadow: 0px 4px 30px #EDE9FE;
	--plat-boxshadowsecond: 0px 4px 10px #EDE9FE;
	--border-color: #dce1e4;
    --light-bg: #DFDAF3;
	--font-poppins: "Poppins", sans-serif;
	--transition: all 0.5s;
}


/*--------- Comman css Start -------*/
*, *::before, *::after {
    box-sizing: border-box;
}
body, html {
	font-family: var(--font-poppins);
	font-weight: 400;
	font-size: 16px;
	line-height: 23px;
	color: #333333;
	margin: 0;
	background-color: var(--white-color);
  	transition: var(--transition);
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
a {
	color: #797979;
	text-decoration: none;
	transition: var(--transition);
}
h1, h2, h3, h4, h5, h6{
	font-family: var(--font-poppins);
	font-weight: 500;
	margin: 0;
}
p{
	margin: 0;
	padding: 0;
}
figure{
	margin: 0 !important;
  }
.mav1_primary_btn{
	font-size: 16px;
	line-height: 24px;
    font-weight: 500;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	color: var(--white-color);
	background: var(--primary-color);
	padding: 10px 40px;
	font-family: var(--font-poppins);
	transition: var(--transition);
	display: inline-flex;
    align-items: center;
    gap: 10px;
	justify-content: center;
	position: relative;
	text-transform: uppercase;
	border: 1px solid var(--primary-color);
	z-index: 1;
}  
.mav1_primary_btn::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: var(--white-color);
	transition: var(--transition);
	width: 0;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	z-index: -1;
}
.mav1_primary_btn:hover::before{
	transition: var(--transition);
	right: 0;
	width: 100%;
}
.mav1_primary_btn:hover{
	color: var(--primary-color);
	background-color: var(--black-color);
}
/*--------- Comman css End -------*/
/*--------- Header css Start -------*/
.mav1_header_wrapper{
	z-index: 2;
	position: relative;
}
.mav1_header_nav_wrapper{
	margin-left: auto;
}
.mav1_header_wrapper.is-sticky{
	position: sticky;
	top: 0;
	transform: translateY(-20px);
	animation: stickyFadeIn 0.4s cubic-bezier(.4,0,.2,1) forwards;
	background-color: var(--white-color);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.11);
}
.mav1_header_wrapper.is-sticky .mav1_header_inner{
	padding-top: 10px;
}
.mav1_header_logo_wrapper img{
	height: 34px;
}
.mav1_header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 35px;
    padding-bottom: 10px;
	position: relative;
}
  @keyframes stickyFadeIn {
	from { opacity: 0; transform: translateY(-20px);}
	to   { opacity: 1; transform: translateY(0);}
  }
.mav1_nav_wrapper ul{
	display: flex;
	align-items: center;
	gap: 20px;
}
.mav1_nav_wrapper ul li a{
	color: var(--text-color);
	font-family: var(--font-poppins);
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 5px 10px;
	position: relative;
}
.mav1_nav_wrapper ul li a:hover,
.mav1_nav_wrapper ul li a.active{
	transition: var(--transition);
	color: var(--primary-color);
}
.el_header_mob_toggle_btn{
	display: none;
	transform: rotate(180deg);
    cursor: pointer;
}
#close-sidebar{
	display: none;
}
.mav1_header_contact_btn{
	padding-left: 25px;
	position: relative;
}
.mav1_banner_inner{
	position: relative;
}

/*--------- Header css End -------*/
/*--------- Banner css Start -------*/
.mav1_banner_wrapper {
    position: relative;
	min-height: calc(100vh - 92px);
    align-items: center;
    display: flex;
    padding: 60px 0;
	z-index: 1;
}
.mav1_banner_left_cont {
    position: relative;
    z-index: 2;
}
.mav1_banner_heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 20px;
	color: var(--heading-color);
}
.mav1_banner_heading span{
	color: var(--primary-color);
}
.mav1_banner_description {
    font-size: 16px;
    line-height: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
	max-width: 95%;
}
.mav1_app_buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.mav1_app_buttons li {
    list-style: none;
}
.mav1_app_store_btn,
.mav1_google_play_btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}
.mav1_app_store_btn:hover,
.mav1_google_play_btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(119, 68, 238, 0.3);
}
.mav1_app_store_btn i,
.mav1_google_play_btn i {
    font-size: 24px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.mav1_app_store_btn:hover i,
.mav1_google_play_btn:hover i {
    color: var(--white-color);
}
.btn_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.btn_small_text {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 2px;
}
.btn_large_text {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
}
.mav1_app_store_btn:hover .btn_small_text,
.mav1_app_store_btn:hover .btn_large_text,
.mav1_google_play_btn:hover .btn_small_text,
.mav1_google_play_btn:hover .btn_large_text {
    color: var(--white-color);
}
.mav1_user_thumbnails {
    display: flex;
    align-items: center;
    gap: -10px;
}
.mav1_user_thumbnails li {
    list-style: none;
    position: relative;
}
.mav1_user_thumbnails li:not(.user_count) {
    margin-left: -15px;
    z-index: 3;
}
.mav1_user_thumbnails li:first-child {
    margin-left: 0;
    z-index: 6;
}
.mav1_user_thumbnails li:nth-child(2) {
    z-index: 5;
}
.mav1_user_thumbnails li:nth-child(3) {
    z-index: 4;
}
.mav1_user_thumbnails li:nth-child(4) {
    z-index: 3;
}
.mav1_user_thumbnails li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white-color);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.user_count {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.count_number {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
}
.count_text {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.2;
}
.mav1_user_thumbnails_wrapper{
	display: flex;
	align-items: center;
	gap: 15px;
}
.mav1_banner_right{
	position: relative;
	z-index: 1;
}
.mav1_banner_right::before{
	content: '';
	width: 700px;
	height: 700px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: radial-gradient(
		circle at right 100px top 100px,
		rgba(255, 230, 150, 0.9) 0%,      /* soft yellow at top-right */
		rgba(255, 180, 220, 0.9) 30%,     /* pinkish tone */
		rgba(180, 120, 255, 0.8) 60%,     /* purple in middle */
		rgba(255, 255, 255, 1) 100% 
	);
	filter: blur(50px);
	position: absolute;
	left: 2%;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.mav1_banner_left_img{
	max-width: 268px;
	width: 100%;
	object-fit: cover;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.mav1_banner_left_img{
	margin-bottom: 15px;
}
.mav1_banner_left_img img{
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	width: 100%;
}
.right_align_img{
	text-align: right;
}
@keyframes mav1_card_banner_img1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes mav1_card_banner_img2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes mav1_card_banner_img3 {
    0%, 100% { transform:  translateY(0px); }
    50% { transform:  translateY(-12px); }
}

@keyframes mav1_card_banner_img4 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

/* Apply animations with different timings */
.mav1_card_banner_img1 {
    animation: mav1_card_banner_img1 4s ease-in-out infinite;
}

.mav1_card_banner_img2 {
    animation: mav1_card_banner_img2 5s ease-in-out infinite;
	max-width: 165px;
	margin-left: auto;
}

.mav1_card_banner_img3 {
    animation: mav1_card_banner_img3 3.5s ease-in-out infinite;
	max-width: 215px;
	margin-right: auto;
}

.mav1_card_banner_img4 {
    animation: mav1_card_banner_img4 4.5s ease-in-out infinite;
}
/*--------- Banner css End -------*/
/*--------- Feature css Start -------*/
.mav1_feature_wrapper{
	padding: 130px 0 100px;
	position: relative;
	z-index: 1;
}
.mav1_feature_wrapper::before{
	content: '';
	width: 600px;
	height: 600px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: radial-gradient(
		circle at right 100px top 100px,
		rgba(255, 230, 150, 0.9) 0%,      /* soft yellow at top-right */
		rgba(255, 180, 220, 0.9) 30%,     /* pinkish tone */
		rgba(180, 120, 255, 0.8) 60%,     /* purple in middle */
		rgba(255, 255, 255, 1) 100% 
	);
	filter: blur(100px);
	position: absolute;
	left: 2%;
	top: 10%;
	z-index: -1;
}
.mav1_heading{
	text-align: center;
}
.mav1_heading h2{
	font-size: 40px;
	line-height: 48px;
	color: var(--heading-color);
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: capitalize;
}
.mav1_heading h2 span{
	color: var(--primary-color);
}
.mav1_heading p{
	font-size: 16px;
	line-height: 27px;
	color: var(--text-color);
	max-width: 650px;
    margin: 0px auto;
}
.mav1_feature_inner{
	position: relative;
    background-color: var(--background-color);
    border-radius: 30px;
    box-shadow: var(--plat-boxshadow);
    border: solid 1px var(--white-color);
	z-index: 1;
}
.mav1_feature_main_img{
	max-width: 70%;
	width: 100%;
	margin: 0px auto;
	transform: translateY(-80px);
	height: 210px;
}
.mav1_feature_main_img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.mav1_feature_wrapper .container{
	max-width: 1370px;
}
.mav1_feature_box{
	margin-bottom: 30px;
}
.mav1_feature_icon{
	position: relative;
	margin-bottom: 35px;
}
.mav1_feature_icon .mav1_feature_icon_change{
	font-size: 60px;
	color: var(--primary-color);
	transition: var(--transition);
}
.mav1_feature_box:hover .mav1_feature_icon .mav1_feature_icon_change{
	transform: translateY(-5px);
	transition: var(--transition);
}
.mav1_feature_box_wrapper .col:first-child .mav1_feature_icon .mav1_feature_icon_change {
    color: #8a72f5;
}
.mav1_feature_box_wrapper .col:nth-child(2) .mav1_feature_icon .mav1_feature_icon_change {
    color: #51b9f1;
}
.mav1_feature_box_wrapper .col:nth-child(3) .mav1_feature_icon .mav1_feature_icon_change {
    color: #ee60c8;
}
.mav1_feature_box_wrapper .col:nth-child(4) .mav1_feature_icon .mav1_feature_icon_change {
    color: #0bc9be;
}
.mav1_feature_box_wrapper .col:nth-child(5) .mav1_feature_icon .mav1_feature_icon_change {
    color: #51b9f1;
}
.mav1_feature_box_wrapper .col:nth-child(6) .mav1_feature_icon .mav1_feature_icon_change {
    color: #ee60c8;
}
.mav1_feature_box_wrapper .col:nth-child(7) .mav1_feature_icon .mav1_feature_icon_change {
    color: #8a72f5;
}
.mav1_feature_box_wrapper .col:nth-child(8) .mav1_feature_icon .mav1_feature_icon_change {
    color: #0bc9be;
}
.mav1_feature_box_wrapper .col:nth-child(9) .mav1_feature_icon .mav1_feature_icon_change {
	color: #ee60c8;
}
.mav1_feature_box h4{
	font-size: 20px;
	line-height: 30px;
	color: var(--heading-color);
	font-weight: 600;
	margin-bottom: 15px;
}
.mav1_feature_box p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
}
.mav1_feature_box_wrapper{
	max-width: 1170px;
    margin: 0 auto;
    padding: 40px 20px;
}
.mav1_feature_inner .mav1_heading{
	margin-bottom: 30px;
}
/*--------- Feature css End -------*/
/*--------- Aboutapp css Start -------*/
.mav1_aboutapp_img{
	display: flex;
	align-items: center;
}
.mav1_aboutapp_frame{
	max-width: 303px;
	width: 100%;
}
.mav1_aboutapp_screen{
	margin-left: -135px;
	max-width: 287px;
	width: 100%;
}
.mav1_aboutapp_frame img, .mav1_aboutapp_screen img{
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 100%;
}
.mav1_aboutbotapp_frame{
	max-width: 352px;
	width: 100%;
}
.mav1_aboutbotapp_screen{
	max-width: 250px;
	width: 100%;
	margin-left: -45px;
}
.mav1_aboutbotapp_screen img, .mav1_aboutbotapp_frame img{
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: 100%;
}
.mav1_aboutapp_content .mav1_heading{
	text-align: left;
	margin-bottom: 30px;
}
.mav1_aboutapp_content .mav1_heading p{
    margin: 0;
	max-width: 100%;
}
.mav1_aboutapp_count_card{
	display: flex;
	align-items: center;
	gap: 15px;
	box-shadow: var(--plat-boxshadowsecond);
	background-color: var(--white-color);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	padding: 15px 10px;
    padding-left: 35px;
	margin-bottom: 30px;
	transition: var(--transition);
}
.mav1_aboutapp_count_icon{
	width: 57px;
	height: 57px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	font-size: 24px;
}
.mav1_aboutapp_count_card:hover{
	transform: translateY(-5px);
	transition: var(--transition);
}
.mav1_aboutapp_count_content h3{
	font-size: 35px;
	line-height: 45px;
	color: var(--heading-color);
	font-weight: 600;
}
.mav1_aboutapp_count_content p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
}
.aboutapp_grid{
	margin: 0 -15px;
}
.aboutapp_grid .col{
	padding: 0 15px;
}
.aboutapp_grid .col:first-child .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #e6e0ff;
}
.aboutapp_grid .col:first-child .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #6c4bf2;
}
.aboutapp_grid .col:nth-child(2) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #ffddf6;
}
.aboutapp_grid .col:nth-child(2) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #f04ac5;
}
.aboutapp_grid .col:nth-child(3) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #d4f0ff;
}
.aboutapp_grid .col:nth-child(3) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #31b0f4;
}
.aboutapp_grid .col:nth-child(4) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #a4fffa;
}
.aboutapp_grid .col:nth-child(4) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #01c5bb;
}
.aboutapp_grid .col:nth-child(5) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #e6e0ff;
}
.aboutapp_grid .col:nth-child(5) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #6c4bf2;
}
.aboutapp_grid .col:nth-child(6) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #ffddf6;
}
.aboutapp_grid .col:nth-child(6) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #f04ac5;
}
.aboutapp_grid .col:nth-child(7) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #d4f0ff;
}
.aboutapp_grid .col:nth-child(7) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #31b0f4;
}
.aboutapp_grid .col:nth-child(8) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon{
	background-color: #a4fffa;
}
.aboutapp_grid .col:nth-child(8) .mav1_aboutapp_count_card .mav1_aboutapp_count_icon .mav1_aboutapp_icon_change{
	color: #01c5bb;
}
.mav1_aboutapp_btn{
	margin-top: 15px;
}
.mav1_aboutapp_btn .mav1_primary_btn{
	margin-right: 10px;
}
.mav1_aboutbot_content .mav1_heading{
	text-align: left;
	margin-bottom: 40px;
} 
.mav1_aboutbot_content{
	padding-right: 75px;
}
.mav1_aboutbot_content .mav1_heading p{
	max-width: 100%;
	margin: 0;
}
.mav1_aboutbot_list_wrap{
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}
.mav1_aboutbot_list_icon .mav1_aboutbot_icon_change{
	color: var(--primary-color);
	font-size: 22px;
	margin-top: 5px;
}
.mav1_aboutapp_count_content h3{
	font-size: 20px;
	line-height: 26px;
	color: var(--heading-color);
	font-weight: 600;
	margin-bottom: 7px;
}
.mav1_aboutapp_count_content p{
	font-size: 16px;
	line-height: 25px;
	color: var(--text-color);
}
.mav1_aboutbot_wrapper{
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.mav1_aboutbot_wrapper::before{
	content: '';
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle at right 100px top 100px,
		rgba(255, 230, 150, 0.9) 0%,      /* soft yellow at top-right */
		rgba(255, 180, 220, 0.9) 30%,     /* pinkish tone */
		rgba(180, 120, 255, 0.8) 60%,     /* purple in middle */
		rgba(255, 255, 255, 1) 100% 
	);
	filter: blur(100px);
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
/*--------- Aboutapp css End -------*/
/*--------- How it word css Start -------*/
.mav1_hiw_wrapper{
	position: relative;
	z-index: 1;
}
.mav1_hiw_wrapper::before{
	content: '';
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle at right 100px top 100px,
		rgba(255, 230, 150, 0.9) 0%,      /* soft yellow at top-right */
		rgba(255, 180, 220, 0.9) 30%,     /* pinkish tone */
		rgba(180, 120, 255, 0.8) 60%,     /* purple in middle */
		rgba(255, 255, 255, 1) 100% 
	);
	filter: blur(100px);
	position: absolute;
	left: 2%;
	top: 10%;
	z-index: -1;
}
.mav1_hiw_wrapper .container{
	max-width: 1370px;
}
.mav1_hiw_inner_wrapper .mav1_heading{
	margin-bottom: 30px;
}
.mav1_hiw_inner_wrapper{
	background-color: var(--background-color);
    border: solid 1px var(--white-color);
    padding-top: 70px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    box-shadow: var(--plat-boxshadow);
}
.mav1_hiw_process ul{
	max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
	display: flex;
	flex-direction: column;
}
.mav1_hiw_process ul li{
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.mav1_hiw_process ul li::before{
	content: "";
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 100px);
    background-color: var(--light-bg);
}
.mav1_hiw_process ul li:first-child::after{
	content: "";
    position: absolute;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background-color: var(--light-bg);
    border-radius: 15px;
}
.mav1_hiw_process ul li:first-child:before{
    top: 0px;
}
.mav1_hiw_process ul li:last-child:before{
	height: 50%;
    top: 0px;
}
.mav1_hiw_process_cont{
	width: 100%;
    max-width: 360px;
	text-align: right;
}
.mav1_hiw_process_cont h3{
	font-size: 20px;
	line-height: 26px;
	color: var(--heading-color);
	font-weight: 600;
	margin-bottom: 10px;
}
.mav1_hiw_process_cont p{
	font-size: 16px;
	line-height: 25px;
	color: var(--text-color);
}
.mav1_hiw_process_count{
	width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: #fff1da;
    border: 7px solid #f9e8cd;
	position: relative;
	z-index: 1;
}
.mav1_hiw_process ul li:nth-child(2) .mav1_hiw_process_count{
	background: #d8fdff;
    border: 7px solid #c5f5f8;
}
.mav1_hiw_process ul li:nth-child(3) .mav1_hiw_process_count{
	background: #ffe9f1;
    border: 7px solid #fcdde9;
}
.mav1_hiw_process ul li:nth-child(4) .mav1_hiw_process_count{
	background: #fff1da;
    border: 7px solid #f9e8cd;
}
.mav1_hiw_process ul li:nth-child(5) .mav1_hiw_process_count{
	background: #d8fdff;
    border: 7px solid #c5f5f8;
}
.mav1_hiw_process ul li:nth-child(6) .mav1_hiw_process_count{
	background: #ffe9f1;
    border: 7px solid #fcdde9;
}
.mav1_hiw_process ul li:nth-child(7) .mav1_hiw_process_count{
	background: #fff1da;
    border: 7px solid #f9e8cd;
}
.mav1_hiw_process ul li:nth-child(8) .mav1_hiw_process_count{
	background: #d8fdff;
    border: 7px solid #c5f5f8;
}
.mav1_hiw_process ul li:nth-child(9) .mav1_hiw_process_count{
	background: #ffe9f1;
    border: 7px solid #fcdde9;
}
.mav1_hiw_process_count h3{
	font-size: 30px;
	color: var(--heading-color);
	font-weight: 600;
}
.mav1_hiw_process_img{
	max-width: 360px;
	width: 100%;
	height: 240px;
}
.mav1_hiw_process_img img{
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mav1_hiw_process ul li:nth-child(even){
	flex-direction: row-reverse;
}
.mav1_hiw_process ul li:nth-child(even) .mav1_hiw_process_cont{
	text-align: left;
}
.mav1_hiw_video_wrapper{
	max-width: 1170px;
	width: 100%;
	margin: 0px auto;
	margin-top: 60px;
	position: relative;
}
.mav1_hiw_video_thumbnail{
	width: 100%;
	height: 400px;
	overflow: hidden;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	position: relative;
}
.mav1_hiw_video_thumbnail::before{
	content: '';
	background-color: rgba(106, 73, 242, 0.859);
	position: absolute;
	inset: 0;
}
.mav1_hiw_video_thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mav1_hiw_video_play_btn .editable-anchor{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0px auto;
	z-index: 1;
	width: 60px;
	height: 60px;
	color: transparent;
	font-size: 0;
}
.mav1_hiw_video_play_btn .play_btn{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0px auto;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white-color);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.mav1_hiw_video_play_btn .play_btn i{
	color: var(--primary-color);
	font-size: 24px;
}

/* Wave Animation Layers */
.mav1_hiw_video_play_btn::before,
.mav1_hiw_video_play_btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	animation: waveAnimation 2s ease-out infinite;
}

.mav1_hiw_video_play_btn::before {
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.mav1_hiw_video_play_btn::after {
	width: 100px;
	height: 100px;
	animation-delay: 0.5s;
}

/* Additional wave layer */
.mav1_hiw_video_play_btn .wave-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.74);
	animation: waveAnimation 2s ease-out infinite;
	animation-delay: 1s;
}

@keyframes waveAnimation {
	0% {
		width: 60px;
		height: 60px;
		opacity: 1;
	}
	100% {
		width: 120px;
		height: 120px;
		opacity: 0;
	}
}
.mav1_hiw_video_content{
	position: absolute;
	top: 50%;
	transform: translateY(70px);
    text-align: center;
    width: 100%;
}
.mav1_hiw_video_content h4{
	font-size: 30px;
	line-height: 25px;
	font-weight: 700;
	color: var(--white-color);
}
.mav1_hiw_video_content p{
	font-size: 16px;
	line-height: 25px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 10px;
}
/*--------- How it word css End -------*/
/*--------- Testimonail css Start -------*/
.mav1_testimonial_wrapper{
	padding: 100px 0;
}
.mav1_testimonail_descition{
	max-width: 700px;
	margin: 0px auto;
	text-align: center;
	padding: 70px 0 30px;
}
.mav1_testimonail_descition p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
	padding: 15px 0 25px;
}
.mav1_testimonail_descition .quote_icon i{
	font-size: 34px;
	color: var(--primary-color);
}
.mav1_testimonail_descition h4{
	font-size: 20px;
	line-height: 26px;
	color: var(--heading-color);
	font-weight: 600;
}
.mav1_testimonail_descition h5{
	font-size: 15px;
	line-height: 20px;
	color: var(--text-color);
	margin-top: 8px;
}
.mav1_testimonail_thumb{
	width: 80px;
	height: 80px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.mav1_testimonail_thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 4px solid transparent;
}
.mav1_testimonail_thumnail_slider{
	max-width: 270px;
	width: 100%;
	margin: 0px auto;
}
.slick-current.slick-active .mav1_testimonail_thumb img{
	border: 4px solid var(--primary-color);
}
/*--------- Testimonail css End -------*/
/*--------- Pricing css Start -------*/
.mav1_pricing_wrapper{
	padding: 100px 0;
	background-color: var(--heading-color);
}

/* Toggle Switch Design for Nav Tabs */
.mav1_pricing_tabs_wrapper {
	margin-top: 20px;
}

.mav1_pricing_tabs_wrapper .nav-tabs {
	border: none;
	background-color: var(--heading-color);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	padding: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	display: flex;
	align-items: center;
	max-width: fit-content;
	margin: 0px auto;
	background-color: var(--white-color);
}

.mav1_pricing_tabs_wrapper .nav-tabs .nav-item {
	margin: 0;
	position: relative;
}

.mav1_pricing_tabs_wrapper .nav-tabs .nav-link {
	border: none;
	background: transparent;
	color: #9995b1;
	font-size: 16px;
	font-weight: 600;
	padding: 7px 24px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	transition: color 0.3s ease;
	position: relative;
	letter-spacing: 0.5px;
}

.mav1_pricing_tabs_wrapper .nav-tabs .nav-link:hover {
	border: none;
	background: transparent;
	color: #9995b1;
}

.mav1_pricing_tabs_wrapper .nav-tabs .nav-link.active {
	border: none;
	background: var(--primary-color);
	color: var(--white-color);
}

/* Move slider when yearly tab is active */
.mav1_pricing_wrapper .mav1_heading h2,
.mav1_pricing_wrapper .mav1_heading p{
	color: var(--white-color);
}
.mav1_pricing_box{
	background-color: var(--white-color);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	box-shadow: 0px 4px 30px #1d1445;
	padding: 60px 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 50px;
	min-height: 662px;
}
.mav1_pricing_icon{
	width: 90px;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: #efedff;
	margin-bottom: 35px;
	position: relative;
}
.mav1_pricing_icon .mav1_pricing_icon_change{
	font-size: 34px;
	color: var(--primary-color);
}
.mav1_pricing_heading h4{
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: var(--heading-color);
}
.mav1_pricing_heading p{
	font-size: 15px;
	line-height: 25px;
	color: var(--text-color);
}
.mav1_pricing_heading h3{
	font-size: 48px;
	line-height: 58px;
	color: var(--primary-color);
	font-weight: 600;
	margin: 35px 0;
}
.mav1_pricing_list ul{
	margin-bottom: 35px;
}
.mav1_pricing_list ul li{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
	margin-bottom: 5px;
}
.mav1_pricing_box .mav1_primary_btn{
	margin-top: auto;
	background-color: var(--white-color);
	color: var(--primary-color);
	min-width: 170px;
}
.mav1_pricing_box .mav1_primary_btn::before{
	background-color: var(--primary-color);
}
.mav1_pricing_box .mav1_primary_btn:hover{
	color: var(--white-color);
	border: 1px solid var(--primary-color);
}
.pricing_grid .col:nth-child(2) .mav1_pricing_box{
	background-color: var(--primary-color);
}
.pricing_grid .col:nth-child(2) .mav1_pricing_heading h4,
.pricing_grid .col:nth-child(2) .mav1_pricing_heading p,
.pricing_grid .col:nth-child(2) .mav1_pricing_heading h3,
.pricing_grid .col:nth-child(2) .mav1_pricing_list ul li{
	color: var(--white-color);
}
.pricing_grid .col:nth-child(2) .mav1_pricing_icon{
	background-color: var(--white-color);
}
.pricing_grid .col:nth-child(2) .mav1_primary_btn:hover{
	border: 1px solid var(--white-color);
}
.pricing_grid .col:nth-child(5) .mav1_pricing_box{
	background-color: var(--primary-color);
}
.pricing_grid .col:nth-child(5) .mav1_pricing_heading h4,
.pricing_grid .col:nth-child(5) .mav1_pricing_heading p,
.pricing_grid .col:nth-child(5) .mav1_pricing_heading h3,
.pricing_grid .col:nth-child(5) .mav1_pricing_list ul li{
	color: var(--white-color);
}
.pricing_grid .col:nth-child(5) .mav1_primary_btn:hover{
	border: 1px solid var(--white-color);
}
/*--------- Pricing css End -------*/
/*--------- FAQ css Start -------*/
.mav1_faq_wrapper{
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.mav1_faq_wrapper::before{
	content: '';
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(
		circle at right 100px top 100px,
		rgba(255, 230, 150, 0.9) 0%,      /* soft yellow at top-right */
		rgba(255, 180, 220, 0.9) 30%,     /* pinkish tone */
		rgba(180, 120, 255, 0.8) 60%,     /* purple in middle */
		rgba(255, 255, 255, 1) 100% 
	);
	filter: blur(100px);
	position: absolute;
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.mav1_faq_accordion{
	margin-top: 60px;
}
.mav1_faq_accordion .accordion-item{
	box-shadow: none !important;
	background-color: #F6F4FE;
	-webkit-border-radius: 12px !important;
	-moz-border-radius: 12px !important;
	border-radius: 12px !important;
	margin-bottom: 20px !important;
}
.mav1_faq_accordion .accordion-header .accordion-button{
	font-size: 20px;
	line-height: 26px;
	color: var(--heading-color);
	font-weight: 600;
	background: transparent;
	border: 0 !important;
	padding: 19px 25px;
	box-shadow: none !important;
}
.mav1_faq_accordion .accordion-body p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
}
.mav1_faq_accordion .accordion-body {
    padding: 5px 25px 25px;
}
.mav1_faq_accordion .accordion-header .accordion-button:not(.collapsed){
	color: var(--primary-color);
}
/*--------- FAQ css End -------*/
/*--------- wireframe css Start -------*/
.mav1_wireframe_wrapper{
	padding: 30px 0 100px;
}
.mav1_wireframe_wrapper .slick-slider{
	margin-top: 60px;
}
.mav1_wireframe_wrapper .slick-slider .col{
	padding: 15px;
}
.mav1_wireframe_wrapper .slick-dots{
	bottom: -45px;
}
.mav1_wireframe_wrapper .slick-dots li{
	width: 10px;
    height: 10px;
	margin: 0 7px;
}
.mav1_wireframe_wrapper .slick-dots li button:before{
	font-size: 35px;
	width: 10px;
    height: 10px;
	content: '';
	background: var(--primary-color);
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.mav1_wireframe_wrapper .slick-dots li button{
	padding: 0;
	width: 10px;
	height: 10px;
}
.mav1_wireframe_wrapper .slick-dots li.slick-active button:before{
	opacity: 1;
}
.mav1_wireframe_wrapper .slick-dots li.slick-active button:after{
	border: 1px solid var(--primary-color);
	width: 16px;
	height: 16px;
	position: absolute;
	inset: -3px;
	content: '';
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.mav1_wireframe_wrapper .slick-slide{
	transform: scale(.9);
	transition: 200ms;
}
.mav1_wireframe_wrapper .slick-slide.slick-current.slick-active.slick-center{
	transform: scale(1.01);
	transition: 200ms;
}
.mav1_wireframe_img{
	width: 100%;
	height: 606px;
}
.mav1_wireframe_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    border: 2px solid #000;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	object-position: top;
}
.mav1_wireframe_wrapper .slick-slide.slick-current.slick-active.slick-center .mav1_wireframe_img img{
	border: 2px solid var(--primary-color);
}
/*--------- wireframe css End -------*/
/*--------- freeapp css Start -------*/
.mav1_freeapp_wrapper{
	padding: 100px 0;
}
.mav1_freeapp_wrapper .container{
	max-width: 1370px;
}
.mav1_freeapp_inner{
	background-color: var(--primary-color);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    padding: 20px 100px;
    padding-bottom: 50px;
    position: relative;
	z-index: 2;
}
.mav1_freeapp_content h3{
	font-size: 40px;
	line-height: 50px;
	color: var(--white-color);
	font-weight: 700;
}
.mav1_freeapp_content p{
	font-size: 16px;
	line-height: 26px;
	color: var(--white-color);
	margin: 20px 0;
}
.mav1_freeapp_img{
	display: flex;
	align-items: center;
	margin-top: -120px;
	justify-content: end;
}
.mav1_freeapp_img1{
	max-width: 255px;
	width: 100%;
	    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.mav1_freeapp_img2{
	max-width: 317px;
	width: 100%;
	    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.freeapp_mockup{
	margin-left: -65px;
}
.mav1_freeapp_content .mav1_app_buttons{
	margin-bottom: 0;
}
.mav1_freeapp_content .mav1_app_store_btn:hover, .mav1_freeapp_content .mav1_google_play_btn:hover {
    background: #9981ff;
}
.mav1_freeapp_overlay{
	position: fixed;
	inset: 0;
	background-color: rgba(50, 35, 111, 0.95);
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	transition: var(--transition);
}
.section-in-view .mav1_freeapp_overlay{
	transition: var(--transition);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
/*--------- freeapp css End -------*/
/*--------- Blog css Start -------*/
.mav1_blog_wrapper{
	padding-bottom: 100px;
}
.mav1_blog_wrapper .mav1_heading{
	padding-bottom: 30px;
}
.mav1_blog_box{
	background-color: var(--white-color);
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    box-shadow: var(--plat-boxshadow);
	margin-top: 30px;
}
.mav1_blog_img{
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	overflow: hidden;
	width: 100%;
	height: 270px;
	position: relative;
}
.mav1_blog_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.mav1_blog_img h5{
	font-size: 14px;
    line-height: 24px;
    color: var(--white-color);
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    background-color: var(--primary-color);
    -webkit-border-top-left-radius: 10px;
    -moz-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
    -moz-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    padding: 1px 5px;
    width: 150px;
    margin: 0px auto;
	transition: var(--transition);
}
.mav1_blog_box:hover .mav1_blog_img h5{
	transition: var(--transition);
	bottom: 0;
}
.mav1_blog_content{
	padding: 30px;
}
.mav1_blog_content h3{
	font-size: 20px;
	line-height: 30px;
	color: var(--heading-color);
	font-weight: 600;
}
.mav1_blog_content p{
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
	margin: 15px 0;
}
.mav1_blog_content a{
	font-size: 14px;
	line-height: 24px;
	color: var(--primary-color);
	font-weight: 600;
}
.mav1_blog_content a:hover{
	text-decoration: underline;
}
.blog_grid{
	margin: 0 -15px;
}
.blog_grid .col{
	padding: 0 15px;
}
/*--------- Blog css End -------*/
/*--------- Company css Start -------*/
.mav1_company_wrapper{
	padding-top: 50px;
	padding-bottom: 130px;
}
.mav1_company_wrapper .slick-slider{
	margin-top: 60px;
}
.mav1_company_wrapper .slick-slider .col{
	padding: 15px;
}
.mav1_company_wrapper .slick-dots{
	bottom: -55px;
}
.mav1_company_wrapper .slick-dots li{
	width: 10px;
    height: 10px;
	margin: 0 7px;
}
.mav1_company_wrapper .slick-dots li button:before{
	font-size: 35px;
	width: 10px;
    height: 10px;
	content: '';
	background: var(--primary-color);
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.mav1_company_wrapper .slick-dots li button{
	padding: 0;
	width: 10px;
	height: 10px;
}
.mav1_company_wrapper .slick-dots li.slick-active button:before{
	opacity: 1;
}
.mav1_company_wrapper .slick-dots li.slick-active button:after{
	border: 1px solid var(--primary-color);
	width: 16px;
	height: 16px;
	position: absolute;
	inset: -3px;
	content: '';
	-webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.mav1_company_img img{
	width: 100%;
}
/*--------- Company css End -------*/
/*--------- New letter css Start -------*/
.mav1_newletter_wrapper{
	position: relative;
	z-index: 1;
}
.mav1_newletter_wrapper::before{
	content: '';
	width: 600px;
	height: 600px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: radial-gradient(
		circle at right 100px top 100px,
		rgba(255, 230, 150, 0.9) 0%,      /* soft yellow at top-right */
		rgba(255, 180, 220, 0.9) 30%,     /* pinkish tone */
		rgba(180, 120, 255, 0.8) 60%,     /* purple in middle */
		rgba(255, 255, 255, 1) 100% 
	);
	filter: blur(100px);
	position: absolute;
	left: 2%;
	top: -117px;
	z-index: -1;
}
.mav1_newletter_inner{
	background-color: var(--primary-color);
    padding: 50px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px #0c0c0c21;
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 20px;
}
.mav1_newletter_inner #contactForm{
	width: 100%;
}
.mav1_newletter_content{
	width: 100%;
}
.mav1_newletter_content h3{
	font-size: 40px;
	line-height: 50px;
	color: var(--white-color);
	font-weight: 600;
}
.mav1_newletter_content p{
	font-size: 16px;
	line-height: 26px;
	color: var(--white-color);
	margin-top: 5px;
}
.mav1_newletter_form{
	width: 100%;
	display: flex;
	gap: 10px;
}
.mav1_newletter_form input{
	width: calc(100% - 150px);
	height: 55px;
	background-color: var(--white-color);
	color: var(--heading-color);
	font-size: 16px;
	outline: none;
	border: 0;
	padding: 0 20px;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.mav1_newletter_form .mav1_primary_btn{
	background-color: var(--white-color);
	color: var(--primary-color);
	height: 55px;
	min-width: 150px;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	font-weight: 600;
}
.mav1_newletter_form .mav1_primary_btn::before{
	background-color: var(--primary-color);
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.mav1_newletter_form .mav1_primary_btn:hover{
	color: var(--white-color);
	border: 1px solid var(--white-color);
}
/*--------- New letter css End -------*/
/*--------- Footer css Start -------*/
.mav1_footer_wrapper{
	padding-top: 40px;
	position: relative;
	z-index: 1;
}
.mav1_footer_logo{
	position: relative;
	margin-bottom: 20px;
}
.mav1_footer_logo img{
	max-width: 140px;
}
.mav1_footer_social ul{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}
.mav1_footer_social ul li a{
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	display: inline-block;
	color: var(--text-color);
	display: flex;
    justify-content: center;
    align-items: center;
	transition: var(--transition);
	background: var(--white-color);
	border: 1px solid #dddde2;
}
.mav1_footer_social ul li a:hover{
	color: var(--white-color);
	background: var(--primary-color);
	transition: var(--transition);
	transform: translateY(-3px);
	border: 1px solid var(--primary-color);
}
.mav1_footer_center h3{
	font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--heading-color);
}
.mav1_footer_links{
	display: flex;
	flex-direction: column;
	gap: 15px;
    margin-top: 35px;
	align-items: flex-start;
}
.mav1_footer_links a{
	color: var(--text-color);
}
.mav1_footer_links a:hover{
	color: var(--primary-color);
}
.mav1_footer_contact{
	display: flex;
	align-items: center;
	gap: 15px;
}
.mav1_footer_contact .contact_footer_icon{
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary-color);
	border: 2px solid #e7e3e3;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.mav1_footer_contact p{
	word-break: break-word;
	font-size: 16px;
	line-height: 26px;
	color: var(--text-color);
	margin-top: 15px;
}
.mav1_footer_contact_wrap{
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 25px;
}
.mav1_botttom_footer{
	border-top: 1px solid #e7e3e3;
	text-align: center;
	margin-top: 60px;
	padding: 20px 0;
}
.mav1_botttom_footer p{
	font-size: 14px;
}
.mav1_footer_app_wrap{
	margin-top: 35px;
}
.mav1_footer_left, .mav1_footer_center{
	margin-top: 40px;
}
/*--------- Footer css End -------*/

/* Form Validation Styles */
#contactForm input[type="text"].error,
#contactForm input[type="email"].error,
#contactForm input[type="tel"].error,
#contactForm textarea.error {
  border-color: #dc3545;
}
#contactForm .error-message {
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
}
#contactForm .error-message.show {
  display: block;
}

/* Success Modal Styles */
.form-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
  position: relative;
}

.form-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.form-modal-close:hover,
.form-modal-close:focus {
  color: #000;
  text-decoration: none;
}

.form-modal-body {
  padding: 40px 30px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  font-weight: bold;
  animation: scaleIn 0.3s ease 0.2s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.form-modal-body h3 {
  margin: 0 0 15px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.form-modal-body p {
  margin: 0 0 25px;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.form-modal-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.form-modal-btn:hover {
  background-color: var(--primary-color);
}

.form-modal-btn:active {
  transform: scale(0.98);
}
#scroll {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 48px;
	height: 48px;
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: transparent;
	border: none;
  }
  .scroll-progress {
	position: absolute;
	top: 0; left: 0;
	width: 48px; height: 48px;
	transform: rotate(-90deg); /* start from top */
  }
  .scroll-bg {
	stroke: #eee;
  }
  .scroll-bar {
	stroke: var(--primary-color);
	transition: stroke-dashoffset 0.3s cubic-bezier(.4,0,.2,1);
  }
  .scroll-arrow {
	position: absolute;
	left: 0; right: 0; top: 0; bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--primary-color);
	z-index: 2;
	pointer-events: none;
  }

/*--------- Theme Color css Start -------*/
#color-1{
	background: #e38612;
	border: 1px solid #e38612;
  }
  #color-2{
	background: #38cfea;
	border: 1px solid #38cfea;
  }
  #color-3{
	background: #de487f;
	border: 1px solid #de487f;
  }
.color-style-one .bs_testi_inpage_slider, .color-style-one .btn-primary {
   background-color: #e38612;
}
.color-style-2 .bs_testi_inpage_slider, .color-style-2 .btn-primary {
    background-color: #38cfea;
}
.color-style-3 .bs_testi_inpage_slider, .color-style-3 .btn-primary {
    background-color: #de487f;
}
/*--------- Theme Color css End -------*/

/*--------- Media css start -------*/
@media (max-width: 1400px) {
	.mav1_nav_wrapper ul{
		gap: 15px;
	}
	.mav1_header_logo_wrapper img {
		height: 30px;
	}
	.mav1_banner_right::before, .mav1_aboutbot_wrapper::before, .mav1_hiw_wrapper::before, .mav1_faq_wrapper::before, .mav1_newletter_wrapper::before {
		width: 500px;
		height: 500px;
	}
	
}
@media (min-width: 1200px) {
    .container{
        max-width: 1170px;
		padding: 0 30px;
    }
}
@media (max-width: 1199px){
	.container{
        max-width: 100%;
		padding: 0 30px;
    }
	.mav1_header_contact_btn .mav1_primary_btn{
		padding: 10px 25px;
	}
	.mav1_nav_wrapper ul {
        gap: 8px;
    }
	.mav1_banner_right::before, .mav1_aboutbot_wrapper::before, .mav1_hiw_wrapper::before, .mav1_faq_wrapper::before, .mav1_newletter_wrapper::before {
		width: 300px;
		height: 300px;
	}
	.mav1_heading h2 {
		font-size: 34px;
		line-height: 44px;
	}
	.mav1_freeapp_content h3 {
		font-size: 34px;
		line-height: 44px;
	}
	.mav1_freeapp_inner{
		padding: 20px 35px;
	}	
	.mav1_freeapp_img1 {
		max-width: 200px;
	}
	.mav1_freeapp_img2 {
		max-width: 230px;
	}
	.mav1_newletter_content h3 {
		font-size: 30px;
		line-height: 40px;
	}
}
@media (max-width: 991px){
	.mav1_header_wrapper {
		box-shadow: 0 0 8px rgba(0, 0, 0, 0.11);
	}
	.el_header_mob_toggle_btn{
		display: block;
	}
	.mav1_header_nav_wrapper{
		position: fixed;
        background: var(--white-color);
        left: -310px;
        top: 0;
        height: 100vh;
        bottom: 0;
        box-shadow: 0 4px 7px rgba(0, 0, 0, 0.14);
        width: 280px;
        z-index: 10;
        overflow-y: auto;
        transition: var(--transition);
	}
	.sidebar-active .mav1_header_nav_wrapper{
		left: 0;
	}
	.mav1_nav_wrapper ul{
		display: block;
		padding: 35px 0px;
	}
	.mav1_nav_wrapper ul li a{
        width: 100%;
        display: inline-block;
        padding: 10px 15px;
        border-bottom: 1px solid #E4E4E4;
		font-weight: 500;
	}
	.mav1_nav_wrapper ul li a.active{
		background: var(--primary-color);
		color: var(--white-color);
	}
	.mav1_header_contact_btn .mav1_primary_btn{
		display: none;
	}
	#close-sidebar{
		display: block;
	}
	.mav1_nav_wrapper{
		position: relative;
	}
	#close-sidebar{
		position: absolute;
		right: 9px;
        top: 5px;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 25px;
		height: 25px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-khtml-border-radius: 3px;
		border: 1px solid #E4E4E4;
		background: #fff;
		cursor: pointer;
		z-index: 1;
		font-size: 21px;
		color: var(--primary-color);
	}
	.mav1_header_inner {
		padding: 20px 0px !important;
	}
	.mav1_banner_heading{
		font-size: 34px;
		line-height: 50px;
	}
	.mav1_heading h2 {
        font-size: 28px;
        line-height: 40px;
    }
	.mav1_feature_main_img{
		transform: translateY(-50px);
	}
	.mav1_feature_box{
		text-align: center;
	}
	.mav1_aboutapp_img{
		max-width: 340px;
		margin: auto;
	}
	.mav1_aboutapp_content{
		margin-top: 40px;
	}
	.mav1_aboutbot_wrapper::before, .mav1_freeapp_img, .mav1_newletter_wrapper::before{
		display: none;
	}
	.mav1_aboutbot_wrapper .row{
		flex-direction: column-reverse;
	}
	.mav1_aboutbot_wrapper .mav1_aboutapp_img {
        max-width: 480px;
        margin: auto;
    }
	.mav1_aboutbot_content {
		padding-right: 0;
		margin-top: 30px;
	}
	.mav1_aboutapp_count_content h3, .mav1_feature_box h4, .mav1_hiw_process_cont h3, .mav1_testimonail_descition h4,
	.mav1_faq_accordion .accordion-header .accordion-button, .mav1_blog_content h3 {
		font-size: 18px;
	}
	.mav1_aboutbot_wrapper{
		padding: 60px 0;
	}
	.mav1_hiw_inner_wrapper{
		padding: 45px 15px;
	}
	.mav1_hiw_video_wrapper{
		margin-top: 0;
	}
	.mav1_hiw_process ul li{
		flex-direction: column;
	}
	.mav1_hiw_process ul li::before, .mav1_hiw_process ul li:first-child::after, .mav1_hiw_wrapper::before{
		display: none;
	}
	.mav1_hiw_process ul li:nth-child(even) {
		flex-direction: column;
	}
	.mav1_hiw_process_cont{
		order: 2;
	}
	.mav1_hiw_process_cont {
		text-align: left;
		margin-top: 20px;
	}
	.mav1_hiw_process_img{
		margin-top: 20px;
	}
	.mav1_hiw_process_count {
		width: 100%;
		max-width: 360px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		height: 50px;
	}
	.mav1_testimonial_wrapper {
		padding: 60px 0;
		padding-top: 30px;
	}
	.mav1_pricing_wrapper, .mav1_freeapp_wrapper{
		padding: 60px 0;
	}
	.mav1_faq_wrapper{
		padding: 60px 0;
		padding-bottom: 40px;
	}
	.mav1_wireframe_wrapper {
		padding: 30px 0 60px;
	}
	.mav1_freeapp_content{
		text-align: center;
	}
	.mav1_app_buttons{
		justify-content: center;
	}
	.mav1_freeapp_content h3 {
        font-size: 28px;
        line-height: 38px;
    }
	.mav1_blog_wrapper{
		padding-bottom: 60px;
	}
	.mav1_company_wrapper {
		padding-top: 10px;
		padding-bottom: 60px;
	}
	.mav1_newletter_inner{
		padding: 30px;
	}
	.mav1_newletter_content h3 {
        font-size: 24px;
        line-height: 34px;
    }
	.mav1_footer_wrapper .mav1_app_buttons {
        justify-content: flex-start;
    }
	.mav1_footer_wrapper{
		padding-top: 30px;
	}
	.mav1_botttom_footer{
		margin-top: 10px;
	}
	.mav1_footer_app_wrap, .mav1_footer_links {
		margin-top: 20px;
	}
	.mav1_wireframe_img{
		height: 430px;
	}
}
@media (max-width: 767px){
	.container{
        max-width: 100%;
		padding: 0 15px;
    }
	.mav1_header_inner {
		padding: 20px 0 !important;
	}
	.mav1_banner_wrapper {
		padding: 60px 0;
		min-height: unset;
	}
	.mav1_banner_heading {
		font-size: 28px;
        line-height: 40px;
	}
	.mav1_banner_heading .heading-part2 {
		margin-left: 10px;
	}
	.mav1_app_store_btn,
	.mav1_google_play_btn {
		min-width: auto;
		width: 100%;
		max-width: 250px;
	}
	.mav1_banner_right, .mav1_feature_wrapper::before, .mav1_faq_wrapper::before{
		display: none;
	}
	.mav1_banner_left_cont{
		text-align: center;
	}
	.mav1_app_buttons{
		justify-content: center;
	}
	.mav1_user_thumbnails_wrapper{
		justify-content: center;
		flex-wrap: wrap;
	}
	.mav1_heading h2 {
        font-size: 24px;
        line-height: 34px;
    }
	.mav1_feature_box_wrapper{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.mav1_feature_wrapper{
		padding: 80px 0 80px;
	}
	.mav1_heading p, .mav1_aboutapp_count_content p, .mav1_feature_box p, .mav1_banner_description, .mav1_hiw_process_cont p,
	.mav1_testimonail_descition p, .mav1_faq_accordion .accordion-body p, .mav1_blog_content p {
		font-size: 15px;
	}
	.mav1_pricing_box{
		margin-top: 30px;
	}
	.mav1_pricing_tabs_wrapper .nav-tabs{
		margin-bottom: 20px;
	}
	.mav1_wireframe_wrapper .slick-slider {
		margin-top: 30px;
	}
	.mav1_wireframe_wrapper {
        padding: 10px 0 60px;
    }
	.mav1_freeapp_content h3 {
        font-size: 24px;
        line-height: 34px;
    }
	.mav1_app_buttons{
		gap: 10px;
	}
	.mav1_freeapp_inner {
        padding: 30px 20px;
    }
	.mav1_blog_content {
		padding: 30px 15px;
	}
	.mav1_newletter_inner {
        flex-direction: column;
    }
	.mav1_wireframe_img {
		width: 100%;
		height: 400px;
	}
}
@media (max-width: 580px){
	.mav1_feature_inner{
		padding: 15px;
	}
	.mav1_feature_main_img {
		max-width: 85%;
	}
	.mav1_hiw_process_count h3 {
		font-size: 20px;
	}
	.mav1_faq_accordion .accordion-header .accordion-button{
		font-size: 16px;
	}
	.mav1_hiw_process_img, .mav1_blog_img{
		height: auto;
	}
}
@media (max-width: 480px){
	.mav1_newletter_form {
		flex-direction: column;
	}
	.mav1_newletter_form input{
		width: 100%;
	}
}
/*--------- Media css end -------*/

/* Custom Lightbox Styles Start*/
.custom-lightbox {
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background: rgba(0,0,0,0.8);
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
	z-index: 1050;
  }
  .custom-lightbox.open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
  }
  .custom-lightbox-content {
	max-width: 90vw;
	max-height: 80vh;
	margin: auto;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.4);
	background: #fff;
	padding: 8px;
	opacity: 1;
	transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .custom-lightbox-content.fade {
	opacity: 0;
  }
  .custom-lightbox-close {
	position: absolute;
	top: 24px;
	right: 40px;
	color: #fff;
	font-size: 2.5rem;
	font-weight: bold;
	cursor: pointer;
	z-index: 1100;
	transition: color 0.2s;
  }
  .custom-lightbox-close:hover {
	color: var(--primary-color);
  }
  .bs_normal_list ul{
	display: flex;
	justify-content: center;
	gap: 20px;
  }
  
  /* Lightbox Arrow Styles */
  .custom-lightbox-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	cursor: pointer;
	z-index: 1100;
	user-select: none;
	padding: 0 16px;
	transition: color 0.2s;
  }
  .custom-lightbox-prev {
	left: 10px;
  }
  .custom-lightbox-next {
	right: 10px;
  }
  .custom-lightbox-arrow:hover {
	color: var(--primary-color);
  }
  
  .gallery-item {
	position: relative;
  }
  .lightbox-open-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(44, 62, 80, 0.85);
	color: #fff;
	border: none;
	border-radius: 24px;
	padding: 10px 28px;
	font-size: 1.1rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
	cursor: pointer;
  }
  .gallery-item:hover .lightbox-open-btn,
  .gallery-item:focus-within .lightbox-open-btn {
	opacity: 1;
	pointer-events: auto;
  }
  
  .custom-lightbox-content#lightboxVideo {
	width: 90vw;
	height: 50vw;
	max-width: 900px;
	max-height: 70vh;
	background: #000;
	display: none;
  }
  @media (max-width: 600px) {
	.custom-lightbox-content#lightboxVideo {
	  width: 98vw;
	  height: 56vw;
	  max-width: 100vw;
	  max-height: 40vh;
	}
  }
/* Custom Lightbox Styles End*/

/*--------- Edit Mode css start -------*/
.edit-mode .mav1_header_contact_btn .anchor-button-wrapper .anchor-duplicate-btn{
	display: none;
}
.edit-mode .mav1_banner_heading{
	display: flex;
    flex-direction: column;
    gap: 30px;
}
.edit-mode .user_count{
	gap: 10px;
}
.edit-mode .mav1_feature_box{
	padding-top: 30px;
	padding-bottom: 30px;
}
.edit-mode .mav1_feature_icon .icon-edit-btn-wrapper{
    left: 85px;
}
.edit-mode .mav1_aboutapp_content .mav1_heading h2,
.edit-mode .mav1_aboutbot_content .mav1_heading h2{
	display: flex;
	flex-direction: column;
	gap: 29px;
}
.edit-mode .mav1_aboutapp_content .mav1_heading p{
	margin: 30px 0;
}
.edit-mode .mav1_aboutapp_count_card{
	margin-bottom: 50px;
	padding-top: 40px;
}
.edit-mode .mav1_aboutapp_count_icon .icon-edit-btn-wrapper{
	left: 0;
    top: -30px;
}
.edit-mode .mav1_aboutapp_count_card:hover {
    transform: translateY(0px);
}
.edit-mode .mav1_aboutbot_content .row-edit-btn,
.edit-mode .mav1_hiw_inner_wrapper .row-edit-btn,
.edit-mode .mav1_hiw_video_play_btn .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .mav1_hiw_video_play_btn .anchor-button-wrapper .anchor-delete-btn,
.edit-mode .mav1_hiw_video_thumbnail::before,
.edit-mode .mav1_hiw_video_wrapper .column-toolbar .btn-duplicate,
.edit-mode .mav1_testimonail_top_slider .row-edit-btn,
.edit-mode .mav1_testimonial_wrapper .row-edit-btn,
.edit-mode .mav1_pricing_box .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .mav1_wireframe_wrapper .row-edit-btn,
.edit-mode .mav1_blog_content .anchor-button-wrapper .anchor-duplicate-btn,
.edit-mode .mav1_company_wrapper .row-edit-btn,
.edit-mode .mav1_hiw_wrapper .row-edit-btn, .color-switcher{
	display: none !important; 
}
.edit-mode .mav1_aboutbot_content #row-edit,
.edit-mode .mav1_hiw_inner_wrapper #row-edit,
.edit-mode .mav1_testimonial_wrapper #row-edit, 
.edit-mode .mav1_pricing_tabs_wrapper .tab-content .tab-pane,
.edit-mode .mav1_wireframe_wrapper  #row-edit,
.edit-mode .mav1_company_wrapper #row-edit,
.edit-mode .mav1_hiw_wrapper #row-edit {
    padding: 0;
    border: 0;
}
.edit-mode .mav1_aboutbot_list_wrap{
    padding-top: 38px;
    padding-bottom: 30px;
}
.edit-mode .mav1_aboutapp_count_content h3{
    margin-bottom: 25px;
}
.edit-mode .mav1_hiw_process ul li{
    padding-top: 15px;
	margin-bottom: 70px;
}
.edit-mode .mav1_hiw_video_thumbnail, .edit-mode .mav1_blog_img{
	overflow: visible;
}
.edit-mode .mav1_testimonail_thumb{
	margin-bottom: 35px;
}
.edit-mode .mav1_testimonial_wrapper .mav1_testimonail_descition,
.edit-mode .mav1_testimonail_thumnail_slider{
	margin-top: 50px;
}
.edit-mode .mav1_pricing_box .icon-edit-btn-wrapper{
	left: 0;
    top: -35px;
}
.edit-mode .mav1_pricing_heading h4{
	margin-bottom: 20px;
}
.edit-mode .mav1_pricing_box, .edit-mode .mav1_blog_box{
	margin-top: 0;
    margin-bottom: 50px;
}
.edit-mode .mav1_pricing_list ul li{
	margin-bottom: 25px;
}
.edit-mode .mav1_faq_accordion .accordion-item{
	margin-bottom: 55px !important;
}
.edit-mode .mav1_wireframe_img, 
.edit-mode .mav1_company_img{
	max-width: 250px;
	margin-bottom: 40px;
}
.edit-mode .freeapp_mockup{
	margin-left: 0;
}
.edit-mode .mav1_blog_img h5{
	bottom: 0;
}

/*--------- Edit Mode css end -------*/