:root {
    --bg-color: #03050a;
    --accent-color: #00f2ff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-gray: #9ca3af;
    --hero-bg: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(34, 211, 238, 0.15));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8%;
    border-bottom: 1px solid var(--border-color);
    /*background: linear-gradient(135deg, rgb(34 211 238 / 20%), rgb(99 102 241 / 26%));*/
    /*background: linear-gradient(135deg, rgb(34 211 238 / 45%), rgb(99 102 241 / 26%));*/
    background: radial-gradient(circle at left, #11141d 0%, #0a0c12 100%);
        background: linear-gradient(135deg, #2c3e50, #1a1a1a);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-login {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    position: absolute;
}


.menu-toggle span:nth-child(1) { transform: translateY(-10px); }
.menu-toggle span:nth-child(2) { transform: translateX(0); }
.menu-toggle span:nth-child(3) { transform: translateY(10px); }

.menu-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg); 
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px); 
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg); 
}



.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 8%;
    min-height: 85vh;
    background: var(--hero-bg);
}

.hero-tag {
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 75px);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-desc {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-main {
    background: var(--accent-color);
    color: black;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}


.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 30px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.status-badge {
    font-size: 10px;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.sub-text {
    font-size: 11px;
    color: var(--text-gray);
}

.item-right {
    text-align: right;
}

.amount {
    font-weight: 700;
    font-size: 14px;
}

.status-txt {
    font-size: 9px;
    color: var(--accent-color);
    font-weight: 900;
}


.border-purple {
    border-left: 3px solid #a855f7;
}

.icon-purple {
    background: rgba(168, 85, 247, 0.1);
}

.purple-text {
    color: #a855f7;
}

.gray-text {
    color: var(--text-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
}

.stat-val {
    font-size: 20px;
    font-weight: 700;
}

.add-btn {
    border: 1px dashed var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cyan-text {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 14px;
}

footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    opacity: 0.5;
    font-size: 10px;
    letter-spacing: 2px;
}


@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .hero-btns {
        display: flex;
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .menu-toggle {
        display: flex;
    }
nav{
        padding: 0px 3%;
}
.logo-img{
        height: 55px;
}
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0c12;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        display: none;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
        align-items: baseline;
    }

}

@media (max-width: 768px) {
    .hero {
        padding: 40px 5%;
    }

    .glass-card {
        padding: 20px;
    }

    h4{
        font-size: 13px;
    }
    .icon-box{
        width: 30px;
        height: 30px;
    }
}

.creative-features {
    padding: 100px 8%;
    background: #03050a;
    position: relative;
    overflow: hidden;
}

.glow-top {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    filter: blur(50px);
}

.header-content {
    text-align: center;
    margin-bottom: 80px;
}

.pre-title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
}

.header-content h2 {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(180deg, #fff 30%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}
.feature-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border-radius: 32px;
    padding: 2px;
    transition: 0.4s ease;
}

.feature-inner {
    background: #080a10;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.icon-holder {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 30px;
    transition: 0.3s;
}

.neon-blue { color: #00f2ff; box-shadow: 0 0 15px rgba(0, 242, 255, 0.2); }
.neon-purple { color: #a855f7; box-shadow: 0 0 15px rgba(168, 85, 247, 0.2); }

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
}


.feature-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
}

.feature-box:hover .icon-holder {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
    color: #000;
}


@media (max-width: 768px) {
    .header-content h2 { font-size: 35px; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.icon-holder {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}


.feature-box:hover .icon-holder {
    animation: pulseIcon 1.5s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 242, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 242, 255, 0.4); }
}
.feature-box::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    border-radius: 32px;
    background: linear-gradient(45deg, rgba(0,242,255,0.1), rgba(168,85,247,0.1));
    z-index: -1;
    opacity: 0.5;
    filter: blur(30px);
    transition: all 0.5s ease;
    animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
    100% { opacity: 0.4; transform: scale(1); }
}

.feature-box:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
}
.creative-features {
    padding: 100px 8%;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #0a0c17 0%, #03050a 50%, #050417 100%);
}

.glow-top {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,242,255,0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: floatGlow 8s ease-in-out infinite alternate;
    z-index: 0;
}

.glow-bottom-left {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
    filter: blur(100px);
    animation: floatGlow 12s ease-in-out infinite alternate-reverse;
    z-index: 0;
}

.glow-bottom-right {
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34,211,238,0.15) 0%, transparent 70%);
    filter: blur(120px);
    animation: floatGlow 10s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.7; }
    100% { transform: translateY(0) scale(1); opacity: 0.5; }
}
.bill-split-section {
      
    padding: 100px 8%;
        background-color: #060b1a;
    background-image: radial-gradient(circle at 0% 0%, rgba(0, 242, 255, 0.05) 0%, transparent 40%), radial-gradient(circle at 100% 100%, rgba(0, 110, 255, 0.05) 0%, transparent 40%);
}
.bill-header {
    text-align: center;
    margin-bottom: 60px;
}

.bill-header .pre-title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
   display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;

}

.bill-header h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
}


@media (max-width: 768px) {
    .bill-header h2 {
        font-size: 32px;
        padding: 0 10px;
    }
}
.split-container {
    display: flex;
    flex-direction: row-reverse; 
    gap: 50px;
}


.split-left-visual {
    flex: 0.8; 
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-portal {
    width: 350px; 
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 242, 255, 0.1);
    box-shadow: inset 0 0 50px rgba(0, 242, 255, 0.05);
}


.portal-ring, .portal-ring-outer {
    position: absolute;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

.portal-ring {
    width: 110%; height: 110%;
    animation: rotatePortal 10s linear infinite;
}

.portal-ring-outer {
    width: 130%; height: 130%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: rotatePortal 20s linear infinite reverse;
}

@keyframes rotatePortal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dynamic-icon i {
    font-size: 80px; 
    color: var(--accent-color);
    filter: drop-shadow(0 0 20px var(--accent-color));
    z-index: 5;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visual-status {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
}

.split-right-text {
    flex: 1.2;
}
.step-tag{
     color: var(--accent-color);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
}
.content-step {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.5s;
}

.content-step h2 {
    font-size: 55px;
    font-weight: 900;
    margin: 15px 0;
    color: #fff;
}


@media (max-width: 992px) {
    .split-container { flex-direction: column; }
    .split-left-visual { position: relative; height: 400px; }
    .content-step { padding-left: 0; border: none; height: auto; margin-bottom: 100px; }
}

.mobile-portal-wrapper {
    display: none;
}

@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
    }

    .split-left-visual {
        display: none !important;
    }

    .mobile-portal-wrapper {
        display: flex;
        justify-content: center;
        margin: 30px 0;
    }

    .mobile-portal-wrapper .visual-portal {
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(0, 242, 255, 0.1);
        border-radius: 50%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-portal-wrapper .portal-ring {
        position: absolute;
        width: 120%;
        height: 120%;
        border: 1px dashed var(--accent-color);
        border-radius: 50%;
        opacity: 0.4;
        animation: rotatePortal 10s linear infinite; 
    }

    .mobile-portal-wrapper i {
        font-size: 40px;
        color: var(--accent-color);
        filter: drop-shadow(0 0 15px var(--accent-color));
        animation: iconPulse 2s infinite ease-in-out;
    }

    .content-step {
        height: auto;
        padding: 60px 0;
        border-left: none;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .content-step h2 {
        font-size: 27px;
        margin-bottom: 10px;
    }
}


@keyframes rotatePortal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ax-about-section {
    padding: 120px 8%;
    background: #040814;
    position: relative;
    overflow: hidden;
}


.ax-blob-one, .ax-blob-two {
    position: absolute;
    width: 450px; 
    height: 450px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.12), transparent 70%);
    filter: blur(90px);
    z-index: 1;
}
.ax-blob-one { top: -15%; left: -10%; }
.ax-blob-two { bottom: -15%; right: -5%; background: rgba(0, 102, 255, 0.1); }

.ax-main-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 5;
    align-items: center;
}


.ax-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.ax-main-heading {
    font-size: 42px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ax-text-highlight {
    color: #00f2ff;
    text-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
}

.ax-desc-block p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 22px;
    font-size: 16.5px;
}

.ax-stats-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 35px;
}

.ax-stat-num { font-size: 36px; color: #fff; margin-bottom: 5px; font-weight: 900; }
.ax-stat-label { color: #64748b; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }


.ax-cards-visual {
    position: relative;
    height: 520px;
}

.ax-floating-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: 26px;
    display: flex;
    gap: 22px;
    width: 90%;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ax-pos-1 { top: 0; left: 0; z-index: 10; }
.ax-pos-2 { top: 170px; left: 45px; z-index: 9; }
.ax-pos-3 { top: 340px; left: 90px; z-index: 8; }

.ax-floating-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.06);
    border-color: #00f2ff;
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ax-icon-box {
    min-width: 65px; height: 65px;
    background: linear-gradient(135deg, #00f2ff, #0072ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #000;
    box-shadow: 0 10px 25px rgba(0, 242, 255, 0.4);
}

.ax-card-details h3 { color: #fff; font-size: 20px; margin-bottom: 10px; font-weight: 700; }
.ax-card-details p { color: #94a3b8; font-size: 14px; line-height: 1.6; }


@media (max-width: 1024px) {
    .ax-main-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .ax-status-badge, .ax-stats-wrapper { justify-content: center; }
    .ax-cards-visual { height: auto; display: flex; flex-direction: column; gap: 25px; }
    .ax-floating-card { position: static; width: 100%; }
}
.srv-hub-section {
    padding: 100px 8%;
    background: #040814;
    position: relative;
    overflow: hidden;
}

.srv-container {
    position: relative;
    z-index: 5;
}

.srv-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.srv-pre-title {
    color: #00f2ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 800;
}

.srv-header h2 {
    font-size: 40px;
    color: #fff;
    margin: 15px 0;
}

.srv-gradient-text {
    background: linear-gradient(90deg, #00f2ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.srv-header p {
    color: #94a3b8;
    line-height: 1.6;
}


.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.srv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.srv-card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 242, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.srv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.srv-card:hover .srv-card-glow {
    opacity: 1;
}

.srv-icon-area {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00f2ff;
    margin-bottom: 25px;
    transition: 0.3s;
}

.srv-card:hover .srv-icon-area {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.srv-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
}

.srv-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.srv-features {
    list-style: none;
    padding: 0;
}

.srv-features li {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.srv-features i {
    color: #00f2ff;
    font-size: 12px;
}

.srv-featured {
    border-color: rgba(0, 242, 255, 0.25);
    background: rgba(0, 242, 255, 0.02);
}

@media (max-width: 768px) {
    .srv-header h2 { font-size: 30px; }
}




.payout-features-section {
    padding: 100px 8%;
 background: var(--hero-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pre-title {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 12px;
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: var(--accent-color);
    padding: 5px 15px;

}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.payout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.payout-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}
.payout-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--accent-color));
    animation: rotateBeam 4s linear infinite;
    opacity: 0;
    transition: 0.3s;
}

.payout-card:hover::before {
    opacity: 1;
}

.payout-card::after {
    content: '';
    position: absolute;
    inset: 2px; 
  background: radial-gradient(circle at center, #11141d 0%, #0a0c12 100%);
    border-radius: 28px;
    z-index: -1;
}

@keyframes rotateBeam {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.payout-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: 0.4s;
}

.payout-card:hover .payout-icon {
    transform: scale(1.1) rotate(-10deg);
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-color);
}

.payout-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.payout-card p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .payout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .payout-grid {
        grid-template-columns: 1fr;
    }
    
    .payout-card {
        padding: 30px;
        text-align: center;
    }
    
    .payout-icon {
        margin: 0 auto 20px;
    }
}
.contact-section {
    padding: 120px 8%;
    background: radial-gradient(circle at top right, rgba(0, 242, 255, 0.05), transparent 40%), #000;
    position: relative;
        background: var(--hero-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateX(15px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.info-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.4;
}


.contact-form {
    background: #080a10;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}



.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}


.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4);
}

.btn-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg) translateY(-100%);
    transition: 0.6s;
}

.btn-submit:hover .btn-glow {
    transform: rotate(45deg) translateY(100%);
}

@media (max-width: 992px) {
    .contact-content { grid-template-columns: 1fr; }
    .contact-info { order: 2; }
    .contact-form { order: 1; padding: 30px; }
    .info-card:hover { transform: translateY(-5px); }
}


@media (max-width: 992px) {
    .contact-section {
        padding: 80px 5%;
    }

    .contact-content {
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .contact-header h2 {
        font-size: 36px;
    }

    .contact-form {
        padding: 30px 20px; 
        order: 1;
    }

    .contact-info {
        order: 2; 
    }
}

@media (max-width: 768px) {
    .info-card {
        flex-direction: column; 
        text-align: center;
        padding: 25px;
        transform: none !important; 
    }

    .info-icon {
        margin: 0 auto 15px; 
    }

    .info-card:hover {
        transform: translateY(-5px) !important; 
    }

    .btn-submit {
        padding: 15px;
        font-size: 14px;
    }

    .form-group input, 
    .form-group textarea {
        font-size: 16px;
    }
}

@media (hover: none) {
    .info-card:active {
        background: rgba(0, 242, 255, 0.1);
        border-color: var(--accent-color);
    }
}
.workflow-section {
    padding: 100px 8%;
   background: radial-gradient(circle at center, #11141d 0%, #0a0c12 100%);
    text-align: center;
        background: linear-gradient(135deg, rgb(34 211 238 / 20%), rgb(99 102 241 / 26%));
}

.workflow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.workflow-item {
    flex: 1;
    position: relative;
    padding: 20px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--accent-color);
    position: relative;
    transition: 0.4s;
}

.glow-ring {
    position: absolute;
    inset: -5px;
    border: 1px solid var(--accent-color);
    border-radius: 24px;
    opacity: 0;
    transition: 0.4s;
}

.workflow-item:hover .icon-box {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-10px);
}

.workflow-item:hover .glow-ring {
    opacity: 0.5;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.workflow-item h3 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 12px;
}

.workflow-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}


.workflow-arrow {
    color: rgba(255, 255, 255, 0.1);
    font-size: 20px;
    animation: arrowMove 2s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); opacity: 0.1; }
    50% { transform: translateX(10px); opacity: 0.8; color: var(--accent-color); }
}


@media (max-width: 992px) {
    .workflow-container {
        flex-direction: column;
        gap: 40px;
    }
    .workflow-arrow {
        transform: rotate(90deg);
        animation: arrowMoveDown 2s infinite;
    }
}

@keyframes arrowMoveDown {
    0%, 100% { transform: rotate(90deg) translateY(0); opacity: 0.1; }
    50% { transform: rotate(90deg) translateY(10px); opacity: 0.8; }
}



.main-footer {
    background: var(--hero-bg);
    padding: 80px 8% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}


.footer-brand {
    flex: 1.2;
    min-width: 250px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--accent-color); 
}

.footer-brand p {
    color: #888;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 320px;
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #555;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}


.footer-links-wrapper {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-links h4, 
.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}


.footer-newsletter {
    max-width: 260px;
}

.footer-newsletter p {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.footer-form:focus-within {
    border-color: var(--accent-color);
}

.footer-form input {
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.footer-form button {
    background: transparent;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 16px;
    padding-left: 10px;
    transition: transform 0.3s ease;
}

.footer-form button:hover {
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 13px;
    letter-spacing: 0.5px;
}


@media (max-width: 1024px) {
    .footer-links-wrapper {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 5% 30px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-brand p {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-links h4, 
    .footer-newsletter h4 {
        margin-bottom: 15px;
    }

    .footer-newsletter {
        width: 100%;
        max-width: 300px;
    }

    .footer-form {
        justify-content: center;
    }
}


.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9); 
    border-radius: 12px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-logo:hover {
    transform: translateY(-3px) scale(1.05);
    background: #ffffff; 
  
}

@media (max-width: 768px) {
    .footer-logo {
        margin: 0 auto 25px;
    }
}

.footer-brand {
    flex: 1;
    /* min-width: 250px; */
    text-align: left; 
}

.logo-img{
    /*width:120px;*/
}


        .herro {
            background: var(--hero-bg);
            padding: 80px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .herro h1 {
            font-size: 42px;
            margin-bottom: 10px;
        }

        .herro p {
            color: var(--text-gray);
        }

        .container {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 30px;
            margin-bottom: 30px;
        }

        .card h2 {
            color: var(--accent-color);
            margin-bottom: 12px;
            font-size: 22px;
        }

        .card p,
        .card li {
            color: var(--text-gray);
            font-size: 15px;
        }

        ul {
            margin-left: 20px;
            margin-top: 10px;
        }
