/*
[Master Stylesheet]
Project:
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/

:root{
    --primary-color :#06b873;
    --secondary-color : #222;
    /* --text-color : #e4fff573; */
    --text-color : #8fa99a;
    --white-color :#ffffff;
    --body-color :#050A0F;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
    overflow-x:hidden;
    font-family: "Be Vietnam Pro", sans-serif;
    background: var(--body-color);
}
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{
	text-transform: capitalize;
	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;
}
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;
}
img, video {
	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;
}
/* Scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background-color: #121c26;
}
::-webkit-scrollbar-thumb {
    height: 100px;
    background: var(--primary-color);
}
/* Scroll */
/* Bottom To Top CSS Start */
.sc_top_icon a {
    display: flex;
    background: var(--primary-color);
    box-shadow: -3px -3px 4px 0px #FFFFFF66 inset;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.sc_top_icon a svg {
    fill: var(--white-color);
}
.sc_top_icon a.show {
    opacity: 1;
    visibility: visible;
}
/* Bottom To Top CSS End */

/* Radio Button CSS Start */
.sc_radio_btn .sc_radio_input {
    display: none;
}
.sc_radio_btn .sc_radio_input+.sc_radioLabel {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    transition: all .3s;
}
.sc_radio_btn .sc_radio_input:checked+.sc_radioLabel {
    color: var(--primary-color);
}
.sc_radio_btn .sc_radio_input+.sc_radioLabel:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    border: 1px solid #304961;
    background: #111a22;
    border-radius: 50px;
    transition: all .3s;
}
.sc_radio_btn .sc_radio_input:checked+.sc_radioLabel:before {
    border-color: var(--primary-color);
    background: var(--primary-color);
}
.sc_radio_btn .sc_radio_input+.sc_radioLabel:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #304961;
    border-radius: 50px;
    transition: all .3s;
    opacity: 0;
}
.sc_radio_btn .sc_radio_input:checked+.sc_radioLabel:after {
    background: var(--white-color);
    opacity: 1;
}
/* Radio Button CSS End */

/* Padder Top CSS*/
.pt5{
    padding-top: 5px;
}
.pt10{
    padding-top: 10px;
}
.pt15{
    padding-top: 15px;
}
.pt20{
    padding-top: 20px;
}
.pt25{
    padding-top: 25px;
}
.pt30{
    padding-top: 30px;
}
.pt35{
    padding-top: 35px;
}
.pt40{
    padding-top: 40px;
}
.pt45{
    padding-top: 45px;
}
.pt50{
    padding-top: 50px;
}
.pt55{
    padding-top: 55px;
}
.pt60{
    padding-top: 60px;
}
.pt65{
    padding-top: 65px;
}
.pt70{
    padding-top: 70px;
}
.pt75{
    padding-top: 75px;
}
.pt80{
    padding-top: 80px;
}

/* Padder Bottom CSS*/

.pb5{
    padding-bottom: 5px;
}
.pb10{
    padding-bottom: 10px;
}
.pb15{
    padding-bottom: 15px;
}
.pb20{
    padding-bottom: 20px;
}
.pb25{
    padding-bottom: 25px;
}
.pb30{
    padding-bottom: 30px;
}
.pb35{
    padding-bottom: 35px;
}
.pb40{
    padding-bottom: 40px;
}
.pb35{
    padding-bottom: 45px;
}
.pb50{
    padding-bottom: 50px;
}
.pb55{
    padding-bottom: 55px;
}
.pb60{
    padding-bottom: 60px;
}
.pb65{
    padding-bottom: 65px;
}
.pb70{
    padding-bottom: 70px;
}
.pb75{
    padding-bottom: 75px;
}
.pb80{
    padding-bottom: 80px;
}
/* Margin CSS*/
.marginAuto{
    margin: 0 auto;
}
.marginLeftAuto{
    margin-left: auto;
}
.marginRightAuto{
    margin-right: auto;
}
/* Margin Top CSS*/
.mt5{
    margin-top: 5px;
}
.mt10{
    margin-top: 10px;
}
.mt15{
    margin-top: 15px;
}
.mt20{
    margin-top: 20px;
}
.mt25{
    margin-top: 25px;
}
.mt30{
    margin-top: 30px;
}
.mt35{
    margin-top: 35px;
}
.mt40{
    margin-top: 40px;
}
.mt45{
    margin-top: 45px;
}
.mt50{
    margin-top: 50px;
}
.mt55{
    margin-top: 55px;
}
.mt60{
    margin-top: 60px;
}
.mt65{
    margin-top: 65px;
}
.mt70{
    margin-top: 70px;
}
.mt75{
    margin-top: 75px;
}
.mt80{
    margin-top: 80px;
}

/* Margin Bottom CSS*/
.mb5{
    margin-bottom: 5px;
}
.mb10{
    margin-bottom: 10px;
}
.mb15{
    margin-bottom: 15px;
}
.mb20{
    margin-bottom: 20px;
}
.mb25{
    margin-bottom: 25px;
}
.mb30{
    margin-bottom: 30px;
}
.mb35{
    margin-bottom: 35px;
}
.mb40{
    margin-bottom: 40px;
}
.mb35{
    margin-bottom: 45px;
}
.mb50{
    margin-bottom: 50px;
}
.mb55{
    margin-bottom: 55px;
}
.mb60{
    margin-bottom: 60px;
}
.mb65{
    margin-bottom: 65px;
}
.mb70{
    margin-bottom: 70px;
}
.mb75{
    margin-bottom: 75px;
}
.mb80{
    margin-bottom: 80px;
}
/* Font Size*/
.fs10{
    font-size: 10px;
}
.fs11{
    font-size: 11px;
}
.fs12{
    font-size: 12px;
}
.fs13{
    font-size: 13px;
}
.fs14{
    font-size: 14px;
}
.fs15{
    font-size: 15px;
}
.fs16{
    font-size: 16px;
}
.fs17{
    font-size: 17px;
}
.fs18{
    font-size: 18px;
}
.fs19{
    font-size: 19px;
}
.fs20{
    font-size: 20px;
}
.fs21{
    font-size: 21px;
}
.fs22{
    font-size: 22px;
}
.fs23{
    font-size: 32px;
}
.fs24{
    font-size: 24px;
}
.fs25{
    font-size: 25px;
}
.fs26{
    font-size: 26px;
}
.fs27{
    font-size: 27px;
}
.fs28{
    font-size: 28px;
}
.fs29{
    font-size: 29px;
}
.fs30{
    font-size: 30px;
}
.fs31{
    font-size: 31px;
}
.fs32{
    font-size: 32px;
}
.fs33{
    font-size: 33px;
}
.fs34{
    font-size: 34px;
}
.fs35{
    font-size: 35px;
}
.fs36{
    font-size: 36px;
}
.fs37{
    font-size: 37px;
}
.fs38{
    font-size: 38px;
}
.fs39{
    font-size: 39px;
}
.fs40{
    font-size: 40px;
}
.fs41{
    font-size: 41px;
}
.fs42{
    font-size: 42px;
}
.fs43{
    font-size: 43px;
}
.fs44{
    font-size: 44px;
}
.fs45{
    font-size: 45px;
}
.fs46{
    font-size: 46px;
}
.fs47{
    font-size: 47px;
}
.fs48{
    font-size: 48px;
}
.fs49{
    font-size: 49px;
}
.fs50{
    font-size: 50px;
}
.fs51{
    font-size: 51px;
}
.fs52{
    font-size: 52px;
}
.fs53{
    font-size: 53px;
}
.fs54{
    font-size: 54px;
}
.fs55{
    font-size: 55px;
}
.fs56{
    font-size: 56px;
}
.fs57{
    font-size: 57px;
}
.fs58{
    font-size: 58px;
}
.fs59{
    font-size: 59px;
}
.fs60{
    font-size: 60px;
}

/* Font Weight*/

.fw300{
    font-weight: 300;
}
.fw400{
    font-weight: 400;
}
.fw500{
    font-weight: 500;
}
.fw600{
    font-weight: 600;
}
.fw700{
    font-weight: 700;
}
.fw800{
    font-weight: 800;
}
.fw900{
    font-weight: 900;
}
.relative{
    position: relative;
}
.zindex1{
    z-index: 1;
}
.marginAuto{
    margin: auto;
}
.font-plusjakarta{
    font-family: "Plus Jakarta Sans", sans-serif;
}
.font-playfair{
    font-family: "Playfair Display", serif;
}
/* Button CSS End */
.sc_primary_btn, .sc_secondary_btn {
    min-width: 150px;
    min-height: 50px;
    padding: 0 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color) !important;
    z-index: 1;
    border: none !important;
    border-radius: 6px;
    transition: all 0.3s ease-out;
    box-shadow: -3px -3px 4px 0px #FFFFFF66 inset;

    cursor: pointer;
}
.sc_primary_btn > img, .sc_primary_btn > svg, .sc_secondary_btn > img, .sc_secondary_btn > svg {
    position: relative;
}
.sc_primary_btn > svg, .sc_secondary_btn > svg{
    fill: var(--white-color);
}
.sc_primary_btn span, .sc_secondary_btn span {
    position: relative;
    pointer-events: none;
}
.sc_btn_div p{
    font-size: 15px;
    font-weight: 300;
    color: var(--text-color);
    padding-top: 10px;
}
.sc_primary_btn::before, .sc_secondary_btn::before{
    content: '';
    position: absolute;
    --size: 0px;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, #1df19f, transparent);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;
}
.sc_primary_btn:hover::before, .sc_secondary_btn:hover::before {
    --size: 200px;
}
.sc_secondary_btn{
    background-color: #171f26;
    box-shadow: none;
}
.sc_action_two_btn {
    gap: 15px;
    margin-bottom: 25px;
}
.sc_action_two_btn .sc_primary_btn, .sc_action_two_btn .sc_secondary_btn{
    font-size: 15px;
    font-weight: 500;
}
.sc_paymnt_cards_img {
    width: 300px;
    height: auto;
    margin: auto;
}
/* Botton CSS End */

.bg_cover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bg_contain{
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.whiteColor{
    color: var(--white-color);
}
.blackColor{
    color: var(--black-color);
}
/* Common Heading */
.sc_top_heading {
    font-size: 100px;
    font-weight: 800;
    background: linear-gradient(180deg, #c8ffea2b 0%, rgba(200, 255, 234, 0) 80%);    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transform: scale(0.6);    
    will-change: transform, opacity;
    line-height: normal;
}
.sc_gredient_heading {
    font-size: 54px;
    font-weight: 800;
    color: var(--white-color);
    /* background: linear-gradient(180deg, #FFFFFF 0%, #C8FFEA 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; */
    margin-top: -20px;
}
.sc_sub_heading{
    font-size: 18px;
    font-weight: 300;
    color: var(--text-color);
    padding-top: 10px;
}
/* Common Heading */

/* Body Particle */
.sc_page_main_wrapper {
    position: relative;
    z-index: 99;
}
/* Body Particle */

/* Header css start */
.sc_header_wrapper{
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 99;
}
.sc_header_wrapper .container {
    max-width: 1400px;
}
.sc_logo a{
    display: inline-block;
}
.sc_logo a svg{
    width: 186px;
    height: 30px;
    object-fit: contain;
    /* display: block; */
}
.sc_headder_menu > ul {
    gap: 40px;
    background: #050A0F99;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 18px 30px;
}
.sc_headder_menu ul li a{
    font-size: 15px;
    font-weight: 400;
    color: var(--white-color);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.sc_headder_menu ul li a.active{
    color: var(--primary-color);
}
.sc_header_btns {
    gap: 30px;
}
.login_btn:hover{
    color: var(--primary-color);
}
.sc_toggle_menu {
    display: none;
}
.scPricingTag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 3px 8px 2px 8px;
    border-radius: 50px;
    background: var(--primary-color);
    font-size: 10px;
    font-weight: 500;
    color: var(--white-color);
    margin-left: 5px;
}
.sc_header_login_btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    min-width: 130px;
    min-height: 44px;
}

/* AI Tools Dropdown Styles */
.sc_ai_tools_dropdown {
    position: relative;
}

.sc_ai_tools_dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc_dropdown_arrow {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.sc_ai_tools_dropdown.active > .sc_dropdown_toggle .sc_dropdown_arrow {
    transform: rotate(180deg);
}

.sc_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(5, 10, 15, 1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(6, 184, 115, 0.2);
    padding: 12px 0;
    min-width: 280px;
    margin-top: 12px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.sc_dropdown_menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sc_dropdown_menu li {
    list-style: none;
}

.sc_dropdown_menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.sc_dropdown_menu li a:hover {
    color: var(--primary-color);
    padding-left: 28px;
}

/* Desktop hover behavior */
@media (min-width: 1200px) {
    .sc_ai_tools_dropdown:hover > .sc_dropdown_menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sc_ai_tools_dropdown:hover > .sc_dropdown_toggle .sc_dropdown_arrow {
        transform: rotate(180deg);
    }
}

/* End AI Tools Dropdown Styles */

/* Header css end */

/* Banner css start */
.sc_banner_wrapper{
    background-image: url(../images/banner-bg.jpg);
    padding: 100px 0 0 0;
}
.sc_dfy_banner_wrapper{
    padding-top: 60px;
}
.sc_banner_slider, .sc_big_slider, .sc_big_slider_reverse, .sc_ai_tool_banner_slider {
    overflow: hidden;
}
.sc_banner_headings .sc_hero_title {
    font-size: 60px;
    font-weight: 800;
    max-width: 1100px;
    width: 100%;
    margin: auto;    
    color: var(--white-color);
    /* background: linear-gradient(180deg, #FFFFFF 0%, #8DFFD3 40.24%, #FFFFFF 59.81%, #8DFFD3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; */
}
.sc_banner_headings .sc_sub_heading {
    font-size: 18px;
    max-width: 700px;
    width: 100%;
    margin: auto;
    padding-top: 20px;
}
.sc_banner_headings .sc_primary_btn{
    /* background: linear-gradient(91deg, #9031d9, #ff62aa 80%, #9e42ff); */
    min-height: 60px;
    font-size: 18px;
    font-weight: 600;
}
.sc_banner_slider_item_img {
    border-radius: 10px;
    font-size: 0;
}
.sc_banner_slider_item_img video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.sc_swiper_pagination .swiper-button-next, .sc_swiper_pagination .swiper-button-prev{
    top: 50%;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bolder;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Banner css end */

/* Feature css start */
.sc_feature_wrapper{
    z-index: 1;
}
.sc_feature_wrapper::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../images/feature-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}
.sc_feature_wrapper .container{
    max-width: 1400px;
}
.sc_feature_wrapper .sc_common_heading {
    max-width: 660px;
    width: 100%;
    margin: auto;
}
.sc_feature_wrapper .sc_common_heading .sc_sub_heading {
    max-width: 608px;
    width: 100%;
    margin: auto;
}
.sc_feature_items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 80px;
    position: relative;
}
.sc_feature_items:last-child{
    margin-bottom: 0;
}
.sc_feature_items:nth-child(even){
    flex-direction: row-reverse;
}
.sc_feature_content{
    max-width: 600px;
    width: 100%;
}
.sc_feature_content .sc_feat_number {
    font-size: 100px;
    font-weight: 800;
    background: linear-gradient(180deg, #c8ffea2b 0%, rgba(200, 255, 234, 0) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    transform: scale(0.8);
}
.sc_feature_content h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white-color);
    margin-top: -20px;
    padding-bottom: 15px;
}
.sc_feature_content p{
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
}
.sc_feature_video{
    position: relative;
    background: linear-gradient(180deg, #06B873 0%, rgba(5, 10, 15, 0) 80%);
    max-width: 680px;
    width: 100%;
    border-radius: 35px;
    padding: 15px;
}
.sc_feature_video video{
    border-radius: 20px;
}
.sc_feature_content .sc_primary_btn {
    margin-top: 20px;
}
/* Feature css end */

/* Why us css start */
.sc_whyus_wrapper .container{
    max-width: 1400px;
}
.sc_whyus_wrapper .sc_common_heading {
    max-width: 850px;
    width: 100%;
    margin: auto;
}
.sc_whyus_wrapper .sc_common_heading .sc_sub_heading {
    max-width: 600px;
    width: 100%;
    margin: auto;
}
.sc_whyus_box{
    border-radius: 20px;
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 40px;
    min-height: 345px;
    transition: all 0.3s;
}
.sc_whyus_boxs_parent .row .col-lg-3:nth-of-type(even) .sc_whyus_box {
    background: linear-gradient(180deg, rgb(66 183 137 / 28%) 0%, rgba(200, 255, 234, 0) 80%);
}
.sc_whyus_boxs_parent .row .col-lg-3:nth-of-type(odd) .sc_whyus_box {
    background: linear-gradient(180deg, rgb(200 255 234 / 0%) 0%, rgb(44 171 123 / 24%) 100%);
}
.sc_whyus_boxs_parent.active .row .col-lg-3:nth-of-type(odd) .sc_whyus_box {
    background: linear-gradient(180deg, rgb(74 193 147 / 30%) 0%, rgba(200, 255, 234, 0) 80%);
}
.sc_whyus_boxs_parent.active .row .col-lg-3:nth-of-type(even) .sc_whyus_box {
    background: linear-gradient(180deg, rgb(200 255 234 / 0%) 0%, rgb(66 177 135 / 27%) 100%);
}
.sc_whyus_boxs_parent .row .col-lg-3:nth-of-type(odd) .sc_whyus_box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    transition: all 0.3s;
    z-index: -1;
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(6, 184, 115, 0) 30%, rgba(6, 184, 115, 0.3) 100%)border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.sc_whyus_boxs_parent.active .row .col-lg-3:nth-of-type(odd) .sc_whyus_box::before{
    background: linear-gradient(180deg, rgba(6, 184, 115, 0.3) -30%, rgba(6, 184, 115, 0) 100%)border-box;
}
.sc_whyus_boxs_parent .row .col-lg-3:nth-of-type(even) .sc_whyus_box::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    transition: all 0.3s;
    z-index: -1;
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(6, 184, 115, 0.3) -30%, rgba(6, 184, 115, 0) 100%)border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.sc_whyus_boxs_parent.active .row .col-lg-3:nth-of-type(even) .sc_whyus_box::before{
    background: linear-gradient(180deg, rgba(6, 184, 115, 0) 30%, rgba(6, 184, 115, 0.3) 100%)border-box;
}
.sc_whyus_content h2{
    font-size: 28px;
    font-weight: 600;
    color: var(--white-color);
    padding: 15px 0;
    transition: all 0.3s;
}
.sc_whyus_box:hover .sc_whyus_content h2{
    color: var(--primary-color);
}
.sc_whyus_content p{
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
}
.onlyAitoolsPage .sc_whyus_box {
    min-height: 300px;    
}
.onlyAitoolsPage .sc_whyus_content h2 {
    font-family: 'Playfair Display';
}
/* Why us css end */

/* Demo css start */
.sc_demo_wrapper{
    padding: 80px 0;
    background-image: url(../images/demo-bg.jpg);
    z-index: 1;
}
.sc_demo_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    max-width: 674px;
    width: 100%;
    height: 100%;
    background-image: url(../images/demo-shadow.png);
    z-index: 0;
}
.sc_demo_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    max-width: 674px;
    width: 100%;
    height: 100%;
    background-image: url(../images/demo-shadow.png);
    z-index: 0;
    transform: rotate(180deg);
}

.sc_demo_wrapper .sc_common_heading {
    max-width: 850px;
    width: 100%;
    margin: auto;
}
.sc_demo_wrapper .sc_common_heading .sc_sub_heading {
    max-width: 650px;
    width: 100%;
    margin: auto;
}
.tab-content {
    position: relative;
    z-index: 1;
}
.nav-tabs {
    background: #080F16;
    border: 1px solid #0F1B26;
    border-radius: 6px;
    padding: 10px;
    gap: 10px;
    position: relative;
    z-index: 1;
}
.nav-link{
    padding: 0 15px;
    min-height: 44px;
    background: #171F26;
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color) !important;
    border: none !important;
    outline: none !important;
    text-transform: capitalize;
    line-height: normal;
    transition: all 0.3s;
    box-shadow: none;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    background: var(--primary-color);
}
.sc_demo_video {
    position: relative;
    background: linear-gradient(180deg, #06B873 0%, rgba(5, 10, 15, 0) 80%);
    max-width: 1240px;
    width: 100%;
    border-radius: 35px;
    padding: 15px;
    margin: auto;
}
.sc_demo_video iframe{
    border-radius: 20px;
}
/* Demo css end */

/* Explore css start */
.sc_explore_wrapper .container{
    max-width: 1400px;
}
.sc_explore_wrapper .sc_common_heading{
    max-width: 570px;
    width: 100%;
    margin: auto;
}
.sc_explore_flex{
    gap: 20px;
}
.sc_explore_box{
    flex: 0 0 18.5%;
    font-size: 0;
}
.sc_explore_img{
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}
.sc_explore_img video{
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.sc_text_overlay{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
    transition: all 0.3s;
}
.sc_explore_title {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    transition: all 0.3s;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 200px;
    width: 100%;
    margin: auto;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}
.sc_volume_icon {
    margin: auto;
    position: absolute;
    inset: 0;
    background: #00000069;
    border-radius: 12px;
    z-index: 9;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sc_volume_icon img{
    width: 80px;
    height: 80px;
    cursor: pointer;
}
.sc_volume_icon span{
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}
.sc_volume_icon span svg{
    fill: var(--white-color);
}
/* Explore css end */

/* Language css start */
.sc_language_wrapper{
    background-image: url(../images/language-bg.webp);
}
.sc_language_wrapper .container{
    max-width: 1400px;
}
.sc_language_wrapper .sc_common_heading {
    max-width: 800px;
    width: 100%;
    margin: auto;
}
.sc_language_wrapper .sc_common_heading .sc_top_heading {
    background: linear-gradient(180deg, #c8ffea2b 0%, rgba(200, 255, 234, 0) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 1;
}
.sc_language_wrapper .sc_common_heading .sc_gredient_heading {
    /* background: linear-gradient(180deg, #FFFFFF 0%, #C8FFEA 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;     */
    color: var(--white-color);
}
.sc_language_wrapper .sc_common_heading .sc_sub_heading {
    color: var(--text-color);    
}
.img.sc_lang_mockup_image{
    display: block;
    margin: auto;
}
.sc_language_center_part{
    max-width: 975px;
    width: 100%;
    margin: auto;
}
.scLangAvatar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.sc_languages ul li p{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    min-height: 45px;
    padding: 0 25px;
    border-radius: 8px;
    background: linear-gradient(270deg, rgba(200, 255, 234, 0) 0%, rgba(200, 255, 234, 0.1) 100%);
    gap: 15px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}
.sc_languages ul li p:hover {
    box-shadow: 0 0 30px 0 rgb(58 187 132 / 80%);
}
.sc_languages ul li p:before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(270deg, rgba(6, 184, 115, 0) 0%, rgba(6, 184, 115, 0.3) 100%)
		border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-radius: 8px;
    z-index: -1;
    transition: all 0.4s;
}
.sc_languages ul li p:hover:before{
    background: linear-gradient(270deg, rgba(6, 184, 115, 0) 0%, rgba(6, 184, 115, 0.8) 100%)border-box;
}
.sc_language_left_part .sc_languages ul li:first-child p{
    margin-left: 50px;
}
.sc_language_left_part .sc_languages ul li:nth-child(2) p{
    margin-left: 40px;
}
.sc_language_left_part .sc_languages ul li:nth-child(3) p{
    margin-left: 30px;
}
.sc_language_left_part .sc_languages ul li:nth-child(4) p{
    margin-left: 20px;
}
.sc_language_left_part .sc_languages ul li:nth-child(5) p{
    margin-left: 10px;
}
.sc_language_left_part .sc_languages ul li:nth-child(6) p{
    margin-left: 20px;
}
.sc_language_left_part .sc_languages ul li:nth-child(7) p{
    margin-left: 30px;
}
.sc_language_left_part .sc_languages ul li:nth-child(8) p{
    margin-left: 40px;
}
.sc_language_left_part .sc_languages ul li:nth-child(9) p{
    margin-left: 50px;
}
.sc_language_right_part .sc_languages ul li p{
    background: linear-gradient(270deg, rgba(200, 255, 234, 0.1) 0%, rgba(200, 255, 234, 0) 100%);
}
.sc_language_right_part .sc_languages ul li p:before{
    background: linear-gradient(270deg, rgba(6, 184, 115, 0.3) 0%, rgba(6, 184, 115, 0) 100%)border-box;
}
.sc_language_right_part .sc_languages ul li p:hover:before{
    background: linear-gradient(270deg, rgba(6, 184, 115, 0.8) 0%, rgba(6, 184, 115, 0) 100%)border-box;
}
/* Language css end */

/* FAQ css start */
.sc_faq_wrapper .container{
    max-width: 1400px;
}
.sc_faq_wrapper .sc_common_heading {
    max-width: 570px;
}
.sc_faq_parent{
    gap: 15px;
}
.sc_left_top_heading {
    font-size: 100px;
    font-weight: 800;
    background: linear-gradient(180deg, #c8ffea2b 0%, rgba(200, 255, 234, 0) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* opacity: 0.4; */
    will-change: transform, opacity;
    line-height: normal;
}
.sc_faq_right{
    max-width: 680px;
    width: 100%;
}
.accordion-button:not(.collapsed) {
    background: #FFFFFF0D !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 10px !important;
    padding: 20px 25px 15px !important;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.accordion-button {
    font-size: 20px !important;
    font-weight: 500;
    color: var(--white-color) !important;
    background: #FFFFFF0D !important;
    background: transparent !important;
    padding: 20px 25px !important;
    backdrop-filter: blur(4px);
    border-radius: 10px !important;
}
.accordion-item {
    background: #FFFFFF0D !important;
    border: 1px solid #FFFFFF1A !important;
    border-radius: 10px !important;
    margin-bottom: 20px;
}
.accordion-item:last-child {
    margin-bottom: 0;
}
.accordion-body p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 20px;
}
.accordion-body p:last-child{
    margin-bottom: 0;
}
.accordion-button:focus {
    box-shadow: none !important;
}
.accordion-button::after{
    background-image: url(../images/faq-arrow.png) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 9px;
}
.accordion-body {
    max-height: 400px;
    overflow-x: hidden;
    padding: 0 15px 15px 25px !important;
}
/* FAQ css end */

/* CTA css start */
.sc_cta_wrapper{
    background-image: url(../images/cta-bg.webp);
}
.sc_cta_wrapper .container{
    max-width: 1400px;
}
.sc_cta_wrapper .sc_common_heading .sc_top_heading {
    background: linear-gradient(180deg, #c8ffea2b 0%, rgba(200, 255, 234, 0) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.sc_cta_wrapper .sc_common_heading .sc_gredient_heading {
    /* background: linear-gradient(180deg, #FFFFFF 0%, #C8FFEA 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;     */
    color: var(--white-color);
}
.sc_cta_wrapper .sc_common_heading .sc_sub_heading {
    color: var(--text-color);    
}
.sc_cta_parent{
    gap: 15px;
}
.sc_cta_left {
    flex: none;
}
.sc_cta_wrapper .sc_common_heading{
    max-width: 600px;
    width: 100%;
}
.sc_cta_right{
    max-width: 680px;
    width: 100%;
    position: relative;
}
.sc_cta_slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 30px;
}
.sc_cta_video {
    position: relative;
    background: linear-gradient(180deg, #06B873 0%, rgba(5, 10, 15, 0) 80%);
    border-radius: 35px;
    padding: 15px;
}
.sc_cta_video video{
    border-radius: 20px;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #06B873;
    border-radius: 50px;
    opacity: 0.2;
    transition: all 0.3s;
}
.swiper-pagination-bullet-active{
    width: 18px;
    opacity: 1;
}
.sc_cta_right .sc_swiper_pagination .swiper-button-next, .sc_cta_right .sc_swiper_pagination .swiper-button-prev {
    top: 40%;
    opacity: 1;
    visibility: visible;
}
.sc_cta_right .swiper-button-next{
    right: 0;
}
.sc_cta_right .swiper-button-next{
    right: -20px;
}
.sc_cta_right .swiper-button-prev{
    left: -20px;
}
/* CTA css end */

/* Footer css start */
.sc_placehold_logo {
    display: block;
    margin: auto;
    position: relative;
    transform: scale(0.8);
}
.sc_footer_top > a{
    display: inline-block;
    position: relative;
    top: -70px;
}
.sc_footer_top a svg {
    /* display: block; */
    max-width: 309px;
    height: auto;
    object-fit: contain;
}
.sc_footer_top > p {
    color: var(--text-color);
    max-width: 800px;
    width: 100%;
    margin: auto;
    margin-top: -45px;
    font-size: 16px;
}
.sc_footer_top ul{
    gap: 15px;
}
.sc_footer_top ul li a{
    width: 50px;
    height: 50px;
    background: linear-gradient(106.04deg, #053120 -5.5%, #080F16 38.02%);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.sc_footer_top ul li a:hover{
    box-shadow: 0 0 30px 0 rgb(58 187 132 / 80%);
}
.sc_footer_top ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    transition: all 0.3s;
    z-index: -1;
    border: 1px solid transparent;
    background: linear-gradient(216.74deg, #080F16 29.72%, #06B873 88.24%)border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.sc_footer_copyright{
    position: relative;
    z-index: 1;
}
.sc_footer_copyright::before{
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, rgba(6, 184, 115, 0) 0%, rgba(6, 184, 115, 0.3) 50%, rgba(6, 184, 115, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.sc_footer_copyright p{
    color: var(--text-color);
}
.sc_footer_copyright p a {
    color: var(--text-color);
    text-decoration: underline;
}
.sc_footer_legal_pages{
    /* max-width: 710px; */
    width: 100%;
    margin: auto;
    gap: 40px;
}
.sc_footer_legal_pages a{
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
    text-decoration: underline;
    transition: all 0.3s;
}
.sc_footer_legal_pages a:hover{
    color: var(--primary-color);
}
/* Footer css end */


/* Pricing css start */
.sc_pricing_wrapper {
    padding-top: 120px;
    padding-bottom: 80px;
    background-image: url(../images/banner-bg.jpg);
    background-attachment: fixed;
}
.sc_pricing_wrapper .container {
    max-width: 1400px;
}
.sc_pricing_wrapper .sc_common_heading{
    max-width: 560px;
    width: 100%;
    margin: auto;
}
.sc_price_header {
    text-align: left;
}
.sc_pricing_tab {
    background: #080F16 !important;
    border: 1px solid #0F1B26 !important;
    border-radius: 60px;
    padding: 5px;
}
.sc_pricing_tab .nav-link {
    padding: 0 30px;
    border-radius: 60px !important;
    background: transparent;
    opacity: 0.7;
    min-height: 44px;
    font-size: 16px;
    font-weight: 400;
}
.sc_pricing_tab .nav-link.active{
    opacity: 1;
    background: var(--primary-color);
}

.sc_price_box{
    background: linear-gradient(180deg, rgba(200, 255, 234, 0) 0%, rgba(200, 255, 234, 0.1) 100%);
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    min-height: 955px;
}
.sc_price_box_pro{
    background: linear-gradient(180deg, rgba(5, 10, 15, 0) 0%, rgba(6, 184, 115, 0.9) 100%);
}
.sc_price_box_pro .sc_price_bulltes ul li p{
    color: #E4FFF5;
}
.sc_price_box.active {
    border: 1px solid var(--primary-color);
}
.sc_price_box.active .sc_price_header .sc_primary_btn {
    opacity: 0.2;
    pointer-events: none;
}
.sc_price_box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    transition: all 0.3s;
    z-index: -1;
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(6, 184, 115, 0) 0%, rgba(6, 184, 115, 0.3) 100%)border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.sc_price_title{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 30px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    line-height: normal;
    transition: all 0.3s;
}
.sc_price_box_pro .sc_price_title{
    background: var(--primary-color);
    box-shadow: -3px -3px 4px 0px #FFFFFF66 inset;
}
.sc_price_header > p {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-color);
    padding: 15px 0 10px 0;
    text-align: left;
}
.sc_price {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFFFFF 0%, #C8FFEA 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: flex;
    align-items: center;
}
.sc_price > small {
    font-size: 17px;
    font-weight: 400;
    -webkit-text-fill-color: var(--white-color);
    margin-left: auto;
}
h4.sc_price > del {
    background-clip: unset;
    -webkit-text-fill-color: var(--text-color);
    font-size: 32px;
    opacity: 0.5;
    margin-left: 10px;
}
.sc_price_header .sc_primary_btn{
    background: linear-gradient(91deg, #9031d9, #ff62aa 80%, #9e42ff);
    min-height: 60px;
    width: 100%;
    font-size: 18px;
    margin: 10px 0 25px 0;
}
.sc_price_bulltes h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    padding-bottom: 15px;
    text-align: left;
}
.sc_price_bulltes ul li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.sc_price_bulltes ul li:last-child{
    margin-bottom: 0px;
}
.sc_price_bulltes ul li p{
    font-size: 18px;
    font-weight: 300;
    color: var(--text-color);
}
.sc_price_bulltes ul li p img{
    flex: none;
}
/* Credit  */
.sc_price_bottom_text {
    text-align: center;
    margin-top: 80px;
}
.sc_price_bottom_text h3{
    color: var(--white-color);
}
.sc_price_bottom_text h4 {
    color: var(--text-color);
    padding-top: 10px;
    font-weight: 300;
    font-size: 20px;
}
/* Mobile pricing tab */
.tabMobileOnly {
    background: #080f16 !important;
    border: 1px solid #0f1b26 !important;
    margin-top: 30px;
    padding: 3px !important;
    border-radius: 60px;
}
.tabMobileOnly .nav-link {
    min-height: 38px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff91 !important;
    border-radius: 60px;
    padding: 0 23px;
    border: 1px solid transparent !important;
    background: transparent;
}
.tabMobileOnly .nav-link.active {
    background-color: #171f26;
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
    background: transparent;
}
/* .tab-content-mobile #free .row .col-lg-4:nth-child(2), .tab-content-mobile #free .row .col-lg-4:nth-child(3), .tab-content-mobile #lite .row .col-lg-4:nth-child(1), .tab-content-mobile #lite .row .col-lg-4:nth-child(3), .tab-content-mobile #pro .row .col-lg-4:nth-child(1), .tab-content-mobile #pro .row .col-lg-4:nth-child(2), .tab-content-mobile #starter-credit .row .col-lg-4:nth-child(2), .tab-content-mobile #lite-credit .row .col-lg-4:nth-child(1){
    display: none;
} */
/* Mobile pricing tab */

/* Table css */
.sc_credit_table_parent {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
}
.table {
    margin-bottom: 0;
    border: none;
}
.table-responsive{
    border-radius: 10px;
}
.table thead th {
    background-color: #14202a;
    color: var(--white-color);
    border-color: #31383e45;
    text-align: left;
}
.table-bordered>:not(caption)>*>* {
    background: #0d151c;
}
.table>:not(caption)>*>* {
    padding: 15px 10px 15px 30px;
}
.table thead th:first-child {
    border-radius: 10px 0 0 0;
    border-left: 0;
}
.table thead th:last-child {
    border-radius: 0 10px 0 0;
    border-right: 0;
}
.table-bordered>:not(caption)>* {
    border: #1d2c3a;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: #0d151c;
}
tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}
tbody tr:last-child td:first-child {
    border-radius: 0 0 0px 10px;
}
.table>tbody>tr>td {
    color: var(--text-color);
    text-align: left;
    border: 1px solid #0f1b26;
}
.table>thead>tr>th:first-child, .table>tbody>tr>td:first-child {
    padding-right: 0;
    border-left: none;
}
.table>thead>tr>th:last-child, .table>tbody>tr>td:last-child {
    border-right: none;
}
.table>tbody>tr:last-child>td {
    border-bottom: none;
}
/* Table css */

/* Modal css */
.modal-backdrop.show {
    opacity: 1;
    background: #101b26c4;
    backdrop-filter: blur(10px);
}
.modal-body {
    padding: 0;
}
.modal-header {
    padding: 0;
    border-bottom: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 5px;
}
.modal-content {
    background-color: #fff !important;
    color: var(--white-color) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 40px 30px;
}
.modal-title{
    color: #222;
    font-weight: 600;
}
.modal-content .sc_input_group label {
    color: #171f26;
}
.modal-content .sc_input_group input{
    height: 60px;
    background-color: #fff;
    border: 1px solid #00000021;
    color: #222;
}
.modal-content input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-text-fill-color: #222 !important;
    transition: background-color 5000s ease-in-out 0s;
}
.modal-content .sc_input_group input::placeholder{
    color: #22222285;
}
.scModalCloseIcon {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    border-radius: 50% !important;
    background-color: red !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.scModalCloseIcon:hover {
    background-color: red !important;
}
small.form-text.text-muted {
    color: #000 !important;
    font-size: 12px;
    font-weight: 300;
}
.modal-content .sc_secondary_btn {
    background-color: #666666;
}
.sc_modal_price {
    gap: 10px;
    width: 100%;
}
.sc_modal_price .sc_price {
    -webkit-text-fill-color: var(--secondary-color);
    font-size: 30px;
    font-weight: 800;
}
.scRadioFlex {
    gap: 15px;
    margin-bottom: 20px;
}
.scRadioFlex .sc_radio_btn{
    width: 100%;
}
.scRadioFlex .sc_radio_btn label {
    background-color: var(--white-color);
    border: 1px solid #00000021;
    color: #171f26 !important;
    border-radius: 6px;
    margin: 10px 0px 0px;
    display: flex;
    align-items: center;
    padding: 0px 20px 0 40px !important;
    gap: 20px;
    min-height: 50px;
}
.scRadioFlex .sc_radio_input+.sc_radioLabel:before {
    border: 1px solid #00000021;
    background: #d5d5d51c;
}
.scRadioFlex .sc_radio_btn label > img {
    margin-left: auto;
}
.scRadioFlex .sc_radio_btn .sc_radio_input+.sc_radioLabel:before {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.scRadioFlex .sc_radio_btn .sc_radio_input+.sc_radioLabel:after {
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
}
.scRadioFlex .sc_radio_btn .sc_radio_input:checked+.sc_radioLabel {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}
/* Modal css */
/* Pricing css end */

/* Flash Offer Pricing css */
.sc_banner_offer_wrapper{
    padding-top: 50px;
}
.sc_pricing_flash_offer_wrapper{
    padding: 80px 0;
}
.sc_pricing_flash_offer_wrapper .sc_price_box{
    min-height: auto !important;
    margin-top: -20px;
    background: #192525;
    border: 1px solid #13513d;
}
.sc_price_top_bar {
    background: linear-gradient(91deg, #9031d9, #ff62aa 80%, #9e42ff);
    min-height: 66px;
    padding: 0 10px;
    border-radius: 20px 20px 0 0;
    color: var(--white-color);
    margin: auto;
    padding-bottom: 10px;
    padding-top: 13px;
}
.flashSubscriptionModal .sc_modal_price{
    background: #06b87312;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #06b87338;
}
.sc_videoBox {
    position: relative;
    background: linear-gradient(180deg, #06B873 0%, rgba(5, 10, 15, 0) 80%);
    max-width: 800px;
    width: 100%;
    border-radius: 35px;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.sc_videoBox iframe{
    border-radius: 20px;
}
/* Flash Offer Pricing css */


/* Contact css start */
.sc_contact_wrapper{
    padding: 150px 0 30px 0;
    background-image: url(../images/banner-bg.jpg);
}
.sc_contact_wrapper .sc_common_heading{
    max-width: 700px;
    width: 100%;
    margin: auto;
}
.sc_contact_box {
    background-color: #080f16;
    border: 2px solid #0f1b26;
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.sc_input_flex{
    gap: 20px;
    margin-bottom: 20px;
}
.sc_input_flex .sc_input_group{
    width: 50%;
}
.sc_input_group{
    margin-bottom: 20px;
}
.sc_input_group label{
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    display: block;
    margin-bottom: 10px;
    line-height: normal;
}
.sc_input_group input, .sc_input_group textarea {
    width: 100%;
    height: 44px;
    background-color: #0d151c;
    border: 1px solid #171f26;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 300;
    color: var(--white-color);
    border-radius: 6px;
}
.sc_input_group textarea{
    height: 120px;
    padding: 10px 20px;
    resize: none;
}
.sc_input_group input::placeholder, .sc_input_group textarea::placeholder{
    color: var(--text-color);
}
.sc_input_group input:focus-visible, .sc_input_group textarea:focus-visible{
    border: 1px solid var(--primary-color);
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #0d151c inset;
    -webkit-text-fill-color: var(--white-color);
    transition: background-color 5000s ease-in-out 0s;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
/* Contact css start */

/* Creation css start */
.sc_creation_page_wrapper .sc_demo_wrapper {
    padding: 150px 0 80px 0;
    background-image: url(../images/banner-bg.jpg);
    background-attachment: fixed;
}
/* shimmer overlay */
.video-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(30, 30, 30) 25%, rgb(60, 60, 60) 37%, rgb(30, 30, 30) 63%) 0% 0% / 200% 100%;
    background-size: 200% 100%;
    animation: skeleton-shimmer 2s infinite;
  z-index: 2;
  border-radius: 12px; /* optional rounded corners */
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* hide shimmer once video loaded */
.video-wrapper.loaded .video-shimmer {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}
/* Creation css end */

/* Legal pages css start*/
.scLegalPagesMain .sc_header_wrapper {
    position: sticky;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 99;
}
.sc_legal_pages_wrapper{
    padding: 50px 0 0px 0;
}
.sc_legal_pages_wrapper .container{
    max-width: 1400px;
}
.sc_legal_pages_main_title{
    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
    padding-bottom: 20px;
}
.sc_legal_pages_sub_title{
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 10px;
}
.sc_legal_pages_sub_title_inner{
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin-top: 10px;
}
.sc_legal_sections{
    padding-bottom: 20px;
}
.sc_legal_sections p{
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
}
.sc_legal_sections p a{
    color: var(--primary-color);
    text-transform: lowercase;
    font-weight: 500;
}
.sc_pages_parent_parent small{
    display: block;
    color: var(--primary-color);
    padding-bottom: 20px;
    padding-top: 5px;
}
.sc_legal_sections ul{
    list-style: disc;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.sc_legal_sections ul li {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
}
.sc_legal_sections ul li b{
    color: var(--white-color);
}
.sc_legal_sections ul li a {
    color: var(--primary-color);
    text-transform: lowercase;
    font-weight: 500;
}
.sc_legal_pages_sub_title > a{
    color: var(--primary-color);
}
.sc_legal_sections p b{
    color: var(--white-color);
}
/* Legal pages css end*/

/* App download Button */
.scDownloadAppBtn .sc_primary_btn{
    min-height: 60px;
    font-size: 18px;
    background: linear-gradient(91deg, #9031d9, #ff62aa 80%, #9e42ff);
}
.sc_app_btn {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
}
.sc_app_btn > svg{
    border-radius: 8px;
}
.sc_download_app_btn_effect {
    inset: calc(0px);
    padding: 2px;
    background: var(--lqd-outline-glow-color-secondary,transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    position: absolute;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}
.sc_download_app_btn_effect_inner {
    background: conic-gradient(from 290deg at 50%,var(--lqd-outline-glow-color-secondary,transparent) 0%,var(--lqd-outline-glow-color,#fff) 30%,var(--lqd-outline-glow-color-secondary,transparent) 35%);
    animation: app_btn_effect var(--lqd-outline-glow-duration,5s) linear infinite;
    display: inline-block;
    padding: 1px;
    border-radius: 4px;
    inset-inline-start: 50%;
    top: 50%;
    aspect-ratio: 1/1;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    overflow: hidden;
}
.sc_app_btn:hover .sc_download_app_btn_effect {
    opacity: 1;
    visibility: visible;
}
@keyframes app_btn_effect {
    0% {
        transform: translate(-88%,-50%) rotate(0deg)
    }
    33% {
        transform: translate(-12%,-50%) rotate(0deg)
    }
    50% {
        transform: translate(-12%,-50%) rotate(180deg)
    }
    83% {
        transform: translate(-88%,-50%) rotate(180deg)
    }
    to {
        transform: translate(-88%,-50%) rotate(360deg)
    }
}
/* App download Button */
.sc_header_fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    z-index: 999;
    -webkit-animation: slideInDown .7s;
    -moz-animation: slideInDown 0.7s;
    -ms-animation: slideInDown 0.7s;
    -o-animation: slideInDown 0.7s;
    animation: slideInDown 0.7s;
}
.tb_bar_open .sc_header_fixed{
    top: 50px;
}
/* Appointment page css */
.sc_booking_footer {
    padding-top: 40px;
}
.sc_booking_widget_wrapper {
    background-image: url(../images/banner-bg.jpg);
    padding-top: 100px;
    padding-bottom: 60px;
}
.widget_form_box {
    background-color: #080F16 !important;
    border: 2px solid #0F1B26 !important;
    border-radius: 20px !important;
    margin-bottom: 0 !important;
}
.widget_form_box h2 {
    padding-bottom: 8px !important;
    color: var(--primary-color) !important;
}
.widget_form_box h5, .widget_event_detail_wrapper h4 {
    color: var(--white-color) !important;
}
.widget_event_detail_wrapper {
    margin-bottom: 20px !important;
}
.widget_event_content_wrap p {
    color: var(--white-color) !important;
}
.widget_event_content_wrap h4 {
    padding: 2px 0 !important;
    color: var(--text-color) !important;
}
.widget_ipt_wrap>label {
    color: var(--white-color) !important;
}
.widget_ipt_wrap input, .widget_ipt_wrap select{
    height: 40px !important;
    background-color: #0D151C !important;
    border: 1px solid #171F26 !important;
    padding: 0 20px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--white-color) !important;
    border-radius: 6px !important;
}
.widget_ipt_wrap input::placeholder{
    color: #dfdada !important;
}
.widget_event_content_wrap span {
    background: var(--primary-color) !important;
    flex: none !important;
}
.widget_event_content_wrap span svg {
    width: 16px !important;
    height: auto !important;
}
.widget_radio_btn_wrapper .widget_radio_wrap_timeslot {
    background-color: #0D151C !important;
    border: 1px solid #171F26 !important;
    box-shadow: none !important;
    color: var(--white-color) !important;
}
.widget_radio_btn_wrapper .timesolt_active {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}
.widget_radio_wrap_timeslot input[type=radio]:checked {
    accent-color: var(--primary-color) !important;
}
.widget_btn_css {
    padding: 10px 30px !important;
    border-radius: 6px!important;
    color: var(--white-color)!important;
    background-color: var(--primary-color)!important;
    font-size: 14px!important;
}
.widget_radio_btn_wrapper {
    column-gap: 15px !important;
}
.widget_radio_btn_wrapper > label {
    margin-bottom: 15px !important;
}
.sc_appointment_bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.sc_appointment_bubble .sc_primary_btn {
    min-height: 50px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 60px;
    background: #007cff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5) !important;
}
/* Appointment page css */

/* Purchase video css */
.sc_purchase_video_wrapper{
    background-image: url(../images/banner-bg.jpg);
    padding-top: 130px;
}
.sc_purchase_video_box{
    max-width: 400px;
    width: 100%;
    margin: auto;
}
.sc_purchase_video{
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-sizing: content-box;
    background: #171f26;
    position: relative;
    border-radius: 6px;
    -webkit-mask-image:-webkit-radial-gradient(#171f26, #171f26);
}
.sc_purchase_video video{
    aspect-ratio: 9/16;
    border-radius: 6px;
}
/* Purchase video css */

/* Sponsors section css */
.sc_sponsor_heading h2{
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
}
.sc_sponsor_slider{
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}
.sc_sponsor_slider .swiper-wrapper{
    align-items: center;
}
.sc_sponsor_item{
    text-align: center;
}
.sc_sponsor_item > img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
}
.sc_sponsor_item > img:hover{
    filter: grayscale(0);
}
.castnx_logo > img {
    height: 25px;
}
.chaikaapi_logo > img{
    height: 30px;
}
.samson_logo > img{
    height: 70px;
}
.sanskriti_logo > img{
    max-height: 55px;
}
/* Sponsors section css */

/* Product video section css */
.sc_product_video {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 9/16;
}
.sc_product_video video{
    width: 100%;
    height: 100%;
    object-fit: cover;    
    border-radius: 10px;
}
/* Product video section css */


/* Light Dark Mode CSS */
.sc_light_dark_mode {
    position: fixed;
    bottom: 95px;
    width: 60px;
    height: 60px;
    background: #0f1821bd;
    backdrop-filter: blur(2.5px);    
    border-radius: 60px;
    right: 30px;
    cursor: pointer;
    z-index: 99999;
}
.sc_light_dark_mode svg {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
}
.sc_dark_icon {
    display: none;
}
.sc_light_mode .sc_dark_icon {
    display: block;
}
.sc_light_mode .sc_light_icon {
    display: none;
}
/* Light Mode */
body.sc_light_mode::-webkit-scrollbar-track{
    background: var(--white-color);
}
body.sc_light_mode .sc_headder_menu > ul {
    background-color: #ffffff99;
}
body.sc_light_mode .sc_dropdown_menu {
    background-color: var(--white-color);
}
body.sc_light_mode .sc_light_dark_mode {
    background: #defff2c7;
}
.sc_black_logo {
    display: none;
}
body.sc_light_mode .sc_black_logo {
    display: block;
}
body.sc_light_mode .sc_white_logo {
    display: none;
}
body.sc_light_mode{
    background-color: var(--white-color);
} 
body.sc_light_mode .sc_banner_wrapper{
    background-image: url(../images/banner-light-bg.jpg);    
}
body.sc_light_mode .sc_demo_wrapper{
    background: transparent;
    padding-top: 50px;
}
body.sc_light_mode .sc_demo_wrapper::after, body.sc_light_mode .sc_demo_wrapper::before{
    display: none;
}
body.sc_light_mode .sc_headder_menu ul li a {
    color: #0d151c;
}
body.sc_light_mode .sc_header_btns .scOnlyMainPageLoginBtn{
    color: var(--primary-color) !important;
}
body.sc_light_mode .sc_hero_title,
body.sc_light_mode .sc_gredient_heading,
body.sc_light_mode .sc_feature_title, 
body.sc_light_mode .sc_whyus_content h2{
    color: #0d151c;
}
body.sc_light_mode .sc_sub_heading, body.sc_light_mode .sc_feature_content p, body.sc_light_mode .sc_whyus_content p, body.sc_light_mode .sc_footer_top > p, body.sc_light_mode .sc_faq_left .sc_left_bottom_content p, body.sc_light_mode .sc_price_bulltes ul li p{
    color: #3d6b52;
}
body.sc_light_mode .sc_header_fixed {
    background: rgb(233 233 233 / 50%);
}
body.sc_light_mode .sc_sponsor_item > img {
    filter: contrast(0);
}
body.sc_light_mode .sc_sponsor_item > img:hover{
    filter: contrast(0);
}
body.sc_light_mode .sc_top_heading, body.sc_light_mode .sc_faq_left .sc_left_top_heading, body.sc_light_mode .sc_feature_content .sc_feat_number {
    /* background: linear-gradient(180deg, #d1d1d1b0 46.22%, #FFFFFF 86.76%); */
    background: linear-gradient(180deg, #050A0F 0%, #050a0f00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0.1;
}
body.sc_light_mode .sc_sponsor_heading h2{
    color: #0d151c;
}
.sc_light_bg_video, .sc_light_faq_img{
    display: none;
}
body.sc_light_mode .sc_light_bg_video, body.sc_light_mode .sc_light_faq_img{
    display: block;
}
body.sc_light_mode .sc_dark_bg_video, body.sc_light_mode .sc_dark_faq_img{
    display: none;    
}
body.sc_light_mode .accordion-button::after{
    background-image: url(../images/faq-arrow-black.png) !important;
}
body.sc_light_mode .accordion-button {
    color: #0d151c !important;
}
body.sc_light_mode .accordion-body p, body.sc_light_mode .sc_ta_feature_list li {
    color: var(--text-color);
}
body.sc_light_mode .accordion-item {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
}
body.sc_light_mode .nav-tabs {
    background: var(--white-color);
    border: 1px solid #E7F0FA;
    box-shadow: 0px 6px 20px 0px #0E32241A;    
}
body.sc_light_mode .sc_demo_tab .nav-link {
    background: #f0f0f0;
    color: #0d151c !important;
}
body.sc_light_mode .nav-tabs .nav-item.show .nav-link, body.sc_light_mode .nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color) !important;
}
.sc_black_footer_logo, .sc_placehold_white_logo{
    display: none;    
}
.sc_placehold_white_logo{
    opacity: 0.5;
}
body.sc_light_mode .sc_black_footer_logo, body.sc_light_mode .sc_placehold_white_logo{
    display: block;
}
body.sc_light_mode .sc_white_footer_logo, body.sc_light_mode .sc_placehold_black_logo{
    display: none;
}
body.sc_light_mode .sc_footer_top ul li a {
    background: var(--white-color);
    box-shadow: 0px 6px 20px 0px #0E32241A;
}
body.sc_light_mode .sc_footer_top ul li a::before {
    background: linear-gradient(216.74deg, #06b873 29.72%, #06B873 88.24%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
body.sc_light_mode .sc_footer_copyright p, body.sc_light_mode .sc_footer_copyright p a, body.sc_light_mode .sc_footer_legal_pages a{
    color: #0d151c;
}
body.sc_light_mode .sc_pricing_flash_offer_wrapper { 
    background: transparent;
}
body.sc_light_mode .sc_pricing_flash_offer_wrapper .sc_price_box { 
    background: #f0f0f0;
    border: 1px solid #0000001a;
}
body.sc_light_mode .sc_price_title {
    background: var(--primary-color);
}
body.sc_light_mode .sc_price_header > p, body.sc_light_mode .sc_price_bulltes h4 {
    color: #0d151c;
}
body.sc_light_mode .sc_price > small {
    -webkit-text-fill-color: #444444;
}
body.sc_light_mode .sc_price {
    -webkit-text-fill-color: #06b873;
}
body.sc_light_mode .sc_price_bulltes ul li > img {
    filter: brightness(0.3);
}
.scFeatBnefits{
    color: var(--white-color);
}
body.sc_light_mode .scFeatBnefits {
    color: #0d151c;
}
body.sc_light_mode .scTopSmallHeading {
    background: var(--primary-color);
    color: var(--white-color);
}
/* Christmas Stickybar */
.tb_bottom_sticky_bar {
    background: linear-gradient(135deg,#9031d9,#ff62aa 80%,#9e42ff);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    gap: 10px;
    z-index: 999999999999999999999;
}
.topbarText{
    gap: 10px;
}
.tb_bottom_sticky_bar p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    margin: 0;
}
.topbarText > p > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 7px;
    color: #FF3752;
    font-weight: 900;
    padding: 4px 6px;
    line-height: normal;
    margin: 0 3px;
}
.topbarText img {
    flex: none;
    width: 36px;
    height: auto;
    object-fit: contain;
}
.bellWithBtn > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #FF3752 !important;
    line-height: normal;
    background-color: var(--white-color);
    border-radius: 60px;
    padding: 7px 20px;
    transition: all .3s;
}
.bellWithBtn > a:hover {
    box-shadow: 0 0 20px 0 rgba(255,255,255,0.6);
}
.bellWithBtn > img{
    position: relative;
    animation: bellRing 2s infinite;
}
@keyframes bellRing {
    0%   { transform: rotate(0); }
    10%  { transform: rotate(15deg); }
    20%  { transform: rotate(-15deg); }
    30%  { transform: rotate(10deg); }
    40%  { transform: rotate(-10deg); }
    50%  { transform: rotate(5deg); }
    60%  { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}
.bellWithBtn {
    margin-left: 15px;
}
.tb_close_bar {
    width: 24px;
    height: 24px;
    background: #ffffff75;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    box-shadow: none !important;
    border: none !important;
    transition: all .3s;
}
.tb_close_bar svg {
    fill: var(--secondary-color);
    transition: all 0.3s;
}
.tb_close_bar:hover {
    background-color: var(--white-color);
}
.tb_close_bar:hover svg {
    fill: red;
}
/* Christmas Stickybar */

/* Cookies CSs Start */
.temp_cookies_wrapper {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 30px;
    max-width: 1010px;
    width: 100%;
    margin: auto;
    background-color: #080f16;
    border: 1px solid #0f1b26;
    border-radius: 6px;
    padding: 30px 40px;
    z-index: 9999;
}

.temp_cookies_with_text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}

.temp_cookies_img {
  flex: none;
}

.temp_cookies_with_text p {
  font-size: 14px;
  font-weight: 400;
  color: var(--white-color);
  line-height: 20px;
}

.temp_cookies_btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.temp_cookies_btns .sc_primary_btn, .temp_cookies_btns .sc_secondary_btn{
    font-size: 14px;
    font-weight: 500;
}
.temp_cookies_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.tempCookiesPopupMain>h5>a {
  text-transform: capitalize;
}
/* Modal css */
#cookies_modal .modal-content {
    background-color: #080f16 !important;
    color: var(--white-color) !important;
    border: none!important;
    border-radius: 6px!important;
    padding: 30px;
}
.temp_cookies_modal_box {
    background: #171f26;
    border: 1px solid #0f1b26;
    border-radius: 6px;
    margin-bottom: 15px;
    padding: 20px;
}
h2.temp_modal_main_title {
    font-size: 20px;
    font-weight: 600;
}
#cookies_modal .card-body .modal-head > h5 {
    font-size: 15px;
    font-weight: 400;
    margin: 10px 0 20px 0;
    line-height: 1.5;
}
#cookies_modal .card-body .modal-head > h5 > a {
    text-transform: lowercase;
    color: var(--primary-color);
    text-decoration: underline;
}
.temp_cookies_modal_box h4 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.temp_cookies_modal_box p{
    font-size: 15px;
    font-weight: 400;
    color: #d5d5d5;
}
.temp_checkbox .temp_checkboxInput {
    display: none;
}
.temp_cookies_modal_box .temp_checkbox .temp_checkboxInput+.temp_checkboxLabel {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
    cursor: pointer;
}
.temp_cookies_modal_box .temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:before {
  width: 16px;
  height: 16px;
}
.temp_cookies_modal_box .temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:after {
  top: 8px;
  width: 8px;
}
.temp_cookiesw_modal_btns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}
.temp_cookiesw_modal_btns .sc_primary_btn, .temp_cookiesw_modal_btns .sc_secondary_btn{
    font-size: 14px;
    font-weight: 500;
}
.temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #d9dbea;
    background: #fafaff;
    border-radius: 4px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.temp_checkbox .temp_checkboxInput+.temp_checkboxLabel:after {
    content: "";
    position: absolute;
    top: 9px;
    left: 4px;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--white-color);
    border-bottom: 2px solid var(--white-color);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: rotate(-45deg) scale(0);
    -moz-transform: rotate(-45deg) scale(0);
    transform: rotate(-45deg) scale(0);
    opacity: 0;
}
.temp_checkbox .temp_checkboxInput:checked+.temp_checkboxLabel:before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.temp_checkbox .temp_checkboxInput:checked+.temp_checkboxLabel:after {
    opacity: 1;
    -webkit-transform: rotate(-45deg) scale(1);
    -moz-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}
#cookies_modal .modal-content .sc_secondary_btn {
    background-color: #171f26;
}
/* Modal css */

@media(min-width:576px) {
  #cookies_modal .modal-dialog {
    max-width: 1000px;
    width: 100%;
  }
}

#cookie_overlay_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999999999;
  pointer-events: auto;
}

.temp_cookies_wrapper,
.modal {
  z-index: 9999999999;
}

/* body.blocked {
  overflow: hidden;
} */

/* cookie */

/* Cookies CSs End */
@media(min-width:576px){
    #subscriptionModal .modal-dialog {
        max-width: 450px;
    }
}

/* AI tools pages css */
.onlyAitoolsPage .sc_header_btns .sc_header_signup_btn {
    border-radius: 60px;
}
.scTopSmallHeading {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #131a16;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 100px;
    padding: 6px 20px 6px 20px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: normal;
}
.scNewMainHeading{
    font-family: 'playfair display', serif;
}
.onlyAitoolsPage .sc_hero_title {
    font-size: 80px;
}
.onlyAitoolsPage .sc_primary_btn, .onlyAitoolsPage .sc_secondary_btn, .onlyAitoolsPage .accordion-body p, .onlyAitoolsPage .sc_sub_heading, .onlyAitoolsPage .sc_feature_content p, .onlyAitoolsPage .sc_footer_top > p, .onlyAitoolsPage .sc_footer_copyright p, .onlyAitoolsPage .sc_footer_legal_pages a {
    font-family: "Plus Jakarta Sans", sans-serif;
}
.onlyAitoolsPage .sc_sub_heading {
    font-weight: 400;
    font-family: 'Plus Jakarta Sans';
}
.onlyAitoolsPage .scDownloadAppBtn .sc_primary_btn {    
    background: var(--primary-color);
    border-radius: 60px;
}
.onlyAitoolsPage .sc_banner_wrapper{
    padding-bottom: 50px;
}
.onlyAitoolsPage .sc_left_top_heading, .onlyAitoolsPage .sc_gredient_heading, .onlyAitoolsPage .accordion-button {
    font-family: "Playfair Display", serif;
}
.scAiVoiceClonePage .sc_banner_wrapper, .scAiTextSpeechPage .sc_banner_wrapper{
    padding-bottom: 30px;
}
/* Video template page css start */
 /* input and output video start */
 .fe_inputOutput_input > video {
    border: 2px solid #06B873;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 30px 0px rgb(6 184 115 / 26%);
}
.fe_inputOutput_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1191px;
    margin: auto;
}
.fe_inputOutput_wrap .fe_inputOutput_input video.lazy-video {
    width: 246px;
}
.fe_inputOutput_output video {
    border: 2px solid var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    width: 276px;
    box-shadow: 0px 0px 30px 0px rgb(255 255 255 / 25%);
}
.fe_inputOutput_output {
    gap: 10px;
    display: flex;
}
.fe_inputOutput_img {
    padding: 0 1%;
}
.fe_input_img_vector {
    position: absolute;
    top: 20%;
    margin: auto;
}
.fe_input_img_vector.left {
    left: -14%;
}
.fe_input_img_vector.right {
    right: -23%;
}
.template_input_dark{
    display: none;
}
.sc_light_mode .template_input_dark{
    display: block;
}
.sc_light_mode .template_input_light{
    display: none;
}

@media (max-width: 1799px) {
    .fe_input_img_vector.right {
        right: -17%;
        width: 200px;
    }
}
@media (max-width: 1599px) {
.fe_inputOutput_wrap {
    max-width: 1051px;
}
.fe_input_img_vector.right {
    width: 170px;
}
}
@media (max-width: 1399px) {
    .fe_inputOutput_wrap {
        max-width: 981px;
    }
}
@media (max-width: 1299px) {
    .fe_inputOutput_wrap {
        max-width: 870px;
    }
    .fe_input_img_vector.right {
        right: -20%;
    }
    .fe_input_img_vector.left {
    width: 99px;
}
}
@media (max-width: 1199px) {
.fe_inputOutput_wrap {
        max-width: 720px;
    }
}
@media (max-width: 991px) {
    .fe_inputOutput_wrap {
        max-width: 560px;
    }
    .fe_input_img_vector.left {
        width: 58px;
    }
        .fe_input_img_vector.right {
        width: 99px;
        right: -19%
    }
}
@media (max-width: 767px) {
    .fe_input_img_vector.right {
        width: 109px;
        right: -33%;
    }
    .fe_inputOutput_wrap {
        max-width: 350px;
    }
        .fe_input_img_vector.left {
        width: 78px;
        left: -24%;
    }

}
@media (max-width: 575px) {
    .fe_inputOutput_wrap {
        padding-top: 70px;
    }
        .fe_inputOutput_wrap {
        max-width: 100%;
    }
        .fe_input_img_vector.left {
        left: 0;
        top: 0;
        transform: rotate(45deg);
    }

        .fe_input_img_vector.right {
        right: 21px;
        top: -11px;
        transform: rotate(-18deg);
    }

}
 /* input and output video end */
/* Video template page css end*/

/* Text to speech css start */
.fe-audio-wrapper {
 display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.fe-audio-card {
    border-radius: 140px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 10px 30px 0px #5391791A;
    border: 1px solid #1f2a34;
    background: #0b1219;
}

.fe-audio-avatar {
    width: 56px;
    height: 56px;
    background: #ddd;
    border-radius: 50%;
}
.fe-audio-avatar > img{
    height: auto;
}
.fe-audio-info {
    flex: 1;
}

.fe-audio-info h4 {
    margin: 0;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans';
}

.fe-audio-wave {
    color: #22c55e;
    font-size: 10px;
    letter-spacing: 2px;
}

.fe-audio-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fe-audio-play-btn img {
    transition: transform 0.2s ease;
}

.fe-audio-play-btn:active img {
    transform: scale(0.9);
}
.sc_light_mode .fe-audio-card{
    background-color: var(--white-color);
    border: 1px solid #C8E4D8;
}
.sc_light_mode .fe-audio-avatar {    
    background: #ddd;    
}
.sc_light_mode .fe-audio-info h4 {    
    color: #0d151c;
}
/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .fe-audio-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .fe-audio-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */
@media (max-width: 576px) {
    .fe-audio-wrapper {
        grid-template-columns: 1fr;
    }
}
/* Text to speech css end */

/* Product Avatar Page Scoped Styles */
.sc_product_avatar_page {
    position: relative;
}
.sc_product_avatar_page .sc_pa_how_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.sc_product_avatar_page .sc_pa_how_card {
    position: relative;
    background: #0b1219;
    border: 1px solid #1f2a34;
    border-radius: 20px;
    padding: 30px 24px 26px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sc_product_avatar_page .sc_pa_how_card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 184, 115, 0.5);
    box-shadow: 0 18px 32px rgba(6, 184, 115, 0.15);
}
.sc_product_avatar_page .sc_pa_how_step {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(6, 184, 115, 0.15);
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(6, 184, 115, 0.35);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_product_avatar_page .sc_pa_how_icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(6, 184, 115, 0.28);
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.2), transparent 40%),
        linear-gradient(150deg, rgba(6, 184, 115, 0.35), rgba(6, 184, 115, 0.1));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 30px rgba(6, 184, 115, 0.18);
    margin-bottom: 16px;
}
.sc_product_avatar_page .sc_pa_icon_svg {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.14));
}
.sc_product_avatar_page .sc_pa_icon_light {
    display: none;
}
.sc_product_avatar_page .sc_pa_how_card h3 {
    font-size: 22px;
    color: var(--white-color);
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
}
.sc_product_avatar_page .sc_pa_how_card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_product_avatar_page .sc_pa_feature_grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}
.sc_product_avatar_page .sc_pa_benefit_list {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}
.sc_product_avatar_page .sc_pa_benefit_list li {
    position: relative;
    padding-left: 26px;
    font-size: 16px;
    color: #d2dfd7;
    line-height: 1.7;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_product_avatar_page .sc_pa_benefit_list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(6, 184, 115, 0.6);
}
.sc_product_avatar_page .sc_pa_visual_card {
    position: relative;
    border-radius: 26px;
    padding: 28px;
    background: linear-gradient(160deg, rgba(15, 23, 30, 0.92), rgba(6, 184, 115, 0.08));
    border: 1px solid rgba(6, 184, 115, 0.28);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    min-height: 320px;
}
.sc_product_avatar_page .sc_pa_usecase_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}
.sc_product_avatar_page .sc_pa_usecase_card {
    background: #0b1219;
    border: 1px solid #1f2a34;
    border-radius: 16px;
    padding: 22px;
    min-height: 130px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sc_product_avatar_page .sc_pa_usecase_card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 184, 115, 0.5);
    box-shadow: 0 16px 32px rgba(6, 184, 115, 0.15);
}
.sc_pa_usecase_icons {
    margin-bottom: 15px;
}
.sc_product_avatar_page .sc_pa_usecase_card h3 {
    font-size: 18px;
    color: var(--white-color);
    font-family: "Playfair Display", serif;
}
.sc_product_avatar_page .sc_pa_why_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.sc_product_avatar_page .sc_pa_why_card {
    background: #0b1219;
    border: 1px solid #1f2a34;
    border-radius: 18px;
    padding: 24px;
    transition: transform .3s ease, border-color .3s ease;
}
.sc_product_avatar_page .sc_pa_why_card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 184, 115, 0.5);
}
.sc_product_avatar_page .sc_pa_why_icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.22), transparent 42%),
        linear-gradient(155deg, rgba(10, 26, 22, 0.95), rgba(6, 184, 115, 0.22));
    border: 1px solid rgba(6, 184, 115, 0.35);
    margin-bottom: 12px;
}
.sc_product_avatar_page .sc_pa_why_card h3 {
    font-size: 22px;
    color: var(--white-color);
    font-family: "Playfair Display", serif;
    margin-bottom: 8px;
    margin-top: 20px;
}
.sc_product_avatar_page .sc_pa_why_card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_product_avatar_page .sc_pa_testimonials_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.sc_product_avatar_page .sc_pa_testimonial_card {
    background: #0b1219;
    border: 1px solid #1f2a34;
    border-radius: 18px;
    padding: 26px 24px;
    text-align: left;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sc_product_avatar_page .sc_pa_testimonial_card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 184, 115, 0.5);
    box-shadow: 0 16px 28px rgba(6, 184, 115, 0.14);
}
.sc_product_avatar_page .sc_pa_testimonial_stars {
    display: flex;
    margin-bottom: 20px;
    color: #6CF3BE;
}
.sc_product_avatar_page .sc_pa_star {
    width: 18px;
    height: 18px;
}
.sc_product_avatar_page .sc_pa_testimonial_card p {
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.7;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_testimonial_name{
    color: var(--white-color);
}
.sc_pa_usecases_wrapper .sc_sub_heading{
    font-size: 16px;
}
body.sc_light_mode .sc_testimonial_name{
    color: #0d151c;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_icon_dark {
    display: none;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_icon_light {
    display: block;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_how_card,
body.sc_light_mode .sc_product_avatar_page .sc_pa_usecase_card,
body.sc_light_mode .sc_product_avatar_page .sc_pa_why_card {
    background: #fff;
    border-color: #d9e3dc;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_how_card h3,
body.sc_light_mode .sc_product_avatar_page .sc_pa_usecase_card h3,
body.sc_light_mode .sc_product_avatar_page .sc_pa_why_card h3 {
    color: #121212;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_how_card p,
body.sc_light_mode .sc_product_avatar_page .sc_pa_why_card p {
    color: #4c5b52;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_testimonial_card {
    background: #fff;
    border-color: #d9e3dc;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_testimonial_card p {
    color: #4c5b52;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_testimonial_stars {
    color: #0BB874;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_visual_card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(6, 184, 115, 0.1));
    border-color: rgba(6, 184, 115, 0.2);
    box-shadow: 0 22px 32px rgba(16, 34, 26, 0.1);
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_visual_product {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(6, 184, 115, 0.2);
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_visual_label {
    color: #0d151c;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_benefit_list li {
    color: #3d6b52;
}
body.sc_light_mode .sc_product_avatar_page .sc_pa_usecase_icon,
body.sc_light_mode .sc_product_avatar_page .sc_pa_why_icon,
body.sc_light_mode .sc_product_avatar_page .sc_pa_how_icon {
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.98), transparent 36%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(220, 241, 232, 0.95));
    border-color: rgba(6, 184, 115, 0.18);
}
@media(max-width:1199px){
    .sc_product_avatar_page .sc_pa_how_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sc_product_avatar_page .sc_pa_feature_grid {
        grid-template-columns: 1fr;
    }
    .sc_product_avatar_page .sc_pa_testimonials_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media(max-width:767px){
    .sc_product_avatar_page .sc_pa_how_grid,
    .sc_product_avatar_page .sc_pa_why_grid {
        grid-template-columns: 1fr;
    }
    .sc_product_avatar_page .sc_pa_testimonials_grid {
        grid-template-columns: 1fr;
    }
    .sc_product_avatar_page .sc_pa_visual_card {
        padding: 22px;
    }
    .sc_product_avatar_page .sc_pa_visual_product {
        margin-top: 20px;
    }
}

.sc_ta_steps_wrapper,
.sc_ta_feature_wrapper,
.sc_ta_why_wrapper,
.sc_ta_compare_wrapper,
.sc_ta_final_cta_wrapper {
    position: relative;
}
.sc_ta_steps_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.sc_ta_step_card {
    position: relative;
    background: #0b1219;
    border: 1px solid #1f2a34;
    border-radius: 20px;
    padding: 28px 26px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.sc_ta_step_card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 184, 115, 0.45);
    box-shadow: 0 20px 40px rgba(6, 184, 115, 0.12);
}
.sc_ta_step_no {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(6, 184, 115, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 184, 115, 0.35);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.sc_step_icon{
    margin-bottom: 15px;
}
.sc_ta_step_card h3,
.sc_ta_why_card h3,
.sc_ta_compare_card h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff;
    font-family: "Playfair Display", serif;
}
.sc_ta_why_card h3 {
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 0;
}
.sc_ta_step_card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_ta_feature_box {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 32px;
}
.scTalkingAvatarPage .sc_ta_feature_box{
    grid-template-columns: 0.72fr .98fr;
}
.sc_ta_feature_list {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}
.sc_ta_feature_list li {
    position: relative;
    font-size: 16px;
    line-height: 1.65;
    color: #d2dfd7;
    padding-left: 24px;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_ta_feature_list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 16px rgba(6, 184, 115, 0.8);
}
.sc_ta_feature_media img {
    width: 100%;
    display: block;
}
.sc_ta_why_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.sc_ta_why_card {
    background: #0b1219;
    border: 1px solid #1f2a34;
    border-radius: 16px;
    padding: 22px;
    min-height: 140px;
    transition: transform .3s ease, border-color .3s ease;
}
.sc_ta_why_card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 184, 115, 0.5);
}
.sc_ta_why_icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #d7fff0;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.22), transparent 42%),
        linear-gradient(155deg, rgba(10, 26, 22, 0.95), rgba(6, 184, 115, 0.22));
    border: 1px solid rgba(6, 184, 115, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -8px 16px rgba(0, 0, 0, 0.45),
        0 12px 26px rgba(6, 184, 115, 0.22);
    margin-bottom: 12px;
    overflow: hidden;
}
.sc_ta_why_icon:before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 12px;
    opacity: 0.6;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}
.sc_ta_why_icon:after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 10px;
    opacity: 0.55;
    pointer-events: none;
}
.sc_ta_why_icon_svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}
body.sc_light_mode .sc_ta_why_icon_svg {
    filter: drop-shadow(0 8px 12px rgba(6, 184, 115, 0.2));
}
.sc_ta_compare_grid {
    position: relative;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(106, 132, 153, 0.22);
    background:
        radial-gradient(circle at top left, rgba(6, 184, 115, 0.18), transparent 35%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, rgba(9, 17, 24, 0.95), rgba(14, 28, 40, 0.92));
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}
.sc_ta_compare_intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
.sc_ta_compare_kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #cff7e6;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_ta_compare_kicker:before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
    opacity: .7;
}
body.sc_light_mode .sc_ta_compare_kicker {
    color: #0d151c;
}
body.sc_light_mode .sc_ta_compare_kicker:before {
    background-color: #0d151c;
}
body.sc_light_mode .sc_ta_compare_card {
    box-shadow: none;
}
.sc_ta_compare_hint {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(210, 223, 215, 0.82);
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_ta_compare_slider {
    overflow: hidden;
}
.sc_ta_compare_slider .swiper-wrapper {
    align-items: stretch;
}
.sc_ta_compare_slider .swiper-slide {
    height: auto;
}
.sc_ta_compare_card {
    height: 100%;
    padding: 10px;
    border-radius: 28px;
    border: 1px solid rgba(148, 171, 190, 0.16);
    background: rgba(255, 255, 255, 0.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 40px rgba(0, 0, 0, 0.16);
}
.sc_ta_compare_split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 320px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(148, 171, 190, 0.2);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 34%),
        linear-gradient(180deg, #081018 0%, #0d1721 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.sc_ta_compare_panel {
    position: relative;
    min-height: 360px;
}
.sc_ta_compare_panel + .sc_ta_compare_panel {
    border-left: 2px solid rgba(255, 255, 255, 0.12);
}
.sc_ta_compare_panel img,
.sc_ta_compare_panel video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.sc_ta_compare_panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.sc_ta_compare_before::after {
    background: linear-gradient(90deg, rgba(6, 10, 14, 0.18) 0%, rgba(6, 10, 14, 0.04) 100%);
}
.sc_ta_compare_after::after {
    background: linear-gradient(270deg, rgba(6, 184, 115, 0.08) 0%, rgba(6, 184, 115, 0.02) 100%);
}
.sc_ta_compare_label {
    position: absolute;
    top: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 15, 22, 0.5);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_ta_compare_before .sc_ta_compare_label {
    left: 20px;
    color: #f8d6d8;
}
.sc_ta_compare_after .sc_ta_compare_label {
    right: 20px;
    color: #d2fff0;
}
.sc_ta_final_cta_box {
    border-radius: 32px;
    padding: 72px 24px;
    background:
        radial-gradient(120% 120% at 50% 0%, rgba(6, 184, 115, 0.32) 0%, rgba(6, 12, 18, 0.98) 65%),
        linear-gradient(135deg, rgba(9, 17, 24, 0.92), rgba(10, 30, 24, 0.9));
    border: 1px solid rgba(120, 255, 198, 0.25);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.sc_ta_final_cta_box:before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 184, 115, 0.35), rgba(6, 184, 115, 0));
    right: -140px;
    top: -140px;
    filter: blur(6px);
    opacity: 0.9;
}
.sc_ta_final_cta_box:after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    opacity: 0.6;
    pointer-events: none;
}
.sc_ta_final_cta_icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.26), transparent 40%),
        linear-gradient(155deg, rgba(9, 26, 22, 0.95), rgba(6, 184, 115, 0.28));
    border: 1px solid rgba(120, 255, 198, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -10px 18px rgba(0, 0, 0, 0.5),
        0 18px 36px rgba(6, 184, 115, 0.25);
    overflow: hidden;
}
.sc_ta_final_cta_icon:before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    opacity: 0.65;
    pointer-events: none;
}
.sc_ta_final_cta_icon_svg {
    position: relative;
    z-index: 1;
    width: 46px;
    height: 46px;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.35));
    fill: var(--white-color);
}
.sc_ta_final_cta_kicker {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(210, 255, 234, 0.85);
    margin-bottom: 14px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.sc_ta_final_cta_title {
    font-size: 54px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.sc_ta_final_cta_subtitle {
    color: rgba(210, 223, 215, 0.92);
    font-size: 20px;
    line-height: 1.7;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
}
.sc-animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.sc-animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
body.sc_light_mode .sc_ta_final_cta_icon_svg {
    fill: var(--primary-color);
}
body.sc_light_mode .sc_ta_step_card,
body.sc_light_mode .sc_ta_feature_box,
body.sc_light_mode .sc_ta_why_card,
body.sc_light_mode .sc_ta_compare_grid {
    background: #fff;
    border-color: #d9e3dc;
}
body.sc_light_mode .sc_ta_step_card h3,
body.sc_light_mode .sc_ta_why_card h3,
body.sc_light_mode .sc_ta_final_cta_title {
    color: #121212;
}
body.sc_light_mode .sc_ta_step_card p,
body.sc_light_mode .sc_ta_final_cta_subtitle,
body.sc_light_mode .sc_ta_final_cta_kicker {
    color: #4c5b52;
}
body.sc_light_mode .sc_ta_compare_grid {
    background:
        radial-gradient(circle at top left, rgba(6, 184, 115, 0.08), transparent 35%),
        radial-gradient(circle at top right, rgba(11, 18, 25, 0.06), transparent 24%),
        linear-gradient(145deg, #ffffff, #f3faf6);
}
body.sc_light_mode .sc_ta_compare_hint {
    color: #58675f;
}
body.sc_light_mode .sc_ta_compare_card {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(17, 24, 39, 0.08);
}
body.sc_light_mode .sc_ta_compare_split {
    background:
        radial-gradient(circle at top, rgba(6, 184, 115, 0.09), transparent 38%),
        linear-gradient(180deg, #f8fbf9 0%, #edf6f1 100%);
    border-color: #d9e3dc;
}
body.sc_light_mode .sc_ta_compare_panel + .sc_ta_compare_panel {
    border-left-color: rgba(17, 24, 39, 0.08);
}
body.sc_light_mode .sc_ta_compare_label {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(17, 24, 39, 0.08);
}
body.sc_light_mode .sc_ta_compare_before .sc_ta_compare_label {
    color: #9a4e57;
}
body.sc_light_mode .sc_ta_compare_after .sc_ta_compare_label {
    color: #0f8b5e;
}
body.sc_light_mode .sc_ta_final_cta_box {
    background:
        radial-gradient(120% 120% at 50% 0%, rgba(6, 184, 115, 0.12) 0%, rgba(255, 255, 255, 0.95) 62%),
        linear-gradient(145deg, #f7fffb, #e7f6ef);
    border-color: rgba(6, 184, 115, 0.2);
    box-shadow:
        0 26px 60px rgba(20, 60, 40, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
body.sc_light_mode .sc_ta_final_cta_icon {
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), transparent 42%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(220, 241, 232, 0.95));
    border-color: rgba(6, 184, 115, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -8px 16px rgba(6, 184, 115, 0.08),
        0 16px 28px rgba(16, 34, 26, 0.08);
}
body.sc_light_mode .sc_ta_final_cta_icon_svg {
    filter: drop-shadow(0 10px 14px rgba(6, 184, 115, 0.2));
}
.sc_ta_stats_wrapper {
    position: relative;
}
.sc_ta_stats_panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.sc_ta_stat_card {
    position: relative;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.sc_ta_stat_value {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color:var(--white-color);
}
body.sc_light_mode .sc_ta_stat_value {
    color: #0d151c;
}

.sc_ta_stat_desc {
    margin: 14px 0 0;            
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-color);
    font-family: 'Plus Jakarta Sans';
}

.sc_showcase_platforms_section {
    --sc-showcase-platforms-bg: rgba(8, 27, 20, 0.6);
    --sc-showcase-platforms-border: rgba(136, 255, 208, 0.15);
    --sc-showcase-platforms-ink: #E8FFF7;
    --sc-showcase-platforms-muted: rgba(232, 255, 247, 0.7);
    --sc-showcase-platforms-glow: rgba(11, 184, 116, 0.25);
    position: relative;
    padding: 40px 0;
}

body.sc_light_mode .sc_showcase_platforms_section {
    --sc-showcase-platforms-bg: #F4FBF8;
    --sc-showcase-platforms-border: rgba(31, 74, 55, 0.12);
    --sc-showcase-platforms-ink: #0E2A1E;
    --sc-showcase-platforms-muted: rgba(14, 42, 30, 0.7);
    --sc-showcase-platforms-glow: rgba(11, 184, 116, 0.18);
}
.sc_showcase_platforms_section .sc_showcase_platforms_heading {
    margin-bottom: 26px;
}
.sc_showcase_platforms_section .sc_showcase_platforms_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}

.sc_showcase_platforms_section .sc_showcase_platform_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;    
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;    
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.sc_showcase_platform_logo > img {
    width: 50px;
    height: auto;
    object-fit: contain;
}
body.sc_light_mode .sc_showcase_platforms_section .sc_showcase_platform_logo {
    background: rgba(255, 255, 255, 0.75);
}

.sc_showcase_platforms_section .sc_showcase_platform_logo svg {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    color: inherit;
}
.sc_showcase_platforms_section .sc_showcase_platform_name {
    font-size: 25px;
    font-weight: 700;
}
.sc_showcase_platforms_section .sc_showcase_platform_logo {
    color: #fff;
}
body.sc_light_mode .sc_showcase_platforms_section .sc_showcase_platform_logo {
    color: #050A0F;
}

@media (max-width: 991px) {
    .sc_showcase_platforms_section {
    padding: 20px 0;
}

    .sc_showcase_platforms_section .sc_showcase_platforms_panel {
        padding: 32px 24px;
    }

    .sc_showcase_platforms_section .sc_showcase_platforms_grid {
        /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-top: 30px;
    }
    .sc_showcase_platform_logo > img {
        width: 30px; 
    }
}

@media (max-width: 575px) {
    .sc_showcase_platforms_section .sc_showcase_platforms_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .sc_showcase_platforms_section .sc_showcase_platform_logo {
        justify-content: flex-start;
        padding: 14px 12px;
    }
}
/* Demo video for banner */
.sc_demo_banner_video {
    position: relative;
    background: linear-gradient(180deg, #06B873 0%, rgba(5, 10, 15, 0) 80%);
    max-width: 1000px;
    width: 100%;
    border-radius: 35px;
    padding: 15px;
    margin: auto;
    margin-top: 40px;
}
.sc_demo_banner_video iframe, .sc_demo_banner_video video {
    border-radius: 20px;
}
.sc_demo_banner_video video{
    width: 100%;
    height: 100%;    
}
/* Demo video for banner */

/* AI tools pages css */

/* Responsive CSS Start */
@media(min-width:768px){
    .sc_swiper_pagination .swiper-button-next, .sc_swiper_pagination .swiper-button-prev{
        opacity: 0;
        visibility: hidden;
    }
    .sc_banner_slider:hover .swiper-button-next, .sc_banner_slider:hover .swiper-button-prev, .sc_big_slider:hover .swiper-button-next, .sc_big_slider:hover .swiper-button-prev, .sc_big_slider_reverse:hover .swiper-button-next, .sc_big_slider_reverse:hover .swiper-button-prev{
        opacity: 1;
        visibility: visible;
    }
    .nav-link:hover{
        background: var(--primary-color);
    }
    .sc_volume_icon{
        opacity: 0;
        visibility: hidden;
    }
    .sc_explore_img:hover .sc_volume_icon{
        opacity: 1;
        visibility: visible;
    }
    .sc_headder_menu ul li a:hover{
        color: var(--primary-color);
    }
    .sc_download_app_btn_effect {
        opacity: 0;
        visibility: hidden;
    }
    .sc_light_dark_mode:hover {
        background: #000000;
    }
    body.sc_light_mode .sc_light_dark_mode:hover {
        background: rgb(255 255 255);
        box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
    }
}
@media(min-width:992px){
    .tabMobileOnly, .tab-content-mobile{
        display: none !important;
    }   
}
@media(min-width:1200px){
    header.sc_header_wrapper.sc_header_fixed .sc_headder_menu > ul {
        background: transparent;
        backdrop-filter: none;
    }
    .onlyAitoolsPage .sc_headder_menu > ul, body.onlyAitoolsPage.sc_light_mode .sc_headder_menu > ul {
        background: transparent;
    }
     .sc_ta_step_no {        
        font-size: 14px;        
        padding: 8px 18px;        
        top: -17px;
        left: auto;
        right: 30px;
        transform: none;
    }
    .sc_product_avatar_page .sc_pa_how_step {               
        left: auto;
        right: 30px;
        transform: none;
    }
}
@media(max-width:1440px){
    .sc_cta_right .swiper-button-next {
        right: -10px;
    }
    .sc_cta_right .swiper-button-prev {
        left: -10px;
    }
    .sc_footer_legal_pages {
        gap: 20px;
    }
}
@media(max-width:1399px){
    .sc_feature_content .sc_feat_number {
        font-size: 80px;
    }
    .sc_feature_content h3 {
        font-size: 38px;
    }
}
@media(max-width:1300px){
    .sc_feature_video {
        max-width: 600px;
        border-radius: 30px;
        padding: 10px;
    }
    .sc_cta_video {
        border-radius: 30px;
        padding: 10px;
    }
    .sc_cta_right{
        max-width: 600px;
    }
    .sc_whyus_box {
        padding: 30px;
    }
    .sc_whyus_content h2 {
        font-size: 23px;
    }
    .sc_big_slider_reverse {
        margin-top: 10px;
    }
    .sc_cta_wrapper .sc_common_heading {
        max-width: 500px;
    }
    .sc_faq_right {
        max-width: 580px;
    }
    .sc_headder_menu ul {
        gap: 25px;
    }
    .sc_price {
        font-size: 38px;
    }
}
@media(max-width:1250px){
    .sc_headder_menu ul {
        gap: 20px;
    }
    .sc_headder_menu > ul {
        padding: 15px 20px;
    }
}
@media(max-width:1199px){
    .sc_ta_steps_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sc_ta_why_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sc_ta_feature_box, .scTalkingAvatarPage .sc_ta_feature_box {
        grid-template-columns: 1fr;
    }
    .sc_ta_final_cta_title {
        font-size: 44px;
    }
}
@media(max-width:1199px){
    /* Header */
    .sc_header_wrapper {
        top: 0px;
        position: fixed;
        background: rgba(0,0,0,0.3);
        backdrop-filter: blur(10px);
        padding: 15px 0;
        z-index: 999;
    }
    .sc_header_wrapper.sc_header_fixed {
        top: 0;
    }
    .tb_bar_open .sc_header_wrapper{
        top: 50px;
    }
    .sc_toggle_menu {
        display: block;
    }
    .sc_toggle_menu {
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        padding: 0;
        outline: none;
    }
    .sc_toggle_line {
        fill: none;
        stroke: var(--white-color);
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .sc_toggle_line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .sc_toggle_line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }
    .sc_toggle_line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .scMenuOpen .sc_toggle_line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .scMenuOpen .sc_toggle_line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }
    .scMenuOpen .sc_toggle_line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .sc_headder_menu > ul {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start !important;
        background: #080f16;
        max-width: 300px;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -300px;
        padding: 20px 0 0 0;
        transition: all 0.3s;
        border-radius: 0;
        z-index: 9;
    }
    .scMenuOpen .sc_headder_menu ul{
        left: 0;
    }
    .sc_headder_menu > ul > li {
        padding: 0 0 20px 20px;
        border-bottom: 1px solid;
        display: block;
        width: 100%;
    }
     body.sc_light_mode .sc_headder_menu ul li {
        border-bottom: 1px solid #00000014; 
    }
    .sc_headder_menu > ul.sc_dropdown_menu li{
        padding: 0;        
    }
    .sc_dropdown_menu li { 
        border-bottom: 1px solid #121212;
    }
    body.sc_light_mode .sc_headder_menu > ul.sc_dropdown_menu li {
        border-bottom: 1px solid #00000014; 
    }
    .sc_headder_menu ul li:last-child{
        border:none
    }
    .sc_header_btns {
        gap: 10px;
    }
    .login_btn {
        margin-right: 10px;
    }
    body.sc_light_mode .sc_headder_menu > ul {
        background-color: var(--white-color);
        box-shadow: 0 0 30px 0 rgba(0,0,0,0.08);
    }
    body.sc_light_mode ul.sc_dropdown_menu {
        background-color: #f1f1f1;
    }
    body.sc_light_mode .sc_headder_menu ul li:last-child {
        border-bottom: none;
    }

    /* Mobile Dropdown Styles */
    .sc_ai_tools_dropdown {
        position: relative;
    }

    .sc_dropdown_menu {
        position: static;
        background: rgba(4, 8, 11, 0.8);
        border: none;
        border-radius: 10px; 
        padding: 0;
        margin: 0;        
        margin-right: 15px;        
        min-width: auto;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .sc_dropdown_menu.active {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        transform: none;
        padding: 12px 0;
        margin-top: 15px;
    }

    .sc_dropdown_menu li a {
        padding: 10px 24px;
        font-size: 14px;
    }

    .sc_dropdown_menu li a:hover {
        background: rgba(6, 184, 115, 0.1);
    }

    .sc_dropdown_toggle .sc_dropdown_arrow {
        transform: rotate(0deg);
    }

    .sc_ai_tools_dropdown.active > .sc_dropdown_toggle .sc_dropdown_arrow {
        transform: rotate(180deg);
    }
    /* End Mobile Dropdown Styles */
    
    /* Header */
    .sc_banner_headings .sc_hero_title {
        font-size: 60px;
    }
    .sc_banner_headings {
        padding-top: 30px;
    }
    .sc_banner_headings .sc_sub_heading {
        font-size: 20px;
        max-width: 700px;
    }

    .sc_feature_content .sc_feat_number {
        font-size: 60px;
    }
    .sc_feature_content h3 {
        font-size: 30px;
        font-weight: 700;
        margin-top: 0;
    }
    .sc_feature_content p {
        font-size: 18px;
    }
    .sc_feature_content {
        max-width: 500px;
    }
    .sc_top_heading, .sc_left_top_heading {
        font-size: 80px;
    }
    .sc_gredient_heading {
        font-size: 48px;
    }
    .sc_sub_heading {
        font-size: 18px;
    }
    .sc_whyus_box {
        border-radius: 15px;
        padding: 30px 20px 20px;
        min-height: 300px;
    }
    .sc_whyus_content > img {
        width: 60px;
        height: auto;
        object-fit: contain;
    }
    .onlyAitoolsPage .sc_whyus_content > img {
        width: 40px;
        height: auto;
        object-fit: contain;
    }
    .sc_whyus_content h2 {
        font-size: 20px;
        font-weight: 500;
    }
    .sc_whyus_content p {
        font-size: 16px;
    }
    .sc_demo_wrapper .sc_common_heading {
        max-width: 750px;
    }
    .sc_demo_wrapper .sc_common_heading .sc_sub_heading {
        max-width: 590px;
    }
    .nav-tabs {
        padding: 6px;
    }
    .nav-link {
        min-height: 40px;
        font-size: 14px;
    }
    .sc_explore_title {
        font-size: 16px;
        max-width: 160px;
    }
    .sc_cta_wrapper .sc_common_heading {
        max-width: 440px;
    }
    .sc_cta_right {
        max-width: 550px;
    }
    .sc_faq_parent {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    .sc_faq_img{
        display: none;
    }
    .accordion-item {
        text-align: left;
    }
    .sc_faq_right {
        max-width: 800px;
        margin-top: 20px;
    }
    .sc_whyus_wrapper .sc_common_heading {
        max-width: 750px;
    }
    .sc_whyus_wrapper .sc_common_heading .sc_sub_heading {
        max-width: 550px;
    }
    .sc_creation_page_wrapper .sc_demo_wrapper {
        padding: 120px 0 80px 0;
    }
    .sc_contact_wrapper {
        padding: 120px 0 30px 0;
    }
    .sc_price_box {
        min-height: 920px;
        padding: 30px 20px;
    }
    .sc_dfy_banner_wrapper {
        padding-top: 20px !important;
    }
    .sc_price {
        flex-wrap: wrap;
    }
    .sc_banner_offer_wrapper {
        padding-top: 0;
    }
    .sc_footer_legal_pages {
        gap: 15px;
    }
    .onlyAitoolsPage .sc_whyus_box {
        min-height: 260px;
    }
    .onlyAitoolsPage .sc_whyus_box {
        min-height: 200px;
    }
}
@media(max-width:767px){
    .sc_ta_steps_grid,
    .sc_ta_why_grid {
        grid-template-columns: 1fr;
    }
    .sc_ta_compare_grid {
        padding: 20px;
        margin-top: 30px;
    }
    .sc_ta_compare_intro {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 18px;
    }
    .sc_ta_compare_card {
        padding: 8px;
        border-radius: 24px;
    }
    .sc_ta_step_card h3,
    .sc_ta_why_card h3,
    .sc_ta_compare_card h3 {
        font-size: 23px;
    }
    .sc_ta_compare_split {
        min-height: 280px;
        border-radius: 22px;
    }
    .sc_ta_compare_panel {
        min-height: 280px;
    }
    .sc_ta_compare_label {
        top: 14px;
        padding: 8px 12px;
        font-size: 10px;
    }
    .sc_ta_compare_before .sc_ta_compare_label {
        left: 14px;
    }
    .sc_ta_compare_after .sc_ta_compare_label {
        right: 14px;
    }
    .sc_ta_final_cta_box {
        padding: 44px 18px;
    }
    .sc_ta_final_cta_title {
        font-size: 34px;
    }
    .sc_ta_final_cta_subtitle {
        font-size: 18px;
    }
    .onlyAitoolsPage .sc_banner_wrapper {
        padding-bottom: 0;
    }
    .scAiVoiceClonePage .sc_banner_wrapper, .scAiTextSpeechPage .sc_banner_wrapper {
        padding-bottom: 20px;
    }
    .sc_ta_why_wrapper > .container > .row {
        margin-top: 20px;
    }
    .sc_demo_banner_video {
        border-radius: 20px;
        padding: 8px; 
        margin-top: 30px;
    }
    .sc_demo_banner_video iframe, .sc_demo_banner_video video {
        border-radius: 13px;
    }
    .onlyAitoolsPage .sc_sub_heading { 
        text-wrap: balance;
    }
    .onlyAitoolsPage .sc_whyus_box {
        min-height: auto;
    }
}
@media(max-width:1024px){
    .sc_feature_items, .sc_feature_items:nth-child(even) {
        flex-direction: column;
    }
    .sc_feature_content {
        max-width: 800px;
        text-align: center;
    }
    .sc_feature_video {
        max-width: 800px;
        margin-top: 10px;
    }
    .sc_feature_items {
        background: #080F16;
        border: 1px solid #0F1B26;
        border-radius: 6px;
        max-width: 900px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 30px 30px 100px 30px;
        margin-bottom: 50px;
    }
    body.sc_light_mode .sc_feature_items {
        background: var(--white-color);
        border: 1px solid rgba(0,0,0,0.1); 
    }
    body.sc_light_mode .sc_top_heading, body.sc_light_mode .sc_faq_left .sc_left_top_heading, body.sc_light_mode .sc_feature_content .sc_feat_number {        
        opacity: 0.2;
    }
    .sc_feature_content .sc_primary_btn {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        max-width: 300px;
        width: 100%;
        margin: auto;
    }
    .sc_top_heading, .sc_left_top_heading {
        font-size: 70px;
    }
    .sc_gredient_heading {
        font-size: 40px;
        margin-top: -10px;
    }
    .sc_cta_parent {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
    .sc_cta_right {
        max-width: 800px;
    }
    .sc_demo_wrapper .sc_common_heading {
        max-width: 600px;
    }
    .sc_cta_wrapper .sc_common_heading {
        max-width: 550px;
        text-align: center;
    }
    .sc_cta_left .scDownloadAppBtn {
        justify-content: center !important;
        position: absolute;
        bottom: 60px;
        max-width: 470px;
        width: 100%;
        left: 0;
        right: 0;
        margin: auto;
    }
    .sc_cta_video {
        margin-top: 20px;
    }
    .sc_cta_wrapper {
        padding: 80px 0 150px 0;
    }
    .sc_language_wrapper .sc_common_heading {
        max-width: 700px;
    }
    .sc_faq_wrapper .sc_common_heading {
        max-width: 500px;
    }
    .sc_placehold_logo {
        max-width: 700px;
    }
    .sc_footer_top > a {
        top: -40px;
    }
    .sc_footer_top > p {
        margin-top: -15px;
    }
    .sc_footer_top {
        padding-bottom: 30px;
    }
    .sc_footer_copyright {
        padding-top: 30px;
        flex-direction: column-reverse;
        gap: 25px;
    }
    .sc_footer_legal_pages {
        flex-wrap: wrap;
        padding-top: 20px;
        justify-content: center !important;
    }
    .sc_whyus_wrapper .sc_common_heading {
        max-width: 600px;
    }
    .sc_cta_left .scDownloadAppBtn .sc_app_btn {
        display: none;
    }
}
@media(max-width:991px){
    .sc_banner_headings .sc_hero_title {
        font-size: 50px;
    }
    .sc_banner_headings .sc_sub_heading {
        font-size: 18px;
        max-width: 600px;
        padding: 20px 0 20px 0;
    }
    .sc_explore_box {
        flex: 0 0 23%;
    }
    .sc_whyus_boxs_parent .row .col-lg-3:nth-of-type(even) .sc_whyus_box {
        background: linear-gradient(180deg, rgb(200 255 234 / 0%) 0%, rgb(102 189 156 / 20%) 100%);
    }
    .sc_whyus_box {
        min-height: 250px;
    }
    .sc_demo_wrapper .sc_common_heading {
        max-width: 600px;
    }
    .nav-tabs {
        gap: 6px;
    }
    .nav-link {
        min-height: 32px;
        font-size: 13px;
        padding: 0 10px;
    }
    .sc_demo_video {
        border-radius: 25px;
        padding: 10px;
    }
    .sc_price_box {
        min-height: auto;
    }
    .desktopTabOnly{
        display: none !important;
    }
    .sc_price_box {
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 30px;
    }
    .tb_bottom_sticky_bar p {
        font-size: 16px;
    }
    .sc_price_box_parent {
        max-width: 500px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .sc_videoBox {
        border-radius: 30px;
        padding: 10px;
    }
    .sc_ta_stats_panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 28px;
    }

    .sc_ta_stat_card:last-child {
        grid-column: 1 / -1;
    }
}
@media(max-width:900px){
    .bellWithBtn > img {
        display: none;
    }
    .bellWithBtn {
        flex: none;
        margin-left: 0;
    }
    .bellWithBtn > a {
        padding: 7px 15px;
        margin-left: 0;
    }
    .tb_bottom_sticky_bar {
        justify-content: space-between !important;
        padding: 5px 50px 5px 10px;
    }
    .tb_bottom_sticky_bar p {
        font-size: 16px;
        max-width: 400px;
    }
    .tb_bar_open .sc_header_wrapper {
        top: 62px;
    }
}
@media(max-width:767px){
    #bodyParticalCanvas{
        display: none;
    }
    .sc_banner_headings .sc_hero_title {
        font-size: 39px;        
        font-weight: 700;
    }
    .sc_banner_headings .sc_sub_heading {
        font-size: 16px;
        max-width: 600px;
        padding: 20px 0 20px 0;
    }
    .sc_banner_headings .sc_primary_btn {
        min-height: 50px;
        font-size: 16px;
        font-weight: 600;
    }
    .sc_banner_slider, .sc_ai_tool_banner_slider {
        margin-top: 50px;    
    }
    .sc_banner_slider_item_img {
        border-radius: 10px;
        font-size: 0;        
    }
    .sc_header_btns .sc_primary_btn{
        min-width: 120px;
        min-height: 40px;
        padding: 0 20px;
        font-size: 15px;
        font-weight: 500;
    }
    .sc_header_login_btn {
        font-size: 14px;
        font-weight: 500;
    }
    .sc_explore_flex {
        gap: 12px;
    }
    .sc_explore_box {
        flex: 0 0 30%;
    }
    .sc_explore_title {
        font-size: 16px;
        font-weight: 400;
        bottom: 12px;
    }
    .sc_top_heading, .sc_left_top_heading {
        font-size: 60px;
        transform: scale(1);
    }
    .sc_gredient_heading {
        font-size: 35px;
    }
    .sc_sub_heading {
        font-size: 16px;
    }
    .sc_feature_wrapper .sc_common_heading {
        max-width: 590px;
    }
    .sc_feature_wrapper .sc_common_heading .sc_sub_heading {
        max-width: 500px;
    }
    .nav-tabs, body.sc_light_mode .nav-tabs {
        gap: 10px;
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .nav-link {
        padding: 0 15px;
    }
    .sc_language_wrapper .sc_common_heading {
        max-width: 500px;
    }
    .sc_lang_mockup {
        padding-top: 30px;
    }
    .accordion-button {
        font-size: 18px !important;
        font-weight: 400;
        padding: 15px !important;
    }
    .accordion-body {
        padding: 0 15px 15px 15px !important;
    }
    .accordion-body p {
        font-size: 16px;
    }
    .accordion-item {
        margin-bottom: 12px;
    }
    .accordion-button:not(.collapsed) {
        padding: 20px 15px 10px !important;
    }
    .sc_faq_wrapper .sc_common_heading {
        max-width: 450px;
    }
    .sc_placehold_logo {
        max-width: 450px;
    }
    .sc_footer_top > a {
        top: -30px;
    }
    .sc_footer_top > p {
        font-size: 16px;
    }
    .sc_pricing_wrapper .sc_common_heading {
        max-width: 430px;
    }
    .sc_contact_box {
        padding: 30px;
    }
    .sc_input_flex {
        flex-direction: column;
        justify-content: flex-start !important;
        margin-bottom: 0;
        gap: 0;
    }
    .sc_input_flex .sc_input_group {
        width: 100%;
    }
    .sc_contact_wrapper {
        padding: 120px 0 0px 0;
    }
    .sc_cta_wrapper .sc_common_heading {
        max-width: 450px;
    }
    .sc_volume_icon img {
        width: 50px;
        height: 50px;
    }
    .sc_demo_wrapper {
        padding-bottom: 40px;
    }
    .sc_explore_wrapper {
        padding-top: 40px;
    }
    .table>thead>tr>th:first-child, .table>tbody>tr>td:first-child {
        padding-right: 10px;
    }
    .table thead th {
        font-weight: 500;
        font-size: 15px;
    }
    .table>tbody>tr>td {
        font-size: 15px;
        font-weight: 300;
    }
    .table {
        min-width: 600px;
    }
    .wa-messenger-svg-whatsapp {
        width: 30px !important;
        height: auto !important;
    }
    div#wa-widget-send-button > div {
        font-size: 15px !important;
    }
    #wa-widget-send-button {
        height: 40px !important;
        gap: 3px !important;
        right: 20px !important;
    }
    .sc_light_dark_mode {
        bottom: 80px;
        width: 50px;
        height: 50px;
        right: 20px; 
    }
    .sc_light_dark_mode svg {
        width: 22px;
        height: 22px;
    }
    .sc_logo a svg {
        width: 140px;
        height: auto;
    }
    .sc_toggle_menu > svg {
        width: 32px;
        height: auto;
    }
    .sc_banner_wrapper {
        padding: 80px 0 0 0;
    }
    .sc_logo {
        margin-left: 5px;
    }
    .sc_booking_widget_wrapper {
        padding-top: 70px;
        padding-bottom: 0px;
    }
    .sc_appointment_bubble {
        bottom: 25px;
        right: 25px;
    }
    .sc_appointment_bubble .sc_primary_btn {
        min-height: 40px;
        font-size: 14px;
        font-weight: 400;
    }
    .sc_appointment_bubble .sc_primary_btn svg{
        width: 18px;
        height: auto;
    }
    .sc_booking_footer {
        padding-top: 50px;
    }
    .sc_purchase_video_box {
        max-width: 300px;
    }
    .sc_feature_content .sc_feat_number {
        transform: scale(1);
    }
    .temp_cookies_flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .temp_cookies_with_text {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
    .temp_cookies_btns .sc_primary_btn, .temp_cookies_btns .sc_secondary_btn, .temp_cookiesw_modal_btns .sc_primary_btn, .temp_cookiesw_modal_btns .sc_secondary_btn {
        min-width: 120px;
        min-height: 40px;
    }
    .sc_banner_offer_wrapper {
        padding-top: 0;
    }
    .sc_ta_stats_wrapper::before {
        margin-bottom: 24px;
    }
    .sc_ta_stats_panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0px;
        border-radius: 22px;
    }
    .sc_ta_stat_value {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }
    .sc_ta_stat_desc {
        font-size: 0.92rem;
    }
    .sc_ta_final_cta_wrapper {
        padding-bottom: 0;
    }
}
@media(max-width:600px){
    .tb_bottom_sticky_bar p {
        font-size: 14px;
        max-width: 320px;
    }
    .topbarText {
        gap: 8px;
    }
    .topbarText img {
        width: 30px;
    }
    .tb_bar_open .sc_header_wrapper {
        top: 57px;
    }
}
@media(max-width:575px){
    .sc_banner_headings .sc_hero_title {
        font-size: 35px;
    }
    .sc_banner_headings .sc_sub_heading {
        padding: 15px 0;
    }
    .sc_top_heading, .sc_left_top_heading {
        font-size: 50px;
    }
    .sc_gredient_heading {
        font-size: 30px;
        margin-top: 0px;
    }
    .sc_feature_wrapper .sc_common_heading {
        max-width: 500px;
    }
    .sc_whyus_box {
        min-height: auto;
    }
    .sc_demo_wrapper .sc_common_heading {
        max-width: 450px;
    }
    .sc_explore_box {
        flex: 0 0 48%;
    }
    .sc_explore_title {
        font-size: 15px;
        max-width: 130px;
    }
    .sc_faq_wrapper .sc_common_heading {
        max-width: 400px;
    }
    .accordion-button {
        gap: 5px;
    }
    .sc_placehold_logo {
        max-width: 400px;
    }
    .sc_pricing_wrapper .sc_common_heading {
        max-width: 350px;
    }
    .sc_cta_wrapper .sc_common_heading {
        max-width: 420px;
    }
    .modal-content {
        padding: 30px;
    }
    .scRadioFlex {
        gap: 10px;
        flex-wrap: wrap;
    }
    .sc_modal_price {
        margin-top: 20px;
    }
    .sc_banner_headings .scDownloadAppBtn {
        margin-top: 10px;
    }
    .scDownloadAppBtn {
        flex-direction: column;
    }
    .sc_cta_left .scDownloadAppBtn {
        bottom: 50px;
    }
    .sc_cta_wrapper {
        padding: 80px 0 140px 0;
    }
    .sc_cta_right .sc_swiper_pagination .swiper-button-prev, .sc_cta_right .sc_swiper_pagination .swiper-button-next {
        display: none;
    }
    .sc_demo_banner_slider {
        padding-top: 50px;
    }
    .sc_ta_steps_wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .sc_ta_feature_wrapper, .scAiVirtualPage .sc_ta_compare_wrapper, .scAiVoiceClonePage .sc_ta_compare_wrapper, .scVideoTemplatePage .sc_pa_feature_wrapper {
        padding-bottom: 30px;
    }
    .sc_ta_steps_grid {
        margin-top: 40px;
    }
    .sc_ta_why_wrapper > .container > .row {
        margin-top: 0;
    }
    .sc_ta_why_wrapper {
        padding-bottom: 20px;
    }
    .sc_ta_compare_wrapper, .sc_ta_stats_wrapper, .sc_pa_feature_wrapper {
        padding-bottom: 50px;
    }
    .sc_ta_stats_panel, .scProductAvatarPage .sc_pa_feature_wrapper, .sc_pa_how_wrapper, .scProductShowcasePage .sc_pa_feature_wrapper, .sc_pa_usecases_wrapper, .sc_pa_why_wrapper, .scAiAdsPage .sc_ta_compare_wrapper, .scAiVirtualPage .sc_pa_feature_wrapper {
        padding-bottom: 20px;
    }
    .sc_product_avatar_page, .scAiAdsPage .sc_pa_why_wrapper { 
        padding-top: 20px;
    }
    .sc_product_avatar_page .sc_pa_usecase_grid, .sc_product_avatar_page .sc_pa_testimonials_grid, .sc_pa_why_grid {
        margin-top: 30px;
    }
    .sc_pa_testimonials_wrapper {
        padding-top: 0;
        padding-bottom: 50px;
    }
    .sc_showcase_platforms_section .sc_showcase_platforms_panel {
        padding: 0;
    }
    .sc_showcase_platforms_section {
        padding: 0px 0 30px 0;
    }
    .sc_ta_compare_kicker:before{
        display: none;
    }
    .sc_ta_compare_grid, .sc_ta_compare_card, .sc_ta_compare_split  { 
        border-radius: 10px;
    }
    .scAiVirtualPage .sc_pa_feature_wrapper, .scAiVoiceClonePage .sc_pa_feature_wrapper, .scAiVoiceClonePage .sc_pa_why_wrapper{
        padding-top: 10px;
    }
    .scAiVirtualPage .sc_pa_why_wrapper, .scVideoTemplatePage .sc_pa_feature_wrapper, .scAiTextSpeechPage .sc_pa_feature_wrapper{
        padding-top: 10px;
    }
    .scAiVoiceClonePage .sc_ta_why_wrapper, .scVideoTemplatePage .sc_pa_why_wrapper, .scAiTextSpeechPage .sc_pa_why_wrapper{
        padding-top: 0;
    }
    .onlyAitoolsPage .sc_faq_wrapper{
        padding: 50px 0;
    }
    .sc_pa_feature_gridf .sc_pa_feature_image.sc-pa-reveal {
        margin-top: 30px;
    }
    .fe-audio-wrapper { 
        gap: 10px;
    }
    .fe-audio-card { 
        padding: 6px;
        gap: 10px;        
    }
    .fe-audio-avatar {
        width: 45px;
        height: 45px; 
    }
    .fe-audio-play-btn {
        width: 42px;
        height: 42px;
    }
    .fe-audio-play-btn img { 
        width: 12px;
        height: auto;
    }
    .onlyAitoolsPage .sc_whyus_boxs_parent {
        padding-top: 30px;
    }
}
@media(max-width:525px){
    .sc_header_btns {
        gap: 5px;
    }
    .sc_header_btns .sc_primary_btn {
        min-width: 90px;
    }
    .scLegalPagesMain .sc_header_parent {
        flex-direction: row;
    }
    .sc_legal_pages_main_title {
        font-size: 23px;
        font-weight: 600;
        padding-bottom: 10px;
    }
    .sc_legal_sections p {
        font-size: 15px;
    }
    .sc_legal_pages_sub_title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .sc_legal_sections ul li {
        font-size: 15px;
    }
    .sc_banner_headings {
        padding-top: 10px;
    }
    .sc_contact_wrapper {
        padding: 100px 0 0px 0;
    }
    .sc_header_btns .sc_primary_btn svg{
        display: none;
    }
    .sc_banner_offer_wrapper {
        padding-top: 20px;
    }
    .sc_banner_slider, .sc_ai_tool_banner_slider {     
        max-width: 300px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width:480px){    
    .sc_swiper_pagination .swiper-button-next, .sc_swiper_pagination .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .sc_swiper_pagination .swiper-button-next{
        right: 0;
    }
    .sc_swiper_pagination .swiper-button-prev{
        left: 0;
    }
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 14px;
    }
    .sc_feature_content .sc_feat_number {
        font-size: 40px;
    }
    .sc_feature_content h3 {
        font-size: 25px;
        font-weight: 600;
    }
    .sc_feature_content p {
        font-size: 16px;
    }
    .sc_feature_items {
        padding: 20px 15px 90px 15px;
        margin-bottom: 25px;
    }
    .sc_feature_video {
        margin-top: 0px;
        padding: 5px;
        border-radius: 15px;
    }
    .sc_feature_video video {
        border-radius: 10px;
    }
    .sc_feature_content .sc_primary_btn {
        bottom: 25px;
        max-width: 200px;
        min-height: 44px;
        font-weight: 500;
    }
    .sc_top_icon a {
        width: 40px;
        height: 40px;
    }
    .sc_top_icon a svg {
        width: 16px;
        height: auto;
    }
    .sc_banner_headings .sc_hero_title {
        font-size: 32px;
    }
    .login_btn {
        margin-right: 8px;
        font-weight: 500;
    }
    .sc_banner_headings .sc_primary_btn {
        min-height: 46px;
        font-size: 15px;
        font-weight: 500;
    }
    .sc_feature_wrapper {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .sc_top_heading, .sc_left_top_heading {
        font-size: 40px;
    }
    .sc_gredient_heading {
        font-size: 30px;
    }
    .sc_feature_wrapper .sc_common_heading {
        max-width: 420px;
    }
    .sc_feature_parent {
        padding-top: 20px;
    }
    .sc_whyus_wrapper {
        padding-bottom: 50px;
    }
    .sc_big_slider {
        margin-top: 0;
    }
    .sc_demo_wrapper {
        padding: 50px 0 0px 0;
    }
    .sc_demo_video {
        border-radius: 15px;
        padding: 5px;
    }
    .sc_demo_video iframe{
        border-radius: 10px;
    }
    .sc_demo_tab {
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .sc_demo_wrapper .sc_common_heading {
        max-width: 390px;
    }
    .nav-link {
        min-height: 30px;
        padding: 0 10px;
    }
    .sc_explore_flex {
        padding-top: 30px;
    }
    .sc_cta_wrapper {
        padding: 30px 0 120px 0;
    }
    .sc_cta_left .sc_btn_div {
        bottom: 30px;
    }
    .sc_language_wrapper {
        padding-top: 30px;
    }
    .sc_lang_mockup {
        padding-top: 20px;
    }
    .sc_explore_wrapper {
        padding: 50px 0;
    }
    .sc_faq_wrapper {
        padding: 50px 0;
    }
    .sc_faq_right {
        margin-top: 10px;
    }
    .sc_footer_wrapper {
        padding: 30px 0 30px 0;
    }
    .pricing_faq {
        padding-bottom: 0;
    }
    .sc_pricing_wrapper {
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .sc_footer_top a svg {
        max-width: 250px;
    }
    .sc_placehold_logo {
        max-width: 380px;
    }
    .sc_footer_top > a {
        top: -10px;
    }
    .sc_footer_top > p {
        margin-top: 0;
    }
    .sc_pricing_parent {
        padding-top: 30px;
    }
    .sc_price_box {
        padding: 30px 20px;
    }
    .sc_price_title {
        min-height: 34px;
        padding: 0 20px;
        font-size: 15px;
    }
    .sc_price_header > p {
        font-size: 18px;
        padding: 10px 0 5px 0;
    }
    .sc_price_header .sc_primary_btn {
        min-height: 50px;
        font-size: 16px;
        font-weight: 500;
    }
    .sc_price_bulltes h4 {
        font-size: 17px;
    }
    .sc_price_bulltes ul li p {
        font-size: 16px;
    }
    .sc_volume_icon span {
        width: 40px;
        height: 40px;
    }
    .sc_volume_icon span svg {
        width: 15px;
        height: auto;
    }
    .sc_contact_box {
        padding: 20px;
        border-radius: 10px;
        margin-top: 30px;
    }
    .sc_input_group label {
        font-size: 14px;
    }
    .sc_input_group input, .sc_input_group textarea {
        height: 40px;
        padding: 0 15px;
        font-size: 13px;
    }
    .sc_whyus_wrapper .sc_common_heading {
        max-width: 390px;
    }
    .sc_cta_wrapper .sc_common_heading {
        max-width: 350px;
    }
    .sc_cta_video {
        border-radius: 15px;
        padding: 5px;
        margin-top: 10px;
    }
    .sc_cta_video video {
        border-radius: 10px;
    }
    .sc_creation_page_wrapper .sc_demo_wrapper {
        padding: 80px 0 50px 0;
    }
    .scRadioFlex {
        margin-bottom: 30px;
    }
    .sc_action_two_btn {
        gap: 10px;
    }
    .sc_action_two_btn .sc_primary_btn, .sc_action_two_btn .sc_secondary_btn {
        font-size: 14px;
        min-height: 42px;
        min-width: 100px;
        padding: 0 20px;
    }
    .sc_footer_top ul {
        gap: 10px;
    }
    .sc_footer_top ul li a {
        width: 40px;
        height: 40px;
    }
    .sc_footer_top ul li a img {
        width: auto;
        height: 16px;
        object-fit: contain;
    }
    .sc_header_btns .sc_primary_btn {
        padding: 0 10px;
        min-height: 30px;    
        font-size: 14px;    
        margin-left: 5px;
    }
    .sc_modal_price .sc_price {
        font-size: 28px;
    }
    .modal-content .sc_input_group input {
        height: 50px;
    }
    .sc_price_bottom_text h3 {
        font-size: 22px;
        font-weight: 500;
    }
    .sc_price_bottom_text h4 {
        font-size: 16px;
        max-width: 300px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .sc_price_bottom_text {
        margin-top: 40px;
    }
    .sc_credit_table_parent {
        padding-top: 20px;
    }
    .sc_pricing_wrapper .sc_common_heading {
        max-width: 308px;
    }
    .sc_header_wrapper {
        padding: 10px 0;
    }
    .sc_app_btn > svg {
        width: 150px;
        height: auto;
    }
    .sc_headder_menu > ul {
        gap: 10px;
        /* max-width: 250px; */
        /* left: -250px; */
        padding: 15px 0 0 0;
    }
    .sc_headder_menu > ul > li {
        padding: 0 0 15px 20px;
    }
    .sc_dropdown_menu li { 
        padding-left: 0;
    }
    .sc_headder_menu ul li a {
        font-size: 14px;
    }
    .sc_cta_parent .scDownloadAppBtn .sc_primary_btn {
        min-height: 46px;
        font-size: 15px;
        font-weight: 500;
    }
    .sc_dfy_banner_wrapper {
        padding-top: 20px;
    }
    .sc_creation_page_wrapper .sc_demo_tab.text-center {
        margin-bottom: 0;
    }
    .sc_banner_headings {
        padding-top: 0;
    }
    .sc_banner_slider, .sc_ai_tool_banner_slider {
        margin-top: 30px;
    }
    .sc_contact_wrapper {
        padding: 80px 0 0px 0;
    }
    .sc_appointment_bubble {
        bottom: 20px;
        right: 20px;
    }
    .sc_booking_widget_wrapper {
        padding-top: 50px !important;
    }
    .widget_form_box {
        padding: 30px !important;
    }
    .sc_input_group textarea {
        height: 100px;
        padding-top: 10px;
    }
    .sc_purchase_video_wrapper {
        padding-top: 90px;
    }
    .sc_sponsor_slider {
        padding-top: 20px;
    }
    .sc_sponsors_wrapper {
        padding-top: 50px;
    }
    .sc_modal_price {
        flex-wrap: wrap;
        gap: 6px;
    }
    .sc_sponsor_item > img {
        max-height: 30px;
    }
    .chaikaapi_logo > img {
        height: 25px;
    }
    .sanskriti_logo > img {
        max-height: 45px;
    }
    .castnx_logo > img {
        height: 20px;
    }
    .topbarText img {
        display: none;
    }
    .topbarText > p > span {
        background: transparent;
        padding: 0;
        margin: 0;
        color: var(--white-color);
    }
    .bellWithBtn > a {
        padding: 6px 13px;
        font-size: 14px;
    }
    .tb_bottom_sticky_bar {
        padding: 5px 40px 5px 10px;
    }
    .tb_close_bar {
        right: 8px;
    }
    .tb_bottom_sticky_bar p {
        max-width: 250px;
    }
    .tb_bar_open .sc_header_wrapper {
        top: 52px;
    }
    .temp_cookies_wrapper {
        padding: 30px 20px;
    }
    #cookies_modal .modal-content {
        padding: 30px 20px;
    }
    .sc_pricing_flash_offer_wrapper {
        padding-top: 40px;
    }
    .sc_banner_offer_wrapper .sc_banner_logo {
        margin-bottom: 20px;
    }
    .sc_banner_offer_wrapper .sc_banner_logo svg {
        width: 200px;
        height: auto;
        object-fit: contain;
    }
    .sc_videoBox {
        border-radius: 15px;
        padding: 5px;
    }
    .sc_videoBox iframe {
        border-radius: 10px;
    }
    .sc_banner_slider, .sc_ai_tool_banner_slider {
        max-width: 260px;     
    }
    .sc_product_videos_wrapper {
        padding: 20px 0 50px 0;
    }
    .sc_product_video_parent {
        padding-top: 30px;
    }
    .sc_product_video_parent .scDownloadAppBtn{
        margin-top: 30px;
    }
    .sc_product_video_parent .sc_btn_div .sc_primary_btn {
        min-height: 50px;
        font-size: 16px;    
    }
}
@media(max-width:450px){
    .sc_banner_headings .sc_hero_title {
        font-size: 30px;
    }
    .sc_gredient_heading {
        font-size: 28px;
    }
}
@media(max-width:425px){
    .sc_logo a svg {
        width: 130px;
    }
    .sc_banner_headings .sc_hero_title {
        font-size: 27px;
    }    
    .sc_top_heading, .sc_left_top_heading {
        font-size: 35px;
    }
    .sc_gredient_heading {
        font-size: 25px;
    }
    .sc_feature_wrapper .sc_common_heading {
        max-width: 390px;
    }
    .sc_feature_content h3 {
        font-size: 23px;
        padding-bottom: 10px;
    }
    .sc_explore_flex {
        gap: 10px;
    }
    .sc_explore_box {
        flex: 0 0 47%;
    }
    .sc_demo_wrapper .sc_common_heading {
        max-width: 360px;
    }
    .sc_cta_wrapper .sc_common_heading {
        max-width: 320px;
    }
    .tabMobileOnly .nav-link {
        min-height: 36px;
        font-size: 14px;
        font-weight: 400;
        padding: 0 20px;
    }
    .sc_placehold_logo {
        max-width: 100%;
    }
    .sc_price {
        font-size: 35px;
    }
    h4.sc_price > del {
        font-size: 28px;
    }
    .tb_bottom_sticky_bar p {
        font-size: 13px;
    }
    .tb_bar_open .sc_header_wrapper {
        top: 50px;
    }
    .flashSubscriptionModal .modal-title{
        font-size: 18px;
        line-height: normal;
    }
}
@media(max-width:400px){
    .tb_bottom_sticky_bar p {
        font-size: 12px;
    }
    .bellWithBtn > a {
        padding: 6px 10px;
        font-size: 13px;
    }
    .flashSubscriptionModal .modal-content {
        padding: 30px 20px;
    }
    .flashSubscriptionModal .modal-title{
        font-size: 18px;
        line-height: normal;
    }
}
@media(max-width:375px){
    .sc_banner_headings .sc_hero_title {
        font-size: 25px;
    }
    .sc_header_btns .sc_primary_btn {
        min-width: 70px;
    }
    .sc_action_two_btn {
        flex-direction: column;
        width: 100%;
    }
    .sc_action_two_btn .sc_primary_btn, .sc_action_two_btn .sc_secondary_btn {
        min-width: 100px;
        width: 100%;
    }
    .modal-content {
        padding: 25px 20px;
    }
    .sc_modal_price .sc_price {
        font-size: 25px;
    }
    .sc_modal_price {
        flex-wrap: wrap;
    }
    .flashSubscriptionModal .modal-title {
        font-size: 16px;
    }
    .sc_flash_modal_right_head p{
        font-size: 12px;
    }
    .sc_header_btns .sc_primary_btn {
        padding: 0;
        min-height: auto;            
        margin-left: 5px;
        background: transparent;
        box-shadow: none;
    }
    .scOnlyMainPageLoginBtn {
        font-size: 14px;
        font-weight: 500 !important;
    }
    .scFlashOfferPageOnly .sc_header_btns .sc_primary_btn{
        justify-content: flex-end !important;
    }
    .sc_headder_menu > ul {
        max-width: 250px;
        left: -250px;
    }
    .sc_dropdown_menu li a {
        padding: 10px 15px; 
    }
}
/* Before/After Comparison Section */
.sc_comparison_wrapper {
    background: linear-gradient(135deg, #050A0F 0%, #0a1520 100%);
    position: relative;
    overflow: hidden;
}

.sc_comparison_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 184, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sc_comparison_header {
    position: relative;
    z-index: 2;
}

.sc_comparison_header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.sc_comparison_header .sc_sub_heading {
    font-size: 18px;
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto;
}

.sc_comparison_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Comparison Card */
.sc_comparison_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(6, 184, 115, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 32px rgba(6, 184, 115, 0.08);
}

.sc_comparison_card:hover {
    border-color: rgba(6, 184, 115, 0.5);
    box-shadow: 0 12px 48px rgba(6, 184, 115, 0.15);
    transform: translateY(-5px);
}

/* Comparison Slider */
.sc_comparison_slider {
    position: relative;
    width: 100%;
    height: 400px;
    background: #0a1520;
    user-select: none;
    cursor: col-resize;
}

.sc_comparison_image,
.sc_comparison_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sc_comparison_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc_comparison_video {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    transition: clip-path 0.05s ease-out;
}

.sc_comparison_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Labels */
.sc_comparison_label {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 6px;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sc_label_before {
    bottom: 20px;
    left: 20px;
    color: #B0B0B0;
}

.sc_label_after {
    bottom: 20px;
    right: 20px;
    color: var(--primary-color);
}

/* Handle */
.sc_comparison_handle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 20;
    box-shadow: 0 0 20px rgba(6, 184, 115, 0.4);
    transition: all 0.2s ease-out;
}

.sc_comparison_handle:active {
    cursor: grabbing;
    box-shadow: 0 0 30px rgba(6, 184, 115, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.sc_comparison_handle:hover {
    box-shadow: 0 0 30px rgba(6, 184, 115, 0.6);
    transform: translate(-50%, -50%) scale(1.05);
}

.sc_handle_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 24px;
    height: 24px;
}

.sc_handle_icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Line Divider */
.sc_comparison_handle::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 60%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sc_comparison_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sc_comparison_slider {
        height: 350px;
    }

    .sc_comparison_header h2 {
        font-size: 32px;
    }

    .sc_comparison_header .sc_sub_heading {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sc_comparison_wrapper {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .sc_comparison_slider {
        height: 300px;
    }

    .sc_comparison_header h2 {
        font-size: 24px;
    }

    .sc_comparison_header .sc_sub_heading {
        font-size: 14px;
    }

    .sc_comparison_card {
        border-radius: 15px;
    }

    .sc_label_before,
    .sc_label_after {
        font-size: 12px;
        padding: 6px 12px;
        bottom: 15px;
    }

    .sc_label_before {
        left: 15px;
    }

    .sc_label_after {
        right: 15px;
    }

    .sc_comparison_handle {
        width: 40px;
        height: 40px;
    }

    .sc_handle_icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Light Mode Styles */
body.sc_light_mode .sc_comparison_wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

body.sc_light_mode .sc_comparison_wrapper::before {
    background: radial-gradient(circle at 20% 50%, rgba(6, 184, 115, 0.08) 0%, transparent 50%);
}

body.sc_light_mode .sc_comparison_header h2 {
    color: #0d151c;
}

body.sc_light_mode .sc_comparison_header .sc_sub_heading {
    color: #666666;
}

body.sc_light_mode .sc_comparison_card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(6, 184, 115, 0.3);
}

body.sc_light_mode .sc_comparison_card:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(6, 184, 115, 0.5);
}

body.sc_light_mode .sc_comparison_slider {
    background: #f0f0f0;
}

body.sc_light_mode .sc_label_before {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: #666;
}

body.sc_light_mode .sc_label_after {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Before/After Comparison Section End */

@media(max-width:350px){
    .sc_logo a svg {
        width: 120px;
    }
    .scOnlyMainPageLoginBtn, .sc_header_btns .sc_primary_btn {
        font-size: 13px; 
    }
}
/* Responsive CSS End */
