@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600,700|Roboto:400,500,700');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* -----------Css-variable------ */

:root {
    --light-purple: #fa919190;
    --primary: #ff5757;
    --bg-primary: #ff5757;
    --dark-primary: #d23c3c;
    --bg-black: #0a0a0a;
    --body-text-black: #190909;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --slider-dots-color: #ff5757ba;
    --light-bg: #DFDAF3;
    --section-padding: 2rem;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", serif;
    /* font-weight: 400; */
    color: var(--body-text-black);
    position: relative;
    overflow-x: hidden;
    width: 100%;
    background-color: #e1eae5;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none !important;
    outline: none;
}

a,
button {
    -webkit-transition: 0.3s;
    transition: 0.3s
}


a , a:hover{
    color: var(--body-text-black);
}


h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
    font-weight: 400;
    margin-top: 0;
    font-family: "Poppins", serif;
}

h1 {
    font-size: 48px;
    line-height: 58px
}

h2 {
    font-size: 35px;
    line-height: 45px
}

h3 {
    font-size: 24px;
    line-height: 34px
}

h4 {
    font-size: 20px;
    line-height: 30px
}

h5 {
    font-size: 16px;
    line-height: 26px
}

p {
    font-size: 16px;
    line-height: 26px;
    font-family: "Poppins", serif;
    color: var(--body-text-black);
    font-weight: 500
}

.section_title {
    text-align: center;
}

.d-table {
    width: 100%;
    height: 100%
}


/* purple button */
.puprple_btn {
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 50px;
    padding: 10px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--primary);
}


/* white button */
.white_btn {
    padding: 10px 45px;
    border: 1px solid var(--dark-primary);
    color: var(--primary);
    border-radius: 50px;
    background-color: var(--bg-black);
    font-weight: 700;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
}

.white_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 50px;
    transition: .6s all;
    z-index: -1;
}

.white_btn:hover::before {
    width: 110%;
}

.white_btn:hover {
    color: var(--primary);
}

.highlited_block .white_btn:hover {
    border-color: var(--bg-black);
}

.owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 40%;
    width: 100%;
}

.owl-prev,
.owl-next {
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    border: none;
    overflow: hidden;
}

.owl-prev{
    transform: translateX(-40px) ;
}

.owl-next{
    transform: translateX(40px) ;
}


/* section heading h2 */
.section_title h2 {
    font-size: 40px;
    font-weight: 700;
    /* color: var(--dark-primary); */
}

.section_title h2 span {
    color: var(--primary);
}

.row_am {
    padding: 50px 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--bg-primary);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--body-text-black);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--dark-primary);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-------------------------------------------------------------------------------------
    header area
---------------------------------------------------------------------------------------*/

#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.navbar-nav .nav-link {
    font-family: "Poppins", serif;
    text-transform: capitalize;
    color: #fff;
    padding: 0 12px;
    font-weight: 400;
    position: relative;
}

/*.navbar-nav .nav-link.active:after,*/
/*.navbar-nav .nav-link:hover:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    top: 100%;*/
/*    width: 50px;*/
/*    height: 3px;*/
/*    background-color: #fff;*/
/*    margin: 0 auto;*/
/*}*/

.navbar-nav.v1 .nav-link {
    padding: 4px 14px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}

.navbar-nav.v1 .nav-link.active:after,
.navbar-nav.v1 .nav-link:hover:after {
    position: unset;
}

.navbar-nav.v1 .nav-link.active,
.navbar-nav.v1 .nav-link:hover {
    background-color: var(--primary);
    color: #fff;
    border-radius: 30px;
    line-height: 25px;
}

.navbar-nav .nav-link.active:after,
.navbar-nav .nav-link:hover:after {
    position: unset;
}

.logo img {
    width: 60px;
}

#header.sticky .logo img {
    width: 60px;
}

.navbar-nav.inner .nav-link {
    color: #fff;
}

.navbar-nav.inner .nav-link.active,
.navbar-nav.inner .nav-link:hover {
    background-color: var(--primary);
}

#header.sticky {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    /* padding: 5px 0; */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    box-shadow: 0px 0px 5px #aaa;
}

#header.sticky .navbar {
    background-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#header.sticky .navbar-nav.v1 .nav-link.active,
#header.sticky .navbar-nav.v1 .nav-link:hover {
    background-color: var(--primary);
    color: #fff;
    border-radius: 30px;
    line-height: 25px;

}

.logo-txt {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    justify-content: center;
}

.logo-txt:hover{
    color:var(--primary);
    transform: scale(1.1);
}

#header.sticky .logo-txt {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    justify-content: center;
    transition: all 2s ease;
}

#header.sticky .navbar-nav.v1 .nav-link {
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--body-text-black);
    background-color: var(--primary);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 25px;
    margin-left: 20px;
    position: relative;
}

.navbar-nav {
    gap: 15px;
    width: 100%;
    justify-content: end;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 42px;
    z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
    animation: pulse-blue-medium-sm 5s infinite
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
    animation: pulse-blue-small-sm 5s infinite
}

.navbar-toggler {
    color: var(--primary);
    font-size: 20px;
    border: 1px solid var(--primary);
}
/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}


.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)) ;
    border-radius: 0 0px 10px 10px;
    width: fit-content;
    min-width: 230px;
    max-width: 250px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    /* box-shadow: 0px 4px 10px #c5c5c580; */
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 500;
    color: #fff;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid var(--primary);
    border-radius: 10px;
    margin-right: 5px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    padding-left: 15px;
    color: var(--bg-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn{
    color: var(--bg-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
    color: var(--bg-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: -1px;
}


/* slider controls */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--bg-white);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: var(--slider-dots-color);
}


/* Hero section  */

.hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-title {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 400;
    top: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 4rem;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: end;
    text-align: center;
    padding-bottom: 100px;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    color: white;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease;
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide1{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/bg-5.png);
}

.slide2{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/bg-8.png);
}

.slide3{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/bg-3.png);
}

.slide4{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/bg-6.png);
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.slide-content button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #ff4757;
    border: none;
    color: white;
    cursor: pointer;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ----------Feature-Detail-Section-start------ */

/* features section wraper */
.features_section .feature_detail {
    background-color: var(--bg-white);
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
    box-shadow: 0px 4px 30px #EDE9FE;
    overflow: hidden;
}

/* features section image */
.features_section .feature_detail .feature_img {
    position: absolute;
    top: -30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.features_section .feature_detail .feature_img img {
    max-width: 100%;
    /* width: 335px; */
    width: 75%;
}

/* features section box */

.features_section .feature_detail .feature_box {
    max-width: 410px;
}

.features_section .feature_detail .feature_box .data_block {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features_section .feature_detail .left_data .data_block {
    align-items: end;
}

.features_section .feature_detail .right_data .data_block {
    align-items: start;
}


.features_section .feature_detail .feature_box .data_block h4 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.features_section .feature_detail .center_data {
    position: relative;
    width: 33.33%;
}

.features_section .feature_detail .left_data {
    text-align: right;
    padding-left: 130px;
    width: 33.33%;
}

.features_section .feature_detail .right_data {
    padding-right: 130px;
    width: 33.33%;
}

.features_section .feature_detail .left_data .data_block .icon {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.features_section .feature_detail .right_data .data_block .icon {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.features_section .feature_detail .feature_box .data_block .icon img {
    width: 100%;
}

.features_section .container {
    max-width: 1370px;
}

.feature_data {
    width: 70%;
    margin: -18px auto;
    padding: 0px 10px 40px;
    background-image: url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/FITTBOT_BACKGROUND_V001.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    /* transform: translateY(-120px); */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    align-content: end;
    height: 100%;
    border-radius: 30px;
}

.features-single {
    margin: 0 0 15px;
    cursor: pointer;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.features-single .icon {
    width: 25%;
    /* float: left; */
    padding: 0px;
    /* background-color: var(--primary); */
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.features-single:hover .icon i,
.features-single .feature-link.active i,
.features-single .feature-link2.active i,
.features-single.v2 .icon i {
    color: #000;
}


.features-single .icon img {
    width: 100%;
}

.features-single .content {
    width: 75%;
    padding: 0 5px 0 10px;
}

.features-single .feature-link,
.features-single .feature-link2 {
    padding: 5px;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    border: 1px solid var(--primary);
    /* gap: 20px; */
}

.features-single,
.features-single:hover .feature-link,
.features-single .feature-link2.active,
.features-single:hover .feature-link2 {
    width: 100%;
}

.features-single .feature-link h4,
.features-single .feature-link2 h4 {
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 15px !important;
}

.features-single .feature-link.active h4,
.features-single .feature-link.active p,
.features-single .feature-link2.active h4,
.features-single .feature-link2.active p,
.features-single:hover h4,
.features-single:hover p {
    color: #000 !important;
}


/*-------------------------------------------------------------------------------------
    Dishes-section
---------------------------------------------------------------------------------------*/

.dishes_section .dish_slider {
    padding: 30px 0 0 0;
}

.dishes_section #about_slider .dish_slides img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    border: solid 1px var(--border);
}


.title_badge {
    color: var(--dark-primary);
    display: inline-block;
    padding: 2px 18px;
    border-radius: 100px;
    background-color: var(--bg-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

.ctr_app_btn_block{
    margin-top: 50px;
}

.ctr_app_btn_block .app_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.ctr_app_btn_block .app_btn li {
    width: 15%;
}

.ctr_app_btn_block .app_btn li a {
    display: block;
}

.ctr_app_btn_block .app_btn li a img {
    transition: .4s all;
    width: 100%;
}

.ctr_app_btn_block .app_btn li a:hover {
    transform: scale(1.1);
    transition: .4s all;
}


/* Watch area */
#watch-area {
    padding: 50px 0 50px;
}

#watch-area.bg {
    background-image: url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/PLANS_BG_V001.png);
    background-repeat: no-repeat;
    background-position: center center;
    color:#fff;
    position: relative;
    overflow: hidden;
}

.watch-content{
    padding: 50px 0;
}

.watch-content h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-size: 30px;
}

.watch-content h2 span{
    color: var(--primary);
}

.watch-content ul li{
    font-size: 18px;
    line-height: 30px;
}

.watch-content ul li::before{
    content: "\007E";
    padding: 0px 10px;
}

.watch-btns a img {
    width: 100%;
}

.watch-btns {
    margin: 55px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.watch-btns a{
    width: 40%;
}


.animation-jump {
    position: relative;
    -webkit-animation: animation-jump 5s ease-in-out infinite;
    animation: animation-jump 5s ease-in-out infinite;
}

.animation-bg {
    -webkit-animation: animation-bg 2s ease-in-out infinite;
    animation: animation-bg 2s ease-in-out infinite;
}


@keyframes animation-jump {
    0% {
        top: 3px;
    }

    50% {
        top: -30px;
    }

    100% {
        top: 3px;
    }
}

@keyframes animation-bg {
    0% {
        background-position: top;
    }

    50% {
        background-position: bottom;
    }

    100% {
        background-position: top;
    }
}


/* -----------------About-App-Section-Css-Start------------------ */

/* about us section wraper */
.about_app_section .about_img {
    display: flex;
    align-items: center;
    position: relative;
}

/* about us section images*/
.about_app_section .about_img img {
    max-width: 100%;
    border-radius: 40px;
}

.about_app_section .frame_img img {
    width: 270px;
    max-width: 270px;
}

.about_app_section .about_img::before {
    content: "";
    position: absolute;
    left: 38%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: 100%;
    z-index: -1;
}

.about_app_section .about_img .screen_img {
    margin-left: -135px;
    margin-top: 110px;
}

.about_app_section .about_text .section_title {
    text-align: left;
}

.about_app_section .about_text .section_title h2 {
    margin-bottom: 15px;
}

/* about us section  statastics nomber */
.about_app_section .about_text .app_statstic {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 40px;
}

.about_app_section .about_text .app_statstic li {
    width: 248px;
    background-color: var(--bg-white);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 15px 10px;
    padding-left: 35px;
    box-shadow: 0px 4px 10px #EDE9FE;
}

.about_app_section .about_text .app_statstic li .icon {
    margin-right: 9px;
}

.about_app_section .about_text .app_statstic li p {
    margin-bottom: 0;
    line-height: 1;
    color: var(--dark-primary);
}

.about_app_section .about_text .app_statstic li p:first-child {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 3px;
}




/* -----------Interface_Section-Css-Start-----------------
.interface_section .containers {
    width: 90% !important;
    margin: auto;
    position: relative;
}

.interface_img {
    position: absolute;
    top: 41.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 248px;
    z-index: 333;
}

.interface_img img {
    width: 100%;
}

.interface_section .screen_slider {
    margin-top: 35px;
    height: 100vh;
}

.interface_section .owl-item .screen_frame_img img {
    transform: scale(.9);
    border: 2px solid #000;
    border-radius: 20px;
    transition: 1s all;
    margin: 0 auto;
    max-width: 230px;
}

.interface_section .owl-item.center .screen_frame_img img {
    transform: scale(1);
    border: 3px solid #000;

} */

/* Ensure container scales properly */
.interface_section .containers {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/* Centering the main interface image properly */
.interface_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 3.5rem;
    width: 16vw; /* Adjust width for responsiveness */
    /* max-width: 270px;
    min-width: 180px; */
    z-index: 333;
}

.interface_img img {
    width: 100%;
    height: auto;
}

/* Ensure the slider adjusts based on screen size */
.interface_section .screen_slider {
    /* margin-top: 35px; */
    height: auto;
    /* min-height: 500px; */
}

/* Adjust images in the carousel */
.interface_section .owl-item .screen_frame_img img {
    transform: scale(0.85); /* Reduce size slightly */
    border: 2px solid #000;
    border-radius: 20px;
    transition: 1s all;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Centered carousel item effect */
.interface_section .owl-item.center .screen_frame_img img {
    transform: scale(0.98); /* Increase slightly for focus */
    border: 3px solid #000;
}


/* -----------Download_App_Section-Start------------------ */

/* download app wraper */
.free_app_section {
    padding-top: 70px;
    position: relative;
}

.free_app_section .container {
    max-width: 1370px;
}

.free_app_section .container .free_app_inner {
    /* background-color: var(--bg-black); */
    background-color: #4B4E53;
background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);
    /* background-image: url(../images/footer-background.jpg); */
    border-radius: 30px;
    padding: 20px 100px;
    padding-bottom: 50px;
    position: relative;
}

/* download app dark background */
.free_app_section .container .free_app_inner .dark_bg {
    overflow: hidden;
}

/* .free_app_section .container .free_app_inner .dark_bg span {
    z-index: 99999;
} */

.free_app_section .container .free_app_inner .row {
    align-items: center;
}

.free_app_section .container .free_app_inner .free_text .section_title {
    text-align: left;
}

/* download app heading h2 */
.free_app_section .container .free_app_inner .free_text .section_title h2 {
    margin-bottom: 20px;
}

.free_app_section .container .free_app_inner .free_text .section_title h2,
.free_app_section .container .free_app_inner .free_text .section_title p {
    color: var(--text-white);
}

.free_app_section .container .free_app_inner .free_text .app_btn {
    display: flex;
    align-items: center;
    width: 100%;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a {
    display: block;
    padding: 12px 10px;
    position: relative;
    border-radius: 12px;
    transition: .4s all;
    width: 100%;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a img{
    width: 100%;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a:hover {
    -webkit-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
}

.free_app_section .container .free_app_inner .free_text .app_btn li:last-child {
    margin-left: 25px;
}

.free_app_section .container .free_app_inner .free_img {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: -120px;
    width: 100%;
}

.free_app_section .container .free_app_inner .free_img img{
    width: 100%;
}

.free_app_section .container .free_app_inner .free_img img:last-child {
    margin-left: -65px;
}

.purple_backdrop {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.753);
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: .4s all;
    pointer-events: none;
}

/* -------------How_It_Works-Section-Css-Start------------------ */

/* how it works wraper */
.how_it_works .container {
    max-width: 1370px;
}

.how_it_works .how_it_inner {
    background-color: var(--bg-white);
    padding: 70px 0;
    padding-bottom: 250px;
    border-radius: 30px;
    box-shadow: 0px 4px 30px #EDE9FE;
}

/* how it works list */
.how_it_works .step_block ul {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px;
}

.how_it_works .step_block ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.how_it_works .step_block ul li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 100px);
    background-color: var(--light-bg);
}

.how_it_works .step_block ul li:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background-color: var(--light-bg);
    border-radius: 15px;
}

.how_it_works .step_block ul li:first-child::before {
    top: 0;
}

.how_it_works .step_block ul li:last-child::before {
    height: 50%;
    top: 0;
}

.how_it_works .step_block ul li .step_text,
.how_it_works .step_block ul li .step_img {
    width: 360px;
    text-align: right;
}

/* how it works image */
.how_it_works .step_block ul li .step_img img {
    max-width: 100%;
}

/* how it works heading h4 */
.how_it_works .step_block ul li .step_text h4 {
    font-size: 20px;
    font-weight: 600;
}

.how_it_works .step_block ul li .step_text .app_icon {
    margin-bottom: 10px;
}

.how_it_works .step_block ul li .step_text .app_icon a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    /* background-color: var(--light-bg); */
    color: var(--text-white);
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    transition: .4s all;
}

/* .how_it_works .step_block ul li .step_text .app_icon a:hover {
    background-color: var(--dark-primary);
} */

.how_it_works .step_block ul li .step_text span {
    font-weight: 600;
}

.how_it_works .step_block ul li .step_text span a {
    color: var(--dark-primary);
    text-decoration: underline;
}

.how_it_works .step_block ul li:nth-child(2) {
    flex-direction: row-reverse;
}

.how_it_works .step_block ul li:nth-child(2) .step_text,
.how_it_works .step_block ul li:nth-child(2) .step_img {
    text-align: left;
}

/* how it works numbers */
.how_it_works .step_block ul li .step_number {
    /* background-image: url(../images/icon_bg.png); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.how_it_works .step_block ul li .step_number img{
    width: 100%;
}

/* how it works numbers heading h3 */
.how_it_works .step_block ul li .step_number h3 {
    font-size: 30px;
    font-weight: 600;
}

/* how it works video  */
.how_it_works .yt_video {
    max-width: 1170px;
    margin: 0 auto;
    margin-top: -200px;
    position: relative;
    overflow: hidden;
}

/* how it works video animation line  */
.how_it_works .yt_video .anim_line {
    z-index: 999;
}

.how_it_works .yt_video .thumbnil {
    position: relative;
}

.how_it_works .yt_video .thumbnil img {
    max-width: 100%;
}

.how_it_works .yt_video .thumbnil a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    font-weight: 600;
    z-index: 999;
    cursor: pointer;
}

.how_it_works .yt_video .thumbnil a span {
    display: block;
    font-weight: 700;
    font-size: 30px;
}

.how_it_works .yt_video .thumbnil a .play_btn {
    background-color: rgba(255, 255, 255, 0.1);
    width: 96px;
    height: 96px;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    line-height: 96px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.how_it_works .yt_video .thumbnil a .play_btn img {
    width: 50px;
    position: relative;
    z-index: 999;
}

/* how it works video model   */
.modal {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 99999;
    opacity: .7;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1240px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 90vh;
    width: 100%;
}

.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#close-video {
    color: #fff;
    font-size: 30px;
}

/* -------------Plans Section --------------- */

.plan_section {
    /* background: linear-gradient(135deg, #0a0a0a, #1a1a1a); */
    background-image: url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/PLANS_BG_V001.png);
    /* background-color: #4B4E53;
    background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%); */
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.plans_bg {
    /* background-image: url(../images/footer-background.jpg); */
    background-color: #4B4E53;
background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);
    border-radius: 10px;
    padding: 90px 0;
}

.plans_section {
    background-image: none;
    background: none;
}

.plans_section .containers {
    width: 90% !important;
    margin: auto;
}

.plans_section .section_title,
.plans_section .section_title p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.pricing-carousel {
    max-width: 1100px;
    margin: 0 auto;
}

.owl-item.active.center .pricing-card {
    transform: scale(1);
}

/* Pricing Card */
.pricing-card {
    /* background: linear-gradient(135deg, #141414, #222); */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 5px rgba(192, 192, 192, 0.8);
    border: 2px solid #fff;
    text-align: left;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 3rem;
    padding-bottom: 10px;
}



/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    padding: 5px;
    text-transform: uppercase;
}

.ribbon {
    --f: .8em;
    --r: 0.8em;

    position: absolute;
    top: 20px;
    right: calc(-1*var(--f));
    padding-inline: 1em;
    line-height: 1.8;
    background: var(--primary);
    border-bottom: var(--f) solid #0005;
    border-left: var(--r) solid #0000;
    clip-path:
        polygon(0 0, 100% 0, 100% calc(100% - var(--f)), calc(100% - var(--f)) 100%,
            calc(100% - var(--f)) calc(100% - var(--f)), 0 calc(100% - var(--f)),
            var(--r) calc(50% - var(--f)/2));
}

.plan_section p {
    color: var(--text-white);
}


.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    margin-left: 10px;
    color: var(--text-white);
    opacity: 0.7;
}

.owl-item.active.center .btn-primary {
    background: #ffff;
    color: #000;
    font-weight: 600;
}

/* Icon Styles */

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan_section .btn {
    display: block;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.plan_section .btn-primary {
    /* background: #0a0a0a; */
    background: none;
    color: #fff;
    font-weight: 600;
    border: 1px solid #fff;
}

.plan_section .btn-primary:hover {
    background: var(--bg-white);
    color: var(--primary);
}

.pricing-details {
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #fff;
}

.pricing-details ul li {
    padding: 5px 0;
}

.pricing-details ul li::before {
    content: "\203A";
    font-size: 25px;
    padding: 0 10px;
}




/* ------------Testimonial-Slider-Css-Start------------- */
/* testimonials wraper  */
#testimonial_slider {
    max-width: 550px;
    margin: 0 auto;
}

.testimonial_section .testimonial_block {
    background-image: url(https://fittbotbusiness.com/wp-content/themes/overflow/assets/images/testimonial_bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 65px;
}

.testimonial_section .testimonial_block .testimonial_slide_box {
    text-align: center;
    width: 430px;
    padding: 10px;
    margin: 0 auto;
}

/* testimonials rating  */
.testimonial_section .testimonial_block .rating span {
    color: #FC9400;
    font-size: 18px;
}

.testimonial_section .testimonial_block .testimonial_slide_box .review {
    margin-top: 10px;
    margin-bottom: 30px;
}

/* testimonials image  */
.testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img img {
    margin: 0 auto;
    border-radius: 50%;
}

.testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img {
    width: 30%;
    margin: auto;
}

/* testimonials heading h3 */
.testimonial_section .testimonial_block .testimonial_slide_box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 10px;
}

.testimonial_section .testimonial_block .testimonial_slide_box .designation {
    font-size: 15px;
}

/* testimonials total review */
.testimonial_section .total_review {
    text-align: center;
    margin-top: 60px;
}

.testimonial_section .total_review .rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* testimonials paragraph */
.testimonial_section .total_review .rating p {
    margin-bottom: 0;
    font-weight: 600;
    margin-left: 5px;
    color: var(--dark-purple);
}

/* testimonials heading */
.testimonial_section .total_review h3 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 0;
    padding: 20px;
    color: var(--dark-primary);
}

.testimonial_section .total_review a {
    color: var(--body-text-black);
    font-weight: 700;
}

.testimonial_section .testimonial_block .avtar_faces {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
}

.testimonial_section .testimonial_block .avtar_faces img {
    max-width: 100%;
}


/* -------------FAQ-Section-Css-Start----------------- */

/* faq wraper */
.faq_section .faq_panel {
    margin-top: 40px;
}

/* faq box */
.faq_section .faq_panel .card {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px #EDE9FE;
    padding: 16px 0;
}

.faq_section .faq_panel .card:last-child {
    margin-bottom: 0;
}

.faq_section .faq_panel .card-header {
    background-color: transparent;
    border: none;
    padding-bottom: 0;
    padding-top: 0;
}

.faq_section .faq_panel .card-header .btn {
    color: var(--dark-purple);
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    text-wrap: wrap;
    text-align: left;
}

.faq_section .faq_panel .card-header .btn.active {
    color: var(--dark-primary);
}

.faq_panel .accordion button,
.faq_panel .accordion button:hover,
.faq_panel .accordion button:focus {
    text-decoration: none;
}

.faq_section .faq_panel .card-header .icon_faq {
    position: relative;
    /* right: 20px; */
    color: var(--dark-primary);
}

/* faq heading h2 */
.faq_section .faq_panel .card-header h2 {
    line-height: 1;
}

/* faq paragraph */
.faq_section .faq_panel .card-body {
    padding-bottom: 0;
}

/* -------------Newsletter-Section-Css-Start------------- */

/* newsletter  wraper */
.newsletter_box {
    background: linear-gradient(135deg, #141414, #222);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px #ffffff2d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 99;
}

.newsletter_box .section_title {
    width: 45%;
}

.newsletter_box form {
    width: 60%;
}

.newsletter_section .containers {
    width: 90%;
    margin: auto;
}

/* newsletter heading h2 */
.newsletter_box .section_title h2 {
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.newsletter_box .section_title h2,
.newsletter_box .section_title p {
    color: var(--text-white);
    text-align: left;
}

/* newsletter paragraph */
.newsletter_box .section_title p {
    margin-bottom: 0;
}

/* newsletter input  */
.newsletter_box form {
    display: flex;
}

.newsletter_box form .form-group {
    margin-bottom: 0;
}

.newsletter_box form .form-group .form-control {
    width: 430px;
    height: 55px;
    border-radius: 6px;
    color: var(--body-text-black);
}

.newsletter_box form .form-group .form-control::placeholder {
    color: var(--primary);
}

/* newsletter button */
.newsletter_box form .form-group .btn {
    height: 55px;
    width: 170px;
    text-transform: uppercase;
    color: var(--primary);
    background-color: var(--bg-white);
    border-radius: 6px;
    margin-left: 10px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter_box form .form-group .btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 0;
    transition: .6s all;
    z-index: -1;
}

.newsletter_box form .form-group .btn:hover::before {
    width: 100%;
}

.newsletter_box form .form-group .btn:hover {
    color: var(--text-white);
}


/* ------Footer-Css-Start-------------- */
/* footer wraper */
footer {
    position: relative;
}

footer .top_footer {
    /* background-image: url(../images/footer-background.jpg); */
    background-color: #4B4E53;
    background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0 60px 0;
    position: relative;
    overflow: hidden;
}


/* footer logo */
footer .top_footer .abt_side{
    padding-top:50px;
}

footer .top_footer .logo {
    margin-bottom: 50px;
}

footer .top_footer .logo img {
    width: 100%;
}

footer .top_footer .abt_side li {
    padding: 0 0 10px 0;
    text-align: center;
}

/* footer social media icon */
footer .top_footer .social_media {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

/* footer link list */
footer .top_footer .social_media li a {
    display: block;
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 37px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-right: 10px;
    transition: .4s all;
}

footer .top_footer .social_media li a:hover {
    background-color: var(--bg-white);
    color: var(--body-text-black);
}

.twitter-x{
    filter: invert(100%);
}

footer .top_footer .social_media li a:hover .twitter-x{
    filter: invert(0) !important;
}

footer .top_footer .try_out {
    width: 100%;
    transform: translateX(30px);
    position: relative;
    padding: 0 20px;
}

footer .top_footer .try_out img{
    width: 100%;
}

footer .top_footer .try_out .app_link{
    position: absolute;
    top: 65%;
    left: 0;
}

footer .top_footer .try_out  .play_link{
    position: absolute;
    top:40%;
    left: 0;
}



footer .app_btn li a {
    display: block;
    padding: 12px 10px;
    background-color: var(--bg-white);
    border: 2px solid var(--text-white);
    position: relative;
    border-radius: 12px;
    transition: .4s all;
    width: 175px;
    text-align: center;
}

footer .app_btn li a:hover {
    -webkit-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
}

footer .app_btn li:last-child {
    margin-top: 20px;
}

footer .bottom_footer {
    background-color: var(--bg-black);
}

/* footer heading and text colors variable */
footer h2,
footer h3,
footer p,
footer a {
    color: var(--text-white);
}

footer a:hover {
    color: var(--primary);
}

footer .social_media a:hover footer .social_media a img {
    filter:hue-rotate(100%);
}

/* footer heading h3 */
footer h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 50px;
    padding-top: 10px;
}

footer .links ul li {
    border-bottom: 1.5px dotted rgba(255, 255, 255, 0.6);
    padding: 14px 0;
}

footer .links ul li:last-child {
    border: 0;
}

footer .links ul li a {
    display: block;
    margin-bottom: 10px;
}

/* footer last */
footer .bottom_footer {
    padding: 20px 0;
}

footer .bottom_footer p {
    margin-bottom: 0;
    font-size: 15px;
}

footer .bottom_footer .developer_text {
    text-align: right;
}

footer .bottom_footer .developer_text a {
    text-decoration: underline;
}

/* footer go top button */
.go_top {
    position: fixed;
    width: 50px;
    right: 40px;
    bottom: 75px;
    cursor: pointer;
    transition: .4s all;
    opacity: 0;
    z-index: 9999999;
}

.go_top:hover {
    bottom: 80px;
}




/* -----------Animation-Css-Start-------------- */

/* animation line wraper */
.anim_line {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.anim_line span {
    position: absolute;
    z-index: 99999;
    bottom: -275px;
    animation: star_down_one 6s infinite linear;
    opacity: 0;
}

.anim_line.dark_bg {
    max-width: 1170px;
}

/*.anim_line.dark_bg span {*/
/*    transform: rotate(180deg);*/
/*}*/

.anim_line span:first-child {
    left: -17%;
    animation-delay: 3s;
}

.anim_line span:nth-child(2) {
    left: 0%;
    animation-delay: 5s;
}

.anim_line span:nth-child(3) {
    left: 17%;
    animation-delay: 1s;
}

.anim_line span:nth-child(4) {
    left: 33.5%;
    animation-delay: 4s;
}

.anim_line span:nth-child(5) {
    left: 51%;
    animation-delay: 7s;
}

.anim_line span:nth-child(6) {
    left: 66.5%;
}

.anim_line span:nth-child(7) {
    left: 85%;
    animation-delay: 3s;
}

.anim_line span:nth-child(8) {
    left: 99%;
    animation-delay: 2s;
}

.anim_line span:nth-child(9) {
    left: 117%;
    animation-delay: 5s;
}


@keyframes star_down_one {
    0% {
        opacity: 0;
        bottom: -250px;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}




/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}

.about_app_section .about_img .screen_img img {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(3) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(2) {
    animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(1) {
    animation-delay: 3s;
}

@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}


/* ------------Waves-Animation---------------- */
.waves-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.waves {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; */
    border-radius: 100%;
    z-index: -1;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    position: absolute;
    top: 0;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    position: absolute;
    top: 0;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}



/*------Header Btn Animation------*/
@keyframes pulse-blue-small-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.7);
    }

    100%,
    30% {
        box-shadow: 0 0 0 12px transparent
    }
}

@keyframes pulse-blue-medium-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4);
    }

    100%,
    30% {
        box-shadow: 0 0 0 20px transparent
    }
}


/*------WhiteHeader Btn Animation------*/
@keyframes pulse-white-small-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 253, 253, 0.7);
    }

    100%,
    30% {
        box-shadow: 0 0 0 12px transparent
    }
}

@keyframes pulse-white-medium-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    100%,
    30% {
        box-shadow: 0 0 0 20px transparent
    }
}


/* About Us Page Css Start */

/* Bredcrumb Css Start */
.bred_crumb {
    /* background-image: url(../images/footer-background.jpg); */
    background-color: #4B4E53;
background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);

    /*background: var(--purple);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* min-height: 300px; */
    /* height: 100vh; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 0 80px;
    position: relative;
    /* margin-top: -96px; */
    overflow: hidden;
}

/* .bred_crumb::after {
    content: "";
    background-image: url(../images/inner_page_banner_overlay.png);
    position: absolute;
    bottom: -100px;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
    background-position: center;
} */

.bred_crumb .bred_text {
    text-align: center;
    /* z-index: 1000; */
    position: relative;
}

.bred_crumb .bred_text h1 {
    color: var(--text-white);
    font-size: 40px;
    font-weight: 700;
}

.bred_crumb .bred_text h1+p {
    color: var(--text-white);
    /* margin-top: -5px; */
}

.bred_crumb .bred_text ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bred_crumb .bred_text ul li {
    margin: 0 5px;
}

.bred_crumb .bred_text ul li a,
.bred_crumb .bred_text ul li span {
    color: var(--text-white);
    font-size: 14px;
    transition: .4s all;
}

.bred_crumb .bred_text ul li a:hover {
    text-decoration: underline;
}

.bred_crumb .bred_text .search_bar {
    margin-top: 25px;
    position: relative;
    z-index: 1000;
}

.bred_crumb .bred_text .search_bar form .form-group {
    position: relative;
    max-width: 600px;
    height: 60px;
    margin: 0 auto;
}

.bred_crumb .bred_text .search_bar form .form-group .form-control {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 1px solid var(--bg-primary);
    font-size: 16px;
    padding-left: 30px;
    color: var(--dark-primary);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control::placeholder {
    color: var(--dark-primary);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--dark-primary);
}

.bred_crumb .bred_text .search_bar form .form-group .btn {
    position: absolute;
    right: 2px;
    top: 2px;
    background-color: var(--bg-primary);
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 100px;
    text-align: center;
    line-height: 56px;
    font-size: 23px;
    color: var(--text-white);
}

.bred_crumb .bred_text .search_bar form .form-group .btn:hover {
    background-color: var(--dark-primary);
}

/* ----About App Soluction Section--- */

.app_solution_section .row {
    align-items: center;
}

.app_solution_section .app_text .section_title {
    text-align: left;
    margin-bottom: 20px;
}

.app_solution_section .app_text .section_title h2 {
     font-size: 30px;
}

.app_solution_section .app_text p {
    /* padding-right: 40px; */
    font-size: 16px;
    line-height: 24px;
}

.app_solution_section .app_images {
    position: relative;
}

.app_solution_section .app_images ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.app_solution_section .app_images ul li {
    position: relative;
}

.app_solution_section .app_images ul li a {
    position: relative;
}

.app_solution_section .app_images ul li a .play_icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 96px;
    height: 96px;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    line-height: 96px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.app_solution_section .app_images ul li img {
    max-width: 100%;
    border-radius: 15px;
}

.app_solution_section .app_images li:first-child {
    text-align: center;
    width: 100%;
}

.app_solution_section .app_images ul li:nth-child(2) {
    left: -5px;
    cursor: pointer;
    width: 50%;
}

.app_solution_section .app_images ul li:nth-child(3) {
    right: -5px;
    width: 50%;
}

.app_solution_section .app_images::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 100%;
    background-color: var(--bg-white);
    z-index: -1;
}


/* ------Why Section CSS Start------ */

.why_we_section {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.why_we_section p {
    color: var(--text-white);
}

.why_we_section .why_inner {
    /* background-image: url(../images/footer-background.jpg); */
    background-color: #4B4E53;
background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);
    border-radius: 30px;
    width: 1370px;
    margin: 0 15px;
    box-shadow: 0 0px 10px #EDE9FE;
    padding: 85px 0;
    color: var(--text-white);
    overflow: hidden;
}

.why_we_section .why_inner .section_title {
    margin-bottom: 50px;
}

.why_we_section .why_inner .why_box{
    margin:20px 0;
}

.why_we_section .why_inner .why_box .icon {
    margin: 20px auto 20px;
    width: 25%;
    min-height: 145px;
    /* filter: drop-shadow(0 0 1.5px #fff); */
}

.why_we_section .why_inner .why_box .icon img {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
}

.why_we_section .why_inner .why_box .text h3 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    color: var(--primary);
    margin-bottom: 10px;
}

.why_we_section .why_inner .why_box .text p {
    margin-bottom: 0;
    color: var(--text-white);
    text-align: center;
    padding: 10px 15px;
}


.why_unique_section {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.why_unique_section p {
    color: var(--text-white);
}

.why_unique_section .why_inner {
    /* background-image: url(../images/footer-background.jpg); */
    background-color: #4B4E53;
background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);
    border-radius: 30px;
    width: 1370px;
    margin: 0 15px;
    box-shadow: 0 0px 10px #EDE9FE;
    padding: 85px 0;
    color: var(--text-white);
    overflow: hidden;
}

.why_unique_section .why_inner .section_title {
    margin-bottom: 50px;
}

.why_unique_section .why_inner .why_box{
    margin:20px 0;
}

.why_unique_section .why_inner .why_box .icon {
    margin: 20px auto 20px;
    width: 90%;
    /* filter: drop-shadow(0 0 1.5px #fff); */
}

.why_unique_section .why_inner .why_box .icon img {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
}

.why_unique_section .why_inner .why_box .text h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: var(--primary);
    min-height: 60px;
}

.why_unique_section .why_inner .why_box .text p {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-white);
    text-align: center;
}

/* About-Page-Sectino */

.about_page_sectino img {
    max-width: 100%;
}

/* -----------experts_team_sectio---------- */

.experts_team_section .experts_box {
    position: relative;
    text-align: center;
    padding: 35px 20px;
    border-radius: 12px;
    background-color: transparent;
    transition: .4s all;
    /* border: 1px solid #000; */
    min-height: 100%;
}

.experts_team_section .experts_box img {
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
    padding: 10px;
    border-radius: 50%;
    /* border: 10px solid #ff5757; */
}

.experts_team_section .experts_box .text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--body-text-black);
    transition: .4s all;
}

.experts_team_section .experts_box .text span {
    color: var(--body-text-black);
    display: block;
    min-height: 50px;
}

.experts_team_section .experts_box .social_media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.experts_team_section .experts_box .social_media img {
    margin-bottom: 0px;
    max-width: 100%;
    width: 100%;
    padding: 10px;
    border-radius: 0px;
    border: none;
}

.experts_team_section .experts_box .testi-comnt{
    padding: 15px 0;
    font-style: italic;
    color: rgba(0,0,0, 0.6);
    font-size: 14px;
}

.experts_team_section .experts_box .social_media a {
    width: 40px;
    height: 40px;
    border: 1px solid #CCCCE2;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #898AAE;
    margin: 0 5px;
    transition: .4s all;
    font-size: 18px;
}

.experts_team_section .experts_box .social_media a:hover {
    border-color: var(--primary);
    /* background-color: var(--primary); */
    transform: translateY(-3px);
    color: var(--body-text-black);
}

.experts_team_section .experts_box:hover {
    background-color: rgba(255, 255, 255, 0.595);
    box-shadow: 0 0px 5px #EDE9FE;
}

.experts_team_section .experts_box:hover h3 {
    color: var(--primary);
}

.certificates{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.certificates li{
    width: 40%;
    background-color: #fff;
    border-radius: 50px 5px 50px 5px ;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    min-height: 156px;
}

.certificates li img{
    width: 50%;
}


/* Inner Page banner shape animation */
.banner_shape1,
.banner_shape2,
.banner_shape3,
.banner_shape4 {
    position: absolute;
}

.bred_crumb .banner_shape1 {
    top: 100px;
    left: 15%;
    animation: mymove 10s infinite;
}

.bred_crumb .banner_shape2 {
    top: 100px;
    right: 10%;
    animation: mymove 13s infinite;
}

.bred_crumb .banner_shape3 {
    top: 230px;
    right: 20%;
    animation: mymove 12s infinite;
}

.bred_crumb .banner_shape4 {
    top: 230px;
    left: 20%;
    animation: mymove 15s infinite;
}

.plan_section .banner_shape1 {
    top: 100px;
    left: 15%;
    animation: mymove 12s infinite;
}

.plan_section .banner_shape2 {
    top: 50px;
    right: 15%;
    animation: mymove 10s infinite;
}

.plan_section .banner_shape3 {
    /* top: 250px; */
    bottom: 30%;
    right: 5%;
    animation: mymove 13s infinite;
}

.plan_section .banner_shape4 {
    /* top: 250px; */
    bottom: 30%;
    left: 5%;
    animation: mymove 8s infinite;
}

 .banner_shape1,
 .banner_shape2,
 .banner_shape4,
 .banner_shape3{
    width: 50px;
}

.banner_shape1 img,
.banner_shape2 img,
.banner_shape4 img,
.banner_shape3 img{
    width: 100%;
}

/* CTA section Shape animation */

.query_section .banner_shape1,
.banner_shape2,
.banner_shape3 {
    position: absolute;
}

.query_section .banner_shape1 {
    top: 200px;
    left: 15%;
    animation: mymove 10s infinite;
}

.query_section .banner_shape2 {
    top: 100px;
    right: 10%;
    animation: mymove 5s infinite;
}

.query_section .banner_shape3 {
    top: 350px;
    right: 20%;
    animation: mymove 3s infinite;
}


@keyframes mymove {
    50% {
        transform: rotate(180deg);
    }
}



/* Contact Page Css Start */

.contact_page_section .contact_inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    /* flex-wrap: wrap; */
    gap: 30px;
    position: relative;
    /* margin: 100px 0; */
}

.contact_page_section .containers {
    width: 90%;
    margin: auto;
}

.contact_page_section .contact_inner .section_title h2 {
    font-weight: 600;
    font-size: 1.5rem;
}

.contact_page_section .contact_inner .contact_form {
    width: 50%;
    margin: 50px;
    padding: 50px 60px;
    margin-left: 60px;
    border-radius: 22px;
    background: linear-gradient(135deg, #141414, #222);
    box-shadow: 0 0 3px rgba(192, 192, 192, 0.8);
    border: 2px solid silver;
    color: #fff;
}

.contact_page_section .contact_inner .contact_form p {
    color: #fff;
}

.contact_page_section .contact_inner .contact_form h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.contact_page_section .contact_inner .contact_form form {
    margin-top: 30px;
}

.contact_page_section .contact_inner .contact_form form .form-group {
    margin-bottom: 20px;
}

.contact_page_section .contact_inner .contact_form form .form-group .form-control {
    height: 60px;
    padding: 5px 20px;
    color: var(--text-white);
    /* color: #fff !important; */
    background-color: #c6cbd0;
    border: 2px solid #E1DBF4;
    border-radius: 12px;
    font-weight: 500;
}

.contact_page_section .contact_inner .contact_form form .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
    color: var(--primary);
}

.contact_page_section .contact_inner .contact_form form .form-group textarea.form-control {
    height: 140px;
    padding-top: 15px;
}

.contact_page_section .contact_inner .contact_form form .term_check {
    display: flex;
    align-items: center;
}

.contact_page_section .contact_inner .contact_form form .term_check input {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}

.contact_page_section .contact_inner .contact_form form .term_check label {
    font-size: 13px;
    margin-bottom: 0;
    margin-left: 7px;
}

.contact_page_section .contact_inner .contact_form form .form-group button {
    width: 240px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 0;
}

.contact_page_section .contact_info {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: #fff;
}

.contact_page_section .contact_info p {
    color: #fff;
}

.contact_page_section .contact_info .section_title {
    text-align: center;
    padding: 0 35px;
    margin-top: 15px;
}

.contact_page_section .contact_info .section_title p a {
    color: var(--primary);
    text-decoration: underline;

}

.contact_page_section .contact_info .btn {
    width: 180px;
    /* margin: 10px 0 50px 0; */
}

.contact_page_section .contact_info .contact_info_list {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 20px;
    height: 100%;
}

.social-media-section {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    padding: 10px 0;
}

.social-media-section li a {
    display: block;
    width: 35px;
}

.social-media-section li:nth-child(3) a{
    transform: scale(1.15);
}

.social-media-section li a img {
    width: 100%;
}


.social-media-section li a:hover,
.social-media-section li a:active {
    color: var(--primary);
}

.contact_page_section .contact_info .contact_info_list li {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    height: 100%;
    align-items: center;
    text-align: left;
    gap: 60px;
    background-color: #ffffffe0;
    border-radius: 15px;
    color: #000;
    padding: 20px;
}

.contact_page_section .contact_info .contact_info_list li .img {
    width: 40px;
    filter: drop-shadow(0 0 10px #aaa);
    /* margin-right: 20px; */
}

.contact_page_section .contact_info .contact_info_list li .text {
    width: calc(100% - 85px);
}

.contact_page_section .contact_info .contact_info_list li .text span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--body-text-black);
}

.contact_page_section .contact_info .contact_info_list li .text p,
.contact_page_section .contact_info .contact_info_list li .text a {
    margin: 0;
    color: #000;
}

.contact_page_section .contact_info .contact_info_list li .text a:hover {
    color: var(--dark-primary);
}

.map_section {
    margin: 50px 0;
}



/* ---------Query-Section-Css-Start-------- */
.query_section {
    display: flex;
    justify-content: center;
}

.query_inner {
    width: 1370px;
    margin: 0 15px;
    /* background-image: url(../images/footer-background.jpg); */
    background-color: #4B4E53;
background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);

    /* background: var(--dark-primary); */
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    min-height: 420px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.query_inner .section_title h2,
.query_inner .section_title p {
    color: var(--primary);
}

.query_inner .section_title {
    margin-bottom: 40px;
}

.query_inner .white_btn {
    font-size: 25px;
    font-weight: 700;
}

.query_inner .white_btn:hover {
    border-color: var(--primary);
}

.about_trust_section {
    margin-bottom: 40px;
}

.top_gap {
    margin-top: 80px !important;
}

.social-container {
    position: fixed;
    top: 35%;
    right: 0px;
    z-index: 999;
}

/* Main Toggle Button */
.social-toggle {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    position: relative;
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.heartbeat {
    animation: heartbeat 3s infinite ease-in-out;
}

/* Shrink when inactive */
.social-container.shrink .social-toggle {
    opacity: 0.6;
}

.social-toggle img{
    width: 100%;
}

/* Social Media Icons */
.ct-socials {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 180px;
    height: 220px; 
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
}

/* Expand Icons Around the Button */
.social-container.active .ct-socials {
    transform: scale(1);
    opacity: 1;
    transform: translateY(-15px);
}

/* Position Icons in Circular Shape */
.ct-socials li {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* Updated Icon Placement (Circular) - redistributed to fit Snapchat */
.ct-socials li:nth-child(1) { transform: translate(62px, 42px); } /* Facebook */
.ct-socials li:nth-child(2) { transform: translate(-28px, -30px); } /* YouTube */
.ct-socials li:nth-child(3) { transform: translate(-32px, -89px); } /* Instagram */
.ct-socials li:nth-child(4) { transform: translate(5px, -140px); } /* Twitter */
.ct-socials li:nth-child(5) { transform: translate(62px, -170px); } /* Snapchat (NEW) */
.ct-socials li:nth-child(6) { transform: translate(2px, 21px); } /* LinkedIn */
.ct-socials li:nth-child(7) { transform: translate(64px, -59px); } /* Close button */

/* Initially hidden (shrink into button) */
.social-container.shrink .ct-socials li {
    transform: translate(0, 0);
    transition: transform 0.4s ease-in-out;
}

/* Individual Icons */
.ct-socials li a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
}

/* Social Media Colors */
.ct-social-fb { background-color: #4267B2; } /* Facebook */
.ct-social-yt { background-color: #FF0000; } /* YouTube */
.ct-social-in { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); } /* Instagram */
.ct-social-tw { background-color: #222; } /* Twitter */
.ct-social-sc { background-color: #FFFC00; color: #000;} /* Snapchat - Yellow */
.ct-social-li { background-color: #0077B5; } /* LinkedIn */

.ct-social-tw img {
    filter: invert(100%);
}

/* Snapchat icon specific styling - dark text on yellow background */
.ct-social-sc a {
    color: #000 !important;
    font-size: 30px !important;
}

/* Toggle Button Change to Close */
/* Hide Toggle Button When Active */
.social-container.active .social-toggle {
    display: none;
}

/* Style for Close Button (Initially Hidden) */
.ct-socials .social-close {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #222;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Close Button When Active */
.social-container.active .social-close {
    opacity: 1;
}

/* .social-container.active .social-toggle i {
    content: "\ea0d";
} */


.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.privacy-intro {
    margin-bottom: 2.5rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.highlights-box {
    background-color: #f0f9ff;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlights-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlights-list {
    list-style-type: none;
}

.highlights-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

/* .highlights-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
} */

.nested-list {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    list-style-type: circle;
}

.privacy-section {
    background-color: white;
    padding: var(--section-padding);
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    color: var(--primary);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.75rem;
}

.privacy-section h3 {
    color: #1e293b;
    margin: 1.5rem 0 1rem;
    font-size: 1.35rem;
}

.privacy-section p, .privacy-section ul {
    margin-bottom: 1rem;
}

.privacy-section ul, .privacy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: #1e293b;
}

.contact-section {
    background-color: #eff6ff;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.contact-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-email {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background-color: var(--bg-white);
    color:var(--bg-primary);
    border: 2px solid var(--primary);
    transform: translateY(-2px);
}

.table-of-contents {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    font-family: "Poppins", serif;
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.table-of-contents ul {
    list-style-type: none;
    margin-left: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.table-of-contents a:hover {
    color: var(--bg-primary);
    text-decoration: underline !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 1.75rem;
    }
    
    .privacy-section {
        padding: 1.25rem;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
}

body.modal-open {
    overflow: hidden;
  }
  
  .custom-modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .custom-modal-container.show {
    opacity: 1;
  }
  
  .custom-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .custom-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    animation: modalPulse 0.5s forwards;
  }
  
  @keyframes modalPulse {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
  }
  
  .custom-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
  }
  
  .custom-modal-close:hover {
    color: #000;
    transform: rotate(90deg);
  }

  .custom-modal-body {
    text-align: center;
  }
  
  .custom-modal-body img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .play-button {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .play-button:hover {
    transform: scale(1.05);
  }
  
  .play_btn {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .play_btn:hover {
    transform: scale(1.1);
  }
  
  
  /* FittBot Free Trial Banner - Unique class names to avoid conflicts */
.fittbot__free-trial-wrapper {
            position: relative;
            width: 100%;
            padding: 120px 0 40px;
            background-color: #4B4E53;
            background-image: linear-gradient(147deg, #4B4E53 0%, #000000 74%);
            overflow: hidden;
            z-index: 999;
        }

        .fittbot__free-trial-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 25px 20px;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Side Images */
        .fittbot__side-image {
            flex: 0 0 auto;
            z-index: 3;
            animation: fittbot__slideInBounce 1.5s ease-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fittbot__side-image.left {
            animation-delay: 0.5s;
            animation-fill-mode: both;
        }

        .fittbot__side-image.right {
            animation-delay: 0.7s;
            animation-fill-mode: both;
        }

        .fittbot__side-image img {
            max-width: 180px;
            width: 100%;
            height: auto;
            /*filter: drop-shadow(0 4px 15px rgba(255, 87, 87, 0.3));*/
            transition: transform 0.3s ease;
            object-fit: contain;
        }

        .fittbot__side-image img:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .fittbot__free-trial-content {
            position: relative;
            z-index: 2;
            text-align: center;
            /*flex: 1;*/
            min-width: 300px;
            margin: 0 20px;
            animation: fittbot__contentFadeIn 2s ease-out 1s both;
        }

        .fittbot__free-trial-badge {
            display: inline-block;
            background: #ff5757;
            color: #fff;
            font-weight: 700;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(255, 87, 87, 0.5);
            margin-bottom: 12px;
            animation: fittbot__pulse 2s infinite;
        }

        .fittbot__free-trial-title {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .fittbot__free-trial-description {
            font-size: 18px;
            color: #fff;
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .fittbot__free-trial-button {
            display: inline-block;
            background: #ff5757;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 87, 87, 0.4);
            border: 2px solid #ff5757;
        }

        .fittbot__free-trial-button:hover {
            background: transparent;
            color: #ff5757;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 87, 87, 0.6);
        }

        .fittbot__free-trial-countdown {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 15px 0;
        }

        .fittbot__free-trial-countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 8px 12px;
            min-width: 60px;
        }

        .fittbot__free-trial-countdown-number {
            font-size: 24px;
            font-weight: 700;
            color: #ff5757;
        }

        .fittbot__free-trial-countdown-label {
            font-size: 12px;
            color: #fff;
            text-transform: uppercase;
        }

        .fittbot__close-banner {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 20px;
            cursor: pointer;
            z-index: 3;
            transition: color 0.3s ease;
        }

        .fittbot__close-banner:hover {
            color: #fff;
        }

        /* Grain Confetti System */
        .fittbot__grain-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .fittbot__grain-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: rgba(0, 0, 0, 0.05);*/
            opacity: 0;
            transition: opacity 0.3s ease;
        }



        /* Grain Pieces */
        .fittbot__grain {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 2px;
            pointer-events: none;
            box-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }



        /* Animations */
        @keyframes fittbot__pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes fittbot__slideInBounce {
            0% {
                transform: translateX(-100px) scale(0.8);
                opacity: 0;
            }
            60% {
                transform: translateX(10px) scale(1.1);
                opacity: 1;
            }
            100% {
                transform: translateX(0) scale(1);
                opacity: 1;
            }
        }

        @keyframes fittbot__contentFadeIn {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }



        /* Grain animation keyframes */
        @keyframes fittbot__grainShootLeft {
            0% {
                opacity: 0;
                transform: translateX(0) translateY(0) scale(0.3) rotate(0deg);
            }
            10% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1.2) rotate(0deg);
            }
            30% {
                opacity: 1;
                transform: translateX(var(--target-x-30)) translateY(var(--target-y-30)) scale(1) rotate(60deg);
            }
            70% {
                opacity: 1;
                transform: translateX(var(--target-x-70)) translateY(var(--target-y-70)) scale(1) rotate(120deg);
            }
            100% {
                opacity: 0;
                transform: translateX(var(--target-x)) translateY(var(--target-y)) scale(0.4) rotate(180deg);
            }
        }

        @keyframes fittbot__grainShootRight {
            0% {
                opacity: 0;
                transform: translateX(0) translateY(0) scale(0.3) rotate(0deg);
            }
            10% {
                opacity: 1;
                transform: translateX(0) translateY(0) scale(1.2) rotate(0deg);
            }
            30% {
                opacity: 1;
                transform: translateX(var(--target-x-30)) translateY(var(--target-y-30)) scale(1) rotate(-60deg);
            }
            70% {
                opacity: 1;
                transform: translateX(var(--target-x-70)) translateY(var(--target-y-70)) scale(1) rotate(-120deg);
            }
            100% {
                opacity: 0;
                transform: translateX(var(--target-x)) translateY(var(--target-y)) scale(0.4) rotate(-180deg);
            }
        }



        /* Responsive Design */
        @media (max-width: 991px) {
            .fittbot__free-trial-container {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            
            .fittbot__side-image {
                order: 2;
            }
            
            .fittbot__free-trial-content {
                order: 1;
                margin: 0;
                min-width: auto;
            }
            
            .fittbot__side-image img {
                max-width: 160px;
            }
        }

        @media (max-width: 767px) {
            .fittbot__free-trial-container {
                gap: 25px;
                padding: 20px 15px;
            }
            
            .fittbot__side-image img {
                max-width: 130px;
            }
            
            .fittbot__free-trial-title {
                font-size: 28px;
            }
            
            .fittbot__free-trial-description {
                font-size: 16px;
            }
            
            .fittbot__free-trial-countdown {
                gap: 10px;
            }
            
            .fittbot__free-trial-countdown-item {
                min-width: 50px;
            }
            
            .fittbot__free-trial-countdown-number {
                font-size: 20px;
            }
        }

        @media (max-width: 575px) {
            .fittbot__free-trial-container {
                gap: 20px;
                padding: 20px 10px;
            }
            
            .fittbot__side-image img {
                max-width: 100px;
            }
            
            .fittbot__free-trial-badge {
                font-size: 14px;
            }
            
            .fittbot__free-trial-title {
                font-size: 24px;
            }
            
            .fittbot__free-trial-button {
                font-size: 16px;
                padding: 10px 25px;
            }
        }

        @media (max-width: 480px) {
            .fittbot__side-image img {
                max-width: 80px;
            }
            
            .fittbot__free-trial-container {
                padding: 15px 8px;
            }
        }

        @media (max-width: 360px) {
            .fittbot__side-image img {
                max-width: 70px;
            }
        }