﻿.about-breadcrumb {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(255,48,86,.15), transparent 25%), radial-gradient(circle at bottom right, rgba(79,140,255,.15), transparent 30%), linear-gradient( 135deg, #071a35 0%, #0b2242 35%, #12305d 70%, #1a4a8a 100%);
}

    .about-breadcrumb .container {
        max-width: 1320px;
        width: 100%;
        margin: auto;
        padding:12px 0 15px;
    }

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 5;
}

/* LEFT */

.breadcrumb-content {
    flex: 1;
    max-width: 700px;
}

.page-tag {
    display: inline-block;
    color: #ff3056;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.floating-title-card {
    position: relative;
    padding: 30px 35px;
    border-radius: 25px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 25px 50px rgba(0,0,0,.25);
}

    .floating-title-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 25px;
        background: linear-gradient( 90deg, rgba(255,48,86,.4), rgba(79,140,255,.35));
        z-index: -1;
        filter: blur(12px);
    }

    .floating-title-card h1 {
        color: #fff;
        font-size: 56px;
        line-height: 1.1;
        margin: 0;
        font-weight: 800;
    }

        .floating-title-card h1 span {
            color: #ff3056;
        }

    .floating-title-card p {
        margin-top: 18px;
        color: rgba(255,255,255,.75);
        line-height: 1.9;
        font-size: 15px;
    }

/* BREADCRUMB */

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 14px 28px;
    border-radius: 60px;
    background: linear-gradient( 135deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

    .breadcrumb-nav a {
        color: #fff;
        text-decoration: none;
    }

    .breadcrumb-nav span {
        color: #ff3056;
    }

/* IMAGE */

.breadcrumb-image {
    flex: 0 0 450px;
    position: relative;
}

.image-shape {
    width: 450px;
    height: 320px;
    overflow: hidden;
    border-radius: 120px 0 120px 0;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    transition: .5s;
}

    .image-shape:hover {
        transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) translateY(-8px);
    }

    .image-shape img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .image-shape::before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        background: #ff3056;
        border-radius: 50%;
        filter: blur(90px);
        right: -50px;
        top: -40px;
        opacity: .35;
        z-index: 1;
    }

    .image-shape::after {
        content: '';
        position: absolute;
        inset: 12px;
        border: 2px solid rgba(255,255,255,.15);
        border-radius: 100px 0 100px 0;
    }

/* FLOAT CARDS */

.float-card,
.stat-card {
    position: absolute;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
    animation: floatY 4s infinite ease-in-out;
    z-index: 10;
}

.float-card {
    background: rgba(255,255,255,.95);
    color: #163f73;
    font-weight: 600;
}

.card1 {
    top: 20px;
    left: -40px;
}

.card2 {
    top: 55%;
    right: -15px;
}

.card3 {
    bottom: 15px;
    left: -20px;
}

.stat-card strong {
    display: block;
    color: #ff3056;
    font-size: 18px;
    margin-bottom: 4px;
}

.stat1 {
    top: -69px;
    right: 20px;
}

.stat2 {
    bottom: -20px;
    right: 50px;
}

.stat3 {
    top: 42%;
    left: -70px;
}

/* BLOBS */

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.blob1 {
    width: 250px;
    height: 250px;
    background: #ff3056;
    top: -100px;
    left: -80px;
    opacity: .18;
}

.blob2 {
    width: 350px;
    height: 350px;
    background: #4f8cff;
    right: -120px;
    bottom: -120px;
    opacity: .15;
}

/* RINGS */

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

.ring1 {
    width: 500px;
    height: 500px;
    right: -150px;
    top: -80px;
    animation: rotateRing 30s linear infinite;
}

.ring2 {
    width: 350px;
    height: 350px;
    right: -70px;
    top: 20px;
    border-style: dashed;
    animation: rotateRingReverse 20s linear infinite;
}

.ring3 {
    width: 180px;
    height: 180px;
    right: 40px;
    top: 110px;
}

/* ANIMATIONS */

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRingReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes floatY {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* RESPONSIVE */

@media(max-width:991px) {

    .breadcrumb-wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .breadcrumb-content {
        max-width: 100%;
    }

    .floating-title-card h1 {
        font-size: 40px;
    }

    .breadcrumb-image {
        width: 100%;
        flex: none;
        display: flex;
        justify-content: center;
    }

    .image-shape {
        width: 100%;
        max-width: 450px;
    }

    .ring,
    .stat-card,
    .float-card {
        display: none;
    }
}

@media(max-width:576px) {

    .about-breadcrumb {
        padding: 50px 0;
        min-height: auto;
    }

    .floating-title-card {
        padding: 20px;
    }

        .floating-title-card h1 {
            font-size: 28px;
        }

        .floating-title-card p {
            font-size: 14px;
        }

    .image-shape {
        height: 240px;
        border-radius: 80px 0 80px 0;
    }

    .breadcrumb-nav {
        font-size: 14px;
        padding: 12px 20px;
    }
}




.who-we-are {
    position: relative;
    padding: 43px 0;
    background: #fff;
    overflow: hidden;
}

    .who-we-are::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(22,63,115,.04);
        border-radius: 50%;
        top: -180px;
        right: -120px;
    }

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */

.who-image-area {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

    .image-wrapper img {
        width: 100%;
        display: block;
        transition: .6s;
    }

    .image-wrapper:hover img {
        transform: scale(1.08);
    }

.experience-card {
    position: absolute;
    bottom: -25px;
    left: 30px;
    background: #ff3056;
    color: #fff;
    padding: 22px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(255,48,86,.3);
}

    .experience-card h3 {
        margin: 0;
        font-size: 34px;
    }

.floating-badge {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-1 {
    top: 30px;
    left: 20px;
}

.badge-2 {
    bottom: 40px;
    right: 20px;
}

/* CONTENT */

.section-tag {
    display: inline-block;
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.who-content h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #163f73;
    margin-bottom: 20px;
}

    .who-content h2 span {
        color: #ff3056;
    }

.who-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.feature-list {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#163f73,#2457a5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 15px 30px rgba(22,63,115,.25);
}

.feature-item h4 {
    margin: 0 0 6px;
    color: #163f73;
}

.feature-item p {
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .who-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .who-content {
        text-align: center;
    }

    .feature-item {
        text-align: left;
    }

    .who-content h2 {
        font-size: 40px;
    }
}

@media(max-width:576px) {

    .who-we-are {
        padding: 70px 0;
    }

    .who-content h2 {
        font-size: 30px;
    }

    .experience-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .floating-badge {
        display: none;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
}



.brand-ecosystem {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg,#071a35,#102f58);
}

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

    .section-heading span {
        color: #ff3056;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .section-heading h2 {
        color: #fff;
        font-size: 54px;
        margin: 15px 0;
    }

        .section-heading h2 span {
            color: #ff3056;
        }

    .section-heading p {
        color: rgba(255,255,255,.75);
    }

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    gap: 20px;
}

.brand-card {
    position: relative;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    padding: 40px;
    transition: .4s;
    overflow: hidden;
}

    .brand-card:hover {
        transform: translateY(-10px) rotateX(3deg);
    }

    .brand-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255,255,255,.08), transparent);
        pointer-events: none;
    }

.brand-top {
    text-align: center;
    margin-bottom: 30px;
}

.brand-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 15px;
    border-radius: 24px;
    background: linear-gradient( 135deg, #ff3056, #ff6f8f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 20px 40px rgba(255,48,86,.35);
}

.brand-top h3 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 10px;
}

.brand-label {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,.08);
    border-radius: 50px;
    color: #fff;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .brand-features li {
        color: #fff;
        margin-bottom: 15px;
        padding-left: 28px;
        position: relative;
    }

        .brand-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff3056;
            font-weight: 700;
        }

.brand-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.connection-line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #ff3056, #ff6f8f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(255,48,86,.5);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(255,48,86,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,48,86,0);
    }
}

.floating-stat {
    position: absolute;
    background: #fff;
    color: #163f73;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.stat-left {
    top: 20px;
    left: 20px;
}

.stat-right {
    top: 20px;
    right: 20px;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: #ff3056;
    top: -100px;
    left: -100px;
    opacity: .15;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #4f8cff;
    right: -120px;
    bottom: -100px;
    opacity: .12;
}

/* Responsive */

@media(max-width:991px) {

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .connection-line {
        margin: 20px 0;
    }

    .section-heading h2 {
        font-size: 38px;
    }
}

@media(max-width:576px) {

    .brand-ecosystem {
        padding: 80px 0;
    }

    .brand-card {
        padding: 25px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .brand-top h3 {
        font-size: 26px;
    }

    .floating-stat {
        display: none;
    }
}



.why-kredsetu {
    position: relative;
    padding: 110px 0;
    background: #f8fbff;
    overflow: hidden;
}

    .why-kredsetu::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(22,63,115,.04);
        top: -200px;
        right: -120px;
    }

.section-title {
    text-align: center;
    max-width: 750px;
    margin: auto auto 70px;
}

    .section-title span {
        color: #ff3056;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .section-title h2 {
        font-size: 52px;
        color: #163f73;
        margin: 15px 0;
    }

        .section-title h2 span {
            color: #ff3056;
        }

    .section-title p {
        color: #666;
        line-height: 1.8;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.why-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .45s;
}

    .why-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(255,48,86,.05), rgba(22,63,115,.03));
        opacity: 0;
        transition: .4s;
    }

    .why-card:hover::before {
        opacity: 1;
    }

    .why-card:hover {
        transform: translateY(-12px) rotateX(3deg);
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

.card-icon {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #163f73, #2457a5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    box-shadow: 0 20px 35px rgba(22,63,115,.25);
}

.why-card h3 {
    color: #163f73;
    font-size: 28px;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.9;
}

/* Floating Glow */

.why-card:nth-child(1)::after,
.why-card:nth-child(4)::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ff3056;
    filter: blur(80px);
    opacity: .08;
    right: -40px;
    top: -40px;
}

/* Responsive */

@media(max-width:991px) {

    .section-title h2 {
        font-size: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 30px;
    }
}

@media(max-width:576px) {

    .why-kredsetu {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .why-card h3 {
        font-size: 22px;
    }
}





/*=========================================
  PREMIUM LOAN PROCESS
=========================================*/

.loan-process-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f7f9ff 50%, #ffffff 100%);
}

    /* Background Glow */

    .loan-process-premium::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        left: -250px;
        top: -250px;
        background: radial-gradient( circle, rgba(255,48,86,.12), transparent 70%);
    }

    .loan-process-premium::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        right: -250px;
        bottom: -250px;
        background: radial-gradient( circle, rgba(93,109,255,.12), transparent 70%);
    }

/*=========================================
  BACKGROUND PATTERN
=========================================*/

.process-map {
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    z-index: 0;
}

    .process-map::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient( rgba(22,63,115,.10) 1px, transparent 1px);
        background-size: 18px 18px;
    }

    .process-map::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        border-radius: 50%;
        border: 1px dashed rgba(22,63,115,.08);
    }

/*=========================================
  HEADER
=========================================*/

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 5;
}

.section-tag {
    color: #ff3056;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-header h2 {
    font-size: 58px;
    font-weight: 800;
    color: #163f73;
    margin: 15px 0;
}

    .section-header h2 span {
        color: #ff3056;
    }

.section-header p {
    color: #666;
    font-size: 18px;
}

/*=========================================
  ROADMAP WRAPPER
=========================================*/

.roadmap-wrapper {
    position: relative;
    height: 850px;
    z-index: 2;
}

/*=========================================
  SVG CURVES
=========================================*/

.roadmap-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.path-red {
    fill: none;
    stroke: #ff3056;
    stroke-width: 5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 12px rgba(255,48,86,.30));
}

.path-blue {
    fill: none;
    stroke: #5d6dff;
    stroke-width: 5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 12px rgba(93,109,255,.30));
}

/*=========================================
  CENTER NODE
=========================================*/

.center-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #ff3056;
    box-shadow: 0 0 0 25px rgba(255,48,86,.04), 0 0 80px rgba(255,48,86,.15), 0 25px 60px rgba(0,0,0,.10);
    z-index: 10;
}

/*=========================================
  CARDS
=========================================*/

.process-card {
    position: absolute;
    width: 430px;
    height: 272px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,.80);
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    transition: .4s;
}

    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 35px 80px rgba(0,0,0,.15);
    }

    /* Top Accent */

    .process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: 4px;
        border-radius: 50px;
    }

.card-1::before,
.card-4::before {
    background: #ff3056;
}

.card-2::before,
.card-3::before {
    background: #5d6dff;
}

/*=========================================
  POSITIONS
=========================================*/

.card-1 {
    left: 0;
    top: 100px;
}

.card-2 {
    right: 0;
    top: 100px;
}

.card-3 {
    left: 0;
    bottom: 100px;
}

.card-4 {
    right: 0;
    bottom: 100px;
}

/*=========================================
  ICONS
=========================================*/

.card-icon {
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    position: relative;
}

    .card-icon::before {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 2px dashed rgba(255,48,86,.18);
    }

    .card-icon.red {
        background: linear-gradient( 135deg, #ff3056, #8a4dff);
    }

    .card-icon.blue {
        background: linear-gradient( 135deg, #5d6dff, #78a2ff);
    }

/*=========================================
  CONTENT
=========================================*/

.step-no {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: #ff3056;
    line-height: 1;
}

.blue-text {
    color: #5d6dff;
}

.card-content h3 {
    color: #163f73;
    font-size: 32px;
    line-height: 1.2;
    margin: 10px 0;
}

.card-content p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/*=========================================
  RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .process-card {
        width: 360px;
    }

    .card-content h3 {
        font-size: 28px;
    }
}

@media(max-width:991px) {

    .roadmap-svg,
    .center-node {
        display: none;
    }

    .roadmap-wrapper {
        height: auto;
        display: grid;
        gap: 25px;
    }

    .process-card {
        position: relative;
        width: 100%;
        height: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .section-header h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {

    .loan-process-premium {
        padding: 80px 0;
    }

    .process-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .card-icon {
        width: 85px;
        height: 85px;
        min-width: 85px;
        font-size: 30px;
    }

    .step-no {
        font-size: 40px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 30px;
    }
}




/*=================================
 IMPACT STATS SECTION
=================================*/

.impact-stats-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg,#081b33 0%,#102f57 50%,#163f73 100%);
}

/* Background Grid */

.impact-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: .35;
}

/* Glow */

.impact-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.impact-blob-1 {
    width: 350px;
    height: 350px;
    background: #ff3056;
    top: -120px;
    left: -120px;
    opacity: .20;
}

.impact-blob-2 {
    width: 350px;
    height: 350px;
    background: #4f8cff;
    right: -120px;
    bottom: -120px;
    opacity: .18;
}

/* Heading */

.impact-heading {
    text-align: center;
    max-width: 800px;
    margin: auto auto 70px;
    position: relative;
    z-index: 2;
}

.impact-tag {
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.impact-heading h2 {
    color: #fff;
    font-size: 56px;
    margin: 15px 0;
    line-height: 1.2;
}

    .impact-heading h2 span {
        color: #ff3056;
    }

.impact-heading p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    max-width: 650px;
    margin: auto;
}

/* Cards */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.impact-card {
    position: relative;
    text-align: center;
    padding: 40px 25px;
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .4s;
    overflow: hidden;
}

    .impact-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255,48,86,.4);
        box-shadow: 0 25px 60px rgba(0,0,0,.25);
    }

    /* Top Glow */

    .impact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#ff3056,#4f8cff);
    }

/* Icon */

.impact-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    background: linear-gradient(135deg,#ff3056,#4f8cff);
    box-shadow: 0 20px 40px rgba(255,48,86,.25);
}

.impact-card h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.impact-card p {
    color: rgba(255,255,255,.8);
    margin: 0;
    line-height: 1.6;
}

/* Floating Rings */

.impact-stats-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
    right: -150px;
    top: -150px;
    animation: impactRotateRing 30s linear infinite;
}

.impact-stats-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(255,255,255,.05);
    border-radius: 50%;
    left: -100px;
    bottom: -100px;
    animation: impactRotateRingReverse 25s linear infinite;
}

/* Animation */

@keyframes impactRotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes impactRotateRingReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Tablet */

@media(max-width:991px) {

    .impact-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .impact-heading h2 {
        font-size: 40px;
    }
}

/* Mobile */

@media(max-width:576px) {

    .impact-stats-section {
        padding: 80px 0;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-heading h2 {
        font-size: 30px;
    }

    .impact-card {
        padding: 30px 20px;
    }

    .impact-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .impact-card h3 {
        font-size: 34px;
    }

    .impact-blob-1,
    .impact-blob-2 {
        opacity: .12;
    }
}


/*MISSION VISION*/

.nv-purpose {
    position: relative;
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

    .nv-purpose::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(255,48,86,.04);
        border-radius: 50%;
        top: -200px;
        right: -100px;
    }

.nv-head {
    text-align: center;
    margin-bottom: 60px;
}

    .nv-head span {
        color: #ff3056;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .nv-head h2 {
        font-size: 48px;
        color: #163f73;
        margin-top: 15px;
    }

        .nv-head h2 span {
            color: #ff3056;
        }

.nv-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

.nv-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(22,63,115,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transition: .4s;
}

    .nv-card:hover {
        transform: translateY(-10px);
    }

.nv-img {
    height: 260px;
    overflow: hidden;
}

    .nv-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.nv-card:hover img {
    transform: scale(1.08);
}

.nv-content {
    padding: 35px;
}

.nv-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #163f73, #2457a5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.nv-content h3 {
    color: #163f73;
    margin-bottom: 15px;
    font-size: 28px;
}

.nv-content p {
    color: #666;
    line-height: 1.9;
}

/* Mobile */

@media(max-width:991px) {

    .nv-grid {
        grid-template-columns: 1fr;
    }

    .nv-head h2 {
        font-size: 38px;
    }
}

@media(max-width:576px) {

    .nv-purpose {
        padding: 70px 0;
    }

    .nv-head h2 {
        font-size: 28px;
    }

    .nv-img {
        height: 220px;
    }

    .nv-content {
        padding: 25px;
    }
}


/*=========================
NARAINSONS TEXT LOGO
=========================*/

.main-menu-three__logo {
    position: relative;
    z-index: 10;
}

    .main-menu-three__logo a {
        display: inline-block;
        position: relative;
        font-size: 34px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        color: #163f73;
        line-height: 1;
        transition: all .4s ease;
    }

        /* N Letter Highlight */

        .main-menu-three__logo a::first-letter {
            color: #ff3056;
        }

        /* Premium Underline */

        .main-menu-three__logo a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 55px;
            height: 4px;
            border-radius: 50px;
            background: linear-gradient( 90deg, #ff3056, #4f8cff);
            transition: .4s;
        }

        /* Glow Dot */

        .main-menu-three__logo a::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            right: -18px;
            top: 2px;
            background: #ff3056;
            box-shadow: 0 0 15px rgba(255,48,86,.45);
            animation: logoPulse 2.5s infinite;
        }

        .main-menu-three__logo a:hover {
            transform: translateY(-2px);
            text-shadow: 0 10px 25px rgba(22,63,115,.15);
        }

            .main-menu-three__logo a:hover::after {
                width: 100%;
            }

@keyframes logoPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px) {

    .main-menu-three__logo a {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

        .main-menu-three__logo a::before {
            right: -14px;
            width: 8px;
            height: 8px;
        }
}

@media(max-width:576px) {

    .main-menu-three__logo a {
        font-size: 24px;
        letter-spacing: 1px;
    }

        .main-menu-three__logo a::after {
            width: 40px;
            height: 3px;
        }

        .main-menu-three__logo a::before {
            display: none;
        }
}



/*==================================
PREMIUM FOOTER
==================================*/

.premium-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #071b4d 0%, #0a2c73 100% );
    padding: 120px 0 30px;
}

/*==================================
GLOWS
==================================*/

.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer-glow-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
    background: radial-gradient( circle, rgba(255,48,86,.18), transparent 70% );
}

.footer-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    background: radial-gradient( circle, rgba(93,109,255,.18), transparent 70% );
}

/*==================================
CTA
==================================*/

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 90px;
    padding: 45px;
    border-radius: 30px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
}

    .footer-cta h2 {
        color: #fff;
        font-size: 42px;
        margin-bottom: 10px;
    }

    .footer-cta p {
        color: #cbd5e1;
    }

.footer-cta-btns {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 16px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

.loan-btn {
    background: #ff3056;
    color: #fff;
}

.partner-btn {
    background: #fff;
    color: #163f73;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

/*==================================
GRID
==================================*/

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
}

/*==================================
BRAND
==================================*/

.footer-brand h3 {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand span {
    color: #ff3056;
    font-size: 13px;
    letter-spacing: 2px;
}

.footer-about p {
    color: #dbeafe;
    line-height: 1.9;
    margin: 25px 0;
}

/*==================================
SOCIAL
==================================*/

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.08);
        color: #fff;
        transition: .4s;
    }

        .footer-social a:hover {
            transform: translateY(-6px) rotate(8deg);
            background: linear-gradient( 135deg, #ff3056, #5d6dff );
        }

/*==================================
HEADINGS
==================================*/

.footer-col h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
}

/*==================================
LINKS
==================================*/

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 16px;
    }

        .footer-col ul li a {
            color: #dbeafe;
            text-decoration: none;
            transition: .3s;
        }

            .footer-col ul li a:hover {
                color: #ff3056;
                padding-left: 6px;
            }

/*==================================
CONTACT
==================================*/

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #ff3056, #5d6dff );
    color: #fff;
}

.footer-contact span {
    display: block;
    color: white;
    font-size: 22px;
    margin-bottom: 4px;
}

.footer-contact strong {
    color: #fff;
    font-weight: 500;
}

.footer-contact p {
    color: #fff;
    font-size: 15px;
}

/*==================================
BOTTOM
==================================*/

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

    .footer-bottom p {
        color: #cbd5e1;
    }

/*==================================
HOVER
==================================*/

.footer-col {
    transition: .4s;
}

    .footer-col:hover {
        transform: translateY(-6px);
    }

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px) {

    .footer-cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-brand h3 {
        font-size: 42px;
    }
}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta h2 {
        font-size: 32px;
    }

    .footer-cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media(max-width:576px) {

    .premium-footer {
        padding: 80px 0 20px;
    }

    .footer-brand h3 {
        font-size: 34px;
    }

    .footer-cta {
        padding: 30px;
    }

        .footer-cta h2 {
            font-size: 26px;
        }
}






