* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #10182f;
    background: #ffffff;
}


/*  NAVBAR  */

.navbar {
    width: 100%;
    height: 130px;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #e5e7eb;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    backdrop-filter: blur(10px);
}

.navbar-container {
    width: min(1500px, 80%);

    height: 100%;

    margin-top: 0 ;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 125px;
    width: 205px;
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
   
}

.nav-links a {
    color: #263653;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #285be7;
}


/* NAV ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.call-now {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #263653;

    text-decoration: none;

    font-size: 13px;
}
.call-now:hover{
color: #285be7;
}

.call-now i {
    font-size: 15px;
}


.partner-button {
    padding: 18px 38px;

    border-radius: 40px;

    color: white;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    background: linear-gradient(
        100deg,
        #145ce8,
        #7a36e9
    );

    box-shadow: 0 8px 20px rgba(54, 82, 220, 0.25);

    transition: 0.3s ease;
}

.partner-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(54, 82, 220, 0.35);
}


/*  HERO */

.hero {
    min-height: calc(100vh - 178px);

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(211, 211, 211, 0.55),
            transparent 40%
        ),
        linear-gradient(
            120deg,
            #ffffff 0%,
            #eef9ff 100%
        );

    overflow: hidden;
     margin-top: 140px;
     padding-left: 20px;
     padding-left: 20px;
}

.hero-container {
    width: min(1550px, 90%);

    min-height: calc(100vh - 178px);

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


/* HERO CONTENT  */

.hero-content {
    width: 52%;

    padding: 80px 0;
}


/* TRUSTED BADGE */

.trusted-badge {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 10px 18px;

    border-radius: 30px;

    background: #eef6ff;

    border: 1px solid #d4e5ff;

    color: #145ce8;

    font-size: 15px;

    margin-bottom: 45px;
}

.badge-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #285ce6;
}


/* HEADING */

.hero h1 {
    font-size: clamp(65px, 5.5vw, 100px);

    line-height: 0.96;

    letter-spacing: -4px;

    color: #10182f;

    margin-bottom: 40px;
}

.gradient-text {
    background: linear-gradient(
        100deg,
        #1764e8,
        #7c38e9
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* DESCRIPTION */

.hero-description {
    max-width: 720px;

    font-size: 20px;

    line-height: 1.6;

    color: #38506f;

    margin-bottom: 45px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 55px;
}

.hero-primary-button,
.hero-secondary-button {
    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 15px;

    border-radius: 35px;

    transition: 0.3s ease;
}

.hero-primary-button {
    gap: 25px;

    padding: 15px 40px;

    color: white;

    background: linear-gradient(
        100deg,
        #145ce8,
        #7937e9
    );

    box-shadow:
        0 10px 25px rgba(47, 86, 220, 0.25);
}

.hero-primary-button span {
    font-size: 30px;
}

.hero-primary-button:hover {
    transform: translateY(-4px);
}


.hero-secondary-button {
    padding: 20px 42px;

    color: #263653;

    background: white;

    border: 1px solid #dce2ea;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero-secondary-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.1);
}


/*  PARTNER NETWORK  */

.partner-network {
    display: flex;

    align-items: center;

    gap: 22px;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 3px solid white;

    margin-left: -8px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #195fe5,
        #9a42df
    );

    color: white;

    font-weight: bold;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
}
.avatar:first-child {
    margin-left: 0;
}

.network-text {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.network-text strong {
    font-size: 19px;
}

.network-text span {
    font-size: 18px;

    color: #5c7695;
}




/* WALLET CONTAINER*/

.wallet-wrapper {
    position: relative;

    width: 100%;
    min-height: 700px;

    display: flex;
    justify-content: flex-end;
    align-items: flex-start;

    padding-right: 80px;

    overflow: visible;
}


/* MAIN WALLET CARD */

.wallet-card {
    position: relative;

    width: 380px;
    height: 600px;

    padding: 16px;
    margin-left: auto;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(129, 140, 248, 0.35),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #111827 0%,
            #1e293b 45%,
            #312e81 100%
        );

    border-radius: 45px;

    box-shadow:
        -28px 12px 25px rgba(15, 23, 42, 0.20);

    overflow: hidden;

    animation: walletFloat 4s ease-in-out infinite;
}

/* Main wallet animation */

@keyframes walletFloat {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(0.5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }

}


/* WALLET TEXT */

.wallet-title {
    margin: 12px 0 0;

    font-size: 16px;

    opacity: 0.9;
}


.wallet-space {
    height: 20px;
}


.wallet-balance {
    margin: 8px 0 0;

    font-size: 48px;

    line-height: 1;

    font-weight: 700;
}


/* ACTION BUTTONS */

.wallet-actions {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-top: 64px;

    place-items: center;
}


.wallet-action {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.action-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(6, 27, 220, 0.2);

    font-size: 28px;
}


.wallet-action p {
    margin: 12px 0 0;

    font-size: 16px;
}


/* RECENT TRANSACTIONS */

.recent-section {
    position: absolute;

    top: 55%;
    left: 0;
    right: 0;

    height: 3020px;

    padding: 24px;

    color: #1e293b;

    background: #ffffff;

    border-radius: 35px;
}


.recent-title {
    margin: 0;

    color: #94a3b8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.15em;
}


.transactions {
    display: flex;

    flex-direction: column;

    gap: 11px;

    
   
}


.transaction {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px;

    background: #f8fafc;

    border-radius: 16px;
    
}


.transaction h4 {
    margin: 0;

    font-size: 16px;

    font-weight: 700;
}


.transaction p {
    margin: 4px 0 0;

    color: #94a3b8;

    font-size: 14px;
}


.received {
    color: #9333ea;

    font-weight: 700;
}


.spent {
    color: #ef4444;

    font-weight: 700;
}


/*  FLOATING CARDS*/

.floating-card {
    position: absolute;

    z-index: 30;

    padding: 20px;

    background: #ffffff;

    border-radius: 24px;

    animation: floatingCard 8s ease-in-out infinite;
}


/* Top card */

.floating-top {
    top: 40px;
    right: 16px;

    box-shadow:
        -20px 10px 35px rgba(255, 255, 255, 0.6);
}


/* Bottom card */

.floating-bottom {
    top: 75%;
    left: 120px;

    padding: 16px;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(20px);

    box-shadow:
        -28px 12px 25px rgba(0, 0, 0, 0.15);
}


.h4 {
    margin: 0;

    color: #1e293b;

    font-size: 16px;

    font-weight: 700;
}


.floating-card p {
    margin: 6px 0 0;

    color: #94a3b8;

    font-size: 14px;
}


.floating-bottom p {
    color: #9333ea;
}


/* Floating cards animation */

@keyframes floatingCard {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(0.5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }

}


/* RESPONSIVE */

@media (max-width: 700px) {

    .wallet-wrapper {
        justify-content: center;

        padding-right: 0;
    }

    .wallet-card {
        width: 340px;
        height: 520px;
    }

    .wallet-balance {
        font-size: 42px;
    }

    .floating-top {
        right: 0;
    }

    .floating-bottom {
        left: 0;
    }
}


@media (max-width: 480px) {

    .wallet-wrapper {
        min-height: 550px;
    }

    .wallet-card {
        width: 300px;
        height: 500px;

        border-radius: 38px;
    }

    .wallet-balance {
        font-size: 36px;
    }

    .wallet-actions {
        gap: 10px;

        margin-top: 50px;
    }

    .action-icon {
        width: 50px;
        height: 50px;
    }

    .recent-section {
        height: 240px;

        padding: 18px;
    }

    .floating-card {
        padding: 14px;
    }
}

/*  PHONE  */


.phone {
    position: relative;

     width: 200px;
    height: 300px;
    background: red;


    padding: 10px;

    border-radius: 42px;

    background: #ffffff;

    box-shadow:
        0 20px 55px rgba(40, 60, 100, 0.16);

    animation: phoneFloat 5s ease-in-out infinite;

    z-index: 2;

    box-sizing: border-box;
}


/*  PHONE SCREEN  */

.phone-screen {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 32px;

    background: #080e20;

    color: white;

    position: relative;

    box-sizing: border-box;
}


/*  STATUS BAR  */

.phone-status {
    height: 30px;

    padding: 30px 15px 5px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 9px;

    box-sizing: border-box;
}

.phone-status div {
    display: flex;

    gap: 5px;

    align-items: center;
}


/*  APP HEADER*/

.app-header {
    padding: 11px 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    box-sizing: border-box;
}

.app-header div:first-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.app-header strong {
    font-size: 14px;
}

.app-header span {
    color: #70798c;

    font-size: 8px;
}

.notification {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #1b2237;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;
}


/*  BALANCE CARD  */

.balance-card {
    margin: 12px;

    padding: 17px;

    border-radius: 23px;

    background: linear-gradient(
        135deg,
        #145ce8,
        #3724c5
    );

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.balance-card > span {
    font-size: 9px;

    font-weight: 600;
}

.balance-card > strong {
    font-size: 25px;

    line-height: 1.1;
}

.balance-card > small {
    color: #39f0d2;

    font-size: 9px;
}

.balance-buttons {
    display: flex;

    gap: 8px;

    margin-top: 8px;
}

.balance-buttons button {
    flex: 1;

    border: none;

    border-radius: 18px;

    padding: 8px;

    color: white;

    background: rgba(255,255,255,0.2);

    font-size: 10px;

    font-weight: 600;
}

.services-grid-phone {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
    padding-left: 50px;
    padding-right: 50px;
}

















/* PHONE OUTER CONTAINER */

.phone-container {
    position: relative !important;

    width: 100% !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    margin-top: 60px !important;

    overflow: visible !important;
}


/* PHONE BODY*/

.phone {
    position: relative !important;

    width: 360px !important;
    height: 700px !important;

    min-width: 360px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 10px solid #1e293b !important;

    border-radius: 55px !important;

    overflow: hidden !important;

    isolation: isolate !important;

    box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.18) !important;
}


/* NOTCH*/

.phone-notch {
    position: absolute !important;

    top: 0 !important;
    left: 50% !important;

    width: 115px !important;
    height: 28px !important;

    transform: translateX(-50%) !important;

    background: #1e293b !important;

    border-radius:
        0 0 18px 18px !important;

    z-index: 100 !important;

    pointer-events: none !important;
}


/* PHONE SCREEN*/

.phone-screen {
    position: relative !important;

    width: 100% !important;
    height: 100% !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    padding: 55px 18px 20px !important;

    overflow: hidden !important;

    z-index: 1 !important;
}


/* LOGO*/



.phone-logo {
    width: 100% !important;
    height: 50px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.phone-logo img {
    display: block !important;

    width: auto !important;
    height: 85px !important;

    max-width: 130px !important;
    max-height: 210px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


/* TITLE*/

.phone-title {
    width: 100% !important;

    margin: 8px 0 0 !important;
    padding: 0 !important;

    text-align: center !important;

    font-size: 22px !important;

    line-height: 1.15 !important;

    font-weight: 700 !important;

   
    white-space: normal !important;

    overflow: visible !important;

    word-break: normal !important;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #7c3aed
        ) !important;

    -webkit-background-clip: text !important;
    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


/* SERVICES GRID */

.phone .app-grid {
    width: 100% !important;

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    column-gap: 6px !important;

    row-gap: 12px !important;

    margin-top: 22px !important;

    padding: 0 !important;

    box-sizing: border-box !important;
}


/* SERVICE ITEM */

.phone .service-item {
    width: 100% !important;

    min-width: 0 !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    justify-content: flex-start !important;

    text-align: center !important;

    margin: 0 !important;

    padding: 0 !important;
}


/*SERVICE ICON BOX */

.phone .service-icon {
    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;
    min-height: 48px !important;

    max-width: 48px !important;
    max-height: 48px !important;

    flex-shrink: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;

    background: #f8faff !important;

    border: 1px solid #e2e8f0 !important;

    border-radius: 13px !important;

    box-shadow:
        0 3px 8px rgba(15, 23, 42, 0.07) !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease !important;
}


/*  SERVICE ICON*/

.phone .service-icon span {
    font-size: 19px !important;

    line-height: 1 !important;

    display: block !important;
}


/* SERVICE NAME */

.phone .service-item p {
    width: 100% !important;

    margin: 3px 0 0 !important;

    padding: 0 !important;

    color: #475569 !important;

    font-size: 9px !important;

    line-height: 1.15 !important;

    font-weight: 500 !important;

    text-align: center !important;

    white-space: nowrap !important;

    overflow: hidden !important;

    text-overflow: ellipsis !important;
}


/* HOVER*/

.phone .service-item:hover .service-icon {
    transform: translateY(-3px) !important;

    box-shadow:
        0 7px 14px rgba(37, 99, 235, 0.14) !important;
}


/*  MOBILE */

@media (max-width: 600px) {

    .phone {
        width: 320px !important;
        min-width: 320px !important;

        height: 650px !important;

        border-width: 9px !important;

        border-radius: 48px !important;
    }


    .phone-screen {
        padding:
            52px
            15px
            18px !important;
    }


    .phone-notch {
        width: 105px !important;
        height: 27px !important;
    }


    .phone-logo {
        height: 32px !important;
    }


    .phone-logo img {
        height: 26px !important;
        max-width: 105px !important;
    }


    .phone-title {
        margin-top: 6px !important;

        font-size: 21px !important;
    }


    .phone .app-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr)) !important;

        column-gap: 5px !important;

        row-gap: 9px !important;

        margin-top: 17px !important;
    }


    .phone .service-icon {
        width: 46px !important;
        height: 46px !important;

        min-width: 46px !important;
        min-height: 46px !important;

        max-width: 46px !important;
        max-height: 46px !important;
    }


    .phone .service-icon span {
        font-size: 18px !important;
    }


    .phone .service-item p {
        margin-top: 2px !important;

        font-size: 8px !important;
    }
}


/* VERY SMALL MOBILE*/

@media (max-width: 400px) {

    .phone {
        width: 290px !important;
        min-width: 290px !important;

        height: 610px !important;

        border-width: 8px !important;

        border-radius: 44px !important;
    }


    .phone-screen {
        padding:
            50px
            12px
            15px !important;
    }


    .phone-notch {
        width: 98px !important;
        height: 25px !important;
    }


    .phone-logo img {
        height: 24px !important;
        max-width: 100px !important;
    }


    .phone-title {
        margin-top: 5px !important;

        font-size: 19px !important;
    }


    .phone .app-grid {
        column-gap: 3px !important;

        row-gap: 7px !important;

        margin-top: 15px !important;
    }


    .phone .service-icon {
        width: 43px !important;
        height: 43px !important;

        min-width: 43px !important;
        min-height: 43px !important;

        max-width: 43px !important;
        max-height: 43px !important;
    }


    .phone .service-icon span {
        font-size: 17px !important;
    }


    .phone .service-item p {
        margin-top: 2px !important;

        font-size: 7.5px !important;
    }
}







/*  ABOUT SECTION  */

.about-section {
    width: 100%;

    padding: 80px 80px 110px;

    background: #ffffff;
}

.about-container {
    width: min(1250px, 90%);

    margin: 0 auto;
}


/*  ABOUT INTRO  */

.about-intro {
    text-align: center;

    max-width: 1050px;

    margin: 0 auto 85px;
}

.about-intro h2 {
    margin-bottom: 28px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;

    color: #10182f;
}

.about-intro h2 span {
    background: linear-gradient(
        100deg,
        #145ce8,
        #7438e8
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-intro p {
    font-size: 20px;

    line-height: 1.7;

    color: #3e5675;

    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}


/*  MISSION VISION  */

.mission-vision {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 42px;
}


/* INFO CARD  */

.info-card {
    position: relative;

    min-height: 340px;

    padding: 42px 42px 38px;

    border-radius: 32px;

    overflow: hidden;

    background: #f8fbff;

    box-shadow:
        0 15px 40px rgba(36, 67, 110, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.info-card::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    top: -75px;
    right: -65px;

    pointer-events: none;
}


/* MISSION BACKGROUND */

.mission-card {
    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #f6f9ff
        );
}

.mission-card::after {
    background: rgba(53, 92, 225, 0.07);
}


/* VISION BACKGROUND */

.vision-card {
    background:
        linear-gradient(
            135deg,
            #f8ffff,
            #f6fcff
        );
}

.vision-card::after {
    background: rgba(0, 190, 220, 0.07);
}


/* CARD HOVER */

.info-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(36, 67, 110, 0.11);
}


/* ICON  */

.info-icon {
    position: relative;

    z-index: 2;

    width: 72px;
    height: 72px;

    margin: 0 auto 28px;

    border-radius: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;
}


/* MISSION ICON */

.mission-card .info-icon {
    color: #235be4;

    background: #e8efff;
}


/* VISION ICON */

.vision-card .info-icon {
    color: #00aeca;

    background: #e4f9fc;
}


/* CARD TEXT  */

.info-card h3 {
    position: relative;

    z-index: 2;

    text-align: center;

    font-size: 20px;

    color: #10182f;

    margin-bottom: 24px;
}

.info-card p {
    position: relative;

    z-index: 2;

    font-size: 18px;

    line-height: 1.65;

    color: #4a607d;
}



/* SERVICES SECTION */

.services-section {
    position: relative;

    width: 100%;

    padding: 120px 0 130px;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(20, 92, 232, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 60%,
            rgba(0, 190, 220, 0.06),
            transparent 30%
        ),
        #0b1429;

    overflow: hidden;
}

.services-section::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            circle,
            rgba(60, 130, 220, 0.12) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    opacity: 0.25;

    pointer-events: none;
}


.services-container {
    position: relative;

    z-index: 2;

    width: min(1250px, 90%);

    margin: 0 auto;
}


/* HEADER*/

.services-header {
    text-align: center;

    max-width: 1000px;

    margin: 0 auto 80px;
}


/* badge */

.services-badge {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 10px 22px;

    margin-bottom: 28px;

    border: 1px solid rgba(0, 190, 220, 0.35);

    border-radius: 30px;

    background: rgba(0, 180, 220, 0.06);

    color: #00c9ee;

    font-size: 13px;

    font-weight: 500;
}


.services-badge span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #00bcd4;

    box-shadow:
        0 0 10px rgba(0, 188, 212, 0.8);
}


/* heading */

.services-header h2 {
    margin: 0 0 25px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}


.services-header h2 span {
    background:
        linear-gradient(
            90deg,
            #00c8ee,
            #1687ff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* description */

.services-header p {
    max-width: 900px;

    margin: 0 auto;

    font-size: 20px;

    line-height: 1.65;

    color: #8da5c5;
}


/* SERVICES GRID*/

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
    padding-left: 50px;
    padding-right: 50px;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    min-height: 230px;

    padding: 36px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 25px;

    border: 1px solid rgba(140, 170, 210, 0.14);

    background:
        linear-gradient(
            145deg,
            rgba(30, 44, 68, 0.72),
            rgba(13, 26, 48, 0.75)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03);

     transform-style: preserve-3d;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}


/* hover */

.service-card:hover {
      box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(30, 150, 255, 0.12);
}



/* subtle glow */

.service-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -90px;
    right: -70px;

    border-radius: 50%;

    background: rgba(70, 130, 220, 0.05);

    pointer-events: none;
}



/* ICON */

.service-icon {
    position: relative;

    z-index: 2;

    width: 82px;
    height: 82px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 22px;

    border: 1px solid;

    background: rgba(255, 255, 255, 0.04);

    transition:
        transform 0.35s ease;
}


.service-card:hover .service-icon {
    transform: scale(1.08);
}

/* ICON COLORS */

.icon-cyan {
    color: #00d9e8;
    border-color: rgba(0, 217, 232, 0.4);
    background: rgba(0, 217, 232, 0.07);
}

.icon-purple {
    color: #9a6cff;
    border-color: rgba(154, 108, 255, 0.4);
    background: rgba(154, 108, 255, 0.07);
}

.icon-green {
    color: #00d889;
    border-color: rgba(0, 216, 137, 0.4);
    background: rgba(0, 216, 137, 0.07);
}

.icon-orange {
    color: #ff8a25;
    border-color: rgba(255, 138, 37, 0.4);
    background: rgba(255, 138, 37, 0.07);
}

.icon-blue {
    color: #4d9cff;
    border-color: rgba(77, 156, 255, 0.4);
    background: rgba(77, 156, 255, 0.07);
}

.icon-pink {
    color: #ff4e9b;
    border-color: rgba(255, 78, 155, 0.4);
    background: rgba(255, 78, 155, 0.07);
}

.icon-yellow {
    color: #ffc400;
    border-color: rgba(255, 196, 0, 0.4);
    background: rgba(255, 196, 0, 0.07);
}

.icon-teal {
    color: #28d7c5;
    border-color: rgba(40, 215, 197, 0.4);
    background: rgba(40, 215, 197, 0.07);
}

.icon-lime {
    color: #a7e82c;
    border-color: rgba(167, 232, 44, 0.4);
    background: rgba(167, 232, 44, 0.07);
}


/* CARD TEXT*/

.service-card h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    font-size: 15px;

    font-weight: 650;

    color: #f2f5fb;
}


.service-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    font-size: 12px;

    line-height: 1.5;

    color: #7185a4;
}

/* WHY CHOOSE US  */

.why-section {
    background: #f7f9fc;
    padding: 90px 8% 110px;
    text-align: center;
}

.why-section h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111a35;
    margin: 0 0 20px;
}

.why-section h2 span {
    color: #2563eb;
}

.section-description {
    max-width: 850px;
    margin: 0 auto 65px;
    font-size: 20px;
    line-height: 1.7;
    color: #536783;
}

.why-cards {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 45px 35px;

    min-height: 280px;

    box-shadow:
        0 8px 30px rgba(30, 50, 90, 0.08);

    border: 1px solid #edf0f5;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(30, 50, 90, 0.14);
}

.why-icon {
    width: 82px;
    height: 82px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    font-size: 28px;
}

.why-icon.green {
    background: #e9fbf3;
    color: #16c784;
}

.why-icon.yellow {
    background: #fff8df;
    color: #ffb000;
}

.why-icon.indigo {
    background: #edf5ff;
    color: #2878ff;
}

.why-icon.purple {
    background: #f1f0f5;
    color: #cbc2f4;
}
.why-icon.blue {
    background: #dce0ee;
    color: #7692e6;
}
.why-icon.orange {
    background: #d6d1cd;
    color: #edbc97;
}

.why-card h3 {
    font-size: 20px;
    color: #111a35;
    margin-bottom: 18px;
    font-weight: 750;
}

.why-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #536783;
    margin: 0;
}

/* BUSINESS PARTNERSHIP */

.partnership-section {
    background: #ffffff;
    padding: 70px 6% 100px;
}


/* HEADING */

.partnership-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 65px;
}

.partnership-header h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: #111a32;
}

.partnership-header h2 span {
    color: #285bd7;
}

.partnership-header p {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.5;
    color: #456080;
}


/* GRID */

.partnership-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* CARD */

.partnership-card {
    min-height: 580px;

    padding: 40px 35px;

    background: #f8fafc;

    border: 1px solid #dfe6ef;
    border-radius: 30px;

    text-align: center;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;

    transition: 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(30, 70, 130, 0.12);
}


/* ICON */

.partnership-icon {
    width: 74px;
    height: 74px;

    margin: 0 auto 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 20px;

    color: #2458d8;

    font-size: 26px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}


/* TITLE */

.partnership-card h3 {
    margin: 0 0 20px;

    font-size: 20px;
    line-height: 1.3;

    color: #101a35;
}


/* DESCRIPTION */

.card-description {
    margin: 0;

    font-size: 17px;
    line-height: 1.55;

    color: #456080;

    min-height: 185px;
}


/* LIST */

.partnership-card ul {
    margin: 15px 0 30px;
    padding: 0;

    list-style: none;

    text-align: left;
}

.partnership-card li {
    position: relative;

    padding-left: 25px;
    margin-bottom: 14px;

    font-size: 17px;
    color: #36577f;
}

.partnership-card li::before {
    content: "•";

    position: absolute;
    left: 4px;

    color: #2458d8;
    font-size: 24px;
}


/* BUTTON */

.partnership-card button {
    width: 100%;
    max-width: 210px;

    margin: auto auto 0;

    padding: 14px 25px;

    border: 2px solid #dce4ef;
    border-radius: 35px;

    background: transparent;

    color: #294667;

    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.partnership-card button:hover {
    background: #2458d8;
    border-color: #2458d8;
    color: white;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 900px) {

    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}

@media (max-width: 700px) {

    .partnership-section {
        padding: 55px 20px 70px;
    }

    .partnership-header h2 {
        font-size: 34px;
    }

    .partnership-header p {
        font-size: 17px;
    }

    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partnership-card {
        min-height: auto;
    }

    .card-description {
        min-height: auto;
    }

}


/* HOW IT WORKS */

.how-it-works-section {
    background: #f8fafc;

    padding: 65px 6% 90px;

    text-align: center;
}


/* HEADER */

.how-it-works-header {
    max-width: 850px;

    margin: 0 auto 70px;
}

.how-it-works-header h2 {
    margin: 0;

    font-size: 40px;
    font-weight: 800;

    color: #111a32;
}

.how-it-works-header h2 span {
    color: #285bd7;
}

.how-it-works-header p {
    margin-top: 27px;

    font-size: 18px;
    line-height: 1.5;

    color: #456080;
}


/* STEPS */

.steps-container {
    max-width: 990px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


/* STEP */

.step-item {
    text-align: center;

    position: relative;
}


/* ICON + NUMBER */

.step-icon-wrapper {
    position: relative;

    width: 105px;
    height: 105px;

    margin: 0 auto 32px;
}


/* CIRCLE */

.step-icon {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    color: #2458d8;

    font-size: 30px;

    box-shadow:
        0 12px 25px rgba(30, 50, 80, 0.15);

    border: 7px solid #ffffff;
}


/* NUMBER */

.step-number {
    position: absolute;

    top: -8px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    background: #101a35;

    color: white;

    border-radius: 50%;

    font-size: 17px;
    font-weight: 700;

    border: 3px solid #f8fafc;
}


/* TITLE */

.step-item h3 {
    margin: 0 0 12px;

    font-size: 20px;

    font-weight: 800;

    color: #101a35;
}


/* DESCRIPTION */

.step-item p {
    max-width: 240px;

    margin: 0 auto;

    font-size: 15px;

    line-height: 1.45;

    color: #456080;
}

.step-item {
    transition: transform 0.35s ease;
}

.step-item:hover {
    transform: translateY(-8px);
}


.step-icon {
    transition: transform 0.35s ease;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .steps-container {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 60px;
    }

}


@media (max-width: 600px) {

    .how-it-works-section {
        padding: 55px 20px 70px;
    }

    .how-it-works-header {
        margin-bottom: 50px;
    }

    .how-it-works-header h2 {
        font-size: 34px;
    }

    .how-it-works-header p {
        font-size: 17px;
    }

    .steps-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .step-item h3 {
        font-size: 23px;
    }

    .step-item p {
        font-size: 16px;
    }

}

/*  ANIMATIONS  */

@keyframes phoneFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes floatingCard {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}



/* STATS SECTION */

.stats-section {
    background: #ffffff;
    padding: 80px 6% 70px;
}

.stats-container {
    max-width: 1320px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: linear-gradient(
        135deg,
        #242d7d,
        #1f338f,
        #176ac5
    );

    border-radius: 28px;
    overflow: hidden;

    box-shadow: 0 20px 45px rgba(30, 80, 150, 0.25);
}

.stat-item {
    padding: 48px 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h2 {
    margin: 0 0 10px;

    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    margin: 0;

    color: #c7d8ff;
    font-size: 15px;
    font-weight: 500;
}


/* TRUST BADGES */

.trust-badges {
    max-width: 1250px;
    margin: 30px auto 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    flex-wrap: wrap;
}

.trust-badge {
    background: #ffffff;

    border: 1px solid #dce4ef;
    border-radius: 30px;

    padding: 12px 22px;

    color: #29466f;
    font-size: 13px;
    font-weight: 300;

    box-shadow: 0 4px 12px rgba(20, 50, 90, 0.08);

    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badge span {
    font-size: 18px;
}
.trust-badge{
    transition: tranform 0.35s ease;
}
.trust-badge:hover{
    transform: translateY(-8px);
}


/* MOBILE APP SECTION */

.mobile-app-section {
    background: #ffffff;
    padding: 100px 6%;
    overflow: hidden;
}

.mobile-app-container {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 70px;
}


/* LEFT CONTENT */

.mobile-app-content {
    padding: 30px 30px;
}

.coming-soon-badge {
    display: inline-block;

    padding: 9px 18px;

    border-radius: 25px;

    background: #faf1ff;
    border: 1px solid #ecd5ff;

    color: #8b20ff;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 18px;
}

.mobile-app-content h2 {
    margin: 0 0 25px;

    color: #111a35;

    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
}

.mobile-app-content h2 span {
    color: #285de0;
}

.mobile-app-content > p {
    max-width: 620px;

    color: #405777;

    font-size: 18px;
    line-height: 1.8;

    margin-bottom: 35px;
}


/* FEATURES*/

.mobile-features {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px 55px;

    margin-bottom: 30px;
    
}

.mobile-feature {
    display: flex;
    align-items: center;
    
    gap: 14px;
}

.mobile-feature span {
    width: 20px;
    height: 20px;

    border: 2px solid #00bde5;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #00bde5;

    font-size: 10px;
    font-weight: 700;

    flex-shrink: 0;
    
}

.mobile-feature p {
    margin: 0;

    color: #17355d;

    font-size: 13px;
    font-weight: 500;
}


/* APP DOWNLOAD BUTTONS*/

.app-download-buttons {
    display: flex;
    gap: 15px;
}

.app-button {
    border: none;

    background: #737987;

    color: white;

    min-width: 110px;

    padding: 13px 22px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    cursor: pointer;

    transition: 0.3s;
}

.app-button:hover {
    background: #525866;
    transform: translateY(-3px);
}

.app-button-icon {
    font-size: 28px;
}

.app-button small {
    display: block;

    font-size: 10px;

    text-align: left;

    opacity: 0.85;
}

.app-button strong {
    display: block;

    font-size: 15px;

    text-align: left;
}


/* PHONE AREA */

.mobile-phone-area {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* PHONE*/

.phone {
    width: 400px;
    height: 600px;

    padding: 12px;

    background: #aeb9cd;

    border-radius: 58px;

    box-shadow:
        0 25px 60px rgba(20, 40, 80, 0.25),
        inset 0 0 0 2px #dbe2ef;

    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 48px;

    background: linear-gradient(
        180deg,
        #171d3a,
        #11172e
    );

    color: white;

    position: relative;
}

.phone-notch {
    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    width: 105px;
    height: 20px;

    background: #818b9c;

    border-radius: 20px;

    z-index: 5;
}


/* PHONE HEADER*/

.phone-header {
    padding: 48px 22px 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-logo {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2869e8,
        #7354e8
    );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    font-weight: 800;
}

.phone-profile strong {
    display: block;
    font-size: 17px;
}

.phone-profile small {
    display: block;

    margin-top: 3px;

    color: #8896b8;
}

.notification {
    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #303753;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* WALLET*/

.wallet-card {
    margin: 5px 20px 16px;

    padding: 22px;

    border-radius: 25px;

    background: linear-gradient(
        135deg,
        #bfc8d9,
        #8896ad
    );

    color: #17213b;
}

.wallet-card > small {
    font-size: 12px;

    letter-spacing: 1px;

    color: #52617d;
}

.wallet-card h3 {
    margin: 5px 0;

    font-size: 30px;
}

.wallet-card p {
    margin: 0 0 15px;

    color: #4d5d79;

    font-size: 12px;
}

.wallet-buttons {
    display: flex;
    gap: 10px;
}

.wallet-buttons button {
    flex: 1;

    border: none;

    padding: 10px;

    border-radius: 22px;

    background: #2862ed;

    color: white;

    font-weight: 600;
}

.wallet-buttons button:last-child {
    background: #4d5870;
}


/* PHONE SERVICES */

.phone-services {
    padding: 0 20px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;
}

.phone-services > div {
    height: 82px;

    border-radius: 18px;

    background: #292f4a;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 5px;
}

.phone-services span {
    font-size: 23px;
}

.phone-services small {
    color: #c4cce0;

    font-size: 11px;
}


/* TRANSACTIONS */

.transactions {
    padding: 20px;
}

.transactions h4 {
    margin: 0 0 12px;

    color: #8e9cbd;

    font-size: 12px;

    letter-spacing: 1px;
}

.transaction {
    min-height: 55px;

    margin-bottom: 8px;

    padding: 8px 12px;

    border-radius: 28px;

    background: #292f4a;

    display: flex;
    align-items: center;

    gap: 10px;
}

.transaction-avatar {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
}

.pink {
    background: #663060;
}

.blue {
    background: #294681;
}

.green {
    background: #155b4a;
}

.teal {
    background: #145968;
}

.transaction > div:nth-child(2) {
    flex: 1;
}

.transaction strong {
    display: block;

    font-size: 12px;
}

.transaction small {
    display: block;

    color: #72809f;

    font-size: 9px;
}

.transaction b {
    font-size: 11px;
}

.expense {
    color: #ff6262;
}

.income {
    color: #00e59b;
}


/* PHONE BOTTOM NAV*/

.phone-bottom-nav {
    position: absolute;

    bottom: 0;
    left: 0;
    right: 0;

    height: 70px;

    border-top: 1px solid #303650;

    background: #171d36;

    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.phone-bottom-nav div {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 3px;

    color: #697593;

    font-size: 18px;
}

.phone-bottom-nav div:first-child {
    color: #4b82f2;
}

.phone-bottom-nav small {
    font-size: 9px;
}


/* FLOATING COMMISSION*/

.commission-card,
.status-card {
    position: absolute;

    background: white;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(30, 50, 80, 0.18);

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    z-index: 10;
}

.commission-card {
    left: -70px;
    top: 280px;
}

.status-card {
    right: -70px;
    top: 420px;
}

.commission-icon,
.status-icon {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: 20px;
}

.commission-icon {
    background: #dff9eb;
    color: #18b96d;
}

.status-icon {
    background: #e3edff;
    color: #2862ed;
}

.commission-card small,
.status-card small {
    display: block;

    color: #71819d;

    font-size: 14px;
}

.commission-card strong,
.status-card strong {
    display: block;

    color: #17213b;

    font-size: 17px;
}


/* RESPONSIVE*/

@media (max-width: 1100px) {

    .mobile-app-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .mobile-app-content {
        text-align: center;
    }

    .mobile-app-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .mobile-features {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .mobile-phone-area {
        margin-top: 20px;
    }

}


@media (max-width: 650px) {

    .mobile-app-section {
        padding: 60px 20px;
    }

    .mobile-app-content h2 {
        font-size: 38px;
    }

    .mobile-app-content > p {
        font-size: 17px;
    }

    .mobile-features {
        grid-template-columns: 1fr;
    }

    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone {
        width: 350px;
        height: 650px;

        border-radius: 45px;
    }

    .phone-screen {
        border-radius: 37px;
    }

    .commission-card {
        left: -10px;
        top: 230px;
        transform: scale(0.8);
    }

    .status-card {
        right: -10px;
        top: 350px;
        transform: scale(0.8);
    }

}


/* TRUSTED BY PARTNERS */

.testimonials-section {
    background: #f6f9fd;
    padding: 90px 8% 100px;
    text-align: center;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    color: #111a35;
    letter-spacing: -1px;
}

.section-heading h2 span {
    color: #2858d8;
}

.section-heading p {
    margin: 28px auto 0;
    max-width: 900px;
    font-size: 18px;
    line-height: 1.7;
    color: #385474;
}


/* Cards */

.testimonials-container {
    max-width: 1090px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #e6ebf2;
    border-radius: 28px;

    padding: 42px 40px 35px;

    text-align: left;

    min-height: 410px;

    box-shadow: 0 8px 25px rgba(30, 55, 90, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(30, 55, 90, 0.12);
}


/* Stars */

.stars {
    color: #ffb000;

    font-size: 20px;
    letter-spacing: 3px;

    margin-bottom: 25px;
}


/* Quote */

.quote-icon {
    position: absolute;

    top: 35px;
    right: 35px;

    font-size: 85px;

    line-height: 1;

    color: #edf2f8;

    font-family: Georgia, serif;
}


/* Testimonial text */

.testimonial-text {
    position: relative;

    margin: 0;

    font-size: 18px;

    line-height: 1.75;

    color: #536782;

    font-style: italic;

    min-height: 210px;
}


/* Partner */

.partner-info {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #edf0f5;
}

.partner-avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2162e8,
        #7046e8
    );

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
}

.partner-avatar img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    border-radius: 50%;
}

.partner-info h4 {
    margin: 0;

    color: #14203a;

    font-size: 16px;
}

.partner-info span {
    display: block;

    margin-top: 4px;

    color: #718198;

    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .testimonials-container {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading h2 {
        font-size: 40px;
    }

}


@media (max-width: 700px) {

    .testimonials-section {
        padding: 70px 20px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 17px;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 32px 28px;
    }

}

/*  RESPONSIVE */

@media (max-width: 900px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

}

@media (max-width: 600px) {

    .stats-section {
        padding: 50px 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 35px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item h2 {
        font-size: 44px;
    }

    .stat-item p {
        font-size: 16px;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* RESPONSIVE */

@media (max-width: 1200px) {

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-actions {
        gap: 15px;
    }

    .call-now {
        font-size: 16px;
    }

    .partner-button {
        padding: 15px 25px;
        font-size: 16px;
    }

    .hero h1 {
        font-size: 65px;
    }

    .phone {
        width: 500px;
        height: 700px;
    }

}


@media (max-width: 900px) {

    .navbar {
        height: 100px;
    }

    .nav-links,
    .call-now {
        display: none;
    }

    .hero-container {
        flex-direction: column;

        padding: 60px 0;
    }

    .hero-content {
        width: 100%;

        text-align: center;
    }

    .hero-phone-area {
        width: 100%;
    }

    .partner-network,
    .hero-buttons,
    .trusted-badge {
        justify-content: center;
    }

    .hero h1 {
        font-size: 58px;
    }

        .about-section {
        padding: 70px 0 80px;
    }

    .about-intro {
        margin-bottom: 55px;
    }

    .about-intro h2 {
        font-size: 40px;
    }

    .about-intro p {
        font-size: 18px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        min-height: auto;
        padding: 35px 28px;
    }

    .info-card h3 {
        font-size: 26px;
    }

    .info-card p {
        font-size: 17px;
    }


        /* SERVICES */

    .services-section {
        padding: 90px 0;
    }

    .services-header {
        margin-bottom: 55px;
    }

    .services-header h2 {
        font-size: 38px;
    }

    .services-header p {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

    .service-card {
        min-height: 210px;

        padding: 30px 18px;
    }

    .service-icon {
        width: 70px;
        height: 70px;

        font-size: 27px;

        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

}


@media (max-width: 600px) {

    .navbar-container {
        width: 92%;
    }

    .logo-placeholder > span {
        font-size: 50px;
    }

    .logo-placeholder strong {
        font-size: 17px;
    }

    .partner-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-container {
        width: 92%;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-primary-button,
    .hero-secondary-button {
        width: 100%;
    }

    .hero-phone-area {
        min-height: 600px;
    }

    .phone {
        width: 340px;
        height: 560px;

        padding: 12px;

        border-radius: 32px;
    }

    .services-grid {
        gap: 7px;
    }

    .service {
        min-height: 80px;
    }

    .service span {
        font-size: 20px;
    }

    .service strong,
    .service small {
        font-size: 10px;
    }

    .floating-card {
        transform: scale(0.75);
    }

    .floating-aeps {
        left: -15%;
    }

    .floating-dmt {
        right: -15%;
    }

    .floating-bbps {
        left: -18%;
    }

    .floating-recharge {
        right: -15%;
    }
        .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .services-header p {
        font-size: 17px;
    }

}


/* FAQ SECTION */

.faq-section {
    width: 100%;
    padding: 50px 20px 100px;
    background: #ffffff;
}


/* HEADING */

.faq-heading {
    text-align: center;
    max-width: 890px;
    margin: 0 auto 70px;
}

.faq-heading h1 {
    margin: 0 0 25px;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 750;
    letter-spacing: -1.5px;

    color: #111827;
}

.faq-heading h1 span {
    background: linear-gradient(
        90deg,
        #2563eb,
        #315de5
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-heading p {
    margin: 0;

    font-size: 18px;
    line-height: 1.6;

    color: #405a7d;
}


/* FAQ CONTAINER */

.faq-container {
    width: 100%;
    max-width: 790px;
    margin: auto;
}


/* FAQ CARD */

.faq-item {
    margin-bottom: 14px;
    background: #ffffff;

    border: 1px solid #e1e7ef;

    border-radius: 20px;

    box-shadow:
        0 2px 7px rgba(15, 23, 42, 0.06);

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* Hover */

.faq-item:hover {
    border-color: #c5d5f5;

    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.08);

    transform: translateY(-1px);
}


/*  REMOVE DEFAULT ARROW*/

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}


/*  QUESTION */

.faq-item summary {
    min-height: 98px;

    padding: 24px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    font-size: 17px;
    font-weight: 600;

    color: #111827;
}


/* Hover text */

.faq-item summary:hover > span:first-child {
    color: #2563eb;
}


/* PLUS / MINUS ICON */

.faq-icon {
    position: relative;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f1f5f9;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}


/* Horizontal line */

.faq-icon::before {
    content: "";

    position: absolute;

    width: 16px;
    height: 2px;

    background: #64748b;

    border-radius: 5px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    transition:
        background 0.3s ease;
}


/* Vertical line */

.faq-icon::after {
    content: "";

    position: absolute;

    width: 2px;
    height: 16px;

    background: #64748b;

    border-radius: 5px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    transition:
        transform 0.35s ease,
        background 0.3s ease;
}


/*OPEN STATE*/

.faq-item[open] {
    border-color: #b8cdf7;

    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.10);
}


/* Blue circle */

.faq-item[open] .faq-icon {
    background: #285ce2;
}


/* Vertical line rotates
   => + becomes -
*/

.faq-item[open] .faq-icon::after {
    background: #ffffff;

    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


/* Horizontal line */

.faq-item[open] .faq-icon::before {
    background: #ffffff;
}


/*  ANSWER */

.faq-answer {
    padding: 0 30px 30px;

    animation: faqOpen 0.4s ease;
}

.faq-answer p {
    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: #405a7d;
}


/*OPEN ANIMATION */

@keyframes faqOpen {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* TABLET */

@media (max-width: 900px) {

    .faq-section {
        padding: 45px 18px 80px;
    }

    .faq-heading {
        margin-bottom: 50px;
    }

    .faq-heading h1 {
        font-size: 42px;
    }

    .faq-heading p {
        font-size: 20px;
    }

    .faq-item summary {
        min-height: 85px;
        padding: 22px 24px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 24px 26px;
    }

    .faq-answer p {
        font-size: 18px;
    }

}


/*  MOBILE */

@media (max-width: 600px) {

    .faq-section {
        padding: 35px 14px 70px;
    }


    .faq-heading {
        margin-bottom: 38px;
    }


    .faq-heading h1 {
        font-size: 32px;

        line-height: 1.2;

        letter-spacing: -0.7px;

        margin-bottom: 17px;
    }


    .faq-heading p {
        font-size: 16px;

        line-height: 1.55;
    }


    .faq-item {
        margin-bottom: 15px;

        border-radius: 16px;
    }


    .faq-item summary {
        min-height: 76px;

        padding: 17px 18px;

        font-size: 16px;

        line-height: 1.4;
    }


    .faq-icon {
        width: 38px;
        height: 38px;
    }


    .faq-icon::before {
        width: 14px;
    }


    .faq-icon::after {
        height: 14px;
    }


    .faq-answer {
        padding: 0 18px 22px;
    }


    .faq-answer p {
        font-size: 16px;

        line-height: 1.65;
    }

}

.gradient-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #112e6c, #3364ea, #be51e2);
}

/* CONTACT SECTION */

.contact-section {
    margin-top: 22px;
    width: 100%;

    padding: 55px 20px 100px;

    background: #f7f9fc;
}


/*  HEADING */

.contact-heading {
    max-width: 1099px;

    margin: 0 auto 75px;

    text-align: center;
}


.contact-heading h2 {
    margin: 0 0 20px;

    font-size: 35px;

    line-height: 1.2;

    font-weight: 750;

    letter-spacing: -1.5px;

    color: #111a30;
}


.contact-heading h2 span {
    color: #2563eb;

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #315de5
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


.contact-heading p {
    margin: 0;

    font-size: 18px;

    line-height: 1.6;

    color: #405a7d;
}


/*  MAIN CONTAINER */

.contact-container {
    width: 100%;

    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr
        1.1fr
        0.95fr;

    gap: 28px;

    align-items: stretch;
}


/* COMMON CARD */

.contact-info-card,
.contact-form-card,
.location-card {
    border-radius: 32px;

    overflow: hidden;
}


/*LEFT CONTACT CARD */

.contact-info-card {

    position: relative;

    padding: 40px 42px;

    min-height: 620px;

    background:
        linear-gradient(
            145deg,
            #111a35 0%,
            #0d1731 100%
        );

    color: #ffffff;

    display: flex;

    flex-direction: column;
}


.contact-info-card h3 {

    margin: 0 0 42px;
    font-size: 20px;
    font-weight: 700;
}


/*  CONTACT INFO ITEM */

.contact-info-item {

    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 28px;
}


/* ICON */

.contact-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.08);
}


.contact-icon svg {

    width: 20px;

    height: 20px;
}


/* Different icon colors */

.location-icon svg {
    color: #00cfff;
}

.phone-icon svg {
    color: #3c8cff;
}

.email-icon svg {
    color: #b66cff;
}

.support-icon svg {
    color: #00e4b5;
}


/* INFO TEXT */

.contact-info-text span {

    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 400;

    letter-spacing: 0.3px;

    color: #8fa2c0;
}


.contact-info-text p {

    margin: 0;

    font-size: 13px;

    line-height: 1.65;

    color: #e1e8f5;
}


/* FOLLOW US */

.follow-us {

    margin-top: auto;
}


.follow-us > span {

    display: block;

    margin-bottom: 18px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.4px;

    color: #8fa2c0;
}


.social-icons {

    display: flex;

    gap: 8px;
}


.social-icons a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #ffffff;

    background:
        rgba(255,255,255,0.10);

    font-size: 17px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.social-icons a:hover {

    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );
}


/* FORM CARD */

.contact-form-card {

    padding: 40px 42px;

    background: #ffffff;

    border: 1px solid #e1e7ef;

    box-shadow:
        0 3px 12px rgba(15,23,42,0.05);
}


.contact-form-card h3 {

    margin: 0 0 34px;

    font-size: 20px;

    color: #111a30;
}


/* FORM GROUP */

.form-group {

    margin-bottom: 15px;
}


.form-group label {

    display: block;

    margin-bottom: 9px;

    font-size: 13px;

    font-weight: 500;

    color: #15284a;
}


.form-group label span {

    color: #2563eb;
}


/* INPUT / SELECT / TEXTAREA*/

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #dce4ee;

    outline: none;

    background: #f8fafc;

    color: #29405f;

    font-family: inherit;

    font-size: 13px;

    border-radius: 20px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.form-group input,
.form-group select {

    height: 50px;

    padding: 0 20px;
}


.form-group textarea {

    min-height: 100px;

    resize: vertical;

    padding: 17px 20px;

    border-radius: 25px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #8191a8;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #5180e8;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(37,99,235,0.08);
}


/* SEND BUTTON*/

.send-message-btn {

    width: 100%;

    height: 50px;

    margin-top: 2px;

    border: none;

    border-radius: 35px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    background:
        linear-gradient(
            100deg,
            #155ee8,
            #8a3df0
        );

    box-shadow:
        0 7px 16px rgba(37,99,235,0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.send-message-btn svg {

    width: 21px;

    height: 21px;
}


.send-message-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(37,99,235,0.28);
}


/* LOCATION CARD */

.location-card {

    background: #ffffff;

    border: 1px solid #e1e7ef;

    box-shadow:
        0 3px 12px rgba(15,23,42,0.05);

    padding: 34px 0 0;
}


.location-card h3 {

    margin: 0 30px 7px;

    font-size: 20px;

    color: #111a30;
}


.location-address {

    margin: 0 30px 12px;

    color: #587392;

    font-size: 13px;
}

.map-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
}

/* MAP */

.map-container iframe {
    width: 100%;
    height: 580px;
    display: block;
    border: 0;
}

/* LAST BUTTON */

.map-open-btn {
    width: 100%;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    background: #ffffff;

    color: #1457e6;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    border: none;
}

.map-open-btn svg {
    width: 18px;
    height: 18px;
}

.map-open-btn:hover {
    color: #4f46e5;
}


/* Roads */

.map-road {

    position: absolute;

    background: #ffffff;

    opacity: 0.9;

    box-shadow:
        0 0 0 1px #c9d2d4;
}


.road-one {

    width: 150%;

    height: 28px;

    left: -20%;

    top: 40%;

    transform: rotate(-15deg);
}


.road-two {

    width: 130%;

    height: 20px;

    left: -15%;

    top: 65%;

    transform: rotate(27deg);
}


.road-three {

    width: 130%;

    height: 17px;

    left: -10%;

    top: 20%;

    transform: rotate(50deg);
}


/* Map labels */

.map-label {

    position: absolute;

    font-size: 13px;

    font-weight: 600;

    color: #59686d;

    letter-spacing: 0.3px;
}


.label-one {

    top: 18%;

    left: 15%;
}


.label-two {

    top: 47%;

    right: 13%;
}


.label-three {

    bottom: 18%;

    left: 13%;
}


.label-four {

    top: 70%;

    right: 18%;
}


.map-marker {

    position: absolute;

    left: 51%;

    top: 49%;

    width: 48px;

    height: 48px;

    border-radius: 50% 50% 50% 0;

    background: #ef4444;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);

    box-shadow:
        0 5px 15px rgba(239,68,68,0.3);
}


.map-marker span {

    position: absolute;

    width: 16px;

    height: 16px;

    background: #ffffff;

    border-radius: 50%;

    top: 16px;

    left: 16px;
}


.map-open-btn {

    position: absolute;

    left: 22px;

    top: 22px;

    padding: 12px 16px;

    display: flex;

    align-items: center;

    gap: 8px;

    background: #ffffff;

    color: #1260df;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    border-radius: 6px;

    box-shadow:
        0 3px 10px rgba(0,0,0,0.15);

    transition:
        transform 0.3s ease;
}


.map-open-btn svg {

    width: 18px;

    height: 18px;
}


.map-open-btn:hover {

    transform: translateY(-2px);
}



@media (max-width: 1050px) {

    .contact-container {

        grid-template-columns:
            1fr 1fr;

    }


    .location-card {

        grid-column:
            1 / -1;

    }


    .map-container {

        height: 400px;

    }

}


/* MOBILE*/

@media (max-width: 700px) {

    .contact-section {

        padding:
            40px 15px 70px;

    }


    .contact-heading {

        margin-bottom: 40px;

    }


    .contact-heading h2 {

        font-size: 34px;

        letter-spacing: -0.7px;

    }


    .contact-heading p {

        font-size: 16px;

        line-height: 1.55;

    }


    .contact-container {

        display: flex;

        flex-direction: column;

        gap: 18px;

    }


    .contact-info-card,
    .contact-form-card {

        min-height: auto;

        padding: 30px 25px;

        border-radius: 22px;

    }


    .contact-info-card h3,
    .contact-form-card h3,
    .location-card h3 {

        font-size: 23px;

    }


    .contact-info-card h3 {

        margin-bottom: 32px;

    }


    .contact-info-item {

        gap: 13px;

        margin-bottom: 24px;

    }


    .contact-icon {

        width: 44px;

        height: 44px;

    }


    .contact-info-text span {

        font-size: 13px;

    }


    .contact-info-text p {

        font-size: 16px;

    }


    .social-icons a {

        width: 43px;

        height: 43px;

    }


    .contact-form-card h3 {

        margin-bottom: 25px;

    }


    .form-group label {

        font-size: 16px;

    }


    .form-group input,
    .form-group select {

        height: 51px;

        font-size: 16px;

    }


    .form-group textarea {

        font-size: 16px;

    }


    .send-message-btn {

        height: 54px;

        font-size: 16px;

    }


    .location-card {

        padding-top: 28px;

        border-radius: 22px;

    }


    .location-card h3,
    .location-address {

        margin-left: 24px;

        margin-right: 24px;

    }


    .location-address {

        font-size: 16px;

        margin-bottom: 18px;

    }


    .map-container {

        height: 350px;

    }

}

/* FOOTER */

.site-footer {
    position: relative;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #061526 0%,
            #071b30 50%,
            #061525 100%
        );

    color: #ffffff;

    overflow: hidden;

    padding: 62px 20px 0;
}
/*  FOOTER NETWORK*/

.footer-network {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;

    opacity: 0.75;
}


/* NETWORK NODE*/

.network-node {

    position: absolute;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(0, 240, 190, 0.35) 0%,
            rgba(0, 210, 190, 0.12) 45%,
            transparent 72%
        );

    box-shadow:
        0 0 8px rgba(0, 230, 190, 0.55),
        0 0 25px rgba(0, 220, 190, 0.35),
        0 0 45px rgba(0, 220, 190, 0.15);

    z-index: 3;

    animation:
        nodeGlow 2s ease-in-out infinite;
}

.network-node::after {

    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background: #8ffff0;

    box-shadow:
        0 0 5px #00e6bd,
        0 0 12px #00e6bd,
        0 0 20px rgba(0, 230, 189, 0.8);

    z-index: 4;
}



.network-ray {

    position: absolute;

    height: 1px;

    width: var(--ray-length);

    left: var(--start-x);
    top: var(--start-y);

    transform-origin: left center;

    transform:
        rotate(var(--angle))
        scaleX(0);

    opacity: 0;

    background:
        linear-gradient(
            90deg,
            rgba(75, 255, 205, 0.9),
            rgba(0, 195, 235, 0.55),
            rgba(0, 170, 240, 0)
        );

    box-shadow:
        0 0 5px rgba(0, 225, 195, 0.45);

    z-index: 2;

    animation:
        rayTravel
        var(--duration)
        cubic-bezier(.2, .75, .3, 1)
        forwards;
}


@keyframes rayTravel {

    0% {

        transform:
            rotate(var(--angle))
            scaleX(0);

        opacity: 0;

    }

    10% {

        opacity: 0.8;

    }

    55% {

        transform:
            rotate(var(--angle))
            scaleX(1);

        opacity: 0.65;

    }

    75% {

        transform:
            rotate(var(--angle))
            scaleX(1.05);

        opacity: 0.35;

    }

    100% {

        transform:
            rotate(var(--angle))
            scaleX(1.15);

        opacity: 0;

    }
}


/* NODE GLOW */

@keyframes nodeGlow {

    0%,
    100% {

        box-shadow:
            0 0 7px rgba(0, 230, 190, 0.45),
            0 0 20px rgba(0, 220, 190, 0.25),
            0 0 35px rgba(0, 220, 190, 0.12);

    }

    50% {

        box-shadow:
            0 0 12px rgba(0, 240, 200, 0.8),
            0 0 30px rgba(0, 220, 190, 0.45),
            0 0 55px rgba(0, 220, 190, 0.2);

    }
}
/* FOOTER CONTENT */

.footer-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.45fr
        0.8fr
        1fr
        1.05fr;

    gap: 55px;

    padding-bottom: 50px;
}


/* BRAND */

.footer-brand {

    min-width: 0;
}


/* LOGO */

.footer-logo {

    width: 105px;

    height: 105px;

    background: #ffffff;

    border-radius: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 28px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.15);
}


.footer-logo img {

    width: 185px;

    height: 185px;

    object-fit: contain;
}


/* DESCRIPTION */

.footer-description {

    max-width: 400px;

    margin: 0 0 32px;

    font-size: 15px;

    line-height: 1.65;

    color: #8fa5c1;
}


/* SECURE */

.secure-text {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #93a7c0;

    font-size: 17px;
}


.secure-icon {

    display: flex;

    align-items: center;

    justify-content: center;
}


.secure-icon svg {

    width: 20px;

    height: 20px;

    color: #00dfb0;
}


/* FOOTER COLUMNS */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {

    margin: 0 0 30px;

    font-size: 15px;

    font-weight: 700;

    color: #ffffff;
}



.footer-column a {

    position: relative;

    width: fit-content;

    margin-bottom: 18px;

    color: #8da3bd;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-column a:hover {

    color: #ffffff;

    transform: translateX(5px);
}


/* CORPORATE */

.corporate h4 {

    margin: 0 0 24px;

    font-size: 15px;

    line-height: 1.45;

    color: #e2e9f3;
}


.corporate p {

    margin: 0 0 22px;

    color: #8da3bd;

    font-size: 13px;

    line-height: 1.6;
}


/* FOOTER BOTTOM*/

.footer-bottom {

    position: relative;

    z-index: 2;

    max-width: 1000px;

    margin: auto;

    min-height: 85px;

    border-top: 1px solid rgba(255,255,255,0.10);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-bottom p {

    margin: 0;

    font-size: 14px;

    color: #7288a3;
}


/* SOCIAL ICONS */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 20px;
}


.footer-socials a {

    width: 30px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #7186a0;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-socials svg {

    width: 20px;

    height: 20px;
}


.footer-socials a:hover {

    color: #ffffff;

    transform:
        translateY(-3px);
}


/* TABLET */

@media (max-width: 1050px) {

    .footer-container {

        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap: 45px;
    }


    .footer-brand {

        grid-column:
            1 / -1;
    }


    .footer-description {

        max-width: 600px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .site-footer {

        padding:
            45px 20px 0;
    }


    .footer-container {

        display: flex;

        flex-direction: column;

        gap: 40px;

        padding-bottom: 35px;
    }


    .footer-brand {

        width: 100%;
    }


    .footer-logo {

        width: 105px;

        height: 105px;

        border-radius: 22px;
    }


    .footer-logo img {

        width: 88px;

        height: 88px;
    }


    .footer-description {

        font-size: 16px;

        line-height: 1.65;

        margin-bottom: 25px;
    }


    .secure-text {

        font-size: 15px;
    }


    .footer-column h3 {

        font-size: 19px;

        margin-bottom: 22px;
    }


    .footer-column a {

        font-size: 16px;

        margin-bottom: 14px;
    }


    .corporate h4 {

        font-size: 17px;
    }


    .corporate p {

        font-size: 15px;
    }


    .footer-bottom {

        min-height: auto;

        padding:
            25px 0 30px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .footer-bottom p {

        font-size: 14px;

        line-height: 1.5;
    }


    .footer-socials {

        gap: 17px;
    }


}