/* ==========================
   FinTech Hero Section
========================== */

.fintech-hero-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f6fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.fintech-hero-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -100px;
}

.fintech-hero-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 50%;
    bottom: -120px;
    right: -100px;
}

.fintech-content {
    position: relative;
    z-index: 2;
}

.fintech-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.fintech-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 30px;
}

.fintech-text {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
}

.fintech-btn-wrap {
    margin-top: 40px;
}

.fintech-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 500;
    transition: all .4s ease;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.fintech-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

/* Image Area */

.fintech-image-wrapper {
    position: relative;
    text-align: center;
    z-index: 2;
}

.fintech-main-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    animation: fintechFloat 5s ease-in-out infinite;
}

.fintech-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle,
            rgba(37, 99, 235, .25),
            transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.fintech-card {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .4s ease;
    z-index: 3;
}

.fintech-card:hover {
    transform: translateY(-8px);
}

.fintech-card i {
    font-size: 20px;
    color: #2563eb;
}

.fintech-card span {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
}

.fintech-card-1 {
    top: 12%;
    left: -20px;
}

.fintech-card-2 {
    right: -20px;
    top: 40%;
}

.fintech-card-3 {
    left: 10%;
    bottom: 8%;
}

@keyframes fintechFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 991px) {

    .fintech-title {
        font-size: 42px;
    }

    .fintech-image-wrapper {
        margin-top: 30px;
    }

    .fintech-card {
        position: relative;
        display: inline-flex;
        margin: 10px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
}

@media (max-width: 767px) {

    .fintech-hero-section {
        padding: 80px 0;
    }

    .fintech-title {
        font-size: 34px;
    }

    .fintech-text {
        font-size: 15px;
    }
}

/* ==================================================
   Smart FinTech Platforms Section
================================================== */

.smart-fintech-platforms-section {
    padding: 80px 0;
    background: #E8F5D8;
    position: relative;
    overflow: hidden;
}

.smart-fintech-platforms-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(139, 195, 74, 0.12);
    border-radius: 50%;
    top: -120px;
    left: -100px;
}

.smart-fintech-platforms-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(139, 195, 74, 0.10);
    border-radius: 50%;
    bottom: -120px;
    right: -80px;
}

.smart-fintech-platforms-section .container {
    position: relative;
    z-index: 2;
}

/* Heading Area */

.smart-fintech-platforms-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #6B9F3B;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smart-fintech-platforms-title {
    font-size: 46px;
    font-weight: 500;
    color: #2E5E2A;
    line-height: 1.25;
    margin-bottom: 20px;
}

.smart-fintech-platforms-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    color: #557A50;
}

/* Feature Cards */

.smart-fintech-platforms-feature-card {
    background: #DDF1C7;
    padding: 35px 25px;
    border-radius: 22px;
    height: 100%;
    border: 1px solid rgba(139, 195, 74, 0.15);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.smart-fintech-platforms-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transition: .8s;
}

.smart-fintech-platforms-feature-card:hover::before {
    left: 100%;
}

.smart-fintech-platforms-feature-card:hover {
    transform: translateY(-12px);
    background: #CDE8B1;
    box-shadow: 0 20px 40px rgba(107, 159, 59, 0.15);
}

/* Icon */

.smart-fintech-platforms-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #8BC34A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all .4s ease;
}

.smart-fintech-platforms-feature-card:hover .smart-fintech-platforms-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.smart-fintech-platforms-icon-box i {
    color: #fff;
    font-size: 28px;
}

.smart-fintech-platforms-feature-card h5 {
    font-size: 20px;
    font-weight: 500;
    color: #2E5E2A;
    margin-bottom: 15px;
}

.smart-fintech-platforms-feature-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #557A50;
    margin-bottom: 0;
}

/* Bottom Highlight Box */

.smart-fintech-platforms-highlight-box {
    background: linear-gradient(135deg, #8BC34A, #76B53A);
    padding: 35px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(107, 159, 59, 0.18);
}

.smart-fintech-platforms-highlight-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -80px;
    right: -50px;
}

.smart-fintech-platforms-highlight-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -40px;
    left: -30px;
}

.smart-fintech-platforms-highlight-box p {
    color: #fff;
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive */

@media (max-width: 1199px) {

    .smart-fintech-platforms-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {

    .smart-fintech-platforms-section {
        padding: 90px 0;
    }

    .smart-fintech-platforms-title {
        font-size: 34px;
    }

    .smart-fintech-platforms-description {
        font-size: 16px;
    }

    .smart-fintech-platforms-feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {

    .smart-fintech-platforms-section {
        padding: 80px 0;
    }

    .smart-fintech-platforms-title {
        font-size: 28px;
    }

    .smart-fintech-platforms-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .smart-fintech-platforms-highlight-box {
        padding: 25px;
    }

    .smart-fintech-platforms-highlight-box p {
        font-size: 16px;
    }
}
/*==================================================
 FinTech Development Services Section
==================================================*/

.fintech-development-services-section {
    padding: 80px 0;
    background: #f8fbff;
    overflow: hidden;
}

.fintech-development-services-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.fintech-development-services-title {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
}

.fintech-development-services-description {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
}

.fintech-development-services-flow {
    position: relative;
    margin-top: 80px;
}

.fintech-development-services-flow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #bfdbfe;
    transform: translateX(-50%);
}

.fintech-development-services-row {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.fintech-development-services-node {
    width: 80px;
    height: 80px;
    margin: auto;
    background: #ffffff;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all .4s ease;
}

.fintech-development-services-node span {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
}

.fintech-development-services-row:hover .fintech-development-services-node {
    transform: scale(1.08);
    background: #3b82f6;
}

.fintech-development-services-row:hover .fintech-development-services-node span {
    color: #fff;
}

.fintech-development-services-content {
    padding: 10px 25px;
    transition: all .4s ease;
}

.fintech-development-services-content.left {
    text-align: right;
}

.fintech-development-services-content.right {
    text-align: left;
}

.fintech-development-services-content h4 {
    font-size: 24px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 12px;
    transition: .4s;
}

.fintech-development-services-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #64748b;
    margin: 0;
}

.fintech-development-services-row:hover h4 {
    color: #2563eb;
}

.fintech-development-services-empty {
    min-height: 1px;
}

/* Responsive */

@media (max-width: 991px) {

    .fintech-development-services-title {
        font-size: 36px;
    }

    .fintech-development-services-flow::before {
        left: 40px;
    }

    .fintech-development-services-row {
        grid-template-columns: 80px 1fr;
        gap: 25px;
    }

    .fintech-development-services-empty {
        display: none;
    }

    .fintech-development-services-node {
        width: 70px;
        height: 70px;
        grid-column: 1;
        grid-row: 1;
    }

    .fintech-development-services-content {
        grid-column: 2;
        text-align: left !important;
        padding: 0;
    }

}

@media (max-width: 767px) {

    .fintech-development-services-section {
        padding: 80px 0;
    }

    .fintech-development-services-title {
        font-size: 30px;
    }

    .fintech-development-services-description {
        font-size: 15px;
    }

    .fintech-development-services-content h4 {
        font-size: 20px;
    }
}

/* ==========================================
   FinTech Platform Features Section
========================================== */

.fintech-platform-features-section{
    padding:80px 0;
    background:#faf7ff;
}

.fintech-platform-features-badge{
    display:inline-block;
    background:#7c3aed;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:500;
    margin-bottom:20px;
}

.fintech-platform-features-title{
    font-size:46px;
    font-weight:500;
    color:#1f2937;
    margin-bottom:20px;
}

.fintech-platform-features-description{
    max-width:800px;
    margin:auto;
    color:#6b7280;
    line-height:1.9;
}

.fintech-platform-features-network{
    position:relative;
    margin-top:70px;
}

.fintech-platform-features-connector{
    position:absolute;
    left:10%;
    right:10%;
    top:65px;
    height:2px;
    background:#d8b4fe;
}

.fintech-platform-features-node{
    text-align:center;
    position:relative;
}

.fintech-platform-features-circle{
    width:110px;
    height:110px;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
    border:5px solid #fff;
}

.fintech-platform-features-node:hover
.fintech-platform-features-circle{
    transform:translateY(-10px) scale(1.05);
}

.fintech-platform-features-circle i{
    font-size:32px;
    color:#fff;
}

.fintech-platform-features-node h6{
    font-size:16px;
    font-weight:500;
    line-height:1.6;
    color:#374151;
    margin:0;
}

/* Individual Colors */

.fintech-platform-feature-purple{
    background:#8b5cf6;
}

.fintech-platform-feature-blue{
    background:#3b82f6;
}

.fintech-platform-feature-pink{
    background:#ec4899;
}

.fintech-platform-feature-orange{
    background:#f97316;
}

.fintech-platform-feature-green{
    background:#22c55e;
}

.fintech-platform-feature-indigo{
    background:#6366f1;
}

.fintech-platform-feature-yellow{
    background:#eab308;
}

.fintech-platform-feature-red{
    background:#ef4444;
}

.fintech-platform-features-growth-box{
    margin-top:70px;
    background:#ffffff;
    padding:35px;
    border-radius:24px;
    text-align:center;
    border:1px solid #ede9fe;
}

.fintech-platform-features-growth-box p{
    margin:0;
    color:#4b5563;
    line-height:1.9;
}

/* Responsive */

@media(max-width:991px){

    .fintech-platform-features-title{
        font-size:36px;
    }

    .fintech-platform-features-connector{
        display:none;
    }
}

@media(max-width:767px){

    .fintech-platform-features-section{
        padding:80px 0;
    }

    .fintech-platform-features-title{
        font-size:28px;
    }

    .fintech-platform-features-circle{
        width:90px;
        height:90px;
    }
}

/*==================================================
 Blockchain FinTech Integration Section
==================================================*/

.blockchain-fintech-integration-section{
    padding:80px 0;
    background:#f8fafc;
}

.blockchain-fintech-integration-subtitle{
    display:inline-block;
    color:#00a3c8;
    font-size:15px;
    font-weight:500;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.blockchain-fintech-integration-title{
    font-size:46px;
    font-weight:500;
    color:#1e293b;
    margin-bottom:20px;
}

.blockchain-fintech-integration-description{
    max-width:800px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
}

.blockchain-fintech-integration-card{
    background:#ffffff;
    border-radius:18px;
    padding:35px 28px;
    height:100%;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    position:relative;
}

.blockchain-fintech-integration-card:hover{
    transform:translateY(-10px);
}

.blockchain-fintech-integration-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:8px;
    border-radius:18px 18px 0 0;
}

.blockchain-fintech-card-blue::before{
    background:#00a3c8;
}

.blockchain-fintech-card-orange::before{
    background:#f59e0b;
}

.blockchain-fintech-card-green::before{
    background:#16a34a;
}

.blockchain-fintech-integration-icon{
    margin-bottom:20px;
}

.blockchain-fintech-integration-icon i{
    font-size:38px;
    color:#334155;
}

.blockchain-fintech-integration-card h4{
    font-size:22px;
    font-weight:500;
    color:#1e293b;
    margin-bottom:15px;
}

.blockchain-fintech-integration-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:0;
}

.blockchain-fintech-integration-footer-box{
    margin-top:50px;
    padding:30px;
    background:#ffffff;
    border-left:5px solid #00a3c8;
    border-radius:16px;
    text-align:center;
}

.blockchain-fintech-integration-footer-box p{
    margin:0;
    color:#475569;
    line-height:1.9;
}

/* Responsive */

@media(max-width:991px){

    .blockchain-fintech-integration-title{
        font-size:36px;
    }
}

@media(max-width:767px){

    .blockchain-fintech-integration-section{
        padding:80px 0;
    }

    .blockchain-fintech-integration-title{
        font-size:28px;
    }
}

/* =========================================
   AI FinTech Automation Section
========================================= */

.ai-fintech-automation-section{
    padding:80px 0;
    background:#ffffff;
}

.ai-fintech-automation-subtitle{
    display:inline-block;
    color:#0f766e;
    font-size:15px;
    font-weight:500;
    margin-bottom:15px;
}

.ai-fintech-automation-title{
    font-size:46px;
    font-weight:500;
    color:#1f2937;
    margin-bottom:20px;
}

.ai-fintech-automation-description{
    max-width:850px;
    margin:auto;
    color:#6b7280;
    line-height:1.9;
}

.ai-fintech-automation-wheel-wrapper{
    display:flex;
    justify-content:center;
    margin-top:80px;
}

.ai-fintech-automation-wheel{
    position:relative;
    width:600px;
    height:600px;
}

/* Circular Ring */

.ai-fintech-automation-wheel::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border:12px solid #4ade80;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* Center */

.ai-fintech-automation-center{
    position:absolute;
    width:170px;
    height:170px;
    background:#facc15;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    font-size:28px;
    font-weight:500;
    z-index:3;
}

/* Nodes */

.ai-fintech-automation-node{
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    color:#fff;
    font-size:14px;
    line-height:1.5;
    font-weight:500;
    transition:.4s;
}

.ai-fintech-automation-node:hover{
    transform:scale(1.08);
}

/* Positioning */

.node-1{
    background:#60a5fa;
    top:10px;
    left:50%;
    transform:translateX(-50%);
}

.node-2{
    background:#67e8f9;
    top:110px;
    right:0;
}

.node-3{
    background:#5eead4;
    bottom:110px;
    right:0;
}

.node-4{
    background:#34d399;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
}

.node-5{
    background:#4ade80;
    bottom:110px;
    left:0;
}

.node-6{
    background:#84cc16;
    top:110px;
    left:0;
}

.ai-fintech-automation-footer{
    margin-top:50px;
    text-align:center;
}

.ai-fintech-automation-footer p{
    color:#4b5563;
    line-height:1.9;
    max-width:900px;
    margin:auto;
}

/* Responsive */

@media(max-width:991px){

    .ai-fintech-automation-wheel{
        width:500px;
        height:500px;
    }

    .ai-fintech-automation-wheel::before{
        width:340px;
        height:340px;
    }

    .ai-fintech-automation-node{
        width:110px;
        height:110px;
        font-size:12px;
    }
}

@media(max-width:767px){

    .ai-fintech-automation-section{
        padding:80px 0;
    }

    .ai-fintech-automation-title{
        font-size:28px;
    }

    .ai-fintech-automation-wheel{
        display:none;
    }

    .ai-fintech-automation-footer{
        margin-top:30px;
    }
}

/* ==========================================
   FinTech Industry Solutions Section
========================================== */

.fintech-industry-solutions-section {
    padding: 80px 0;
    background: #fffaf3;
}

.fintech-industry-solutions-subtitle {
    display: inline-block;
    color: #ea580c;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fintech-industry-solutions-title {
    font-size: 46px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 70px;
}

.fintech-industry-solutions-flow-wrapper {
    position: relative;
}

.fintech-industry-solutions-connector-horizontal {
    position: absolute;
    top: 85px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #fdba74;
}

.fintech-industry-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.bottom-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
    margin: 0px auto 0;
}

.fintech-industry-solutions-middle-line {
    width: 2px;
    height: 70px;
    background: #fdba74;
    margin: 0 auto;
}

.fintech-industry-solutions-item {
    position: relative;
    text-align: center;
}

.fintech-industry-solutions-number {
    width: 55px;
    height: 55px;
    background: #fff;
    border: 2px solid #fb923c;
    color: #ea580c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -12px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.fintech-industry-solutions-box {
    background: #7c2d12;
    color: #fff;
    border-radius: 14px;
    padding: 30px 25px;
    min-height: 180px;
    transition: all .4s ease;
}

.fintech-industry-solutions-box:hover {
    transform: translateY(-10px);
    background: #9a3412;
}

.fintech-industry-solutions-box h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.fintech-industry-solutions-box p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.85);
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {

    .fintech-industry-solutions-title {
        font-size: 36px;
    }

    .fintech-industry-solutions-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .fintech-industry-solutions-connector-horizontal,
    .fintech-industry-solutions-middle-line {
        display: none;
    }

    .fintech-industry-solutions-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {

    .fintech-industry-solutions-section {
        padding: 80px 0;
    }

    .fintech-industry-solutions-title {
        font-size: 28px;
    }

    .fintech-industry-solutions-box {
        min-height: auto;
    }
}

/*==================================================
 FinTech Security Compliance Section
==================================================*/

.fintech-security-compliance-section {
    padding: 80px 0;
    background: #f0fdf4;
}

.fintech-security-compliance-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.fintech-security-compliance-title {
    font-size: 46px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 20px;
}

.fintech-security-compliance-description {
    max-width: 820px;
    margin: auto;
    color: #64748b;
    line-height: 1.9;
}

.fintech-security-compliance-wrapper {
    position: relative;
    max-width: 1100px;
    height: 700px;
    margin: 80px auto 0;
}

/* Core */

.fintech-security-compliance-core {
    position: absolute;
    top: 29%;
    left: 37%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: #064e3b;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 50px rgba(6, 78, 59, .20);
}

.fintech-security-compliance-core-icon i {
    font-size: 65px;
    color: #fff;
}

.fintech-security-compliance-core h4 {
    color: #fff;
    margin-top: 15px;
    font-size: 24px;
    font-weight: 500;
}

/* Features */

.fintech-security-compliance-feature {
    position: absolute;
    width: 260px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
    transition: all .4s ease;
}

.fintech-security-compliance-feature:hover {
    transform: translateY(-8px);
}

.fintech-security-compliance-feature i {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fintech-security-compliance-feature span {
    color: #334155;
    font-weight: 500;
    line-height: 1.5;
}

/* Positions */

.feature-top-left {
    top: 60px;
    left: 80px;
}

.feature-top-right {
    top: 60px;
    right: 80px;
}

.feature-middle-left {
    top: 250px;
    left: 0;
}

.feature-middle-right {
    top: 250px;
    right: 0;
}

.feature-bottom-left {
    bottom: 60px;
    left: 80px;
}

.feature-bottom-right {
    bottom: 60px;
    right: 80px;
}

/* Footer */

.fintech-security-compliance-footer {
    margin-top: 40px;
    text-align: center;
}

.fintech-security-compliance-footer p {
    max-width: 900px;
    margin: auto;
    color: #475569;
    line-height: 1.9;
}

/* Responsive */

@media (max-width: 991px) {

    .fintech-security-compliance-title {
        font-size: 36px;
    }

    .fintech-security-compliance-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .fintech-security-compliance-core,
    .fintech-security-compliance-feature {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
    }

    .fintech-security-compliance-core {
        height: 220px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {

    .fintech-security-compliance-section {
        padding: 80px 0;
    }

    .fintech-security-compliance-title {
        font-size: 28px;
    }
}

/*==================================================
 FinTech Business Benefits Section
==================================================*/

.fintech-business-benefits-section{
    padding:80px 0;
    background:#fff7ed;
}

.fintech-business-benefits-subtitle{
    display:inline-block;
    color:#ea580c;
    font-size:15px;
    font-weight:500;
    text-transform:uppercase;
    margin-bottom:15px;
    letter-spacing:1px;
}

.fintech-business-benefits-title{
    font-size:46px;
    font-weight:500;
    color:#1f2937;
    margin-bottom:20px;
}

.fintech-business-benefits-description{
    max-width:850px;
    margin:auto;
    color:#64748b;
    line-height:1.9;
}

.fintech-business-benefits-wrapper{
    margin-top:70px;
}

.fintech-business-benefits-arrow-card{
    position:relative;
    background:#ffffff;
    padding:35px 60px 35px 30px;
    min-height:140px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-radius:18px 0 0 18px;
    transition:.4s;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* Arrow Shape */

.fintech-business-benefits-arrow-card::after{
    content:"";
    position:absolute;
    right:-50px;
    top:0;
    width:0;
    height:0;
    border-top:70px solid transparent;
    border-bottom:70px solid transparent;
    border-left:50px solid #ffffff;
    transition:.4s;
}

.fintech-business-benefits-arrow-card:hover{
    transform:translateY(-10px);
    background:#ea580c;
}

.fintech-business-benefits-arrow-card:hover::after{
    border-left-color:#ea580c;
}

.fintech-business-benefits-icon{
    margin-bottom:15px;
}

.fintech-business-benefits-icon i{
    font-size:30px;
    color:#ea580c;
    transition:.4s;
}

.fintech-business-benefits-arrow-card h5{
    font-size:20px;
    font-weight:500;
    color:#1f2937;
    line-height:1.5;
    margin:0;
    transition:.4s;
}

.fintech-business-benefits-arrow-card:hover h5,
.fintech-business-benefits-arrow-card:hover i{
    color:#fff;
}

.fintech-business-benefits-footer{
    margin-top:60px;
    text-align:center;
}

.fintech-business-benefits-footer p{
    max-width:900px;
    margin:auto;
    color:#475569;
    line-height:1.9;
}

/* Responsive */

@media(max-width:991px){

    .fintech-business-benefits-title{
        font-size:36px;
    }
}

@media(max-width:767px){

    .fintech-business-benefits-section{
        padding:80px 0;
    }

    .fintech-business-benefits-title{
        font-size:28px;
    }

    .fintech-business-benefits-arrow-card{
        min-height:auto;
        padding:30px;
        border-radius:18px;
    }

    .fintech-business-benefits-arrow-card::after{
        display:none;
    }
}

/*==================================================
 Why Digiature FinTech Hexagon Section
==================================================*/

.why-digiature-fintech-hexagon-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
    overflow: hidden;
}

.why-digiature-fintech-hexagon-subtitle {
    display: inline-block;
    color: #6d28d9;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.why-digiature-fintech-hexagon-title {
    font-size: 46px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 20px;
}

.why-digiature-fintech-hexagon-description {
    max-width: 850px;
    margin: auto;
    color: #64748b;
    line-height: 1.9;
}

.why-digiature-fintech-hexagon-wrapper {
    position: relative;
    width: 850px;
    height: 700px;
    margin: 90px auto 0;
}

/* ==========================
   Hexagon Shape
========================== */

.why-digiature-fintech-hexagon-shape {
    width: 200px;
    height: 220px;
    background: #ffffff;
    clip-path: polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: all .4s ease;
    padding: 25px;
    text-align: center;
}

.why-digiature-fintech-hexagon-shape:hover {
    transform: translateY(-10px);
}

.why-digiature-fintech-hexagon-shape i {
    font-size: 42px;
    margin-bottom: 15px;
    color: #06b6d4;
}

.why-digiature-fintech-hexagon-shape h5 {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}

/* Center Hex */

.center-hex {
    background: linear-gradient(135deg, #6d28d9, #06b6d4);
}

.center-hex h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

/* ==========================
   Positioning
========================== */

.why-digiature-fintech-hexagon-center {
    position: absolute;
    top: 240px;
    left: 325px;
}

.item-top {
    position: absolute;
    top: 0;
    left: 325px;
}

.item-top-left {
    position: absolute;
    top: 120px;
    left: 80px;
}

.item-top-right {
    position: absolute;
    top: 120px;
    right: 80px;
}

.item-bottom-left {
    position: absolute;
    bottom: 120px;
    left: 80px;
}

.item-bottom-right {
    position: absolute;
    bottom: 120px;
    right: 80px;
}

.item-bottom {
    position: absolute;
    bottom: 0;
    left: 325px;
}

/* Different Accent Colors */

.item-top i {
    color: #f97316;
}

.item-top-left i {
    color: #22c55e;
}

.item-top-right i {
    color: #06b6d4;
}

.item-bottom-left i {
    color: #ec4899;
}

.item-bottom-right i {
    color: #8b5cf6;
}

.item-bottom i {
    color: #f59e0b;
}

/* Footer */

.why-digiature-fintech-hexagon-footer {
    text-align: center;
    margin-top: 50px;
}

.why-digiature-fintech-hexagon-footer p {
    max-width: 900px;
    margin: auto;
    color: #475569;
    line-height: 1.9;
}

/* Responsive */

@media (max-width: 991px) {

    .why-digiature-fintech-hexagon-wrapper {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-digiature-fintech-hexagon-center,
    .why-digiature-fintech-hexagon-item {
        position: static;
        display: flex;
        justify-content: center;
    }

    .why-digiature-fintech-hexagon-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .why-digiature-fintech-hexagon-section {
        padding: 80px 0;
    }

    .why-digiature-fintech-hexagon-wrapper {
        grid-template-columns: 1fr;
    }

    .why-digiature-fintech-hexagon-title {
        font-size: 28px;
    }

    .why-digiature-fintech-hexagon-shape {
        width: 180px;
        height: 200px;
    }
}

/*==================================================
 Future FinTech Roadmap Section
==================================================*/

.future-fintech-roadmap-section {
    padding: 80px 0;
    background: #0f172a;
    overflow: hidden;
}

.future-fintech-roadmap-subtitle {
    display: inline-block;
    color: #06b6d4;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.future-fintech-roadmap-title {
    font-size: 46px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.future-fintech-roadmap-description {
    max-width: 850px;
    margin: auto;
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.future-fintech-roadmap-track {
    position: relative;
    margin-top: 90px;
}

.future-fintech-roadmap-line {
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #06b6d4,
        #14b8a6,
        #a3e635
    );
}

.future-fintech-roadmap-step {
    position: relative;
    text-align: center;
    padding-top: 50px;
}

.future-fintech-roadmap-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #06b6d4;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 0 8px rgba(6,182,212,.12),
        0 0 25px rgba(6,182,212,.7);
    transition: all .4s ease;
}

.future-fintech-roadmap-step:hover .future-fintech-roadmap-dot {
    transform: scale(1.25);
}

.future-fintech-roadmap-step h5 {
    margin-top: 25px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

.future-fintech-roadmap-footer {
    margin-top: 70px;
    text-align: center;
}

.future-fintech-roadmap-footer p {
    max-width: 900px;
    margin: auto;
    color: rgba(255,255,255,.8);
    line-height: 1.9;
}

/* Responsive */

@media (max-width: 991px) {

    .future-fintech-roadmap-title {
        font-size: 36px;
    }

    .future-fintech-roadmap-line {
        display: none;
    }

    .future-fintech-roadmap-step {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 18px;
        padding: 30px;
    }
}

@media (max-width: 767px) {

    .future-fintech-roadmap-section {
        padding: 80px 0;
    }

    .future-fintech-roadmap-title {
        font-size: 28px;
    }
}

/* CTA */
/*=========================================
 FinTech CTA Section
=========================================*/

.fintech-cta-section{
    padding:80px 0;
    background:#f8fafc;
}

.fintech-cta-wrapper{
    position:relative;
    overflow:hidden;
    padding:70px;
    border-radius:32px;
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
}

/* Animated Border */

.fintech-cta-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    padding:2px;
    border-radius:32px;
    background:linear-gradient(
        90deg,
        #06b6d4,
        #8b5cf6,
        #ec4899,
        #06b6d4
    );
    background-size:300% 300%;
    animation:borderFlow 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

@keyframes borderFlow{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:300% 50%;
    }
}

/* Floating Glows */

.fintech-cta-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    animation:floatGlow 8s ease-in-out infinite;
}

.glow-one{
    width:260px;
    height:260px;
    background:#06b6d4;
    top:-80px;
    left:-80px;
    opacity:.25;
}

.glow-two{
    width:280px;
    height:280px;
    background:#8b5cf6;
    right:-100px;
    bottom:-100px;
    opacity:.25;
    animation-delay:2s;
}

@keyframes floatGlow{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-25px);
    }
}

/* Content */

.fintech-cta-content{
    position:relative;
    z-index:2;
}

.fintech-cta-subtitle{
    display:inline-block;
    margin-bottom:15px;
    color:#06b6d4;
    font-size:15px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1px;
}

.fintech-cta-content h2{
    color:#ffffff;
    font-size:48px;
    font-weight:500;
    line-height:1.3;
    margin-bottom:20px;
}

.fintech-cta-content p{
    color:rgba(255,255,255,.80);
    line-height:1.9;
    margin:0;
    max-width:700px;
}

/* Button */

.fintech-cta-btn-wrap{
    position:relative;
    z-index:2;
}

.fintech-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:18px 32px;
    background:#ffffff;
    color:#0f172a;
    border-radius:60px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;
}

.fintech-cta-btn span{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0f172a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.fintech-cta-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.fintech-cta-btn:hover span{
    transform:translateX(6px);
    background:#06b6d4;
}

/* Responsive */

@media(max-width:991px){

    .fintech-cta-wrapper{
        padding:50px 35px;
        text-align:center;
    }

    .fintech-cta-content h2{
        font-size:36px;
    }

    .fintech-cta-btn-wrap{
        margin-top:30px;
        text-align:center !important;
    }
}

@media(max-width:767px){

    .fintech-cta-section{
        padding:80px 0;
    }

    .fintech-cta-wrapper{
        padding:40px 25px;
    }

    .fintech-cta-content h2{
        font-size:28px;
    }
}

/*=========================================
 FinTech FAQ Section
=========================================*/

.fintech-faq-section{
    padding:80px 0;
    background:#fffdf8;
}

.fintech-faq-subtitle{
    display:inline-block;
    color:#0ea5e9;
    font-size:15px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.fintech-faq-title{
    font-size:46px;
    font-weight:500;
    color:#1e293b;
    margin-bottom:70px;
}

.fintech-faq-wrapper{
    max-width:950px;
    margin:auto;
}

.fintech-faq-item{
    border:none !important;
    margin-bottom:18px;
    border-radius:20px !important;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
    transition:.4s;
}

.fintech-faq-item:hover{
    transform:translateY(-4px);
}

.fintech-faq-item .accordion-button{
    background:#fff;
    color:#1e293b;
    font-size:18px;
    font-weight:500;
    padding:24px 28px;
    box-shadow:none !important;
}

.fintech-faq-item .accordion-button:not(.collapsed){
    background:#f0fdfa;
    color:#0f172a;
}

.fintech-faq-item .accordion-button::after{
    transition:.4s;
}

.fintech-faq-item .accordion-body{
    padding:0 28px 28px;
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion{
    --bs-accordion-border-width:0;
}

.fintech-faq-item .accordion-button:not(.collapsed){
    border-left:4px solid #14b8a6;
}

/* Responsive */

@media(max-width:991px){

    .fintech-faq-title{
        font-size:36px;
    }
}

@media(max-width:767px){

    .fintech-faq-section{
        padding:80px 0;
    }

    .fintech-faq-title{
        font-size:28px;
    }

    .fintech-faq-item .accordion-button{
        font-size:16px;
        padding:20px;
    }

    .fintech-faq-item .accordion-body{
        padding:0 20px 20px;
    }
}