:root {
    --primary: #3a86ff;
    --secondary: #8338ec;
    --accent: #3bceac;
    --dark: #0d1117;
    --darker: #090c10;
    --light: #e0fbfc;
}

body {
    font-family: 'Poppins', sans-serif;
    background: -o-linear-gradient(305deg, var(--dark), var(--darker));
    background: linear-gradient(145deg, var(--dark), var(--darker));
    color: var(--light);
    overflow-x: hidden;
}

.z_1000 {
    z-index: 1000;
}

.navbar>.nav_item {
    font-size: 15px;
    padding: 0.5rem 0.5rem;
    position: relative;
}

.nav_link {
    cursor: pointer;
    color: #ffffff;
}

.nav_link:hover {
    color: #8338ec;
}

.sub_navbar {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    background-color: #090c10;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

.nav_item:hover>.sub_navbar {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    pointer-events: initial;
}

.sub_navbar .nav_link {
    display: block;
    padding: 0.5rem 1rem;
}

.sub_navbar .nav_link:hover {
    background-color: #1e2835;
}

.sub_navbar_wrap>.nav_link::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    margin-left: 0.5rem;
}

.main {
    max-width: 100vw;
    overflow: hidden;
}


/* .typing_text_container {
    min-height: 4em;
} */

.gradient-text {
    background: -o-linear-gradient(left, var(--primary), var(--secondary));
    background: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--secondary)));
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.min-w-8 {
    min-width: 2rem;
}

.min-w-10 {
    min-width: 2.5rem;
}

.min-w-16 {
    min-width: 4rem;
}

.gradient-bg {
    background: -o-linear-gradient(305deg, var(--primary), var(--secondary));
    background: linear-gradient(145deg, var(--primary), var(--secondary));
}

.card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating {
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.floating-slow {
    -webkit-animation: float 8s ease-in-out infinite;
    animation: float 8s ease-in-out infinite;
}

.floating-fast {
    -webkit-animation: float 4s ease-in-out infinite;
    animation: float 4s ease-in-out infinite;
}

.glow {
    -webkit-animation: glow 3s ease-in-out infinite alternate;
    animation: glow 3s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        -webkit-box-shadow: 0 0 10px -10px var(--primary);
        box-shadow: 0 0 10px -10px var(--primary);
    }
    to {
        -webkit-box-shadow: 0 0 20px 10px var(--primary);
        box-shadow: 0 0 20px 10px var(--primary);
    }
}

@keyframes glow {
    from {
        -webkit-box-shadow: 0 0 10px -10px var(--primary);
        box-shadow: 0 0 10px -10px var(--primary);
    }
    to {
        -webkit-box-shadow: 0 0 20px 10px var(--primary);
        box-shadow: 0 0 20px 10px var(--primary);
    }
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: -o-linear-gradient(top, var(--primary), var(--secondary));
    background: -webkit-gradient(linear, left top, left bottom, from(var(--primary)), to(var(--secondary)));
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 15px;
    border-radius: 18px;
    margin-bottom: 8px;
    position: relative;
    -webkit-animation: fadeInUp 0.5s;
    animation: fadeInUp 0.5s;
}

.message-sent {
    background-color: var(--primary);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.message-received {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

.particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.cta-button {
    display: inline-block;
    background: -o-linear-gradient(left, var(--primary), var(--secondary));
    background: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--secondary)));
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden !important;
    z-index: 1;
    -webkit-box-shadow: 0 6px 30px -10px var(--primary);
    box-shadow: 0 6px 30px -10px var(--primary);
}

.cta-button:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 10px 30px -10px var(--primary);
    box-shadow: 0 10px 30px -10px var(--primary);
    overflow: hidden !important;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(left, var(--secondary), var(--primary));
    background: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    z-index: -1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
    border-radius: 50rem;
}

.cta-button:hover::after {
    opacity: 1;
}

.secondary-button {
    background: transparent;
    color: var(--light);
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.secondary-button:hover {
    background: rgba(58, 134, 255, 0.1);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.step-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
}

.step-number {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: -o-linear-gradient(45deg, var(--primary), var(--secondary));
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 100%;
    height: 2px;
    background: -o-linear-gradient(left, var(--primary), var(--secondary));
    background: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--secondary)));
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.3;
    z-index: 1;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.steps-container .step-card:last-child::before {
    display: none;
}

.role-card {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.role-card:hover {
    -webkit-transform: rotateY(10deg) translateZ(20px);
    transform: rotateY(10deg) translateZ(20px);
}

.role-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 30px;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.role-card:hover .role-icon {
    background: -o-linear-gradient(45deg, var(--primary), var(--secondary));
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: -o-linear-gradient(left, var(--primary), var(--secondary));
    background: -webkit-gradient(linear, left top, right top, from(var(--primary)), to(var(--secondary)));
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats-label {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.8;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
}

.wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave .shape-fill {
    fill: rgba(255, 255, 255, 0.03);
}


/* @media (max-width: 1279.98px) {
    .typing_text_container {
        min-height: 5em;
    }
} */

@media (max-width: 1023.98px) {
    .steps-container .step-card:nth-of-type(2n+2)::before {
        display: none;
    }
    .navbar {
        text-align: center;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }
    .nav_link {
        padding: 0.5rem 1rem;
    }
    .sub_navbar {
        position: static;
        display: none;
        opacity: 1;
        max-width: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .sub_navbar.show_subNavbar {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .stats-number {
        font-size: 2.5rem;
    }
    .wave svg {
        height: 70px;
    }
    .steps-container .step-card::before {
        display: none;
    }
    .message-bubble {
        font-size: 12px;
    }
}


/* @media(max-width:575.98px) {
    .typing_text_container {
        min-height: 5em;
    }
} */

@media(min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

@media(min-width:2000px) {
    .min_h_screen {
        min-height: -webkit-max-content;
        min-height: -moz-max-content;
        min-height: max-content;
    }
}


/* ______________ start sms marketing ______________ */

.sms-flow-item {
    position: relative;
    padding: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    ;
    border-radius: 12px;
    -webkit-box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    z-index: 1;
}

.sms-flow-connector {
    position: absolute;
    width: 2px;
    background: -o-linear-gradient(top, var(--primary), var(--secondary));
    background: -webkit-gradient(linear, left top, left bottom, from(var(--primary)), to(var(--secondary)));
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 40px;
}

.sms-flow-connector::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
}

.last-flow-item .sms-flow-connector {
    display: none;
}

.integration-icon {
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 64px;
    min-width: 64px;
    height: 64px;
    margin-bottom: 12px;
}


/* ______________ end sms marketing ______________ */


/* ______________ start digital workforce marketing ______________ */

.floating-element {
    -webkit-animation: float2 6s ease-in-out infinite;
    animation: float2 6s ease-in-out infinite;
}

.pulse-element {
    -webkit-animation: pulse 3s ease-in-out infinite;
    animation: pulse 3s ease-in-out infinite;
}

@-webkit-keyframes float2 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes float2 {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.timeline-container {
    background: -o-linear-gradient(left, rgba(147, 51, 234, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(147, 51, 234, 0.1)), to(rgba(79, 70, 229, 0.1)));
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

.timeline_1 .timeline-line {
    position: absolute;
    top: 12px;
    height: 100%;
    background: -o-linear-gradient(left, #4f46e5, #7c3aed);
    background: -webkit-gradient(linear, left top, right top, from(#4f46e5), to(#7c3aed));
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    z-index: 1;
}

.timeline_1 .timeline-container {
    position: relative;
    z-index: 5;
}

.timeline_1 .timeline-dot {
    width: 32px !important;
    height: 32px !important;
    left: -70px;
    z-index: 1;
}

.timeline-dot {
    background: -o-linear-gradient(315deg, #4f46e5 0%, #7c3aed 100%);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.hub-connection {
    -webkit-animation: connection 2s infinite alternate;
    animation: connection 2s infinite alternate;
}

@-webkit-keyframes connection {
    from {
        opacity: 0.5;
        stroke-dashoffset: 100;
    }
    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes connection {
    from {
        opacity: 0.5;
        stroke-dashoffset: 100;
    }
    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

.benefit-icon {
    background: -o-linear-gradient(315deg, #4f46e5 0%, #7c3aed 100%);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

@media(max-width:1023.98px) {
    .timeline_1 .timeline-line {
        display: block !important;
    }
}


/* ______________ end digital workforce marketing ______________ */


/* ______________ start social media management ______________ */

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.facebook-bg {
    background: #1877F2;
}

.instagram-bg {
    background: -o-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-bg {
    background: #0A66C2;
}

.twitter-bg {
    background: #1DA1F2;
}

.pinterest-bg {
    background: #E60023;
}

.youtube-bg {
    background: #FF0000;
}

.float-animation {
    -webkit-animation: float 4s ease-in-out infinite;
    animation: float 4s ease-in-out infinite;
}

.pulse-animation {
    -webkit-animation: pulse2 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation: pulse2 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@-webkit-keyframes pulse2 {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes pulse2 {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.map-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: white;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}

.strategy-map-item {
    position: relative;
    z-index: 2;
}

.strategy-map-item::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: #6366F1;
    position: absolute;
    top: 47px;
    z-index: -1;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.strategy-map-item:last-of-type::before {
    content: none;
}

.step-1 {
    background: -o-linear-gradient(315deg, #4F46E5 0%, #7C3AED 100%);
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.step-2 {
    background: -o-linear-gradient(315deg, #3B82F6 0%, #2563EB 100%);
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.step-3 {
    background: -o-linear-gradient(315deg, #8B5CF6 0%, #6366F1 100%);
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%)
}

.step-4 {
    background: -o-linear-gradient(315deg, #EC4899 0%, #D946EF 100%);
    background: linear-gradient(135deg, #EC4899 0%, #D946EF 100%);
}

@media(max-width:1023.98px) {
    .strategy-map {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5rem;
    }
    .strategy-map-item {
        width: 100%;
    }
    .map-circle {
        width: 80px;
        height: 80px;
    }
    .strategy-map-item .max-w-xs {
        max-width: 100%;
    }
    .strategy-map-item::before {
        content: none;
    }
    .platform-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* ______________ end social media management ______________ */


/* ______________ start transaction coordination management ______________ */

.timeline-line {
    position: absolute;
    top: 12px;
    height: 3px;
    background: -o-linear-gradient(left, #4f46e5, #7c3aed);
    background: -webkit-gradient(linear, left top, right top, from(#4f46e5), to(#7c3aed));
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    z-index: 1;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: -o-linear-gradient(45deg, #4f46e5, #7c3aed);
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    position: relative;
    z-index: 2;
}

.benefit-card:hover {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-left: 4px solid #4f46e5;
}

.integration-card .integration-icon {
    font-size: 24px;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.integration-card:hover .integration-icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background: -o-linear-gradient(315deg, #4f46e5, #7c3aed);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
}

@media(max-width:1023.98px) {
    .timeline-line {
        display: none;
    }
}


/* ______________ end transaction coordination management ______________ */


/* ______________ start email management ______________ */

.feature-icon {
    background: -o-linear-gradient(315deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 12px;
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    color: #4f46e5;
    margin-bottom: 16px;
}

.journey-line {
    height: 4px;
    background: -o-linear-gradient(left, #4f46e5 0%, #7c3aed 50%, #3b82f6 100%);
    background: -webkit-gradient(linear, left top, right top, from(#4f46e5), color-stop(50%, #7c3aed), to(#3b82f6));
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #3b82f6 100%);
    position: relative;
    margin: 2rem 5rem;
    border-radius: 4px;
}

.journey-point {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4f46e5;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.journey-label {
    position: absolute;
    top: 24px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.journey-description {
    position: absolute;
    top: -40px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 0.875rem;
    white-space: nowrap;
    color: #a5cbff;
}

@media(max-width:1279.98px) {
    .journey-description {
        font-size: 10px;
    }
}

@media(max-width:1023.98px) {
    .journey-line {
        margin: 0;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }
    .journey-line,
    .journey-point {
        height: auto;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: none;
    }
    .journey-point,
    .journey-description,
    .journey-label {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}


/* ______________ end email management ______________ */


/* ______________ start scheduling system ______________ */

.step-connector {
    height: 1px;
    background: -o-linear-gradient(left, #4f46e5, #7c3aed);
    background: -webkit-gradient(linear, left top, right top, from(#4f46e5), to(#7c3aed));
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    margin-bottom: 24px;
}


/* ______________ end scheduling system ______________ */


/* ______________ start crm management system ______________ */

.pipeline-step {
    position: relative;
    padding-bottom: 40px;
}

.pipeline-step .step-number {
    font-size: 16px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    margin-right: 15px;
}

.pipeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 19px;
    width: 2px;
    height: calc(100% - 50px);
    background: -o-linear-gradient(top, #4f46e5, #7c3aed);
    background: -webkit-gradient(linear, left top, left bottom, from(#4f46e5), to(#7c3aed));
    background: linear-gradient(to bottom, #4f46e5, #7c3aed);
}

.example-card {
    border-left: 4px solid #4f46e5;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 0 8px 8px 0;
    padding: 15px;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}


/* ______________ end crm management system ______________ */


/* ______________ start call management system ______________ */

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    margin-bottom: 1rem;
}

.gradient-card {
    background: -o-linear-gradient(315deg, #4338CA, #6366F1);
    background: linear-gradient(135deg, #4338CA, #6366F1);
    color: white;
}

.pulse-flow {
    -webkit-animation: pulseFlow 2s infinite;
    animation: pulseFlow 2s infinite;
}

.flow-arrow {
    position: relative;
    width: 70px;
    height: 2px;
    background-color: #D1D5DB;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #D1D5DB;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}


/* ______________ end call management system ______________ */


/* ______________ start services / solutions page ______________ */

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: -o-linear-gradient(left, #4338CA, #6366F1);
    background: -webkit-gradient(linear, left top, right top, from(#4338CA), to(#6366F1));
    background: linear-gradient(90deg, #4338CA, #6366F1);
    margin-top: 16px;
    border-radius: 2px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.process-step .step-number {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    font-size: 16px;
}


/* ______________ end services / solutions page ______________ */


/* ______________ start elite realtor sms sequence page ______________ */

.sms-container {
    max-width: 100%;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 0 auto;
}

.sms-header {
    background-color: #272727;
    border-bottom: 1px solid #e5e5e5;
}

.sms-body {
    background-color: #505050;
    min-height: 500px;
    overflow-y: auto;
}

.message {
    font-size: 12px;
    max-width: 70%;
    padding: 10px 14px;
    margin: 8px;
    border-radius: 20px;
    position: relative;
    word-wrap: break-word;
}

.sent {
    background-color: #0b93f6;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.received {
    background-color: #e5e5ea;
    color: black;
    margin-right: auto;
    border-bottom-left-radius: 5px;
}

.message-note {
    font-size: 0.85rem;
    color: #fff;
    margin: 15px 0;
    background-color: #fffde730;
    padding: 10px;
    border-radius: 8px;
    border-left: 4px solid #ffd54f;
}

.days-label {
    text-align: center;
    font-size: 0.75rem;
    color: #8e8e93;
    margin: 15px 0 5px;
}

.strategy-card {
    border-left: 4px solid #3b82f6;
    background-color: #f0f9ff3b;
}

.metrics-card {
    border-left: 4px solid #10b981;
    background-color: #f0f9ff3b;
}

.personalization-card {
    border-left: 4px solid #8b5cf6;
    background-color: #f0f9ff3b;
}

.technique-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 6px;
}

.fisher-badge {
    background-color: #fee2e2;
    color: #b91c1c;
}

.split-badge {
    background-color: #e0e7ff;
    color: #4338ca;
}


/* ______________ end elite realtor sms sequence page ______________ */

.responsive_video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.responsive_video video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}


/* ______________ start partnets program page ______________ */

.bg__gradient {
    background: -o-linear-gradient(315deg, #181B28 0%, #3628A8 45%, #29D2DC 100%);
    background: linear-gradient(135deg, #181B28 0%, #3628A8 45%, #29D2DC 100%);
}

.glass {
    background: rgba(24, 27, 40, 0.75);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    backdrop-filter: blur(14px) saturate(180%);
    border-radius: 1.5rem;
    border: 1.5px solid rgba(60, 80, 230, 0.14);
    -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.24), 0 1.5px 7px 0 rgba(41, 210, 220, 0.10);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.24), 0 1.5px 7px 0 rgba(41, 210, 220, 0.10);
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 7px #29D2DC30, 0 0 10px #3628A866, 0 0 21px #ffffff30, 0 0 42px #29D2DC8C;
}

.gradient-border {
    border: 3px solid;
    -o-border-image: -o-linear-gradient(left, #29D2DC, #3628A8, #29D2DC) 1;
    border-image: -webkit-gradient(linear, left top, right top, from(#29D2DC), color-stop(#3628A8), to(#29D2DC)) 1;
    border-image: linear-gradient(90deg, #29D2DC, #3628A8, #29D2DC) 1;
}

.stage-circle {
    background: -o-linear-gradient(310deg, #29D2DC 0%, #3628A8 70%, #1E2136 100%);
    background: linear-gradient(140deg, #29D2DC 0%, #3628A8 70%, #1E2136 100%);
    -webkit-box-shadow: 0 8px 28px 0 rgba(41, 210, 220, 0.09);
    box-shadow: 0 8px 28px 0 rgba(41, 210, 220, 0.09);
}

.animate-float {
    -webkit-animation: floaty 2.7s ease-in-out infinite alternate;
    animation: floaty 2.7s ease-in-out infinite alternate;
}

@-webkit-keyframes floaty {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(-18px);
        transform: translateY(-18px);
    }
}

@keyframes floaty {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(-18px);
        transform: translateY(-18px);
    }
}


/* Custom scrollbar for infographics */

 ::-webkit-scrollbar {
    width: 9px;
    background: #262A44;
}

 ::-webkit-scrollbar-thumb {
    background: #312C6B;
    border-radius: 4.5px;
}


/* Chart container for PDF export */

.chart-container {
    width: 100% !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}


/* Custom glassmorphism icons surround */

.icon-bg {
    background: -o-linear-gradient(308deg, #29D2DCa0 0%, #3628A87a 100%);
    background: linear-gradient(142deg, #29D2DCa0 0%, #3628A87a 100%);
    padding: 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    -webkit-box-shadow: 0 6px 22px 0 #262a448d;
    box-shadow: 0 6px 22px 0 #262a448d;
}


/* ______________ end partnets program page ______________ */


/* ______________ start pocket boss page ______________ */

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neo-card {
    background: -o-linear-gradient(305deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.neo-card:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.pulse-glow {
    -webkit-animation: pulseGlow 2s ease-in-out infinite alternate;
            animation: pulseGlow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes pulseGlow {
    from {
        -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        -webkit-box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
                box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

@keyframes pulseGlow {
    from {
        -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    to {
        -webkit-box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
                box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.revenue-metric {
    background: -o-linear-gradient(315deg, #FF6B6B, #4ECDC4);
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.industry-gradient {
    background: -o-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-container2 {
    position: relative;
    height: 300px;
    width: 100%;
}

.haptic-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: -o-linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    background-size: 400% 400%;
    -webkit-animation: gradientShift 3s ease infinite;
            animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.haptic-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-animation: ripple 2s ease-in-out infinite;
            animation: ripple 2s ease-in-out infinite;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
                transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.2);
                transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.8);
                transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.2);
                transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.productivity-bar {
    height: 8px;
    background: -webkit-gradient(linear, left top, right top, from(#FF6B6B), color-stop(50%, #4ECDC4), to(#45B7D1));
    background: -o-linear-gradient(left, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.productivity-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
    background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.4), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    -webkit-animation: shimmer 2s ease-in-out infinite;
            animation: shimmer 2s ease-in-out infinite;
}

@-webkit-keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.metric-card {
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.1)), to(transparent));
    background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.1), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    -webkit-transition: left 0.5s ease;
    -o-transition: left 0.5s ease;
    transition: left 0.5s ease;
}

.metric-card:hover::before {
    left: 100%;
}

.price-tag {
    background: -o-linear-gradient(315deg, #FF6B6B, #4ECDC4);
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.price-tag:hover::before {
    width: 300px;
    height: 300px;
}


/* ______________ end pocket boss page ______________ */


/* ______________ start small business assistance page ______________ */

@-webkit-keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    -webkit-animation: float3 6s infinite linear;
            animation: float3 6s infinite linear;
}

@-webkit-keyframes float3 {
    from {
        -webkit-transform: translateY(100vh) rotate(0deg);
                transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    to {
        -webkit-transform: translateY(-10vh) rotate(360deg);
                transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float3 {
    from {
        -webkit-transform: translateY(100vh) rotate(0deg);
                transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    to {
        -webkit-transform: translateY(-10vh) rotate(360deg);
                transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glow-effect {
    -webkit-box-shadow: 0 0 30px rgba(139, 69, 255, 0.6);
            box-shadow: 0 0 30px rgba(139, 69, 255, 0.6);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.glow-effect:hover {
    -webkit-box-shadow: 0 0 50px rgba(139, 69, 255, 0.8);
            box-shadow: 0 0 50px rgba(139, 69, 255, 0.8);
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
}

.text-gradient {
    background: -o-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pulse-glow2 {
    -webkit-animation: pulseGlow2 2s infinite;
            animation: pulseGlow2 2s infinite;
}

@-webkit-keyframes pulseGlow2 {
    0%,
    100% {
        -webkit-box-shadow: 0 0 20px rgba(139, 69, 255, 0.5);
                box-shadow: 0 0 20px rgba(139, 69, 255, 0.5);
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(139, 69, 255, 0.8);
                box-shadow: 0 0 40px rgba(139, 69, 255, 0.8);
    }
}

@keyframes pulseGlow2 {
    0%,
    100% {
        -webkit-box-shadow: 0 0 20px rgba(139, 69, 255, 0.5);
                box-shadow: 0 0 20px rgba(139, 69, 255, 0.5);
    }
    50% {
        -webkit-box-shadow: 0 0 40px rgba(139, 69, 255, 0.8);
                box-shadow: 0 0 40px rgba(139, 69, 255, 0.8);
    }
}

.floating-element2 {
    -webkit-animation: floatingElement 4s ease-in-out infinite;
            animation: floatingElement 4s ease-in-out infinite;
}

@-webkit-keyframes floatingElement {
    0%,
    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
}

@keyframes floatingElement {
    0%,
    100% {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
}

.morphing-shape {
    -webkit-animation: morphing 8s ease-in-out infinite;
            animation: morphing 8s ease-in-out infinite;
}

@-webkit-keyframes morphing {
    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes morphing {
    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.hover-lift {
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.hover-lift:hover {
    -webkit-transform: translateY(-10px) scale(1.02);
        -ms-transform: translateY(-10px) scale(1.02);
            transform: translateY(-10px) scale(1.02);
    -webkit-box-shadow: 0 20px 40px rgba(139, 69, 255, 0.3);
            box-shadow: 0 20px 40px rgba(139, 69, 255, 0.3);
}

.counter {
    font-weight: 800;
    font-size: 3rem;
    color: #8b45ff;
}

.savings-highlight {
    background: -o-linear-gradient(315deg, #4facfe 0%, #00f2fe 100%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.interactive-button {
    background: -o-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.interactive-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
    background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-transition: left 0.5s;
    -o-transition: left 0.5s;
    transition: left 0.5s;
}

.interactive-button:hover::before {
    left: 100%;
}

.interactive-button:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0 10px 30px rgba(139, 69, 255, 0.4);
            box-shadow: 0 10px 30px rgba(139, 69, 255, 0.4);
}

.cost-comparison {
    background: -o-linear-gradient(315deg, rgba(139, 69, 255, 0.1) 0%, rgba(116, 75, 162, 0.1) 100%);
    background: linear-gradient(135deg, rgba(139, 69, 255, 0.1) 0%, rgba(116, 75, 162, 0.1) 100%);
    border: 2px solid rgba(139, 69, 255, 0.3);
}

.partnership-glow {
    background: -o-linear-gradient(315deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    -webkit-animation: gradientShift 10s ease infinite;
            animation: gradientShift 10s ease infinite;
    padding: 3px;
    border-radius: 20px;
}

.partnership-inner {
    background: rgba(255, 255, 255, 0.60);
    border-radius: 17px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .counter {
        font-size: 2rem;
    }
}


/* ______________ end small business assistance page ______________ */

/* ______________ start slider animation ______________ */
.slider_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.slider_container .slider_item {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
    height: 600px;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    opacity: 1;
}
.slider_container .slider_item{
    font-size: 64px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}
.slider_container .slider_item:hover {
    -webkit-box-flex: 2 !important;
        -ms-flex: 2 !important;
            flex: 2 !important;
    opacity: 1;
}

.slider_container .slider_item .slider_itemBg {
    opacity: 0 !important;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width:100%;
}

.slider_container .slider_item:hover .slider_itemBg {
    opacity: 1 !important;
}

.slider_container .slider_item .slider_content {
    color: #ffffff;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: -ms-grid;
    display: grid;
    place-items: center;
}
.slider_container .slider_item:hover .slider_content {
    mix-blend-mode: difference;
}
@media(max-width:575.98px){
    .slider_container .slider_item {
        height: 400px;
    }
    .slider_container .slider_item{
        font-size: 32px;
    }
}
/* ______________ end slider animation ______________ */

/* mobile video player */
.hero_mobile {
    position: relative;
    max-width: 100%;
    width: 295px;
}

.hero_mobile::before {
    content: "";
    display: block;
    padding-bottom: 206.7796%;
    height: 0px;
}

.hero_mobile>* {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.hero_mobile img{
    pointer-events: none;
}
.hero_mobile video {
    object-fit: contain;
    border-radius: 46px;
    padding: 10px;
    background-color: white;
    background-clip: content-box;
}

.article_container article>img{
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin-bottom: 1.2rem;
}
.article_container h1{
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.article_container header{
    margin-bottom: 2rem;
}
.article_container section{
    margin-bottom: 1.5rem;
}
.article_container h2{
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.article_container p{
    margin-bottom: 1.1rem;
}
.article_container a{
    color: #3B82F6;
    text-decoration: underline;
}
.article_container ul ,
.article_container ol {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}
.article_container ul{
    list-style:disc;
}
.article_container ol{
    list-style-type: decimal;
}
.article_container hr{
    margin-bottom: 1.2rem;
}
.article_container table{
    width: 100%;
    margin-bottom: 1.2rem;
}
.article_container table,
.article_container tr,
.article_container td{
    border: 1px solid gray;
}