﻿@font-face {
    font-family: 'Barlow';
    src: url('../fonts/Barlow-Regular.eot');
    src: url('../fonts/Barlow-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Barlow-Regular.woff2') format('woff2'), url('../fonts/Barlow-Regular.woff') format('woff'), url('../fonts/Barlow-Regular.ttf') format('truetype'), url('../fonts/Barlow-Regular.svg#Barlow-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Medium.eot');
    src: url('../fonts/Raleway-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Raleway-Medium.woff2') format('woff2'), url('../fonts/Raleway-Medium.woff') format('woff'), url('../fonts/Raleway-Medium.ttf') format('truetype'), url('../fonts/Raleway-Medium.svg#Raleway-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.align-items-center {
    display: flex;
    align-items: center;
}

.app-hero-area {
    background: #264262;
    padding: 60px 0;
}

.hero-text h1 {
    font-size: 60px;
    margin-top: 0px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Raleway';
    font-weight: 500;
    color: #fff;
}

.hero-text p {
    font-size: 24px;
    margin-bottom: 0px;
    font-family: 'Barlow';
    color: #fff;
}

.app-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.app-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.app-badges a, .app-badges a:hover, .app-badges a:focus, .app-badges a:active {
    color: #fff;
}

.app-badge img {
    width: 36px;
    margin-right: 6px;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
}

    .app-badge-text span:first-child {
        font-size: 12px;
        font-family: 'Barlow';
    }

    .app-badge-text span:last-child {
        font-weight: 600;
        font-size: 16px;
        font-family: 'Barlow';
    }

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    width: 58%;
    margin: 0 auto;
    z-index: 9;
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .animate.active {
        opacity: 1;
        transform: translateY(0);
    }

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f5f7fa 0%, #e4e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 48px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, #177d7c 0%, #003d82 100%);
    color: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

    .floating-card:nth-child(2) {
        top: 50px;
        right: 50px;
        width: 180px;
        animation-delay: 1s;
        background: linear-gradient(135deg, #177d7c 0%, #003d82 100%);
        color: white;
    }

    .floating-card:nth-child(3) {
        bottom: 80px;
        left: 50px;
        width: 200px;
        animation-delay: 2s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.features-area {
    padding: 60px 0;
    background: #f2efef;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 10px;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .feature-card:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #177d7c, #003d82);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        border-radius: 0 0 10px 10px;
    }

    .feature-card:hover:after {
        transform: scaleX(1);
    }

    .feature-card img {
        width: 40px;
        opacity: 1 !important;
        margin: 0 auto;
    }

    .feature-card h3 {
        font-size: 24px;
        color: #003d82;
        font-weight: 500;
        font-family: 'Raleway';
    }

    .feature-card p {
        text-align: justify;
    }

.section-title h2 {
    font-size: 44px;
    color: #003d82;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 30px;
}

.app-video-area {
    padding: 40px 0 60px;
    background: #001a33;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-wrapper, .video-wrapper-reg {
    text-align: center;
}

.video-wrapper iframe {
    width: 95%;
    height: 60vh;
    margin: 20px 0;
}

.video-container-reg {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-wrapper-reg iframe {
    width: 80%;
    height: 90vh;
    margin: 20px 0;
}
.same-bg {
    margin-top: 60px;
}
.newer-area {
    padding: 40px 0 30px;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    width: 1060px;
    margin: 0px auto;
}

.owl-carousel .item {
    width: 100%;
    height: auto;
    padding: 0px;
    border-radius: 20px;
    margin: 15px;
    background: #fff;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    border-radius: 15px;
    background: linear-gradient(45deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 15px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #177d7c;
}

.owl-carousel .item {
    background: #fff;
}

.faq-area {
    background: #f8f9fa;
    padding: 40px 0 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-area .panel.panel-default {
    background: transparent;
}

.faq-area .panel-default > .panel-heading a[aria-expanded="true"] {
    background-color: transparent;
}



.faq-area .panel-default > .panel-heading + .panel-collapse .panel-body {
    border-top-color: transparent;
}

.faq-area .panel-default > .panel-heading {
    background-color: #fff;
}

.faq-area .panel-body {
    padding: 0 15px 15px;
}

.faq-area .panel-heading a {
    color: #3293FB;
    font-size: 16px;
    font-weight: bold;
}

.panel-title > a:before {
    float: right !important;
    font-family: FontAwesome;
    content: "\f068";
    padding-right: 5px;
}

.panel-title > a.collapsed:before {
    float: right !important;
    content: "\f067";
}

.panel-title.minus-icon > a.collapsed:before {
    float: right !important;
    content: "\f068";
}

.panel-title.plus-icon > a:before {
    float: right !important;
    content: "\f067";
}

.panel-title > a:hover,
.panel-title > a:active,
.panel-title > a:focus {
    text-decoration: none;
    outline: none;
}

.faq-content strong {
    color: #3293FB;
    display: block;
    font-size: 16px;
}

.faq-content span {
    font-size: 14px;
    color: #000;
    display: block;
}

.faq-content .fa-arrow-circle-o-right {
    margin-right: 7px;
    font-size: 18px;
    position: relative;
    top: 1px;
}

.faq-content .fa-long-arrow-right {
    margin-right: 10px;
    font-size: 14px;
    position: relative;
    top: 0px;
    left: 2px;
}

#cashmentText {
    margin: 0;
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f8f9fa;
    border-color: #ddd;
}

.panel-default {
    margin-bottom: 20px !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.panel-title {
    padding: 10px;
}

.app-cta-area {
    padding: 60px 0 90px;
    background: linear-gradient(135deg, #177d7c 0%, #003d82 100%);
}

.app-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

    .app-badges a, .app-badges a:hover, .app-badges a:focus, .app-badges a:active {
        color: #fff;
    }

.app-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .app-badge img {
        width: 36px;
        margin-right: 6px;
    }

.app-badge-text {
    display: flex;
    flex-direction: column;
}

.text-white {
    color: #fff !important;
}
.sub-section-title {
        min-height: 54px;
        margin-top: 40px;
    }
@media only screen and (max-width: 767px) {
    .align-items-center {
        display: inherit;
    }

    .hero-text h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-text p {
        font-size: 18px;
        text-align: justify;
    }

    .app-badges {
        gap: 8px;
        margin-top: 20px;
    }

    .app-badge {
        padding: 6px;
    }

        .app-badge img {
            width: 18px;
            margin-right: 3px;
        }

    .app-badge-text span:first-child {
        font-size: 10px;
    }

    .app-badge-text span:last-child {
        font-size: 11px;
    }

    .hero-visual {
        width: 160px;
        margin: 30px auto 0;
    }

    .phone-screen {
        border-radius: 24px;
    }

    .floating-card:nth-child(2) {
        right: 15px;
    }

    .floating-card:nth-child(3) {
        left: 15px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        max-width: 80%;
        text-align: justify;
    }

    .feature-card h3 {
        font-size: 18px;
        line-height: 1.3;
        margin: 10px 0 5px;
    }

    .video-wrapper iframe {
        height: auto;
        margin: 0;
    }

    .owl-dots {
        display: none !important;
    }

    .owl-carousel {
        width: 100% !important;
    }

    .owl-stage-outer {
        width: 100% !important;
    }
    .video-wrapper-reg iframe {
        width: 280px;
        height: 50vh;
        margin: 15px 0;
    }
    .same-bg {
        margin-top: 30px;
    }
}
