:root {
    --bg-main: #0f172a;
    --electric-indigo: #6366f1;
    --vivid-cyan: #2276ee;
    --emerald-bright: #10b981;
    --text-white: #f8fafc;
    --text-dim: #94a3b8;
    --border-color: #1e293b;
    --card-bg: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    line-height: 1.6;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--electric-indigo);
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: var(--vivid-cyan);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.logo span { color: #6366f1; }

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover { color: #22d3ee; }

.menu-toggle {
    display: none; 
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%; 
        flex-direction: column;
        background: #1e293b;
        width: 80%;
        border-radius: 15px;
        text-align: center;
        transition: 0.4s ease;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }

    .nav-links.active {
        left: 10%; 
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        margin: 0;
    }

    .btn-outline {
        display: none; 
    }

    .menu-toggle {
        display: block; 
    }
}

.hero-section {
    display: flex;
    align-items: center;
    padding: 100px 10%;
    min-height: 90vh;
    gap: 60px;
    background-color: var(--bg-main);
}


.hero-left {
    flex: 1.2;
}

.announcement-bar {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--vivid-cyan);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.new-tag {
    background: var(--electric-indigo);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 10px;
}

.main-heading {
    font-size: 3.5rem;
    line-height: 1.4;
    font-weight: 800;
    color: var(--text-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--vivid-cyan), var(--electric-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 25px 0 40px;
    max-width: 580px;
}

.btn-primary {
    background: var(--electric-indigo);
    color: white;
    border: none;
    padding: 18px 38px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border);
    padding: 18px 38px;
    border-radius: 8px;
    margin-left: 15px;
    cursor: pointer;
}

.trust-markers {
    margin-top: 50px;
    color: var(--text-dim);
    font-size: 14px;
}

.method-icons {
    margin-top: 10px;
    color: var(--text-white);
    font-weight: 600;
}


.hero-right {
    flex: 0.8;
    position: relative;
}

.flow-container {
    background: #1e293b;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.flow-header {
    background: #0f172a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald);
}

.flow-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.icon.in {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

.icon.out {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.details {
    flex: 1;
}

.details .title {
    font-size: 14px;
    font-weight: 600;
}

.details .meta {
    font-size: 12px;
    color: var(--text-dim);
}

.amount {
    font-weight: 800;
    font-size: 16px;
}

.positive {
    color: var(--emerald);
}

.negative {
    color: var(--text-white);
}

.volume-overlay {
    background: var(--electric-indigo);
    padding: 4px;
    text-align: center;
}

.volume-overlay p {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.volume-overlay h3 {
    font-size: 24px;
    font-weight: 800;
}

.bg-blur-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--electric-indigo);
    filter: blur(100px);
    opacity: 0.15;
    top: 0;
    z-index: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-dim);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald-bright);
}

.tx-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.tx-icon {
    color: #f87171;
    font-weight: bold;
    margin-right: 15px;
}

.tx-icon-in {
    color: var(--emerald-bright);
    font-weight: bold;
    margin-right: 15px;
}

.tx-info {
    flex: 1;
    font-size: 14px;
}

.tx-amt-in {
    color: var(--emerald-bright);
    font-weight: 700;
}
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 5%;
      
    }



    .main-heading {
        font-size: 25px;
        line-height: 1.2;
    }

    .sub-text {
        font-size: 1rem;
        margin: 27px auto;
      
    }

    .button-row {
       
        display: flex;
        flex-direction:row; 
        gap: 15px;
    }

    .btn-secondary, .btn-primary {
        padding: 16px 19px
    }

    .hero-right {
   
        margin-top: 40px;
    }

    .volume-overlay h3 {
        font-size: 1.5rem;
    }
    .announcement-bar{
        padding: 6px 10px;
        font-size: 10.5px;
    }
}


.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #6366f1, #22d3ee, transparent);
    width: 80%;
    margin: 0 auto;
    opacity: 0.3;
}


.features-section {
    padding: 120px 10%;
    background: #0f172a;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-glow {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}


.feature-card {
    background: rgba(30, 41, 59, 0.5); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-8px);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22d3ee, #6366f1, transparent);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #1e293b;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-1 { box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2); color: #6366f1; }
.color-2 { box-shadow: 0 10px 20px rgba(34, 211, 238, 0.2); color: #22d3ee; }
.color-3 { box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); color: #10b981; }

.feature-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.features-header h2{
    margin-top: 20px;
}
.feature-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}


.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .features-header h2 { font-size: 25px; }
  
    .features-section{
        padding: 100px 4%;
    }
    .api-header, .upi-content, .network-header{
        text-align:left;
    }
    .phone-mockup {
    width: 290px !important;
}
}
.api-section {
    padding: 120px 10%;
    background: #0f172a;
    color: #fff;
    text-align: center;
}
h2{
    margin: 20px 0;
}
.api-header { margin-bottom: 80px; }

.api-flow-container {
    position: relative;

}


.connecting-line {
    position: absolute;
    top: 45px; 
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}


.pulse-line {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    position: absolute;
    animation: flowMove 3s infinite linear;
}

@keyframes flowMove {
    0% { left: -30%; }
    100% { left: 130%; }
}

.api-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.api-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}


.node-circle {
    width: 90px;
    height: 90px;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 8px #0f172a; 
}

.api-node:hover .node-circle {
    transform: scale(1.15);
    background: #0f172a;
    border-color: currentColor;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3), 0 0 0 8px #0f172a;
}

.color-1 { color: #6366f1; }
.color-2 { color: #22d3ee; }
.color-3 { color: #10b981; }

.api-node h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8fafc;
}

.api-node p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    max-width: 250px;
}


@media (max-width: 768px) {
    .api-nodes { flex-direction: column; gap: 60px; }
    .connecting-line { display: none; }
}
.highlight-section {
    padding: 100px 10%;
    background: #0f172a;
    color: #fff;
}

.highlight-container {
    display: flex;
    gap: 80px;
    align-items: flex-start; 
}

.h-sticky-left {
    flex: 1;
    position: sticky;
    top: 150px; 
    height: fit-content;
}

.h-sticky-left h2 {
    font-size: 52px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 800;
}

.h-sticky-left p {
    color: #94a3b8;
    font-size: 18px;
    max-width: 400px;
}

.scroll-indicator {
    margin-top: 40px;
    font-size: 14px;
    color: #6366f1;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.h-scroll-right {
    flex: 1.2;
}

.h-list-item {
    display: flex;
    gap: 30px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    opacity: 0.5;
}


.h-list-item:hover {
    opacity: 1;
    transform: translateX(10px);
}

.h-icon {
   width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e293b; 
    border: 2px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.color-1 { color: #6366f1; }
.color-2 { color: #22d3ee; }
.color-3 { color: #10b981; }

.h-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #f8fafc;
}

.h-info p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
}


.h-list-item:last-child {
    border-bottom: none;
    padding-bottom: 100px;
}

@media (max-width: 968px) {
    .highlight-container {
        flex-direction: column;
    }
    .h-sticky-left {
        position: relative;
        top: 0;
        text-align: left;
        margin-bottom: 50px;
    }
    .h-sticky-left h2 {
            font-size: 32px;

    }
    .h-sticky-left p { margin: 20px auto; }
}

.orbit-section {
    padding: 120px 10%;
    /* background: #020617; */
    color: #fff;
    overflow: hidden;
}

.orbit-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.orbit-text { flex: 1.2; }

.orbit-text h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    
    margin-bottom: 25px;
}

.orbit-text p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.orbit-features-minimal {
    margin-bottom: 40px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    margin-bottom: 12px;
    font-weight: 500;
}

.feat-item i { color: #6366f1; font-size: 14px; }


.orbit-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-core {
    width: 90px; height: 90px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5);
    position: relative;
}

.core-inner i { font-size: 35px; color: #fff; }


.ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ring-inner {
    width: 260px; height: 260px;
    animation: rotateRing 15s linear infinite;
}

.ring-outer {
    width: 440px; height: 440px;
    animation: rotateRing 25s linear infinite reverse;
}

.orbit-icon {
    position: absolute;
    width: 50px; height: 50px;
    animation: counterRotate 15s linear infinite;
}

.ring-outer .orbit-icon {
    animation-duration: 25s;
    animation-direction: normal; 
}

.icon-box {
    width: 100%; height: 100%;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}


.icon-pos-1 { top: -25px; left: 50%; margin-left: -25px; }
.icon-pos-2 { bottom: -25px; left: 50%; margin-left: -25px; }
.icon-pos-3 { left: -25px; top: 50%; margin-top: -25px; }
.icon-pos-4 { right: -25px; top: 50%; margin-top: -25px; }


@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}


.btn-main {
    background: #6366f1;
    color: #fff;
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    margin-right: 20px;
    display: inline-block;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 968px) {
    .orbit-container { flex-direction: column; text-align: left; }
    .orbit-visual { transform: scale(0.65); margin: 40px; }
   
}
.network-section {
    padding: 120px 10%;
    background: #020617;
    overflow: hidden;
}

.network-header {
    text-align: center;
    margin-bottom: 100px;
}

.network-header h2 {
    font-size: 52px;
    margin-top: 15px;
    
}

.flow-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.flow-step {
    flex: 1;
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.step-visual {
    position: relative;
    margin-bottom: 30px;
}

.step-num {
    font-size: 80px;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.07);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-icon {
    position: absolute;
    top: 30px;
    left: 10px;
    font-size: 32px;
    color: #6366f1;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.step-content p {
    color: #94a3b8;
    line-height: 1.6;
}


.flow-step:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-15px);
}

.flow-step:hover .step-num {
    color: rgba(99, 102, 241, 0.15);
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -25px;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, #6366f1, transparent);
    z-index: -1;
}

@media (max-width: 968px) {
    .flow-wrapper { flex-direction: column; gap: 40px; }
    .step-arrow { display: none; }
    .flow-step { text-align: center; }
    .step-icon { left: 50%; transform: translateX(-50%); }
}
@media (max-width:768px) {
    .upi-content h2{
        font-size: 25px !important;
        line-height: 1.4 !important;
    }
    .network-header h2{
        font-size: 27px !important;
    }
    .orbit-text h2 {
    font-size: 36px !important;
    }
    .upi-section, .network-section, .orbit-section {
        padding: 100px 6% !important;
    }
}

.footer {
    background: #020617; 
    padding: 100px 10% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
}


.footer-brand .logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-3px);
}


.footer-links {
    display:grid;
    grid-template-columns: repeat(3, 3fr);
}

.link-group h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.link-group a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.link-group a:hover {
    color: #6366f1;
    padding-left: 5px;
}


.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 13px;
}

.trust-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
}

.trust-icons span {
    font-size: 12px;
    font-weight: 600;
}


@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-links {
       grid-template-columns: repeat(1, 1fr);
    }
    .bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.upi-section {
    padding: 100px 10%;
    background: #020617;
    color: #fff;
    overflow: hidden;
}

.upi-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.upi-content { flex: 1; }

.upi-content h2 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

.upi-content p {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 17px;
}


.upi-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.u-feat {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.u-feat i {
    font-size: 24px;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.u-feat h4 { font-size: 18px; margin-bottom: 5px; }
.u-feat p { font-size: 14px; margin-bottom: 0; }

.upi-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 330px;
    height: 530px;
    background: #1e293b;
    border: 8px solid #334155;
    border-radius: 40px;
    padding: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
}

.phone-screen {
    background: #f8fafc;
    height: 100%;
    width: 100%;
    border-radius: 25px;
    padding: 20px;
    color: #020617;
}

.payment-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.merchant-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-bottom: 20px;
}

.m-logo {
    width: 35px;
    height: 35px;
    background: #6366f1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.amount-display h3 { font-size: 28px; color: #1e293b; margin: 5px 0 20px; }

.qr-placeholder {
    font-size: 100px;
    color: #334155;
    position: relative;
    margin: 20px 0;
}

.qr-scan-line {
    position: absolute;
    top: 0; left: 10%; width: 80%; height: 2px;
    background: #6366f1;
    animation: scan 2s infinite ease-in-out;
}

@keyframes scan {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.blob-bg {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    z-index: 1;
}

@media (max-width: 968px) {
    .upi-container { flex-direction: column; text-align: center; }
    .u-feat { text-align: left; }
}


.contact-section {
    padding: 100px 8%;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 3.2rem;
    color: var(--text-white);
    margin: 20px 0;
    line-height: 1.1;
    font-weight: 800;
}

.contact-info p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-color);
    transform: translateX(10px);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(34, 118, 238, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vivid-cyan);
    font-size: 1.4rem;
}

.info-item h4 {
    color: var(--text-white);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-dim);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    position: relative;
    background: var(--card-bg);
    padding: 45px;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-indigo);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.form-submit {
    width: 100%;
    position: relative;
    padding: 16px 32px;
    background: var(--vivid-cyan);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    z-index: 1;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 118, 238, 0.4);
    background: var(--electric-indigo);
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translate(5px, -5px);
}

.form-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    top: -50px;
    right: -50px;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(34, 118, 238, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(34, 118, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 118, 238, 0); }
}

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-info, .features-header { text-align:left; }
    .contact-info h2 {         font-size: 1.8rem;
        line-height: 1.4;
}
    .info-item { justify-content: flex-start; text-align: left; }
    .info-item:hover { transform: none; }
}
@media (max-width: 768px) {
    .form-glow {
        right: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0.1; 
        pointer-events: none;
    }

    .contact-container {
        padding: 40px 20px !important; 
        overflow-x: hidden; 
    }
    .contact-form-wrapper {
        padding: 25px 20px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .contact-section {
        overflow-x: hidden;
        width: 100%;
    }
        .contact-section {
            padding:0 !important;
        }
}


.policy-section {
    padding: 120px 8% 80px;
    background: var(--bg-main);
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 15px 0;
}

.policy-header p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.policy-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    line-height: 1.8;
}

.policy-card h2 {
        background: linear-gradient(135deg, var(--vivid-cyan), var(--electric-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card h2:first-child { margin-top: 0; }

.policy-card p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1.05rem;
}


@media (max-width: 768px) {
    .policy-section { padding: 100px 5%; }
    .policy-header h1 { font-size: 2.5rem; }
    .policy-card { padding: 30px 20px; }
}