body {
    background-color: #fff;
    background-repeat: repeat;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #212121;
}
/***** COMMON STYLING *****/
a, a:hover {
    color: #212121;
}
strong {
    font-weight: 500;
}
img {
    max-width: 100%;
}
.blue-highlighter {
    color: #3b40f2;
    display: inline-block;
}
.header-wrpr {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 26px;
    box-shadow: 0 2px 4px rgba(208,208,208,0.2);
}
.logo {
    max-width: 240px;
    cursor: pointer;
}
.logo a {
    display: block;
    position: relative;
    z-index: 0;
}
.link {
    color: #3b40f2;
}
.link:hover {
    color: #fe7805;
}
.toggle-switch::after, .blog-page-section .c-btn::before, .nav a::after, .nav a::before, .blob-btn::before, .blob-btn::after, .hero-banner:after, .hero-banner:before {content:""; position:absolute; width: 100%; height: 100%; top:0; bottom: 0; left:0; right: 0;z-index: 1;}
.nav a {
    position: relative;
    z-index: 0;
}
.nav a:hover::after{
    top: auto;
    background-color: #212121;
    height: 2px;
    animation: speedpass 0.2s ease-in;
    width: 25%;
    margin: 0 auto;
}
.c-btn {
    padding: 15px 40px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    color: #fff;
}

.svgcurtain {
    width: 0;
    height: 0;
}

.blob-btn {
    z-index: 1;
    position: relative;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
}

.blob-btn::before {
    left: 0;
    top: 0;
    border-radius: 30px;
}

.blob-btn::after {    
    z-index: -2;
    left: 3px;
    top: 3px;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
}

.blob-btn:hover {
    color: #fff;
    background-color: #fe7805;
}

.blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #3b40f2;
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url("#goo");
    -webkit-filter: url(#goo);
}

.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #fe7805;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

@supports (filter: url("#goo")) {
    .blob-btn__blob {
        transform: translate3d(0, 150%, 0) scale(1.4);
        will-change: transform;
        -webkit-transform: translate3d(0, 150%, 0) scale(1.7);
    }
}

.blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

@supports (filter: url("#goo")) {
    .blob-btn:hover .blob-btn__blob {
        -webkit-transform: translate3d(0, 0, 0) scale(1.7);
        transform: translateZ(0) scale(1.7);
    }
}
@keyframes speedpass {
    0% {
        left: -100%;
        opacity: 0.5;
    }

    25% {
        left: 100%;
    }

    50% {
        left: -100%;
    }

    100% {
        left: 0;
        opacity: 1;
    }
}
.hero-banner {
    position: relative;
    overflow: hidden;
}
.hero-banner::before, .hero-banner::after, .neon-circle, .neon-circle::after  {
    width: 1000px;
    height: 1000px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: auto;
    bottom: -30%;
    border-radius: 50%;
}
.hero-banner::before {
    border: 1px solid #ddd;
    transform: scale(1.1);
    z-index: -2;
}
.hero-banner::after {
    background-color: rgba(59, 64, 242, 0.2);
    z-index: -2;
}
.neon-circle {
    position: absolute;
    background: radial-gradient(
        circle,
        rgba(59, 64, 242, 0.9) 0%,
        rgba(254, 120, 5, 0.6) 35%,
        rgba(254, 120, 5, 0.2) 55%,
        rgba(59, 64, 242, 0) 75%
    );
    animation: neonGlow 4s ease-in-out infinite;
    z-index: -1;
}

/* Outer Neon Aura */
.neon-circle::before {
    content: "";
    position: absolute;
    inset: -50px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(59, 64, 242, 0.4),
        rgba(254, 120, 5, 0.3),
        transparent 70%
    );

    filter: blur(50px);
    z-index: -1;
}
/* Glow Animation */
@keyframes neonGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1) blur(0px);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.07);
        filter: brightness(1.5) blur(6px);
        opacity: 1;
    }
}
.hero-app-higlights {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 5% auto 0;
}
.mobile-app-highlight {
    max-width: 320px;
}
.wheelie-mobile-app {
    margin-left: -10%;
    margin-top: 8%;
}
.promotion-solid-box {
    width: 180px;
    height: 180px;
    background-color: #3b40f2;
    padding: 25px;
    border-radius: 28px;
    position: absolute;
    right: 5%;
    bottom: 10%;
    color: #fff;
    font-size: 0.8rem;
    text-align: left;
}
.promotion-solid-box .icon, .news-solid-box .icon {
    width: 48px;
    height: 48px;
    display: block;
    margin-bottom: 20px;
}
.promo-no {
    font-weight: 500;
    font-size: 1.8rem;
}
.news-solid-box {
    width: 180px;
    padding: 10px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 2px 4px #ddd;
    border: 1px solid #ddd;
    position: absolute;
    right: 0;
    top: 15%;
}
.news-solid-box .icon {
    margin-bottom: 10px;
}
.news-widget-heading {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    margin: 10px;
}
.bar-graph {
    width: 250px;
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 25px;
    background: #fff;
    border-radius: 28px;
    border: 1px solid #ddd;
    position: absolute;
    left: 0;
    box-shadow: 0 2px 4px #ddd;
    top: 10%;
}

.bar {
    width: 15px;
    height: var(--value);
    background: linear-gradient(to top, #3b40f2, #fe7805);
    border-radius: 6px 6px 0 0;
    transition: height 0.6s ease;
    position: relative;
}
.bar span {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 0.6rem;
    font-weight: 500;
    right: 0;
}
.secondary-title-wrpr {
    max-width: 60%;
    margin: 0 auto 40px;
}
.secondary-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 25px;
}
.nav.nav-pills {
    justify-content: center;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #3b40f2;
}
.nav-pills .nav-item {
    margin: 0 0.5rem;
}
.nav-pills .nav-link {
    border-radius: 2rem;
}
.tab-content {
    padding: 40px 0;
}
.mobile-app-details {
    text-align: left;
    margin-top: 15%;
}
.store-img {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    overflow: hidden;
}
.store-badges img{
    height:40px;
}
.app-screen-img {
    max-width: 90%;
    margin: 0 auto;
}
/***** HERO SECTION *****/
.hero-app {
    overflow: hidden;
}
.hero-title {
    max-width: 60%;
    margin: 0 auto;
}
.hero-title h1 {
    font-weight: 400;
    font-size: 4rem;
}
.hero-sub-hdr {
    color: #fe7805;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-para {
    font-size: 1.2rem;
    max-width: 60%;
    margin: 0 auto;
    margin-top: 40px;
}
.list-inline-item {
    vertical-align: middle;
}
.hero-banner-wrpr {
    position: relative;
    z-index: 0;
    max-width: 1140px;
    margin: 0 auto;
}
.gradient-line {
    z-index: -1;
    position: absolute;
    left: auto;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 1px;    
    background: linear-gradient(
        to bottom,
        transparent,
        #3b40f2,
        transparent
    );
    animation: neonPulse 2s ease-in-out infinite;
}
/* Glow Effect */
.gradient-line::before {    
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(4px);
    opacity: 0.8;
}
/* Animation */
@keyframes neonPulse {
    0%, 100% {
        opacity: 0.5;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.8);
    }
}
.gradient-line-1, .gradient-line-6 {
    height: calc(100vh - 200px);
}
.gradient-line-2, .gradient-line-5 {
    height: calc(100vh - 400px);
}
.gradient-line-1 {
    left: -5%;
}
.gradient-line-2 {
    left: 5%;
}
.gradient-line-3 {
    left: 15%;
}
.gradient-line-4 {
    right: 15%;
}
.gradient-line-5 {
    right: 5%;
}
.gradient-line-6 {
    right: -5%;
}
.app-brand-logo {
    max-width: 200px;
    margin: 0 auto;
}
.translation-feature-box {
    background: #fff;
    box-shadow: 0 2px 4px #ddd;
    border: 1px solid #ddd;
    padding: 20px;
    width: 260px;
    position: absolute;
    bottom: 20%;
    left: 2%;
    z-index: 1;
    border-radius: 28px;    
    text-align: left;
}
.toggle-switch {
    width: 60px;
    height: 30px;
    background-color: #3b40f2;
    border-radius: 20px;
}
.toggle-switch::after {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #fff;
    left: auto;
    right: 18px;
    margin: auto;
}
.locale-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: center;
    line-height: 20px;
}
.locale-flag img{
    vertical-align: top;
}
.locale-txt {
    font-size: 0.8rem;
}
.list-inline-item {
    vertical-align: middle;
}
.contact-form-box {
    background: #171717;
    border: 1px solid #272727;
    padding: 40px;
    border-radius: 28px;
}
.contact-form-box h3 {
    font-weight: 400;
}
.form-box {
    margin: 10px 0;
}
.form-box .form-control {
    background-color: #272727;
    border: 0;
    padding: 20px;
}

/***** Footer *****/
.footer {
    background-color: #171717;
    position: relative;
}
.footer .logo{
    margin: 0 auto;
    margin-bottom: 20px;
}
.footer-nav a {
    color: #fff;
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
}
.nav a:hover::after {
    background-color: #fff;
}
.social-icon {
    width: 20px;
}
.disclaimer {
    color: #969696;
    font-size: 0.8rem;
}
.copyright {
    color: #fe7805;
}
.contact-form-box .btn:hover, .innerpage-content .c-btn:hover {
    color: #171717;
    background-color: #fff;
    transition: all 0.5s ease-in;
}
.app-download-section {
    padding: 5% 0;
    background-color: #f6f7f9;
}
.nav-pills .nav-link {
    border: 0;
}
/**** INNER PAGE CONTENT CSS *****/
.innerpage-content h1, .innerpage-content h2, .innerpage-content h3, .innerpage-content h4 {
    font-weight: 400;
}
.innerpage-content h2 {
    margin-top: 25px;
}
.innerpage-content ul {
    margin-bottom: 30px;
}
.innerpage-content ul ul {
    margin-top: 20px;
}
.innerpage-content ul li {
    margin-bottom: 10px;
}
.innerpage-content a {
    color: #3b40f2;
}
.post-img {
    width: auto;
    height: auto;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 212, 133, 0.4);
    border-radius: 4px;
    overflow: hidden;
}
.post-img img {
    width: auto;
    height: auto;
}
.blog-page-section .c-btn {
    position: relative;
    color: #3b40f2;
}
.blog-page-section .c-btn::before {
    height: 2px;
    left: 0;
    background-color: #3b40f2;
    top: 50%;
    width: 20%;
}
.img404 {
    max-width: 550px;
    margin: 20px auto;
}
a.c-btn-blue, .c-btn-blue {
    background-color: #3b40f2;
    color: #fff;
}
/***** MEDIA QUERY *****/
@media (max-width: 1023px) {
    .apex-img {
        margin-bottom: -120px;
    }
    .hero-title, .secondary-title-wrpr {
        max-width: 100%;
    }
    .hero-title h1 {
        font-size: 3rem;
    }
    .mobile-app-details {
        margin: 0;
    }
    .app-screen-img {
        max-width: 100%;
    }
}
@media (max-width: 991px) {
    .logo {
        max-width: 220px;
        margin: 0 auto;
    }
    .header-wrpr {
        padding: 0;
        border: none;
        box-shadow: none;
    }
    .header .nav, .footer-nav {
        margin: 20px 0;
    }
    .bar-graph, .promotion-solid-box, .news-solid-box, .translation-feature-box {
        transform: scale(0.8);
    }
}
@media (max-width: 767px) {   
    .innerpage-content h1 {
        font-size: 2rem;
    }
    .innerpage-content h2 {
        font-size: 1.5rem;
    }
    .innerpage-content h4 {
        font-size: 1.2rem;
    }
}
@media (max-width: 575px) {
    .nav-pills .nav-item {
        margin: 0 0.4rem;
    }
    .hero-app-higlights {
        padding-top: 35%;
    }
    .bar-graph {
        transform: scale(0.5);
        transform-origin: top left;
        top: 5%;
    }
    .translation-feature-box {
        transform-origin: bottom left;
        bottom: -40px;
    }
    .news-solid-box {
        transform-origin: top right;
        top: 0;
    }
    .promotion-solid-box {
        transform-origin: right center;
        right: 0;
        bottom: -10%;
    }
}
@media (max-width: 420px) {
    .nav-pills .nav-item {
        margin: 0.2rem;
    }
    .tab-content {
        padding: 20px 0;
    }
    .store-badges img {
        height: 36px;
    }
}