@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700&display=swap");

:root {
    --primery: #1f3cff;
    --button-primary: #0c1024;
    --button-primary-2: #0c1024;
    --button-primary-rgb: 12, 16, 36;
    --secondary: #f7f9ff;
    --secondary-dark: #edf2ff;
    --border: #dfe6ff;
    --body-text: #1b2140;
    --light-primery: #e6f2ff;
    --white: #ffffff;
    --black: #0c1024;
    --dark: #0f1b4a;
    --dark2: #2a355b;
    --nutral: #f3f6ff;
    --dark-greay: #667199;
    --greay: #59627a;
    --red-color: #ff4d6d;
    --green: #12c481;
    --accent: #00a9ff;
    --accent-2: #ff8a1f;
    --sky: #eaf4ff;
}

/* ------Common-Css------------- */
.srcn-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: "Outfit", sans-serif;
    color: var(--body-text);
    font-variant-ligatures: none;
        background: linear-gradient(135deg, #ffffff 10%, #eaf6ff 35%, #f1edff 60%, #ffffff 90%)
}

.top-offer-bar {
    background: linear-gradient(90deg, #0b2a6f 0%, #0f1b4a 55%, #0b2a6f 100%);
    color: var(--white);
    font-size: 14px;
    position: relative;
    z-index: 100000;
}

.top-offer-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
    position: relative;
}

.top-offer-inner del {
    opacity: 0.7;
}

.top-offer-inner strong {
    font-weight: 700;
}

.offer-link {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

.offer-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 0 6px;
}

.row_am {
    padding: 74px 0 0px 0;
}


a {
    text-decoration: none;
    color: var(--primery);
    transition: .4s all;
}

a:hover {
    text-decoration: none;
    color: var(--primery);
}

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

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

/* heading common css */

h5,
h6 {
    color: var(--black);
    font-weight: 700;
    line-height: 1.4;
    font-family: "Sora", sans-serif;
}

h1,
h2,
h3,
h4 {
    /* font-family: "Sora", sans-serif; */
    letter-spacing: normal;
    font-weight: 600;
}

h1 {
    font-size: 65px;
}

h2 {
    font-size: 41px;
    line-height: 45px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--body-text);
    font-family: "Outfit", sans-serif;
    word-spacing: 0.1px;
}

.white_text p,
.white_text .section_title h2,
.white_text span,
.white_text h3,
.white_text h4 {
    color: var(--white);
}

.section_title {
    text-align: center;
}

.section_title p {
    font-size: 16px;
    color: var(--dark-greay);
}

.section_title.white_text h2,
.section_title.white_text p {
    color: var(--white);
}

.title_badge {
    color: var(--dark);
    display: inline-block;
    padding: 2px 18px;
    border-radius: 100px;
    background: linear-gradient(135deg, #bfcede, #c7ccd9);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}

/* purple button */

.btn {
    font-weight: 700;
}

.puprple_btn {
    background: linear-gradient(135deg, var(--button-primary), var(--button-primary-2));
    color: var(--white);
    border-radius: 999px;
    padding: 8px 22px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 16px 32px rgba(11, 30, 59, 0.15);
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--white);
    border-radius: 6px;
    transition: .6s all;
    z-index: -1;
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--dark);
}

/* light button */

.white_btn .puprple_btn {
    background-color: var(--white);
    border: solid 1px var(--button-primary);
    color: var(--button-primary);
    border-radius: 999px;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    font-size: 16px;
}

.white_btn .puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--button-primary);
    border-radius: 6px;
    transition: .6s all;
    z-index: -1;
    color: var(--white);
}

.white_btn .puprple_btn:hover::before {
    width: 100%;
}

.white_btn .puprple_btn:hover {
    color: var(--white);
    border: solid 1px var(--button-primary);
}

.btn_block {
    position: relative;
    display: inline-block;
}

.bred_text h1 {
    font-size: 29px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 13px;
}

.btn_bottom {
    z-index: 1;
    border: 1px solid var(--button-primary);
    border-radius: 100px;
    position: absolute;
    top: -8px;
    left: 8px;
    right: -12px;
    transform: translate(-0.52em, 0.52em);
    width: 100%;
    height: 100%;
}

/* 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: transparent;
    border: 1px solid var(--button-primary);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: var(--button-primary);
}

.container.container-sm {
    max-width: 900px;
}

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

/* -------------Preloader-Css-Start-------------- */

/* 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(--primery);
    -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(--dark);
    -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-greay);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.spin_text {
    transform-origin: 50% 50% 0;
    transform: rotate(0deg);
    -webkit-animation: spin 15s linear infinite;
    -moz-animation: spin 15s linear infinite;
    animation: spin 15s 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);
    }
}

/* ------Round Animation------- */

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

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

/* --------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;
}

@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);
    }
}

.no_bottom_padding {
    padding-bottom: 0 !important;
}

/* -----------Header-Css-Start------------------- */

/* header wraper */

header {
    width: 100%;
    z-index: 99999;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 27, 74, 0.08);
    box-shadow: 0 10px 24px rgba(15, 27, 74, 0.06);
    transition: .4s all;
}

header.fix_style {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.96);
    padding: 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

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

header.fixed .navbar {
    padding: 0;
}

/* navigation bar */

.navbar {
    padding: 2px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}

.navbar-nav.nav-center {
    margin: 0;
    gap: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 8px;
}

.nav-actions .nav-link {
    padding: 0 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-actions .nav-link .bi {
    font-size: 14px;
    color: var(--black);
}

.nav-actions .nav-link.nav-support {
    background: rgba(12, 16, 36, 0.08);
    border: 1px solid rgba(12, 16, 36, 0.12);
    border-radius: 999px;
    padding: 4px 10px;
}

.nav-actions .nav-cta {
    padding: 6px 12px;
    font-size: 13px;
}

.nav-actions .app-header-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

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

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0px 10px;
    font-weight: 600;
    font-size: 15px;
    transition: .4s all;
    color: var(--dark);
    letter-spacing: 0.2px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primery);
}

.navbar-expand-lg .navbar-nav .nav-item .btn_block {
    margin-left: 24px;
    margin-right: 10px;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--white);
    background: linear-gradient(135deg, var(--button-primary), var(--button-primary-2));
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    position: relative;
    transition: .4s all;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(11, 30, 59, 0.2);
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--black);
    border-radius: 8px;
    transition: .6s all;
    z-index: -1;
}

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

.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
    color: var(--white);
}

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

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-right: 3rem;
}

a.navbar-brand span {
    font-size: 24px;
    font-weight: 600;
    color: #0d235d;
}

.app-header-icons img {
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 27, 74, 0.08);
    box-shadow: 0 8px 16px rgba(15, 27, 74, 0.08);
}

.navbar-brand h3 {
    color: var(--primery);
    font-weight: 800;
    font-size: 28px;
    margin: 0;
}

/* navigation bar dropdown */
.dropdown-menu{
    padding: 0 !important;
    border-radius: 14px;
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 18px 30px rgba(11, 30, 59, 0.12);
    overflow: hidden;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 7px 14px !important;
    clear: both;
    color: #1f2a33 !important;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent !important;
    border: 0;
    font-weight: 600;
    font-size: 15px;
}

.dropdown-item:hover {
    background-color: rgba(11, 30, 59, 0.06) !important;
    color: var(--dark) !important;
}

.mega-dropdown .mega-menu.dropdown-menu {
    padding: 16px !important;
    width: 760px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9fbff;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 16px;
}

.mega-menu-left {
    background: var(--white);
    border: 1px solid rgba(11, 30, 59, 0.08);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 24px rgba(11, 30, 59, 0.08);
    display: grid;
    gap: 4px;
}

.mega-menu-left .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px !important;
}

.mega-menu-right {
    border-radius: 18px;
    position: relative;
    background:
        radial-gradient(220px 120px at 15% 25%, rgba(13, 44, 255, 0.12), transparent 60%),
        radial-gradient(240px 140px at 80% 70%, rgba(0, 179, 255, 0.12), transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
    border: 1px solid rgba(13, 44, 255, 0.12);
    overflow: hidden;
    padding: 30px;
}

.mega-menu-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(12, 16, 36, 0.06) 0 2px, transparent 3px);
    background-size: 22px 22px;
    opacity: 0.5;
    pointer-events: none;
}

.zapier-menu.dropdown-menu {
    width: 980px;
    background: #fffaf5;
    border: 1px solid rgba(15, 27, 74, 0.08);
}

.zapier-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 240px;
    gap: 22px;
}

.zapier-menu-col {
    display: grid;
    gap: 6px;
}

.zapier-menu-title {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #6d748f;
    margin-bottom: 4px;
}

.zapier-menu-item {
    font-weight: 700;
    color: #1b2140;
    font-size: 14px;
}

.zapier-menu-desc {
    color: #6d748f;
    font-size: 12px;
    margin-bottom: 6px;
}

.zapier-menu-side {
    background: #fff4ea;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 122, 0, 0.18);
    display: grid;
    gap: 10px;
}

.zapier-menu-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    box-shadow: 0 12px 24px rgba(11, 30, 59, 0.08);
}

.zapier-menu-card h6 {
    margin: 8px 0 6px;
    font-size: 16px;
}

.zapier-menu-card p {
    margin-bottom: 10px;
    font-size: 12px;
    color: #6d748f;
}

.zapier-menu-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff7a00;
    font-weight: 700;
}

.zapier-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ff7a00;
}

.zapier-menu-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #6d748f;
}

.zapier-menu-link {
    font-weight: 700;
    font-size: 13px;
    color: #1b2140;
}

.zapier-menu-item:hover,
.zapier-menu-link:hover,
.zapier-menu-cta:hover {
    color: #ff7a00;
}

@media screen and (max-width: 991px) {
    .mega-dropdown .mega-menu.dropdown-menu {
        width: 100%;
        left: 0;
        transform: none;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
    }

    .mega-menu-right {
        display: none;
    }

    .zapier-menu-inner {
        grid-template-columns: 1fr;
    }

    .zapier-menu-side {
        display: none;
    }
}

/* navigation toggle menu */

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

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

.toggle-bar {
    width: 25px;
    margin: 10px 0;
    position: relative;
    border-top: 4px solid var(--black);
    display: block;
}

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

.white_header .toggle-bar,
.white_header .toggle-bar::before,
.white_header .toggle-bar::after {
    border-top: 4px solid var(--white);
}

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

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

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

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

/* ---------Hero-Slider-Css-Start------------------ */

/* hero slider wraper */

.banner_section {
    /*margin-top: 70px;*/
    padding-top: 48px;
    position: relative;
    background:
        radial-gradient(900px 520px at 90% -10%, rgba(13, 44, 255, 0.18) 0%, rgba(13, 44, 255, 0.05) 55%, transparent 100%),
        radial-gradient(820px 520px at 6% 5%, rgba(0, 179, 255, 0.2) 0%, rgba(0, 179, 255, 0.05) 60%, transparent 100%),
        radial-gradient(600px 360px at 50% -15%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 55%, transparent 100%),
        linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    overflow: hidden;
    padding-bottom: 40px;
}

.banner_section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -140px;
    top: 80px;
    background: radial-gradient(circle, rgba(0, 179, 255, 0.28), transparent 70%);
    filter: blur(8px);
}

.banner_section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 40px;
    background: radial-gradient(circle, rgba(13, 44, 255, 0.22), transparent 70%);
    filter: blur(10px);
}

.banner_section .ai_pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(12, 16, 36, 0.06) 0 2px, transparent 3px),
        radial-gradient(circle at 20% 30%, rgba(0, 169, 255, 0.16) 0 2px, transparent 3px),
        radial-gradient(circle at 60% 20%, rgba(31, 60, 255, 0.16) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 60%, rgba(255, 138, 31, 0.14) 0 2px, transparent 3px),
        linear-gradient(90deg, rgba(0, 169, 255, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 169, 255, 0.06) 1px, transparent 1px);
    background-size: 26px 26px, 120px 120px, 160px 160px, 180px 180px, 90px 90px, 90px 90px;
    opacity: 0.18;
    mix-blend-mode: multiply;
    animation: aiDrift 18s linear infinite;
}

.banner_section .ai_pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(0, 169, 255, 0.15), transparent 45%),
        radial-gradient(circle at 70% 35%, rgba(255, 138, 31, 0.12), transparent 50%);
    opacity: 0.6;
}

@keyframes aiDrift {
    0% {
        background-position: 0 0, 40px 20px, 80px 40px, 0 0, 0 0;
    }
    100% {
        background-position: 120px 80px, 200px 120px, 260px 160px, 80px 80px, 80px 80px;
    }
}

.banner_section .container {
    position: relative;
}

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

/* hero slider text */

.banner_section .banner_text {
    padding-right: 10px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    animation: heroReveal 1s ease both;
}

/* hero slider heading h1 */

.banner_section .banner_text h1 {
    font-size: 54px;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.18;
}

.banner_row {
    align-items: center;
}

.banner_section .banner_text h1 span {
    color: var(--primery);
}

.banner_section .banner_text .type-wrap span {
    font-weight: 700;
    color: var(--white);
}

.banner_section .banner_text p {
    font-size: 18px;
    padding: 0;
    margin: 0 auto 28px;
    max-width: 760px;
}

.hero_center {
}

.hero_top {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    animation: heroReveal 1s ease both;
}

.hero_badge {
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 9999px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ff4fd8, #6a5bff) border-box;
    font: 600 16px / 1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: #111;
    margin-bottom: 22px;
    font-size: 13px;
}

.hero_badge::after {
    content: "*";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 12px;
    color: var(--accent-2);
    animation: sparkle 2.2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 138, 31, 0.6);
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(0.9) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2) rotate(12deg);
        opacity: 1;
    }
}

.hero_top h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero_top p {
    margin: 0 auto 20px;
    max-width: 720px;
}

.hero_form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(13, 44, 255, 0.12);
    border-radius: 999px;
    padding: 8px 10px;
    box-shadow: 0 16px 32px rgba(11, 30, 59, 0.12);
    max-width: 560px;
    margin: 0 auto 12px;
}

.hero_form input {
    border: none;
    background: transparent;
    padding: 10px 14px;
    flex: 1;
    font-size: 15px;
    color: var(--dark);
}

.hero_form input:focus {
    outline: none;
}

.hero_form .puprple_btn {
    padding: 10px 18px;
    font-size: 14px;
}

.hero_note {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 12px;
    color: var(--dark-greay);
    margin-bottom: 4px;
}

.hero_social_line {
    margin-top: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    font-size: 13px;
    color: var(--dark-greay);
}
.top-offer-bar {
    transition: all 0.3s ease;
}
.top-offer-bar.hide {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* .hero_social_line::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 44, 255, 0.35), rgba(0, 179, 255, 0.35), transparent);
    background-size: 200% 100%;
    animation: lineFlow 7s linear infinite;
    opacity: 0.7;
} */

.hero_social_line > span {
    position: relative;
    z-index: 1;
}

.hero_social_text {
    padding: 5px 14px;
    background: linear-gradient(90deg, rgba(13, 44, 255, 0.12), rgba(0, 179, 255, 0.12));
    border: 1px solid rgba(13, 44, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(11, 30, 59, 0.08);
    color: var(--dark);
    font-weight: 700;
}

.hero_social_icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(13, 44, 255, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(11, 30, 59, 0.08);
}

.hero_social_icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(11, 30, 59, 0.18);
    animation: iconFloat 3.2s ease-in-out infinite;
}

.hero_social_icon.google {
    background: conic-gradient(from 0deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
}

.hero_social_icon.instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.hero_social_icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #2d88ff 100%);
}

.hero_social_icon:nth-child(2) {
    animation-delay: 0.3s;
}

.hero_social_icon:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes lineFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.hero_dashboard {
    margin-top: 26px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hero_ui_frame {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    border-radius: 28px;
    border: 1px solid rgba(13, 44, 255, 0.14);
    padding: 22px;
    box-shadow: 0 36px 70px rgba(11, 30, 59, 0.12);
    max-width: 1020px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero_ui_frame img {
    width: 100%;
    border-radius: 20px;
    display: block;
    max-height: 480px;
    object-fit: contain;
}

.hero_hint {
    position: absolute;
    left: 20px;
    top: -16px;
    background: var(--white);
    border: 1px solid rgba(13, 44, 255, 0.12);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--dark);
    box-shadow: 0 12px 24px rgba(11, 30, 59, 0.1);
}

.hero_ui_frame::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 179, 255, 0.22), transparent 70%);
}

.hero_ui_frame::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 70%);
}

.outline_btn {
    background: transparent;
    border: 1px solid rgba(var(--button-primary-rgb), 0.5);
    color: var(--button-primary);
    border-radius: 999px;
    padding: 8px 22px;
    font-weight: 600;
}

.outline_btn:hover {
    background: rgba(var(--button-primary-rgb), 0.08);
    color: var(--button-primary);
}

/* hero slider button */

.banner_section .app_btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 80px;
}

/* hero slider list */

.banner_section .app_btn li a {
    display: block;
    background-color: var(--dark);
    border: none;
    position: relative;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 18px 28px rgba(11, 30, 59, 0.2);
}

.banner_section .banner_text .trial_txt {
    text-align: center;
    padding: 0 0 10px 0;
    display: block;
    margin-top: 0;
    font-weight: 800;
    color: var(--primery);
    font-size: 20px;
}

.banner_section .app_btn li a:hover {
    background-color: #12315a;
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(11, 30, 59, 0.26);
}

.banner_section .app_btn li a:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 10px 18px rgba(11, 30, 59, 0.2);
}

.banner_section .app_btn li:last-child {
    margin-left: 0;
}

.banner_section .app_btn li a img {
    transition: .4s all;
    height: 36px;
}

/* hero slider users */

.banner_section .used_app {
    margin: 35px 0;
}

.banner_section .used_app ul {
    display: flex;
    align-items: center;
    margin: 0 10px 20px 0;
}

.banner_section .used_app ul li:not(:first-child) {
    margin-left: -20px;
}

.banner_section .used_app ul li:not(:first-child) img {
    border: 3px solid var(--white);
    border-radius: 100px;
}

.banner_section .used_app p {
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 0;
}

/* hero slider images */

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

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

.banner_section .banner_slider .right_icon {
    position: absolute;
    right: 60px;
    top: -10px;
}

/* hero slider mobile frame */

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

.banner_section .banner_slider #frmae_slider {
    width: 280px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 40px;
}

.banner_section .banner_slider #frmae_slider::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    background-color: #fff;
    width: 100%;
    height: 90.5%;
    border-radius: 23px;
}

/* hero slider control dots */

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

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

/* hero static image */

.banner_section .hero_img {
    text-align: right;
    width: 100%;
    position: relative;
    padding: 10px 0 10px 10px;
}

.banner_section .hero_img .mobile_view {
    display: none;
}

.hero_media {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 26px 22px;
    border-radius: 26px;
    background: radial-gradient(circle at 20% 20%, rgba(26, 163, 216, 0.18), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(255, 122, 89, 0.18), transparent 45%),
        #ffffff;
    box-shadow: 0 30px 60px rgba(11, 30, 59, 0.12);
}

.hero_glow {
    position: absolute;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 163, 216, 0.2), transparent 70%);
    z-index: 0;
    filter: blur(1px);
}

.banner_section .hero_img img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    box-shadow: 0 22px 44px rgba(11, 30, 59, 0.15);
    animation: floaty 7s ease-in-out infinite;
}

/* --------- Video Showcase --------- */

.video_section {
    padding: 30px 0 60px 0;
}

.video_frame {
    margin-top: 24px;
    background: var(--white);
    border-radius: 24px;
    /* border: 1px solid rgba(13, 44, 255, 0.12); */
    box-shadow: 0 28px 56px rgba(11, 30, 59, 0.12);
    padding: 16px;
}

.hero_video {
    width: 100%;
    border-radius: 18px;
    display: block;
    aspect-ratio: 16 / 9;
    /* background: #000; */
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floaty {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* hero side element */

.hero_side_element {
    position: absolute;
}

.hero_side_element.left_side {
    left: -10px;
    bottom: 100px;
}

.hero_side_element.right_side {
    right: 0px;
    top: 200px;
}

.hero_overlay img {
    width: 100%;
}

/* -----Typing Text------- */

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* --------- USP section ---------- */

.usp_section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: radial-gradient(800px 800px at 55% 45%, rgb(90 140 255 / 33%), rgba(180, 205, 255, 0.35) 35%, rgba(255, 255, 255, 0.95) 65%), linear-gradient(180deg, #f6f8fc 0%, #f3f6fb 100%);
}

.usp_section .usp_box {
    color: var(--dark);
    background: var(--white);
    display: flex;
    align-content: center;
    position: relative;
    border: solid 1px #132379;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 53%);
    padding: 30px;
    background-color: #f7f7f7c9;
}

.usp_section .row > div {
    animation: cardIn 0.9s ease both;
}

.usp_section .row > div:nth-child(2) {
    animation-delay: 0.1s;
}

.usp_section .row > div:nth-child(3) {
    animation-delay: 0.2s;
}

.usp_section .row > div:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.usp_section .col-md-3:last-child .usp_box:after {
    display: none;
}

.usp_section .usp_box .usp_icon {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(26, 163, 216, 0.12);
    color: var(--primery);
}

.usp_section .usp_box span {
    font-family: "Sora", sans-serif;
    font-size: 35px;
    font-weight: 700;
}

.usp_section .usp_text {
    line-height: 1.4em;
    padding-top: 35px;
    text-align: left;
}

.usp_section .usp_text p {
    margin-bottom: 0;
    color: var(--dark-greay);
}

.blure_shape {
    background-color: var(--white);
    width: 200px;
    height: 200px;
    border-radius: 100%;
    filter: blur(90px);
    position: absolute;
}

.blure_shape.bs_1 {
    left: 400px;
    bottom: -100px;
}

.blure_shape.bs_2 {
    right: 400px;
    top: -100px;
}

/* 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: 100%;
    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;
}

/* ---------- text List Flow Css Start ------------- */




/* ----------Feature-Detail-Section-start------ */

.features_section {
    padding-top: 70px;
}

/* features section wraper */

.features_section .feature_detail {
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border-radius: 32px;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 50px 42px;
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 28px 56px rgba(11, 30, 59, 0.08);
    align-items: center;
}

/* features section image */

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

.features_section .feature_detail .feature_img img {
    max-width: 60%;
    margin: 0 auto;
    display: block;
}

/* features section box */

.features_section .feature_detail .feature_box {
    max-width: 440px;
    text-align: left;
}

.features_section .feature_detail .feature_box .data_block {
    margin: 25px 0 25px 0;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(11, 30, 59, 0.08);
    background-color: var(--white);
    box-shadow: 0 16px 26px rgba(11, 30, 59, 0.08);
    transition: .4s all;
}

.features_section .feature_detail .feature_box .data_block:hover {
    border: 1px solid rgba(26, 163, 216, 0.45);
    transition: .4s all;
    transform: translateY(-4px);
}

.features_section .feature_detail .feature_box .data_block h4 {
    font-weight: 700;
    line-height: 1.5;
}

.features_section .feature_detail .data_block .text {
    padding-top: 10px;
}

.features_section .feature_detail .left_data {
    text-align: left;
    padding-left: 100px;
}

.features_section .feature_detail .right_data {
    padding-right: 100px;
}

.features_section .feature_detail .left_data .data_block .icon {
    margin-right: -15px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 163, 216, 0.12);
    color: var(--primery);
    border-radius: 12px;
}

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

.features_section .feature_detail .float_element {
    position: absolute;
}

.features_section .feature_detail .float_element.lft_side {
    left: -50px;
    bottom: 150px;
}

.features_section .feature_detail .float_element.rht_side {
    top: 50px;
    right: -30px;
}

.features_section .feature_detail .float_element.btm_side {
    right: 300px;
    bottom: -40px;
}

/* ------------Dishes list scroll Section Css------------ */

.dishes_section .dish_slider {
    padding: 30px 0 0 0;
}

.dishes_section #about_slider .dish_slides img {
    height: 150px;
    object-fit: cover;
    width: 100%;
    border-radius: 100px;
    border: solid 1px var(--border);
}

/* ------------Service App Section Css------------ */

.service_section {
    position: relative;
}

/* --------- Feature Showcase --------- */

.features_showcase {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 28px 56px rgba(11, 30, 59, 0.08);
}

.feature_grid {
    display: grid;
    gap: 16px;
}

.feature_tile {
    background: var(--white);
    border: 1px solid rgba(11, 30, 59, 0.08);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 14px 26px rgba(11, 30, 59, 0.06);
}

.feature_tile h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature_tile p {
    margin-bottom: 12px;
    color: var(--dark-greay);
}

.feature_tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 179, 255, 0.14);
    color: var(--primery);
    margin-bottom: 10px;
}

.feature_bullets {
    display: grid;
    gap: 8px;
    margin: 0;
    text-align: start;
}

.feature_bullets li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: var(--dark-greay);
    font-size: 15px;
}


.feature_media {
    display: grid;
    gap: 16px;
    justify-items: center;
}

.media_card {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 22px 44px rgba(11, 30, 59, 0.12);
    padding: 18px;
}

.media_card img {
    width: 100%;
    border-radius: 16px;
}

.media_badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 44, 255, 0.92);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.media_stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat_chip {
    background: var(--white);
    border: 1px solid rgba(11, 30, 59, 0.08);
    border-radius: 14px;
    padding: 10px 14px;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 12px 22px rgba(11, 30, 59, 0.08);
}

.stat_chip h6 {
    margin-bottom: 2px;
    font-size: 18px;
}

.stat_chip p {
    margin-bottom: 0;
    color: var(--dark-greay);
    font-size: 13px;
}

.features_cta {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

/* --------- Integrations Section --------- */

.integrations_section {
    padding: 60px 0 50px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(520px 260px at 10% -10%, rgba(13, 44, 255, 0.12), transparent 60%),
        radial-gradient(520px 260px at 92% 10%, rgba(0, 179, 255, 0.12), transparent 60%),
        linear-gradient(180deg, #f8faff 0%, #eef4ff 100%);
}

.integrations_section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(13, 44, 255, 0.22), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.integrations_section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -160px;
    top: -180px;
    background: radial-gradient(circle, rgba(0, 179, 255, 0.22), transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

.integration_card {
    margin-top: 40px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 0.98) 100%);
    border: 1px solid rgba(13, 44, 255, 0.12);
    box-shadow:
        0 28px 56px rgba(11, 30, 59, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    padding: 42px 7px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.integration_card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(13, 44, 255, 0.35), rgba(0, 179, 255, 0.15), rgba(255, 122, 0, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.integration_list {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.integration_item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: linear-gradient(120deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid rgba(13, 44, 255, 0.12);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 14px 26px rgba(11, 30, 59, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.integration_item::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(13, 44, 255, 0.12), transparent 70%);
    opacity: 0.6;
}

.integration_item:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 44, 255, 0.22);
    box-shadow: 0 18px 34px rgba(11, 30, 59, 0.12);
}

.integration_item h6 {
    margin-bottom: 6px;
}

.integration_item p {
    margin-bottom: 0;
    color: var(--dark-greay);
}

.integration_icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d2cff 0%, #4b7bff 60%, #00b3ff 100%);
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 10px 22px rgba(13, 44, 255, 0.25);
    padding: 11px;
}

.integration_icon.bi-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #2d88ff 100%);
    box-shadow: 0 10px 22px rgba(24, 119, 242, 0.28);
}

.integration_icon.bi-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
    box-shadow: 0 10px 22px rgba(221, 42, 123, 0.28);
}

.integration_icon.bi-google {
    background: conic-gradient(from 0deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
    box-shadow: 0 10px 22px rgba(66, 133, 244, 0.28);
}

.integration_visual {
    position: relative;
}

.integration_chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(120deg, #ffffff 0%, #f3f7ff 100%);
    border: 1px solid rgba(13, 44, 255, 0.15);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 12px 24px rgba(11, 30, 59, 0.1);
    margin-bottom: 18px;
}

.integration_chip span {
    color: var(--primery);
}

.integration_stack {
    display: grid;
    gap: 14px;
}

.stack_card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(120deg, #ffffff 0%, #f7faff 100%);
    border-radius: 16px;
    border: 1px solid rgba(13, 44, 255, 0.12);
    padding: 14px 16px;
    box-shadow: 0 12px 22px rgba(11, 30, 59, 0.08);
}

.stack_card span {font-size: 20px;font-weight: 400;font-family: 'FontAwesome';padding: 15px 0;}

.stack_card h6 {
    margin-bottom: 4px;
}

.stack_card p {
    margin-bottom: 0;
    color: #667199;
}

/* --------- Industries Section --------- */

.industries_section {
    padding: 60px 0 30px 0;
}

.industry_tabs {
    margin-top: 28px;
    border-bottom: 1px solid rgba(13, 44, 255, 0.2);
    gap: 10px;
    justify-content: center;
}

.industry_tabs .nav-link {
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 999px;
}

.industry_tabs .nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primery), #5a7bff);
    box-shadow: 0 12px 24px rgba(13, 44, 255, 0.18);
}

.industry_content {
    margin-top: 30px;
}

.industry_panel {
    background: var(--white);
    border: 1px solid rgba(13, 44, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 22px 44px rgba(11, 30, 59, 0.08);
}

.industry_panel h3 {
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 38px;
}

.industry_panel p {
    color: var(--dark-greay);
}

.industry_bullets {
    margin: 18px 0 0 0;
    display: grid;
    gap: 10px;
}

.industry_bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--dark-greay);
    font-size: 15px;
}

.industry_bullets li span {
    color: var(--primery);
    font-size: 18px;
}

.industry_media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(11, 30, 59, 0.12);
}

.industry_media img {
    width: 100%;
    height: auto;
    display: block;
}

.service_section .service_blocks {
    padding: 50px 0;
    align-items: center;
}

.service_section .service_blocks .img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 22px 36px rgba(11, 30, 59, 0.12);
}

.service_section .service_text {
    padding-right: 50px;
}

.service_section .service_text.right_side h2 {
    font-size: 32px;
    font-weight: 600;
}

.service_section .service_text h3 {
    margin: 15px 0 8px 0;
}

.service_section .service_text p {
    padding-right: 100px;
    font-size: 15px;
    font-weight: 400;
    color: var(--dark-greay);
}

.service_section .service_text .text_badge {
    font-size: 14px;
    color: var(--primery);
    margin: 25px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.service_section .service_text .listing_block li {
    display: flex;
    gap: 15px;
}

.service_section .service_text .listing_block li .icon span {
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    color: var(--white);
    background-color: var(--dark);
    border-radius: 100px;
    font-size: 8px;
    margin-top: 3px;
}

.service_section .service_text .listing_block li .text {
    width: calc(100% - 50px);
}

.service_section .service_text .feature_list li {
    display: flex;
    align-items: start;
    gap: 5px;
}

.service_section .service_text .feature_list li .icon span {
    color: var(--primery);
    font-size: 18px;
}

.service_section .service_text .feature_list li p {
    margin: 0;
    padding-top: 2px;
}

/* service section ui list */

.service_section .service_text .design_block {
    padding-top: 15px;
}

.service_section .service_text .design_block li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 25px;
}

.service_section .service_text .design_block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url(../images/right_icon.webp);
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.service_section .service_text .design_block li h6 {
    margin-bottom: 8px;
}

.service_section .service_text .design_block li p {
    margin-bottom: 0;
}

.service_section .service_text .btn_block {
    margin-top: 20px;
}

.service_section .service_text .btn {
    text-transform: capitalize;
    font-weight: 700;
}

/* Service Images Css Start  */

.service_blocks .inner_block {
    position: relative;
    text-align: center;
}

.service_blocks .inner_block .img {
    position: relative;
}

/* --------- Win win Section Css Start---------- */

.winwin_section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.winwin_section .win_listing {
    padding: 40px 0 0 0;
}

.winwin_section .win_listing .row {
    align-items: flex-start;
}

.winwin_section .win_listing .listing_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}

.winwin_section .win_listing .listing_inner .win_block {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    border: solid 1px var(--border);
    width: 48%;
    margin-bottom: 40px;
}

.winwin_section .win_listing .listing_inner .win_block img {
    border-radius: 20px;
    max-width: 100%;
    width: 100%;
}

.winwin_section .win_listing .win_block .text {
    padding: 30px 0 0 0;
    text-align: left;
}

.winwin_section .win_listing .win_block p {
    padding: 0;
    margin: 15px 0;
}

.winwin_section .win_listing .win_block .text .win_list li {
    display: flex;
    align-items: start;
    gap: 5px;
}

.winwin_section .win_listing .win_block .text .win_list li .icon span {
    color: var(--primery);
    font-size: 18px;
}

.winwin_section .win_listing .win_block .text .win_list li p {
    padding: 0;
    margin: 0;
    padding-top: 2px;
    font-weight: 600;
}

.winwin_section .win_listing .win_block .text .btn_block {
    margin-top: 20px;
}

/* -------------ctr Section Css Start------------- */

.ctr_app_btn_block {
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
}

.ctr_app_btn_block .app_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

.ctr_app_btn_block .app_btn li a {
    display: block;
    padding: 9px 19px;
    background-color: #0c1024;
    border: none;
    position: relative;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 0.25s ease;
}

.ctr_app_btn_block .app_btn li a:hover {
    background-color: var(--black);
    box-shadow: 0 14px 26px #0b1e3b33;
}

.ctr_app_btn_block .app_btn li a:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 8px 16px rgba(11, 30, 59, 0.18);
}

.ctr_app_btn_block .app_btn li:last-child {
    margin-left: 25px;
}

.ctr_app_btn_block .app_btn li a img {
    transition: .4s all;
    height: 25px;
}

/* --------- Advanced key features Section Css Start---------- */

.advance_feature_section {
}

.advance_feature_section .af_innner {
    background: var(--white);
    padding: 50px 0;
    position: relative;
}

.advance_feature_section .af_listing {
    padding: 20px 0 0 0;
}

.advance_feature_section .af_listing .row {
    align-items: flex-start;
}

.advance_feature_section .af_listing .listing_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}

.advance_feature_section .af_listing .listing_inner .af_block {
    background-color: var(--secondary);
    padding: 40px;
    border-radius: 20px;
    width: 30%;
    border: solid 1px var(--border);
}

.advance_feature_section .af_listing .listing_inner .af_block:hover {
    border: solid 1px var(--primery);
    transition: .4s all;
}

.advance_feature_section .af_listing .listing_inner .af_block .img {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.advance_feature_section .af_listing .listing_inner .af_block .text {
    text-align: center;
}

.advance_feature_section .af_listing .af_block h5 {
    margin: 20px 0 10px 0;
    padding: 0;
    text-align: center;
}

.advance_feature_section .af_listing .af_block p {
    margin-bottom: 40px;
}

.advance_feature_section .af_listing .af_block .process_num {
    position: absolute;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--border);
    margin: 0 auto;
    bottom: -6px;
    left: 0;
    right: 0;
}

.advance_feature_section .af_innner .float_element {
    position: absolute;
}

.advance_feature_section .af_innner .float_element.lft_side {
    left: -50px;
    top: 50px;
}

.advance_feature_section .af_innner .float_element.rht_side {
    top: 400px;
    right: -60px;
}

.advance_feature_section .af_innner .float_element.btm_side {
    left: 350px;
    bottom: -80px;
}

/* ------------Our Client Listing Section Css Start---------- */

.our_client {
    position: relative;
}

.our_client .container {
    border-top: solid 2px var(--border);
    padding-top: 70px;
}

.our_client .client_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.our_client .client_list .client_logo {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 86px;
}

.our_client .client_list .client_logo img {
    width: 160px;
    height: auto;
    opacity: .6;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.our_client .client_list .client_logo:hover img {
    opacity: 100;
    -webkit-filter: inherit;
    filter: inherit;
    transition: all ease-in-out .2s;
}

/* -------------Review Section Css Start-------------- */

.review_section {
    position: relative;
}

.review_section .positive_inner {
    padding: 50px 0 0 0;
    border-bottom: 1px solid var(--greay);
}

.review_section .positive_inner .row {
    align-items: flex-start;
}

.review_section .positive_inner .row .sticky-top {
    top: 30px;
}

.review_section .google_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review_section .google_rating .star {
    display: flex;
    align-items: center;
}

.review_section .google_rating .star span,
.review_section .review_side .review_block .coustomer_info .star span {
    color: #fc9400;
}

.review_section .google_rating p {
    margin: 0;
    font-weight: 700;
}

.review_section .google_rating p img {
    height: 16px;
    nav-left: 5px;
}

.review_section .user_review {
    margin-bottom: 60px;
}

.review_section .user_review p {
    font-weight: 700;
}

.review_section .user_review p a {
    color: var(--primery);
}

.review_section .review_side .review_block {
    background-color: var(--white);
    border: solid 1px var(--border);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0px 8px 30px var(--shadow);
}

.review_section .review_side .review_block .coustomer_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 0 0;
}

.review_section .review_block .star {
    width: 100px;
    display: flex;
    justify-content: left;
    color: #fc9400;
    margin-bottom: 15px;
}

.review_section .coustomer_info .quote {
    width: 100px;
    display: flex;
    justify-content: end;
    color: var(--secondary);
    font-size: 40px;
}

.review_section .coustomer_info .avtar {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(100% - 120px);
}

.review_section .coustomer_info .avtar img {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 150px;
}

.review_section .coustomer_info .avtar .text {
    width: calc(100% - 100px);
    text-align: left;
}

.review_section .coustomer_info .avtar .text h6 {
    margin-bottom: 0px;
}

.review_section .coustomer_info .avtar .text h3 {
    margin-bottom: 0;
}

.review_section .coustomer_info .avtar .text span {
    font-size: 14px;
}

.review_section .review_block p {
    margin: 0;
}


/* ---------Testimonial Section Css Start---------- */

.key_feature_section {
    position: relative;
}

.key_feature_section .key_innner {
    /*max-width: 1370px;*/
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.key_innner .section_title {
    margin-bottom: 35px;
    position: relative;
}

.key_feature_section .feature_box {
    padding: 36px 30px 40px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 18px 32px rgba(11, 30, 59, 0.1);
    position: relative;
}

.key_feature_section .feature_box .txt_blk {
    text-align: center;
    padding-bottom: 0;
}

.key_feature_section .feature_box .txt_blk .rating {
    margin-bottom: 10px;
}

.key_feature_section .feature_box .txt_blk .rating {
    color: #fc9400;
}

.key_feature_section .feature_box h6 {
    padding: 18px 0 0 0;
    margin-bottom: 0;
}

.key_feature_section .feature_box p .story_bold {
    font-weight: 700;
}

.key_feature_section .feature_box .img {
    margin-top: 0;
}

.key_feature_section .feature_box .img img {
    border-radius: 100px;
    margin: 0 auto;
    width: 96px;
    border: 4px solid var(--white);
    box-shadow: 0 10px 20px rgba(11, 30, 59, 0.12);
}

.key_feature_section .feature_box .quote_img {
    text-align: center;
    position: absolute;
    top: 18px;
    right: 18px;
    display: none !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(31, 60, 255, 0.1);
    border: 1px solid rgba(31, 60, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.key_feature_section .feature_box .quote_img img {
    width: 22px;
}

.key_feature_section .feature_box .txt_blk p {
    color: var(--greay);
    font-size: 15px;
    line-height: 1.7;
}

.key_innner .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 100px;
    border: 1px solid rgba(11, 30, 59, 0.2) !important;
    transition: .4s all;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(11, 30, 59, 0.12);
}

.key_innner .owl-nav button span {
    color: var(--dark-greay);
    font-size: 22px;
    line-height: 1.2;
}

.key_innner .owl-nav button.owl-prev {
    left: -50px;
    background-color: var(--white);
}

.key_innner .owl-nav button.owl-next {
    right: -50px;
    background-color: var(--white);
}

.key_innner .owl-nav button:hover {
    background-color: var(--primery);
    border-color: var(--primery);
}

.key_innner .owl-nav button:hover span {
    color: var(--white);
}

.kf_side_element {
    position: absolute;
}

.kf_side_element.left_side {
    top: 300px;
    left: 100px;
}

.kf_side_element.right_side {
    top: 600px;
    right: 50px;
}

/* -------------blog-Section-Css-Start------------- */
.card_bolg_services {
    transition: 0.35s ease;
    height: 100%;
    background: linear-gradient(120deg, #ffffff 0%, #f7faff 100%);
    border-radius: 16px;
    border: 1px solid rgba(13, 44, 255, 0.12);
    box-shadow: 0 12px 22px rgba(11, 30, 59, 0.08);
}

.sidebar__part {
    border-radius: 16px;
    background: rgb(255, 255, 255);
    padding: 21px;
    box-shadow: 0 16px 28px rgba(11, 30, 59, 0.08);
    margin-bottom: 24px;
}

.filter__search .input-group {
    border-radius: 999px;
    border: 1px solid rgba(11, 30, 59, 0.12);
    background: rgba(26, 163, 216, 0.04);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
a.read-more {
    font-size: 15px;
    font-weight: 500;
    color: var(--primery);
    font-family: "Outfit", sans-serif;
}
.read-more:hover {
    text-decoration: underline;
    color: var(--primery);
}
h5.card-title.blog-title {
    font-size: 18px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    line-height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_imges-box img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    padding: 10px;
}

.blog-sidebar {
    position: sticky;
    top: 40px;
}

.filter__search .input-group .form-control {
    background: transparent;
    border: none;
    padding: 12px 20px;
}

.filter__search .input-group .search_icon {
    padding-right: 20px;
    font-size: 17px;
    background: transparent;
    border: none;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.blog-meta span {
    font-size: 13px;
    margin-right: 15px;
    color: #666;
    display: inline-flex;
    gap: 4px;
    align-items: center;

}
.blog_details_content img {
    width: 100%;
    object-fit: cover;
    height: auto;
}
.blog_details_content h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
}

.blog_details_content h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.blog_details_content ul{
    padding-left: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: "Outfit", sans-serif;
}

.blog_details_content ul li{
    font-size: 16px;
    color: #333;
    line-height: 1.6;
        list-style: disc !important;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #074056;
    position: relative;
}

.section-header-blog {
    width: 69%;
    margin: 0 auto;
}
.social_media-blog{
    display: flex;
    gap: 15px;
}
.social_media-blog li i{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #074056;
    display: flex;
    color: #fff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

.sidebar-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #053F44;
    display: block;
    margin-top: 6px;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid #f1f1f1;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li a {
    display: block;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    color: var(--primery);
    padding-left: 8px;
}

.recent-post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

/* Thumbnail */
.recent-post-thumb img {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
}

/* Content */
.recent-post-content a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-family: "Outfit", sans-serif;
}

.recent-post-content a:hover {
    color: var(--primery);
    border-bottom: 1px solid rgba(26, 163, 216, 0.5);
}

/* Date */
.recent-post-content span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.recent-post-content i {
    color: var(--primery);
}

/* ------------- center button section ------------- */

.ctr_cta {
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
}

/* ------  CTA section ------------- */

.cta_section.new {
    padding-top: 50px;
}

.cta_section.new .cta_box {
    background: linear-gradient(135deg, #0d2cff 0%, #3b6cff 55%, #00b3ff 100%);
    position: relative;
    z-index: 99;
    border-radius: 28px;
    padding: 36px 43px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -100px;
    box-shadow: 0 26px 54px rgba(11, 30, 59, 0.35);
}

.cta_section.new .cta_box .section_title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 80px;
}

.cta_section.new .cta_box .section_title h3 {
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 26px;
    padding-bottom: 11px;
    color: var(--white);
}

.cta_section.new .cta_box .section_title p {
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cta_section.new .cta_box .section_title .customer_icon {
    position: absolute;
    left: 0;
    top: 10%;
}

.cta_section.new .cta_box .btn_block {
    display: flex;
    justify-content: end;
    align-content: center;
    height: 100%;
    flex-wrap: wrap;
    gap: 12px;
}

.cta_section.new .cta_box .btn {
    float: left;
    padding: 12px 20px;
    background-color: var(--white);
    border-radius: 14px;
    color: var(--dark);
}

.cta_section.new .cta_box .email_btn:hover {
    background-color: #1f4bff;
    transition: all ease-in-out .5s;
    color: var(--white);
}

.cta_section.new .cta_box .right {
    width: 54%;
}

.cta_section.new .cta_box .element .element1,
.t_element2 {
    position: absolute;
}

.cta_section.new .cta_box .element .element1 {
    right: 35%;
    top: 10%;
    animation: mymove 15s infinite;
}

.cta_section.new .cta_box .element .element2 {
    left: 20%;
    bottom: 6%;
    animation: mymove 8s infinite;
}

/* ------Footer-Css-Start-------------- */

/* footer wraper */

footer {
    position: relative;
    background: linear-gradient(180deg, #0b1e3b 0%, #08142a 100%);
}

footer .top_footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 200px 0 00px 0;
    position: relative;
}

/* footer logo */

footer .top_footer .logo {
    margin-bottom: 15px;
}

footer .top_footer .logo img {
    width: 150px;
}

footer .top_footer .abt_side .app_btn {
    display: flex;
}

footer .top_footer .abt_side .app_btn li {
    margin: 0 20px 0 0;
}

footer .top_footer .abt_side li {
    padding: 0 0 20px 0;
}

footer .top_footer .abt_side p {
    padding: 0 80px 0px 0;
}

/* footer social media icon */

footer .top_footer .social_media {
    display: flex;
    justify-content: end;
}

/* footer link list */

footer .top_footer .social_media li a {
    display: block;
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 34px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    margin-right: 10px;
    transition: .4s all;
}

footer .top_footer .social_media li a:hover {
    background-color: var(--primery);
    color: var(--white);
}

footer .top_footer .try_out {
    margin-left: -20px;
}

footer .app_btn li a {
    display: block;
    padding: 8px 13px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 0.25s ease;
    text-align: center;
}

footer .app_btn li a img {
    height: 20px;
    object-fit: cover;
}

footer .app_btn li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

footer .app_btn li a:active {
    transform: translateY(1px) scale(0.98);
}

footer .app_btn li a:hover img {
    transition: .4s all;
}

footer .app_btn li:last-child {
    margin-top: 20px;
}

footer .news_letter form .form-group {
    max-width: 430px;
    position: relative;
}

footer .news_letter form .form-group .form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    min-height: 48px;
    color: var(--white);
    font-weight: 500;
}

footer .news_letter form .form-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

footer .news_letter form .form-group button {
    position: absolute;
    right: 5px;
    top: 3px;
    background-color: var(--primery);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 20px;
    transition: .4s all;
}

footer .news_letter form .form-group button:hover {
    background-color: #1593c3;
    color: var(--white);
}

footer .news_letter form .note {
    font-size: 14px;
}

/* footer heading and text colors variable */

footer h2,
footer h5,
footer p,
footer a {
    color: rgba(255, 255, 255, 0.86);
}

footer a:hover {
    color: var(--white);
}

/* footer heading h3 */

footer h5 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 13px;
    line-height: 1.5;
    color: #fff;
}

footer h5::before {
    content: "";
}

footer .links ul li a {
    display: block;
    margin-bottom: 11px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
}

footer .links ul li a:hover {
    color: var(--primery);
}

/* footer last */

footer .bottom_footer {
    background-color: #081126;
    margin-top: 19px;
    padding: 30px 0 20px 0;
}

footer .bottom_footer p {
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
}

footer .bottom_footer .developer_text {
    text-align: right;
}

footer .bottom_footer .developer_text a {
    text-decoration: underline;
}

/* footer elements animation */

.top_footer .element .element1,
.element2 {
    position: absolute;
}

.top_footer .element .element1 {
    left: 120px;
    top: 200px;
    animation: mymove 15s infinite;
}

.top_footer .element .element2 {
    right: 70px;
    bottom: 200px;
    animation: mymove 10s infinite;
}

@keyframes mymove {
    50% {
        transform: rotate(180deg);
    }
}

/* footer go top button */

.go_top {
    position: fixed;
    right: 30px;
    bottom: 110px;
    cursor: pointer;
    transition: .4s all;
    display: none;
    z-index: 100;
}

.go_top span {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primery);
    color: var(--white);
    border-radius: 150px;
    font-size: 19px;
}

.go_top:hover {
    bottom: 120px;
}

/* ===============About Page Css Start================== */

/* Page Banner Css Start */

.bred_crumb {
    background: var(--secondary-dark);
    min-height: 307px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: -2;
}

.bred_crumb .bred_text {
    text-align: center;
    z-index: 1000;
    position: relative;
    padding-top: 84px;
}

.bred_crumb .bred_text h1 {
    color: var(--primery);
}

.bred_crumb .bred_text h1+p {
    color: var(--secondary);
    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(--black);
    font-size: 14px;
    transition: .4s all;
}

.bred_crumb .bred_text ul li a:hover {
    text-decoration: underline;
}

/* Inner Page banner shape animation */

.bred_crumb .banner_shape1,
.banner_shape2,
.banner_shape3 {
    position: absolute;
}

.bred_crumb .banner_shape1 {
    bottom: -20px;
    left: 0;
}

.bred_crumb .banner_shape2 {
    bottom: 10%;
    right: 0;
    /*animation: mymove 5s infinite;*/
}

.bred_crumb .banner_shape3 {
    top: 350px;
    right: 20%;
}

/* ===============About Page Css Start================== */

.about_us_section {
    padding-top: 50px;
    position: relative;
}

.about_us_section .section_title {
    text-align: left;
}

.about_us_section .section_title p {
    padding: 0 300px 0 0;
    margin-top: 20px;
}

.about_us_section #about_slider .abt_slides img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.about_us_section .abt_text h2 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -1px;
    max-width: 375px;
}

.about_us_section .abt_text h2 span {
    color: var(--primery);
}

/* ===============Why Choose Us Section Css Start================== */

.why_choose {
    position: relative;
}

.why_choose .why_choose_inner {
    padding: 54px 0;
    overflow: hidden;
    position: relative;
}

.why_choose .why_choose_inner .title_badge {
    color: var(--primery);
}

.why_choose .why_choose_inner .company_statistics ul {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin: 30px auto 0 auto;
}

.why_choose .why_choose_inner .company_statistics ul li {
    width: 25%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 4;
    padding: 30px;
    border: solid 1px var(--white);
    background-color: rgb(55 70 84);
}

.why_choose .why_choose_inner .company_statistics ul li:hover {
    border: solid 1px var(--white);
    transition: all ease-in-out .3s;
}

.why_choose .why_choose_inner .company_statistics ul li:not(:last-child) {
    margin-left: 30px;
}

.why_choose .why_choose_inner .company_statistics ul li p span {
    font-size: 35px;
    font-weight: 700;
    color: var(--secondary);
}

.why_choose .why_choose_inner .company_statistics ul li p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.why_choose .why_choose_inner .company_statistics .usp_img {
    margin: 0 0 20px 0;
}

/* ==============About Service Section Css Start============== */

.about_service .video_player {
    position: relative;
}

.about_service .video_player .play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.about_service .video_player .play_icon img {
    width: 128px;
    aspect-ratio: 1/1;
    opacity: 0.9;
}

.service_section.about_service .service_blocks {
    padding-top: 0;
    padding-bottom: 0;
}

.service_section.about_service .service_blocks .inner_block {
    background: none;
    border: none;
}

.service_section.about_service .service_blocks .service_text h2 {
    margin: 0 0 20px 0;
}

/* ===============Testimonial Section Css Start============= */

.testimonial_section {
    position: relative;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-top: 80px;
}

.testimonial_section .testimonial_inner {
    max-width: 1370px;
    margin: 0 auto;
    background-color: var(--white);
    border: solid 1px var(--border);
    padding: 100px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0px 10px 40px -5px var(--shadow);
    -moz-box-shadow: 0px 10px 40px -5px var(--shadow);
    box-shadow: 0px 10px 40px -5px var(--shadow);
}

.testimonial_section .testimonial_side_element {
    position: absolute;
    right: 50px;
    top: 50px;
}

.testimonial_section .testimonial_inner .testimonial_slides {
    padding-top: 40px;
}

.testimonial_section .title {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    width: 100%;
    text-align: center;
}

.testimonial_section .title .star {
    display: flex;
    justify-content: center;
    transform: rotate(-3deg);
    margin-bottom: -20px;
}

.testimonial_section .title .star span,
.testimonial_section .testimonial_box .testi_text .star span {
    color: #fc9400;
}

.testimonial_section .title .star .sub_title {
    padding: 2px;
}

.testimonial_section .title .sub_title {
    transform: rotate(-3deg);
    position: relative;
    bottom: -20px;
    z-index: 9;
}

.testimonial_section .title .sub_title {
    color: var(--white);
    display: inline-block;
    padding: 2px 20px;
    border-radius: 100px;
    background-color: var(--primery);
}

.testimonial_box {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    gap: 60px;
}

.testimonial_box .testi_img {
    width: 255px;
    position: relative;
}

.testimonial_box .testi_img .play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.testimonial_box .testi_img .play_icon img {
    width: 80px;
    aspect-ratio: 1/1;
    opacity: 0.9;
}

.testimonial_box .testi_img .user_img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    object-fit: cover;
}

.testimonial_box .testi_text {
    width: calc(100% - 315px);
}

.testimonial_box .testi_text .star {
    display: flex;
}

.testimonial_box .testi_text p {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.5;
}

.testimonial_box .user_info {
    display: flex;
    gap: 5px;
}

.testimonial_box .user_info h6 {
    margin: 0;
}

.testimonial_box .user_info span {
    font-size: 15px;
}

/* -----------Meet Our Team Section Css---------- */

.experts_team_section {
    margin-top: 50px;
    position: relative;
}

.experts_team_section .section_title {
    margin-bottom: 40px;
}

.experts_team_section .col-md-4 {
    padding-left: 25px;
    padding-right: 25px;
}

.experts_team_section .experts_box {
    position: relative;
    text-align: center;
    padding: 10px 10px 30px 10px;
    border-radius: 20px;
    transition: .4s all;
    background-color: var(--white);
    border: solid 1px var(--border);
    box-shadow: 0px 8px 30px var(--shadow);
}

.experts_team_section .experts_box img {
    margin-bottom: 30px;
    max-width: 100%;
    border-radius: 20px;
    border: solid 1px var(--border);
}

.experts_team_section .experts_box .text h6 {
    color: var(--black);
    transition: .4s all;
    margin: 0;
}

.experts_team_section .experts_box .text span {
    color: var(--black);
}

.experts_team_section .experts_box .social_media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.experts_team_section .experts_box .social_media a {
    display: block;
    width: 33px;
    height: 33px;
    border: 1px solid var(--greay);
    border-radius: 50px;
    text-align: center;
    line-height: 31px;
    color: var(--black);
    margin: 0 5px;
    transition: .4s all;
    font-size: 15px;
    background-color: var(--white);
}

.experts_team_section .experts_box .social_media a:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primery);
}

.experts_team_section .experts_box:hover {
    background-color: var(--primery);
}

.experts_team_section .experts_box:hover h6 {
    color: var(--white);
}

.experts_team_section .experts_box:hover span {
    color: var(--white);
}

.experts_team_section .experts_box:hover .social_media {
    opacity: 1;
}

/* ===============FAQ Section Css Start============ */

.faq_section .section_title {
    margin-bottom: 50px;
}

.faq_section .nav-tabs {
    justify-content: center;
    margin-bottom: 30px;
    border: none;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active,
.faq_section .nav-tabs .nav-link:hover,
.faq_section .nav-tabs .nav-link {
    border: none;
    margin: 0;
}

.faq_section .nav-tabs .nav-item {
    position: relative;
}

.faq_section .nav-tabs .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
}

.faq_section .nav-tabs .nav-item button {
    background-color: #fff;
    padding: 10px 36px;
    border-radius: 999px;
    font-weight: 500;
    border: 1px solid rgba(11, 30, 59, 0.1);
}

.faq_section .nav-tabs .nav-item:first-child:before {
    border-radius: 10px 0 0 10px;
}

.faq_section .nav-tabs .nav-item:last-child:before {
    border-radius: 0 10px 10px 0;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active {
    background-color: var(--primery);
    color: #fff;
}

.faq_section .accordion {
    margin-bottom: -20px;
}

.faq_section .card {
    border: none;
    background-color: #f3f7ff;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid rgba(11, 30, 59, 0.08);
    box-shadow: 0 16px 26px rgba(11, 30, 59, 0.06);
}

.faq_section .card .card-header {
    background-color: #f3f7ff;
    border: none;
    border-radius: 16px;
    padding: 15px 20px;
}

.faq_section .card .card-header button {
    width: 100%;
    text-align: left;
    color: var(--dark);
    text-decoration: none;
    padding: 0;
    font-weight: 600;
    position: relative;
    padding-right: 66px;
    font-size: 15px;
}

.faq_section .card .card-header button.collapsed {
    color: var(--dark);
}

.faq_section .card .card-header button:focus {
    outline: none;
    box-shadow: none;
}

.faq_section .card .card-header button .icons i {
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--primery);
}

.faq_section .card .card-header button.collapsed .icons .icofont-minus,
.faq_section .card .card-header button .icons .icofont-plus {
    display: none;
}

.faq_section .card .card-header button .icons .icofont-minus,
.faq_section .card .card-header button.collapsed .icons .icofont-plus {
    display: block;
}

.faq_section .card .card-body {
    padding-top: 0;
    font-family: "Outfit", sans-serif;
}

/* =======================Our App Download Section Css Start======================= */

.download_app {
    /* padding-left: 15px !important; */
    /* padding-right: 15px !important; */
}

.download_app .section_title p {
    padding: 0;
}

.download_app .task_block {
    padding: 50px 0px;
    position: sticky;
    z-index: 99;
    width: 100%;
    overflow: hidden;
    background-color: var(--primery);
}

.download_app .frame_img {
    text-align: center;
    max-width: 419px;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.download_app .frame_img img {
    max-width: 100%;
}

.download_app .task_block .row {
    align-items: center;
}

.download_app .task_block .section_title {
    text-align: left;
}

.download_app .task_block .section_title .title_badge {
    color: var(--black);
}

.download_app .app_btn {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.download_app .app_btn li a {
    display: block;
    padding: 11px 16px;
    background-color: var(--white);
    border: none;
    position: relative;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 0.25s ease;
}

.download_app .app_btn li a:hover {
    background-color: var(--black);
    box-shadow: 0 16px 28px rgba(11, 30, 59, 0.22);
}

.download_app .app_btn li a:hover img {
    -webkit-filter: invert(100%);
    /* Safari/Chrome */
    filter: invert(100%);
}

.download_app .app_btn li a:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 10px 18px rgba(11, 30, 59, 0.18);
}

.download_app .app_btn li:last-child {
    margin-left: 15px;
}

.download_app .app_btn li a img {
    transition: .4s all;
    height: 24px;
}

.download_element {
    position: absolute;
}

.download_element.elm1 {
    top: 30px;
    left: 600px;
    animation: mymove 15s infinite;
}

.download_element.elm2 {
    bottom: 30px;
    left: 100px;
    animation: mymove 10s infinite;
}

/* =============Our Resource Section=============== */







.careers_inner {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}







/* ==============Contact Us page Css Start==================== */

.contact_page_section .contact_inner {
    position: relative;
}

.contact_page_section .contact_form {
    width: 100%;
    padding: 37px 42px;
    border-radius: 20px;
    background-color: var(--white);
    border: solid 1px var(--border);
    box-shadow: 0px 8px 30px var(--shadow);
}

.contact_page_section .contact_form h2 {
    margin-bottom: 0;
}

.contact_page_section .contact_form form {
    margin-top: 30px;
}

.contact_page_section .contact_form form .form-group {
    margin-bottom: 20px;
}

.contact_page_section .contact_form form .form-group .form-control {
    height: 45px;
    padding: 5px 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
}

.contact_page_section .contact_form form .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--primery);
}

.contact_page_section .contact_form form .form-group textarea.form-control {
    height: 107px;
    padding-top: 15px;
}

.contact_page_section .contact_form form .term_check {
    display: flex;
    align-items: center;
}

.contact_page_section .contact_form form .term_check input {
    width: 17px;
    height: 17px;
    accent-color: var(--purple);
}

.contact_page_section .contact_form form .term_check label {
    font-size: 13px;
    margin-bottom: 0;
    margin-left: 7px;
}

.contact_page_section .contact_form form .form-group button {
    width: 240px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 0;
}

.contact_page_section .contact_info .ticket_box {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    overflow: hidden;
    background-color: var(--white);
    border: solid 1px var(--border);
    box-shadow: 0px 8px 30px var(--shadow);
}

.contact_page_section .contact_info .ticket_box .pattern-rotate {
    position: absolute;
    top: -65%;
    right: -50%;
    /*transform: translateX(-50%);*/
}

.contact_page_section .contact_info .ticket_box .icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 100;
}

.contact_page_section .contact_info .ticket_box .icon img {
    width: 70px;
}

.contact_page_section .contact_info {
    width: 90%;
}

.contact_page_section .contact_info .section_title {
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.contact_page_section .section_title p {
    padding: 0px;
}

.contact_page_section .contact_info .btn {
    /*width: 180px;*/
    margin: 10px 0 0 0;
}

.contact_page_section .contact_info .contact_info_list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact_page_section .contact_info .contact_info_list li:last-child {
    margin-bottom: 0;
}

.contact_page_section .contact_info .contact_info_list li .img {
    width: 70px;
    margin-right: 20px;
}

.contact_page_section .contact_info .contact_info_list li .img img {
    max-width: 70px;
}

.contact_page_section .contact_info .contact_info_list li .text {
    width: calc(100% - 85px);
}

.contact_page_section .contact_info .contact_info_list li .text a {
    color: var(--black);
}

.contact_page_section .contact_info .contact_info_list li .text span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-purple);
}

.contact_page_section .contact_info .contact_info_list li .text p,
.contact_page_section .contact_info .contact_info_list li .text a {
    margin: 0;
}

.contact_page_section .contact_info .contact_info_list li .text a:hover {
    color: var(--dark-purple);
}

/* ===========SignUp Section Css Start=============== */

.signup_section {
    padding: 75px 0;
}

.signup_section .top_part {
    padding-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.signup_section .top_part .back_btn {
    position: absolute;
    left: 0;
}

.signup_section .form_block {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    border: solid 1px var(--border);
}

.signup_section .form_block .form_side {
    width: 50%;
    text-align: left;
    padding: 15px 100px;
}

.signup_section .form_block .form_side .section_title {
    text-align: left;
    margin-bottom: 30px;
}

.signup_section .form_block .form_side .section_title p {
    font-weight: 500;
    padding: 0;
}

.signup_section .form_block .form_side form .form-control {
    border: none;
    background: var(--whitish);
    border-radius: 8px;
    padding: 23px 16px;
    border: solid 1px var(--border);
}

.signup_section .form_block .form_side form .form-group {
    margin-bottom: 20px;
}

.signup_section .form_block .form_side form .form-control::placeholder {
    color: var(--black);
    font-weight: 500;
}

.signup_section .form_block .form_side form .form-control:focus {
    box-shadow: none;
    color: var(--black);
    border-color: var(--primery);
    font-weight: 500;
}

.signup_section .form_block .form_side form .forgate_check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.signup_section .form_block .form_side form .forgate_check a {
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox {
    padding-top: 0;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox label {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

.signup_section .form_block .form_side form .forgate_check .checkmark {
    top: 5px;
    border-radius: 4px;
}

.signup_section .form_block .coustome_checkbox input:checked~.checkmark {
    background-color: var(--primery);
    border-color: var(--primery);
}

.signup_section .form_block .form_side .puprple_btn,
.signup_section .form_block .form_side .btn_block {
    width: 100%;
}

.signup_section .form_block .form_side .google_btn {
    width: 100%;
    text-align: center;
    border-radius: 50px;
    color: var(--black);
    border: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 20px 0 30px 0;
}

.signup_section .form_block .form_side .google_btn img {
    height: 20px;
    margin-right: 10px;
}

.signup_section .form_block .form_side .google_btn:hover {
    border-color: var(--primery);
}

.signup_section .form_side .sign_in_here p {
    margin: 0;
    color: #999ca6;
    font-weight: 500;
    font-size: 14px;
}

.signup_section .form_side .sign_in_here p a {
    color: var(--primery);
    text-decoration: underline;
}

.signup_section .form_side .sign_in_here p a:hover {
    color: var(--black);
}

.signup_section .form_block .side_screen {
    width: 50%;
    background: var(--black);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    border-radius: 0 22px 22px 0;
    overflow: hidden;
    position: relative;
}

.signup_section .form_block .side_screen .left_icon {
    position: absolute;
    left: 10px;
    bottom: 150px;
    z-index: 9999;
}

.signup_section .form_block .side_screen .right_icon {
    position: absolute;
    right: 50px;
    top: 120px;
    z-index: 10;
}

.text-start-inner {
    text-align: start;
}

.signup_section .form_block .side_screen .scrren {
    text-align: center;
    position: relative;
    z-index: 9;
}

h2.heading-privacy-policy-4 {
    font-size: 29px;
    font-weight: 500;
    line-height: 43px;
}

.section_title h2 {
    font-size: 34px;
    line-height: 46px;
    margin-bottom: 18px;
    color: var(--dark);
}

.signup_section .form_block .side_screen .scrren img {
    max-width: 100%;
}

.txt_blk p {
    font-size: 16px;
    color: var(--dark-greay);
    margin: 15px 0;
    font-weight: 400;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    position: relative;
}

.support-ticket-img {
    max-width: 415px;
     display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
   
.support-ticket-img img {
    width: 100%;
 object-fit: cover;

    height: auto;
   
}

.feature-content ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 15px;
}
.hc-hero-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 448px;
    margin: 0 auto;
    display: block;
}
.hc-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(110, 66, 255, 0.10);
    font-size: 14px;
    font-weight: 600;
}
.bg-light-innner {
    background-color: #fff !important;
}

.feature-content ul li {
    font-size: 16px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    line-height: 1.5;
}


    .features-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
      width: 100%;
      max-width: 1200px;
    }

    .feature-card {
      background-color: #fff;
      border-radius: 18px;
      padding: 26px 22px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      box-shadow: 0 16px 26px rgba(11, 30, 59, 0.08);
      border: 1px solid rgba(11, 30, 59, 0.08);
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 36px rgba(11, 30, 59, 0.12);
      border-color: rgba(26, 163, 216, 0.35);
    }

    .mega-menu-right h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #000;
}
    .feature-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 0 16px 0;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(26, 163, 216, 0.12);
      color: var(--primery);
      font-size: 26px;
    }

    .feature-card h3 {
      font-size: 16px !IMPORTANT;
      margin-bottom: 10px;
      line-height: 26px;
      color: var(--dark);
      background: linear-gradient(135deg, #e6f2ff, #f3f6ff);
      padding: 7px 13px;
      border-radius: 50px;
    }

    .zoom-trial {
    transition: transform 0.3s ease;
}

.zoom-trial:hover {
    transform: scale(1.15);
}

    section.real-estate_section {
    padding: 58px 0;
    background-color: #f4f7fb;
    position: relative;
}
    .feature-card p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--dark-greay);
    }
    .section_title-heading-box h2 {
    font-size: 35px;
    width: 62%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
    font-family: emoji;
}
.finance-img-bxo img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 25px;
    margin-top: 12px;
}
.tab_content { display: none; }
.tab_content.active { display: block; }

/* optional: active tab highlight */
.integration_item { cursor:pointer; }
.integration_item.active { background:#f1edff; border-left:4px solid #6f4cff; }


.stack_card h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 10px;
}
.stack_list-inner ul {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-left: 13px;
    list-style: disc;
    margin-top: 9px;
    color: #667199;
    margin-bottom: 30px;
}
.stack_list-inner ul  li{
    list-style: disc  !important;  
}

.hero_crumb-section{
  position: relative;
  width: 100%;
  height: 300px;              /* hero height */
  overflow: hidden;
}

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

/* dark overlay for better text visibility */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 90, 0.55);  /* #0d215a overlay */
  z-index: 1;
}

.hero_crumb-container{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero_text h1{
  margin: 0;
  color: #fff;
  font-size: 39px;
  text-transform: capitalize;
  font-weight: 700;
}

.zoom-trial {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover zoom */
.zoom-trial:hover {
    transform: scale(1.15);
}

/* Star icon */
.star-icon {
    position: absolute;
    top: -10px;
    right: -2px;
    font-size: 15px;
    color: #de5300;
    animation: pulseStar 1.5s infinite;
}

/* Pulse animation */
@keyframes pulseStar {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

   .hero-section .hc-badge {
      display: inline-block;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 600;
      letter-spacing: .2px;
    }

    .hero-section h1 {
      font-size: 40px;
      line-height: 52px;
      font-family: inherit;
    }

    .hero-section p {
      font-size: 16px;
      line-height: 1.7;
      max-width: 560px;
    }

    .features-container {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .feature-card {
      border-radius: 18px;
      padding: 22px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      transition: transform .25s ease, box-shadow .25s ease;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      background: rgba(110, 72, 170, 0.12);
    }

    .feature-icon i {
      font-size: 22px;
    }

    @media (max-width: 991px) {
      .features-container {
        grid-template-columns: 1fr;
      }

      .hero-section h1 {
        font-size: 32px;
      }
    }
@media (max-width: 768px){
  .hero_crumb-section{ height: 200px; }
  .hero_text h1{ font-size: 32px; }
}
    /* Responsive text sizes */
    @media (max-width: 768px) {
      .feature-card h3 {
        font-size: 18px;
      }
      .feature-card p {
        font-size: 13px;
      }
      .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {

      .feature-card h3 {
        font-size: 16px;
      }
      .feature-card p {
        font-size: 12px;
      }
      .feature-icon {
        width: 50px;
        height: 50px;   
        font-size: 24px;
      }
    }
    
    
        