﻿.service-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 26px 0;
    background: linear-gradient( 135deg, #081b33 0%, #102f57 50%, #163f73 100%);
}

/* Container */

.service-breadcrumb-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Background Glow */

.service-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-left {
    width: 300px;
    height: 300px;
    background: #ff3056;
    top: -100px;
    left: -100px;
    opacity: .18;
}

.glow-right {
    width: 350px;
    height: 350px;
    background: #4f8cff;
    right: -120px;
    bottom: -120px;
    opacity: .18;
}

/* Rings */

.service-rings span {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

    .service-rings span:nth-child(1) {
        width: 450px;
        height: 450px;
        right: -150px;
        top: -150px;
    }

    .service-rings span:nth-child(2) {
        width: 250px;
        height: 250px;
        right: -50px;
        top: -50px;
        border-style: dashed;
    }

/* Left */

.service-content {
    flex: 1;
    max-width: 700px;
}

.service-tag {
    color: #ff3056;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.service-content h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
    margin: 18px 0;
}

    .service-content h1 span {
        color: #ff3056;
    }

.service-content p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

/* Features */

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

    .service-features span {
        padding: 10px 18px;
        border-radius: 50px;
        background: rgba(255,255,255,.08);
        color: #fff;
        font-size: 14px;
    }

    .service-features i {
        color: #ff3056;
        margin-right: 6px;
    }

/* Breadcrumb */

.service-path {
    margin-top: 25px;
    display: inline-flex;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
}

    .service-path a {
        color: #fff;
        text-decoration: none;
    }

    .service-path span {
        color: #ff3056;
    }

    .service-path strong {
        color: #ff3056;
    }

/* Right */

.service-brand-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.brand-card {
    width: 220px;
    text-align: center;
    padding: 28px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .4s;
}

    .brand-card:hover {
        transform: translateY(-10px);
    }

.brand-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    background: linear-gradient( 135deg, #ff3056, #4f8cff);
}

.brand-card h3 {
    color: #fff;
    margin-bottom: 8px;
}

.brand-card p {
    color: rgba(255,255,255,.75);
    margin: 0;
}

.brand-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    background: linear-gradient( 135deg, #163f73, #2457a5);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

/* Responsive */

@media(max-width:991px) {

    .service-breadcrumb-wrap {
        flex-direction: column;
        text-align: center;
    }

    .service-content h1 {
        font-size: 38px;
    }

    .service-features {
        justify-content: center;
    }

    .service-brand-area {
        flex-direction: column;
    }

    .brand-link {
        transform: rotate(90deg);
    }
}

@media(max-width:576px) {

    .service-breadcrumb {
        padding: 50px 0;
    }

    .service-content h1 {
        font-size: 28px;
    }

    .brand-card {
        width: 100%;
        max-width: 280px;
    }

    .service-features {
        gap: 10px;
    }

        .service-features span {
            font-size: 13px;
        }
}




.partnership-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f7faff 50%, #ffffff 100%);
}

/* GLOWS */

.partner-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: #ff3056;
    top: -120px;
    left: -120px;
    opacity: .12;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: #4f8cff;
    right: -120px;
    bottom: -120px;
    opacity: .12;
}

/* NETWORK */

.partner-network span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f8cff;
    box-shadow: 0 0 20px #4f8cff;
    animation: networkPulse 3s infinite;
}

    .partner-network span:nth-child(1) {
        top: 20%;
        left: 10%;
    }

    .partner-network span:nth-child(2) {
        top: 25%;
        right: 15%;
    }

    .partner-network span:nth-child(3) {
        top: 55%;
        left: 20%;
    }

    .partner-network span:nth-child(4) {
        bottom: 20%;
        right: 20%;
    }

    .partner-network span:nth-child(5) {
        bottom: 12%;
        left: 50%;
    }

/* HEADING */

.partner-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 80px;
}

.partner-tag {
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 3px;
}

.partner-heading h2 {
    font-size: 56px;
    color: #163f73;
    margin: 15px 0;
}

    .partner-heading h2 span {
        color: #ff3056;
    }

.partner-heading p {
    color: #666;
    line-height: 1.9;
}

/* FLOW */

.partner-flow {
    display: grid;
    grid-template-columns: 1fr 220px 1fr;
    align-items: center;
    gap: 40px;
}

/* CARDS */

.partner-card {
    position: relative;
    padding: 45px;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    transition: .4s;
}

    .partner-card:hover {
        transform: translateY(-12px);
    }

    .partner-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        border-radius: 30px 30px 0 0;
        background: linear-gradient( 90deg, #ff3056, #4f8cff);
    }

/* ICON */

.partner-icon {
    width: 95px;
    height: 95px;
    margin: auto auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    background: linear-gradient( 135deg, #ff3056, #4f8cff);
    box-shadow: 0 20px 40px rgba(255,48,86,.25);
}

.partner-card h3 {
    color: #163f73;
    margin-bottom: 12px;
    font-size: 30px;
}

.partner-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #eef4ff;
    color: #163f73;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.partner-card p {
    color: #666;
    line-height: 1.8;
}

/* CENTER */

.partner-center {
    text-align: center;
    position: relative;
}

.center-circle {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    background: linear-gradient( 135deg, #163f73, #2457a5);
    box-shadow: 0 25px 60px rgba(22,63,115,.25);
    animation: floatCircle 4s infinite;
}

    .center-circle::before {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 2px dashed rgba(22,63,115,.15);
        animation: rotatePartner 25s linear infinite;
    }

.center-text {
    margin-top: 20px;
    color: #163f73;
    font-weight: 700;
}

/* ANIMATION */

@keyframes floatCircle {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotatePartner {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes networkPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.8);
    }
}

/* TABLET */

@media(max-width:991px) {

    .partner-flow {
        grid-template-columns: 1fr;
    }

    .partner-heading h2 {
        font-size: 42px;
    }

    .partner-center {
        order: 2;
    }
}

/* MOBILE */

@media(max-width:576px) {

    .partnership-section {
        padding: 80px 0;
    }

    .partner-heading h2 {
        font-size: 30px;
    }

    .partner-card {
        padding: 30px 20px;
    }

    .partner-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .center-circle {
        width: 95px;
        height: 95px;
        font-size: 30px;
    }

        .center-circle::before {
            width: 130px;
            height: 130px;
        }
}



/*=========================
TURRANT PARTNERSHIP
=========================*/

.tp-premium-sec {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #fff;
}

.tp-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.tp-shape-1 {
    width: 350px;
    height: 350px;
    background: #ff3056;
    opacity: .08;
    top: -120px;
    left: -120px;
}

.tp-shape-2 {
    width: 400px;
    height: 400px;
    background: #4f8cff;
    opacity: .08;
    right: -150px;
    bottom: -150px;
}

.tp-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */

.tp-image-wrap {
    position: relative;
}

.tp-image-box {
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

    .tp-image-box img {
        width: 100%;
        display: block;
        transition: .6s;
    }

    .tp-image-box:hover img {
        transform: scale(1.08);
    }

.tp-float-card {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.float-1 {
    top: 30px;
    left: -20px;
}

.float-2 {
    top: 50%;
    right: -25px;
}

.float-3 {
    bottom: 25px;
    left: 20px;
}

/* CONTENT */

.tp-tag {
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 2px;
}

.tp-content h2 {
    font-size: 52px;
    color: #163f73;
    margin: 18px 0;
    line-height: 1.15;
}

    .tp-content h2 span {
        color: #ff3056;
    }

.tp-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* FEATURES */

.tp-feature-grid {
    display: grid;
    gap: 18px;
}

.tp-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(22,63,115,.06);
    transition: .3s;
}

    .tp-feature:hover {
        transform: translateX(8px);
    }

    .tp-feature i {
        width: 55px;
        height: 55px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        background: linear-gradient(135deg,#163f73,#2457a5);
    }

    .tp-feature span {
        color: #163f73;
        font-weight: 600;
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .tp-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tp-content {
        text-align: center;
    }

        .tp-content h2 {
            font-size: 40px;
        }

    .tp-image-wrap {
        max-width: 520px;
        margin: auto;
    }
}

@media(max-width:576px) {

    .tp-premium-sec {
        padding: 80px 0;
    }

    .tp-content h2 {
        font-size: 30px;
    }

    .tp-float-card {
        display: none;
    }

    .tp-feature {
        text-align: left;
    }
}


/*=================================
TURRANT PARTNERSHIP SECTION
=================================*/

.tp-partnership-sec {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg,#071a35 0%,#0c2344 40%,#12305d 75%,#163f73 100%);
}

    /* Background Rings */

    .tp-partnership-sec::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(255,255,255,.05);
        border-radius: 50%;
        top: -180px;
        right: -180px;
    }

    .tp-partnership-sec::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border: 1px dashed rgba(255,255,255,.05);
        border-radius: 50%;
        bottom: -120px;
        left: -120px;
    }

/* Glow Effects */

.tp-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.tp-glow-1 {
    width: 420px;
    height: 420px;
    background: #ff3056;
    opacity: .18;
    top: -180px;
    left: -180px;
}

.tp-glow-2 {
    width: 500px;
    height: 500px;
    background: #4f8cff;
    opacity: .15;
    right: -180px;
    bottom: -180px;
}

/* Container */

.tp-partnership-sec .container {
    position: relative;
    z-index: 2;
}

    /* Dot Network */

    .tp-partnership-sec .container::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient( rgba(255,255,255,.06) 1px, transparent 1px);
        background-size: 28px 28px;
        opacity: .25;
        pointer-events: none;
    }

/*=================================
TOP GRID
=================================*/

.tp-top-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 80px;
    align-items: center;
    margin-bottom: 90px;
}

.tp-tag {
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
}

.tp-left h2 {
    font-size: 54px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 25px;
}

    .tp-left h2 span {
        color: #ff3056;
    }

.tp-left p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 18px;
}

/*=================================
BRAND BOX
=================================*/

.tp-brand-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.brand-item {
    flex: 1;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

    .brand-item h4 {
        color: #fff;
        margin: 0 0 8px;
        font-size: 22px;
    }

    .brand-item span {
        color: rgba(255,255,255,.65);
    }

.plus-sign {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #ff3056, #ff6b8a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(255,48,86,.35);
}

/*=================================
IMAGE
=================================*/

.tp-right {
    position: relative;
}

.tp-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

    .tp-image-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0,0,0,.35), transparent);
        z-index: 1;
    }

    .tp-image-box img {
        width: 100%;
        display: block;
        transition: .7s;
    }

    .tp-image-box:hover img {
        transform: scale(1.08);
    }

/* Floating Cards */

.tp-floating-card {
    position: absolute;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    animation: floatY 4s infinite ease-in-out;
    z-index: 5;
}

.fc-1 {
    top: 30px;
    left: -30px;
}

.fc-2 {
    bottom: 30px;
    right: -30px;
}

/*=================================
SERVICES GRID
=================================*/

.tp-services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* Card */

.tp-service-card {
    position: relative;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 35px;
    text-align: center;
    transition: .4s;
    overflow: hidden;
}

    .tp-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #ff3056, #4f8cff);
    }

    .tp-service-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255,48,86,.35);
        box-shadow: 0 30px 70px rgba(0,0,0,.20);
    }

/* Icon */

.tp-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 22px;
    border-radius: 24px;
    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);
}

.tp-service-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 22px;
}

.tp-service-card p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    margin: 0;
}

/*=================================
ANIMATION
=================================*/

@keyframes floatY {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/*=================================
TABLET
=================================*/

@media(max-width:991px) {

    .tp-top-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tp-left {
        text-align: center;
    }

        .tp-left h2 {
            font-size: 40px;
        }

    .tp-brand-box {
        justify-content: center;
    }

    .tp-services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .tp-floating-card {
        display: none;
    }
}

/*=================================
MOBILE
=================================*/

@media(max-width:576px) {

    .tp-partnership-sec {
        padding: 80px 0;
    }

    .tp-left h2 {
        font-size: 30px;
    }

    .tp-services-grid {
        grid-template-columns: 1fr;
    }

    .tp-brand-box {
        flex-direction: column;
    }

    .brand-item {
        width: 100%;
        text-align: center;
    }

    .plus-sign {
        margin: 5px 0;
    }
}






/*========================================
 KREDSETU CORE SERVICES
========================================*/

.kredsetu-services-sec {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(135deg,#081b33 0%,#102f57 50%,#163f73 100%);
    z-index: 1;
}

    /* Grid Background */

    .kredsetu-services-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
        background-size: 28px 28px;
        opacity: .35;
        z-index: -1;
    }

    /* Large Ring */

    .kredsetu-services-sec::after {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        right: -250px;
        top: -250px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.05);
        z-index: -1;
    }

/*========================================
 BACKGROUND GLOW
========================================*/

.ks-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.ks-glow-1 {
    width: 380px;
    height: 380px;
    background: #ff3056;
    top: -140px;
    left: -120px;
    opacity: .18;
}

.ks-glow-2 {
    width: 420px;
    height: 420px;
    background: #4f8cff;
    right: -150px;
    bottom: -150px;
    opacity: .18;
}

/*========================================
 HEADING
========================================*/

.ks-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 80px;
    position: relative;
    z-index: 2;
}

.ks-tag {
    display: inline-block;
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ks-heading h2 {
    font-size: 58px;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.15;
    font-weight: 800;
}

    .ks-heading h2 span {
        color: #ff3056;
    }

.ks-heading p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    font-size: 16px;
}

/*========================================
 SERVICE GRID
========================================*/

.ks-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/*========================================
 CARD
========================================*/

.ks-card {
    position: relative;
    padding: 40px 28px;
    border-radius: 30px;
    text-align: center;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    transition: .45s;
    overflow: hidden;
}

    /* Top Border */

    .ks-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #ff3056, #4f8cff);
    }

    /* Glow */

    .ks-card::after {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        background: #ff3056;
        border-radius: 50%;
        filter: blur(80px);
        opacity: .08;
        top: -40px;
        right: -40px;
    }

    .ks-card:hover {
        transform: translateY(-12px);
        border-color: rgba(255,48,86,.45);
        box-shadow: 0 30px 70px rgba(0,0,0,.35);
    }

/*========================================
 ICON
========================================*/

.ks-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 25px;
    border-radius: 24px;
    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);
    transition: .4s;
}

.ks-card:hover .ks-icon {
    transform: rotate(-8deg) scale(1.08);
}

/*========================================
 CONTENT
========================================*/

.ks-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.ks-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin: 0;
    font-size: 15px;
}

/*========================================
 FLOATING DOTS
========================================*/

.ks-floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px #fff;
}

.dot-1 {
    top: 15%;
    left: 8%;
    animation: ksFloat 5s infinite;
}

.dot-2 {
    top: 25%;
    right: 10%;
    animation: ksFloat 6s infinite;
}

.dot-3 {
    bottom: 15%;
    left: 20%;
    animation: ksFloat 7s infinite;
}

.dot-4 {
    bottom: 20%;
    right: 18%;
    animation: ksFloat 5s infinite;
}

/*========================================
 ANIMATION
========================================*/

@keyframes ksFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/*========================================
 TABLET
========================================*/

@media(max-width:991px) {

    .ks-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .ks-heading h2 {
        font-size: 42px;
    }

    .ks-heading {
        margin-bottom: 60px;
    }
}

/*========================================
 MOBILE
========================================*/

@media(max-width:576px) {

    .kredsetu-services-sec {
        padding: 80px 0;
    }

    .ks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ks-heading {
        margin-bottom: 45px;
    }

        .ks-heading h2 {
            font-size: 30px;
        }

        .ks-heading p {
            font-size: 14px;
        }

    .ks-card {
        padding: 30px 22px;
    }

    .ks-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .ks-card h3 {
        font-size: 20px;
    }

    .ks-floating-dot {
        display: none;
    }
}




/*=====================================
PARTNERSHIP ECOSYSTEM
PREMIUM LIGHT VERSION
======================================*/

.ecosystem-sec {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f7faff 50%, #ffffff 100%);
}

/* GRID */

.eco-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient( rgba(22,63,115,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .5;
}

/* GLOW */

.eco-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.eco-glow-1 {
    width: 350px;
    height: 350px;
    background: #ff3056;
    top: -120px;
    left: -120px;
    opacity: .08;
}

.eco-glow-2 {
    width: 400px;
    height: 400px;
    background: #4f8cff;
    right: -120px;
    bottom: -120px;
    opacity: .08;
}

/* HEADING */

.eco-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 80px;
    position: relative;
    z-index: 2;
}

.eco-tag {
    color: #ff3056;
    font-weight: 700;
    letter-spacing: 3px;
}

.eco-heading h2 {
    font-size: 54px;
    color: #163f73;
    margin: 15px 0;
}

    .eco-heading h2 span {
        color: #ff3056;
    }

.eco-heading p {
    color: #666;
    line-height: 1.9;
}

/* LAYOUT */

.ecosystem-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    align-items: center;
    gap: 60px;
    z-index: 2;
}

    /* CONNECTION LINE */

    .ecosystem-wrap::before {
        content: '';
        position: absolute;
        left: 23%;
        right: 23%;
        top: 50%;
        height: 4px;
        background: linear-gradient( 90deg, #ff3056, #4f8cff);
        border-radius: 20px;
        z-index: 1;
    }

/* CARDS */

.eco-card {
    position: relative;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(22,63,115,.08);
    border-radius: 35px;
    padding: 45px 35px;
    text-align: center;
    transition: .45s;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    z-index: 2;
}

    .eco-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 80px rgba(0,0,0,.12);
    }

    .eco-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        border-radius: 35px 35px 0 0;
        background: linear-gradient( 90deg, #ff3056, #4f8cff);
    }

/* IMAGES */

.eco-image {
    width: 120px;
    height: 120px;
    margin: auto auto 25px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #ff3056, #ff6b8a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(255,48,86,.25);
}

    .eco-image img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

.blue-img {
    background: linear-gradient( 135deg, #4f8cff, #6aa5ff);
    box-shadow: 0 25px 50px rgba(79,140,255,.25);
}

/* TEXT */

.eco-card h3 {
    color: #163f73;
    font-size: 32px;
    margin-bottom: 12px;
}

.eco-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #ff3056;
    font-weight: 700;
}

.blue-label {
    color: #4f8cff;
}

.eco-card p {
    color: #666;
    line-height: 1.9;
}

/* CENTER */

.eco-center {
    position: relative;
    z-index: 10;
}

.eco-circle {
    position: relative;
    z-index: 11;
    width: 280px;
    height: 280px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(255,48,86,.15), rgba(79,140,255,.15));
    padding: 15px;
    animation: floatCircle 5s ease-in-out infinite;
    box-shadow: 0 30px 70px rgba(22,63,115,.15);
}

.circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

    .circle-inner i {
        font-size: 48px;
        color: #163f73;
        margin-bottom: 15px;
    }

    .circle-inner h4 {
        font-size: 30px;
        color: #163f73;
        margin: 0;
    }

    .circle-inner span {
        color: #666;
    }

/* BOTTOM */

.eco-highlight {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.highlight-box {
    text-align: center;
    padding: 25px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(22,63,115,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    font-size: 22px;
    font-weight: 700;
}

.pink {
    color: #ff3056;
}

.blue-text {
    color: #4f8cff;
}

.equal {
    color: #163f73;
}

.divider {
    margin: 0 15px;
    opacity: .3;
}

/* ANIMATION */

@keyframes floatCircle {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* TABLET */

@media(max-width:991px) {

    .ecosystem-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .ecosystem-wrap::before {
            display: none;
        }

    .eco-heading h2 {
        font-size: 40px;
    }

    .eco-circle {
        width: 240px;
        height: 240px;
    }
}

/* MOBILE */

@media(max-width:576px) {

    .ecosystem-sec {
        padding: 80px 0;
    }

    .eco-heading h2 {
        font-size: 30px;
    }

    .eco-card {
        padding: 30px 22px;
    }

    .eco-image {
        width: 90px;
        height: 90px;
    }

        .eco-image img {
            width: 55px;
            height: 55px;
        }

    .eco-circle {
        width: 220px;
        height: 220px;
    }

    .circle-inner h4 {
        font-size: 22px;
    }

    .highlight-box {
        font-size: 16px;
        line-height: 1.8;
    }

    .divider {
        display: none;
    }
}


/*=========================
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;
        }
}