/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #5A6272;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 50%, #EEF2F9 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(11, 27, 78, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(11, 27, 78, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0B1B4E;
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #5D6272;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #EB1478;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    color: #0B1B4E;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    text-decoration: none !important;
    border: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #EB1478;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(11, 27, 78, 0.3);
    margin-right: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 12px rgba(235, 20, 120, 0.25);
    background: #D1126A;
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-secondary {
    background: #FFFFFF;
    color: #0B1B4E;
    border: 2px solid #0B1B4E;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #0B1B4E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 27, 78, 0.3);
}

.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0B1B4E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0B1B4E;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5D6272;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    margin-top: 2rem;
}

/* Hero Video Container */
.hero-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.bank-card {
    width: 520px;
    height: 340px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.bank-card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.card-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B1B4E 0%, #1a2a5e 50%, #EB1478 100%);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(11, 27, 78, 0.3),
        0 0 60px rgba(235, 20, 120, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.card-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.card-chip {
    width: 35px;
    height: 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 6px;
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, #B8860B 0%, #9d7208 100%);
    border-radius: 3px;
}

.video-container {
    width: 460px;
    height: 240px;
    background: #000;
    border-radius: 12px;
    margin: 30px auto 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

.card-details {
    color: rgba(255, 255, 255, 0.9);
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cardholder-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.expiry-date {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
}

.card-logo {
    position: absolute;
    top: -140px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Bank Card */
@media (max-width: 1024px) {
    .bank-card {
        width: 480px;
        height: 310px;
    }
    
    .video-container {
        width: 440px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-video-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .bank-card {
        width: 100%;
        max-width: 380px;
        height: 250px;
        margin: 0 auto;
    }
    
    .video-container {
        width: 90%;
        max-width: 340px;
        height: 180px;
        margin: 20px auto;
    }
    
    .card-number {
        font-size: 14px;
    }
    
    .cardholder-name, .expiry-date {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-video-container {
        padding: 0 0.5rem;
    }
    
    .bank-card {
        width: 100%;
        max-width: 340px;
        height: 220px;
        margin: 0 auto;
    }
    
    .video-container {
        width: 85%;
        max-width: 300px;
        height: 150px;
        margin: 15px auto;
    }
    
    .card-chip {
        width: 30px;
        height: 24px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-container {
        padding: 0 1.5rem;
        height: 65px;
    }
    
    .logo h1 {
        font-size: 1.7rem;
    }
    
    /* Hero - Desktop-like mobile layout */
    .hero {
        padding: 85px 0 60px 0;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
        padding: 0 1.5rem;
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    
    .hero-video-container {
        order: 2;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-animation {
        order: 2;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        text-align: left;
        max-width: 100%;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .hero-animation .motion-graphic {
        width: 100%;
        max-width: 420px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 80px 0 50px 0;
        min-height: 75vh;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .btn-primary.large, .btn-secondary.large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        min-height: 50px;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: stretch;
    }
    
    .hero-animation .motion-graphic {
        max-width: 350px;
    }
    
    /* Solutions cards for small screens */
    .solution-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .solution-card img {
        max-width: 80px;
        margin: 0 auto;
    }
    

    
    /* Banking features for small screens */
    .banking-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 1.5rem 1.2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Who We Serve Section */
.who-we-serve {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(11, 27, 78, 0.08);
}

.who-we-serve-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -1px;
}

.sector-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-5px);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EB1478 0%, #D1126A 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(235, 20, 120, 0.3);
    transition: all 0.3s ease;
}

.sector-item:hover .sector-icon {
    box-shadow: 0 15px 40px rgba(235, 20, 120, 0.5);
    transform: scale(1.05);
}

.sector-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sector-description {
    font-size: 0.95rem;
    color: #5A6272;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .sector-icons {
        gap: 32px;
    }
    
    .sector-item {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .who-we-serve {
        padding: 60px 0;
    }
    
    .who-we-serve-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
        padding: 0 1.5rem;
    }
    
    .sector-icons {
        gap: 24px;
        justify-content: center;
        padding: 0 1.5rem;
    }
    
    .sector-item {
        max-width: 160px;
        flex: 0 0 calc(50% - 12px);
    }
    
    .sector-icon {
        width: 70px;
        height: 70px;
        border-radius: 14px;
        margin-bottom: 14px;
    }
    
    .sector-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .sector-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .sector-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sector-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .sector-item {
        max-width: 280px;
        flex: none;
    }
}

/* Unified Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 50%, #ddd6fe 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #5A6272;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.solutions-subtitle {
    font-size: 1.2rem;
    color: #5D6272;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(11, 27, 78, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(11, 27, 78, 0.08);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.15);
}

.solution-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    
    /* Unified Services Section Mobile */
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 1.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .services-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 3rem;
        text-align: center;
        max-width: 100%;
    }
    
    .services-tabs {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
        padding: 12px;
    }
    
    .tab-button {
        padding: 14px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .payment-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .payment-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-demo {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-demo {
        transform: scale(0.9);
    }
    
    .partnership-demo {
        min-height: 250px;
    }
    
    .partnership-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .services-tabs {
        gap: 0.25rem;
        padding: 8px;
    }
    
    .tab-button {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .payment-title {
        font-size: 1.5rem;
    }
    
    .payment-description {
        font-size: 0.9rem;
    }
    
    .gateway-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Payment Gateway Dashboard Styles */
.payment-gateway-dashboard {
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-container {
    background: linear-gradient(135deg, #0B1B4E 0%, #1a2a5e 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.api-flow {
    margin-bottom: 2rem;
}

.flow-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 80px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(235, 20, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #EB1478;
}

.step-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.flow-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.integration-item {
    text-align: center;
}

.integration-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-icon.stripe {
    background: rgba(101, 87, 210, 0.2);
    border-color: #6557d2;
}

.integration-icon.paypal {
    background: rgba(0, 48, 135, 0.2);
    border-color: #003087;
}

.integration-icon.square {
    background: rgba(0, 0, 0, 0.2);
    border-color: #000;
}

.integration-icon.adyen {
    background: rgba(0, 177, 100, 0.2);
    border-color: #00B164;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Operations Dashboard Styles */
.operations-dashboard {
    max-width: 600px;
    margin: 0 auto;
}

.workflow-section {
    margin-bottom: 2rem;
}

.workflow-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
    min-width: 80px;
}

.workflow-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    position: relative;
}

.workflow-icon.kyc {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #22c55e;
}

.workflow-icon.txn {
    background: linear-gradient(135deg, #0B1B4E, #1e3a8a);
    border-color: #1e40af;
}

.workflow-icon.rpt {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: #22c55e;
}

.workflow-icon.aml {
    background: linear-gradient(135deg, #0B1B4E, #1e3a8a);
    border-color: #1e40af;
}

.workflow-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.workflow-sublabel {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 500;
}

.workflow-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

.operations-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.operations-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.card-icon {
    opacity: 0.7;
}

.efficiency-chart {
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.chart-bar {
    width: 8px;
    background: linear-gradient(to top, #EB1478, #ff6ba5);
    border-radius: 2px;
    min-height: 8px;
}

.chart-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0;
}

.process-status {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-row:last-child {
    border-bottom: none;
}

.status-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-value {
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
}

/* Mobile responsiveness for operations dashboard */
@media (max-width: 768px) {
    .workflow-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .operations-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .workflow-step {
        min-width: 100px;
    }
}

/* Compliance Dashboard Styles */
.compliance-dashboard {
    max-width: 600px;
    margin: 0 auto;
}

.compliance-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.risk-assessment {
    margin-bottom: 2rem;
}

.risk-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.risk-item.low .risk-indicator {
    background: #22c55e;
}

.risk-item.medium .risk-indicator {
    background: #f59e0b;
}

.risk-item.high .risk-indicator {
    background: #ef4444;
}

.risk-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.risk-status {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.risk-item.low .risk-status {
    color: #22c55e;
}

.risk-item.medium .risk-status {
    color: #f59e0b;
}

.risk-item.high .risk-status {
    color: #ef4444;
}

.compliance-frameworks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.framework-item {
    text-align: center;
}

.framework-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.framework-badge.gdpr {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    color: #93c5fd;
}

.framework-badge.pci {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    color: #86efac;
}

.framework-badge.aml {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
    color: #fcd34d;
}

.framework-badge.mifid {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    color: #c4b5fd;
}

/* Mobile responsiveness for compliance dashboard */
@media (max-width: 768px) {
    .compliance-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .risk-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .compliance-frameworks {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* B2B Fintech Visual Styles for "Who We Serve" */
.transaction-item .growth-indicator {
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 600;
    margin-left: 0.5rem;
}

.transaction-amount.growth {
    color: #EB1478;
    font-weight: 600;
}

.banking-stat-circle.fintech {
    background: linear-gradient(135deg, #EB1478, #0B1B4E);
}

/* API Integration Hub Styles */
.api-integration-hub {
    padding: 1rem;
    background: linear-gradient(135deg, #1e3a8a, #312e81);
    border-radius: 12px;
    color: white;
    min-height: 280px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.api-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.api-status {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
}

.status-indicator.live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

.integration-network {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.integration-node.core {
    background: rgba(235, 20, 120, 0.2);
    border: 2px solid #EB1478;
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.integration-nodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.integration-node {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem;
    border-radius: 6px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.node-icon {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.node-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #EB1478, transparent);
    opacity: 0.6;
}

.connection-line.horizontal {
    width: 60%;
    height: 1px;
    top: 40%;
    left: 20%;
}

.connection-line.vertical {
    width: 1px;
    height: 50%;
    top: 25%;
    left: 50%;
    background: linear-gradient(180deg, transparent, #EB1478, transparent);
}

.api-performance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.performance-metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

.performance-metric .metric-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
}

.performance-metric .metric-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Global Presence Hub Styles */
.global-presence-hub {
    max-width: 500px;
    margin: 0 auto;
}

.global-dashboard {
    background: linear-gradient(135deg, #0B1B4E, #1e3a8a);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.3);
}

.global-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.status-dot.live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

.world-map-container {
    margin: 1.5rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.world-map {
    width: 100%;
    height: 120px;
}

.office-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.office-marker:hover {
    transform: scale(1.1);
}

.timezone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.timezone-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-display {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.2rem;
}

.timezone-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.expertise-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.expertise-badge {
    background: rgba(235, 20, 120, 0.2);
    border: 1px solid rgba(235, 20, 120, 0.3);
    border-radius: 6px;
    padding: 0.5rem 0.25rem;
    text-align: center;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.badge-icon {
    font-size: 1rem;
}

.expertise-badge span {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Mobile responsiveness for global presence */
@media (max-width: 768px) {
    .timezone-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .expertise-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .world-map {
        height: 100px;
    }
    
    .global-dashboard {
        padding: 1rem;
    }
}

/* Infrastructure Optimization Dashboard Styles */
.infrastructure-dashboard {
    background: linear-gradient(135deg, #0B1B4E, #1e3a8a);
    color: white;
}

.optimization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.optimization-metric {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.metric-trend {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.metric-trend.down {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.metric-trend.up {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
}

.metric-previous {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.module-config {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.config-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.module-item.active {
    background: rgba(235, 20, 120, 0.2);
    border: 1px solid rgba(235, 20, 120, 0.3);
}

.module-item.disabled {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.module-icon {
    font-size: 1rem;
}

.module-item span {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
}

/* Scalability Interface Styles */
.scalability-interface {
    padding: 1rem;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scalability-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scalability-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.scale-indicator {
    font-size: 0.7rem;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.scale-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.scale-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.scale-option.active {
    background: rgba(235, 20, 120, 0.2);
    border: 1px solid rgba(235, 20, 120, 0.3);
}

.scale-icon {
    font-size: 1.2rem;
}

.scale-details {
    display: flex;
    flex-direction: column;
}

.scale-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.scale-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Tier Features Panel */
.tier-features-panel {
    background: linear-gradient(135deg, rgba(11, 27, 78, 0.95), rgba(11, 27, 78, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0;
    margin-top: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(235, 20, 120, 0.2), rgba(235, 20, 120, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-badge {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tier-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.tier-status {
    font-size: 0.6rem;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.expand-indicator {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.features-section {
    padding: 16px;
}

.features-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 20, 120, 0.4);
    transform: translateY(-1px);
}

.feature-tag.premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.3);
}

.tag-icon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tag span {
    line-height: 1;
    white-space: nowrap;
}

/* Mobile responsiveness for infrastructure optimization */
@media (max-width: 768px) {
    /* Infrastructure Dashboard Mobile Layout - HIDDEN ON MOBILE */
    .infrastructure-dashboard {
        display: none !important;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .dashboard-title {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-item {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Optimization Grid Mobile */
    .optimization-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .optimization-metric {
        padding: 0.8rem;
    }
    
    .metric-header {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 0.4rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .metric-trend {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }
    
    .metric-value {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }
    
    .metric-previous {
        font-size: 0.65rem;
    }
    
    /* Module Configuration Mobile */
    .module-config {
        padding: 0.8rem;
        margin-top: 0.75rem;
    }
    
    .config-header {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        text-align: center;
    }
    
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .module-item {
        padding: 0.6rem 0.4rem;
        gap: 0.25rem;
    }
    
    .module-icon {
        font-size: 0.9rem;
    }
    
    .module-item span {
        font-size: 0.55rem;
        line-height: 1.1;
    }
    
    /* Scalability Interface Mobile - HIDDEN ON MOBILE */
    .scalability-interface {
        display: none !important;
    }
    
    .mobile-payment-flow {
        display: none !important;
    }
    
    .scalability-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .interface-title {
        font-size: 0.8rem;
    }
    
    .business-size-selector {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .size-option {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Tier Features Panel Mobile */
    .tier-features-panel {
        margin-top: 0.8rem;
    }
    
    .panel-header {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    
    .tier-name {
        font-size: 0.8rem;
    }
    
    .tier-status {
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }
    
    .features-section {
        padding: 1rem;
    }
    
    .features-title {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .feature-tags {
        gap: 0.3rem;
        justify-content: center;
    }
    
    .feature-tag {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        gap: 0.3rem;
        border-radius: 12px;
    }
    
    .tag-icon {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimization */
    .infrastructure-dashboard {
        padding: 0.8rem;
        margin: 0 0.25rem;
    }
    
    .dashboard-nav {
        gap: 0.3rem;
    }
    
    .nav-item {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .optimization-metric {
        padding: 0.6rem;
    }
    
    .metric-value {
        font-size: 0.9rem;
    }
    
    .module-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .module-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.5rem;
    }
    
    .module-item span {
        font-size: 0.6rem;
    }
    
    .size-option {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }
}

/* Payment Gateway Showcase Section */
.payment-showcase {
    padding: 80px 0;
    background: #F5F7FA;
    border-top: 1px solid rgba(11, 27, 78, 0.08);
}

.payment-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Tab Navigation */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(11, 27, 78, 0.1);
}

/* Legacy Tab Navigation (for existing structure) */
.payment-tabs {
    background: #F5F7FA;
    border-radius: 16px;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    max-width: 90%;
    margin: 0 auto 24px auto;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    background: transparent;
    border: none;
    color: #0B1B4E;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    position: relative;
    transform: scale(1);
    white-space: nowrap;
}

.tab-button:hover:not(.active) {
    background: rgba(235, 20, 120, 0.05);
    color: #EB1478;
    transform: scale(1.02);
}

.tab-button.active {
    background: #EB1478;
    color: white;
    box-shadow: 0 4px 12px rgba(235, 20, 120, 0.3);
    font-weight: 700;
    transform: scale(1);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

/* Payment Info */
.payment-info {
    max-width: 400px;
    text-align: center;
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.payment-description {
    font-size: 1.1rem;
    color: #5D6272;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.gateway-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 1rem 2rem;
    margin: 0 auto;
    justify-self: center;
}

.gateway-cta svg {
    transition: transform 0.3s ease;
}

.gateway-cta:hover svg {
    transform: translateX(4px);
}

/* Payment Demo */
.payment-demo {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

/* Partnership Demo for Strategic Advisory */
.partnership-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.partnership-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11, 27, 78, 0.1);
}

/* Mobile Demo */
.mobile-demo {
    transform: scale(0.8);
    transform-origin: top center;
}

.mobile-screen {
    width: 280px;
    height: 500px;
    color: #0B1B4E;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.2);
    border: 8px solid #2d1b69;
    position: relative;
}

.mobile-header {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.9rem;
}

.company-name {
    font-weight: 700;
}

.mobile-content {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.product-info h4 {
    font-size: 1rem;
    color: #0B1B4E;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B1B4E;
}

.mobile-payment {
    background: white;
    border-radius: 12px;
    padding: 1rem;
}

.payment-form h5 {
    font-size: 0.9rem;
    color: #0B1B4E;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.form-row {
    display: flex;
    gap: 0.5rem;
}

.form-input.half {
    flex: 1;
}

.pay-button {
    width: 100%;
    color: #0B1B4E;
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.5rem;
}

/* Desktop Demo */
.desktop-demo {
    transform: scale(0.7);
    transform-origin: top center;
}

.desktop-screen {
    width: 500px;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(11, 27, 78, 0.15);
    border: 1px solid rgba(11, 27, 78, 0.1);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.company-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B1B4E;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.checkout-left h5 {
    font-size: 1rem;
    color: #0B1B4E;
    margin-bottom: 1rem;
    font-weight: 700;
}

.checkout-input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.checkout-input:focus {
    outline: none;
    border-color: #0B1B4E;
    box-shadow: 0 0 0 3px rgba(11, 27, 78, 0.1);
}

.checkout-row {
    display: flex;
    gap: 0.75rem;
}

.checkout-input.half {
    flex: 1;
}

.order-summary {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
}

.product-summary {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-details {
    flex: 1;
}

.summary-title {
    font-size: 0.9rem;
    color: #0B1B4E;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.summary-price {
    font-size: 1rem;
    color: #0B1B4E;
    font-weight: 700;
}

.total-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 0.9rem;
    color: #5D6272;
}

.total-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B1B4E;
}

.checkout-pay-button {
    width: 100%;
    color: #0B1B4E;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checkout-pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 27, 78, 0.4);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0.7;
}

.method-icon {
    font-size: 1.2rem;
}

.demo-placeholder {
    text-align: center;
    color: #5D6272;
    font-style: italic;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

/* In-person Demo Styling */
.inperson-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.15);
    background: linear-gradient(135deg, #EB1478 0%, #D1126A 100%);
    padding: 1rem;
}

.inperson-image {
    width: 100%;
    max-width: 600px;
    min-height: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Partnership Demo Styling */
.partnership-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.15);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    padding: 1rem;
}

.partnership-image {
    width: 100%;
    max-width: 600px;
    min-height: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Banking Section Styling */
.banking-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    min-height: 600px;
}

.banking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(11, 27, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.banking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Banking Visual/Device Mockup */
.banking-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup {
    position: relative;
    display: flex;
    gap: 1rem;
    transform: perspective(1000px) rotateY(-5deg);
}

.banking-mobile-device {
    width: 220px;
    height: 380px;
    background: #0B1B4E;
    border-radius: 25px;
    padding: 15px 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.banking-mobile-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 15px;
    padding: 16px 12px;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

.banking-mobile-header {
    margin-bottom: 18px;
}

.banking-mobile-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #e2e8f0;
}

.banking-mobile-balance {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.transaction-list {
    flex: 1;
    margin-bottom: 20px;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #334155;
    margin-bottom: 6px;
}

.transaction-date {
    font-size: 0.65rem;
    color: #94a3b8;
    flex: 1;
}

.transaction-amount {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-align: right;
}

.banking-mobile-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: auto;
}

.banking-stat-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banking-stat-circle[data-percentage="75"] {
    background: conic-gradient(#0B1B4E 0deg 270deg, #0B1B4E 270deg 360deg);
}

.banking-stat-circle[data-percentage="45"] {
    background: conic-gradient(#10b981 0deg 162deg, #0B1B4E 162deg 360deg);
}

.banking-stat-circle::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: #0f172a;
    border-radius: 50%;
}

.banking-stat-label {
    position: relative;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.banking-chart-area {
    margin-top: 8px;
}

.banking-mini-chart {
    width: 100%;
    height: 30px;
}

.tablet-device {
    width: 300px;
    height: 300px;
    color: #0B1B4E;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(11, 27, 78, 0.4);
    position: relative;
    z-index: 1;
    margin-left: -40px;
}

.tablet-screen {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.payment-capture {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.capture-frame {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner-brackets {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bracket {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid white;
}

.bracket.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.bracket.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.bracket.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.bracket.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.dollar-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.capture-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(11, 27, 78, 0.8);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.device-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.7;
}

/* Banking Info Content */
.banking-info {
    padding-left: 2rem;
}

.banking-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0B1B4E;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.banking-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0B1B4E;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0B1B4E 0%, #0B1B4E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banking-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5D6272;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.banking-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(11, 27, 78, 0.1);
    border: 1px solid rgba(11, 27, 78, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #5D6272;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Payment Showcase - Better mobile layout */
    .payment-showcase {
        padding: 70px 0;
    }
    
    .payment-showcase-container {
        padding: 0 1.5rem;
    }
    
    .tab-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 3rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tab-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .tab-content {
        padding: 0;
    }
    
    .banking-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: left;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .banking-info {
        padding: 0 1rem;
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .banking-visual {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .banking-features {
        order: 2;
        width: 100%;
        margin-top: 1.5rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .banking-title {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .banking-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        text-align: left;
        max-width: 100%;
    }
    
    .payment-demo {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .payment-demo img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(11, 27, 78, 0.15);
    }
    

    
    .feature-item {
        padding: 1.8rem;
        text-align: left;
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        border-left: 4px solid #0B1B4E;
    }
    
    .device-mockup {
        transform: none;
        flex-direction: column;
        align-items: center;
    }
    
    .tablet-device {
        display: none !important;
    }
}

/* Ensure Payment Gateway Mobile Demo Stays Intact */
.mobile-demo .mobile-screen {
    width: 280px;
    height: 500px;
    color: #0B1B4E;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.2);
    border: 8px solid #2d1b69;
    position: relative;
    display: block;
}

.mobile-demo .mobile-header {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

/* ================================
   Contact Modal
   ================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #0B1B4E 0%, #1e3a8a 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(11, 27, 78, 0.4);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
}

.modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.contact-form {
    padding: 0 2rem 2rem 2rem;
    transition: all 0.3s ease;
}

/* Thank You Message Styles */
.thank-you-message {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem auto;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.thank-you-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.thank-you-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    font-family: 'Poppins', sans-serif;
}

.close-modal-btn {
    background: linear-gradient(135deg, #EB1478 0%, #d1126a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 20, 120, 0.3);
}

.close-modal-btn:hover {
    background: linear-gradient(135deg, #d1126a 0%, #b8105c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 20, 120, 0.4);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(235, 20, 120, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.phone-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.country-code {
    width: 120px !important;
    flex-shrink: 0;
}

.custom-country-input {
    width: 120px !important;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.phone-group input[type="tel"] {
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #EB1478 0%, #d1126a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 20, 120, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #d1126a 0%, #b8105c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 20, 120, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Mobile responsiveness for contact modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: none;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .phone-group {
        gap: 0.5rem;
    }
    
    .country-code {
        width: 100px !important;
    }
    
    .custom-country-input {
        width: 100px !important;
    }
    
    /* Thank You Message Mobile */
    .thank-you-message {
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .thank-you-title {
        font-size: 1.3rem;
    }
    
    .thank-you-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        width: 98%;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 1.25rem 1.25rem 0.75rem 1.25rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .contact-form {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .phone-group {
        gap: 0.5rem;
    }
    
    .country-code {
        width: 110px !important;
    }
    
    .custom-country-input {
        width: 110px !important;
    }
    
    /* Thank You Message Small Mobile */
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .thank-you-title {
        font-size: 1.2rem;
    }
    
    .thank-you-text {
        font-size: 0.9rem;
    }
}

/* ================================
   Services Pages Styles
   ================================ */

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #64748B;
}

.breadcrumb a {
    color: #EB1478;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d1126a;
}

.breadcrumb-separator {
    color: #94A3B8;
}

.breadcrumb-current {
    color: #475569;
    font-weight: 500;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.service-hero-subtitle {
    font-size: 1.5rem;
    color: #EB1478;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-hero-description {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.service-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Infrastructure Dashboard */
.infrastructure-dashboard {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EB1478;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.api-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.flow-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(235, 20, 120, 0.2);
    border: 2px solid #EB1478;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EB1478;
    font-weight: bold;
}

.flow-step span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Service Capabilities */
.service-capabilities {
    padding: 80px 0;
    background: white;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(11, 27, 78, 0.08);
    border: 1px solid rgba(11, 27, 78, 0.06);
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(11, 27, 78, 0.12);
}

.capability-icon {
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0B1B4E;
    margin-bottom: 1rem;
}

.capability-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.capability-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-features li {
    color: #475569;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.capability-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #EB1478;
    font-weight: bold;
}

.capability-btn {
    display: inline-block;
    background: #EB1478;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.capability-btn:hover {
    background: #D1126A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 20, 120, 0.3);
}

/* Contact Form Styles */
.contact-form-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(11, 27, 78, 0.1);
    border: 1px solid rgba(11, 27, 78, 0.06);
    width: 100%;
    max-width: 600px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #0B1B4E;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Modal form labels should be white for visibility on dark backgrounds */
.modal .form-group label {
    color: white;
    font-weight: 600;
}

/* Modal header titles should use brand pink color */
.modal-header h3 {
    color: #EB1478;
}

/* Terms of Service Styling */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(11, 27, 78, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h3 {
    color: #0B1B4E;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.terms-section p {
    color: #5A6272;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li {
    color: #5A6272;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.terms-link {
    color: #EB1478;
    text-decoration: underline;
    font-weight: 500;
}

.terms-link:hover {
    color: #0B1B4E;
}

.terms-footer {
    background: rgba(11, 27, 78, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.terms-footer p {
    color: #5A6272;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.terms-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.terms-actions .service-btn-primary,
.terms-actions .service-btn-secondary {
    flex: 0 1 auto;
    min-width: 200px;
}

/* Footer legal links styling */
.footer-legal a {
    color: #5A6272;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #EB1478;
    text-decoration: underline;
}

/* Homepage footer copyright links styling */
.footer-copyright a {
    color: #5A6272;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #EB1478;
    text-decoration: underline;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EB1478;
    box-shadow: 0 0 0 3px rgba(235, 20, 120, 0.1);
}

.contact-submit-btn {
    background: #EB1478;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background: #D1126A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 20, 120, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11, 27, 78, 0.08);
    border: 1px solid rgba(11, 27, 78, 0.06);
    text-align: center;
}

.contact-info-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.contact-info-card h4 {
    color: #0B1B4E;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: #64748B;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

/* Thank You Page Styles */
.thank-you-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.thank-you-card {
    background: white;
    border-radius: 16px;
    padding: 4rem;
    box-shadow: 0 8px 30px rgba(11, 27, 78, 0.1);
    border: 1px solid rgba(11, 27, 78, 0.06);
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-card h3 {
    color: #0B1B4E;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.thank-you-card p {
    color: #64748B;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.next-steps {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h4 {
    color: #0B1B4E;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    color: #475569;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #EB1478;
    font-weight: bold;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Contact Page Body Spacing */
.service-page .service-capabilities {
    padding-top: 6rem;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .thank-you-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: #F8FAFC;
}

.process-timeline {
    display: grid;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: #EDF1F7;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(11, 27, 78, 0.12);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 27, 78, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EB1478 0%, #d1126a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(235, 20, 120, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0B1B4E;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.step-deliverables li {
    color: #475569;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.step-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #EB1478;
    font-weight: bold;
}

/* Technology Stack */
.service-tech-stack {
    padding: 80px 0;
    background: white;
}

.tech-categories {
    display: grid;
    gap: 3rem;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0B1B4E;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.tech-logo {
    background: #F8FAFC;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #475569;
    border: 1px solid rgba(11, 27, 78, 0.06);
    transition: all 0.3s ease;
}

.tech-logo:hover {
    background: rgba(235, 20, 120, 0.05);
    color: #EB1478;
    border-color: rgba(235, 20, 120, 0.2);
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B1B4E 0%, #1e3a8a 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .api-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .step-number {
        justify-self: center;
    }
    
    .tech-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 60px 0;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .infrastructure-dashboard {
        padding: 1.5rem;
    }
    
    .capability-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-deliverables {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Bill Payments Section
   ================================ */

.bill-payments {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.bill-payments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bill-payments-visual {
    display: flex;
    justify-content: center;
    position: relative;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overlapping-devices {
    position: relative;
    width: 400px;
    height: 350px;
}

/* Mobile Verification Device */
.mobile-verification {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 280px;
    background: #0B1B4E;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(30, 41, 59, 0.3);
    z-index: 2;
}

.verification-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.verification-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
    font-size: 16px;
}

.header-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
}

.verification-steps {
    margin-bottom: 24px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.step-icon {
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: 700;
}

.step-text {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.verification-chart {
    margin-top: auto;
}

.chart-bar {
    height: 8px;
    background: #0B1B4E;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    margin-bottom: 8px;
}

.bar-segment.pink {
    background: linear-gradient(135deg, #EB1478, #D1126A);
}

.bar-segment.green {
    background: #10b981;
}

.chart-label {
    font-size: 0.7rem;
    color: #5D6272;
    text-align: right;
}

/* Purple Payment Card */
.blue-payment-card {
    position: absolute;
    top: 40px;
    right: 0;
    width: 240px;
    height: 160px;
    color: #0B1B4E;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.3);
    z-index: 1;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 8px 0;
}

/* Bill Payments Info */
.bill-payments-info {
    padding-right: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bill-payments-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0B1B4E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.bill-payments-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.bill-payments-description {
    font-size: 1.1rem;
    color: #5D6272;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.service-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(11, 27, 78, 0.05);
    border-radius: 12px;
    border-left: 4px solid #0B1B4E;
}

.service-icon {
    background: rgba(11, 27, 78, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.95rem;
    color: #5D6272;
    line-height: 1.5;
}



/* Responsive Design */
@media (max-width: 768px) {
    .bill-payments {
        padding: 4rem 0;
    }
    
    .bill-payments-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .bill-payments-info {
        padding-right: 0;
    }
    
    .bill-payments-title {
        font-size: 2rem;
    }
    
    .overlapping-devices {
        width: 300px;
        height: 250px;
        margin: 0 auto;
    }
    
    .mobile-verification {
        width: 160px;
        height: 220px;
    }
    
    .blue-payment-card {
        width: 200px;
        height: 140px;
        top: 30px;
    }
    

}

/* ================================
   Payments Intelligence Section
   ================================ */

.payments-intelligence {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0B1B4E 0%, #0B1B4E 50%, #0B1B4E 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.payments-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(11, 27, 78, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.intelligence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.intelligence-info {
    padding-right: 2rem;
}

.intelligence-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.intelligence-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.intelligence-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.fraud-services {
    margin-bottom: 3rem;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.service-card-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.service-card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}



/* Intelligence Visual */
.intelligence-visual {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.desktop-dashboard {
    flex: 1;
    transform: perspective(1000px) rotateY(-5deg);
}

.dashboard-screen {
    background: #0B1B4E;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.dashboard-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dashboard-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item.active {
    color: #0B1B4E;
    border-bottom: 2px solid #0B1B4E;
    padding-bottom: 2px;
}

.transaction-grid {
    max-height: 300px;
    overflow-y: auto;
}

.transaction-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.transaction-time {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Courier New', monospace;
}

.transaction-amount {
    color: white;
    font-weight: 700;
    text-align: right;
}

.transaction-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
}

.transaction-status.approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.transaction-status.declined {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.transaction-status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #EB1478;
}

/* Mobile Payment Flow */
.mobile-payment-flow {
    width: 200px;
    margin-left: 2rem;
}

.mobile-payment-screen {
    width: 200px;
    height: 360px;
    background: #0B1B4E;
    border-radius: 25px;
    padding: 15px 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 8px solid #374151;
    position: relative;
}

.mobile-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.status-icons {
    display: flex;
    gap: 0.5rem;
    font-size: 0.7rem;
}

.payment-interface {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    height: calc(100% - 3rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.payment-card {
    text-align: center;
}

.card-visual {
    width: 120px;
    height: 75px;
    color: #0B1B4E;
    border-radius: 8px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(11, 27, 78, 0.3);
}

.card-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #5D6272;
    font-family: 'Courier New', monospace;
}

.payment-status {
    text-align: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #0B1B4E;
    font-size: 0.9rem;
    font-weight: 600;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #0B1B4E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .payments-intelligence {
        padding: 3rem 0;
    }
    
    .intelligence-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .intelligence-info {
        padding-right: 0;
        max-width: 100%;
    }
    
    .intelligence-label {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .intelligence-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .intelligence-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .fraud-services {
        margin-bottom: 2rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .service-card-icon {
        margin: 0 auto;
        width: fit-content;
    }
    
    .service-card-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .intelligence-visual {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .desktop-dashboard {
        transform: none;
        max-width: 100%;
        width: 100%;
    }
    
    .mobile-payment-flow {
        margin-left: 0;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .payments-intelligence {
        padding: 2.5rem 0;
    }
    
    .intelligence-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .intelligence-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    
    .intelligence-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .service-card-title {
        font-size: 0.95rem;
    }
    
    .service-card-description {
        font-size: 0.8rem;
    }
}


/* ================================
   Global Reach Section
   ================================ */

.global-reach {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f1f5f9 100%);
    position: relative;
}

.global-reach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.global-reach-info {
    padding-right: 2rem;
}

.global-reach-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0B1B4E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.global-reach-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.global-reach-description {
    font-size: 1.1rem;
    color: #5D6272;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.global-reach-cta {
    color: #0B1B4E;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 27, 78, 0.3);
}

.global-reach-cta:hover {
    color: #0B1B4E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 27, 78, 0.4);
}

.global-reach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.geometric-illustration {
    position: relative;
    width: 400px;
    height: 400px;
}

.network-graphic {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Global Statistics */
.global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0B1B4E, #0B1B4E);
    opacity: 0.6;
}

.stat-label {
    font-size: 0.95rem;
    color: #5D6272;
    line-height: 1.4;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .global-reach {
        padding: 4rem 0;
    }
    
    .global-reach-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .global-reach-info {
        padding-right: 0;
    }
    
    .global-reach-title {
        font-size: 2rem;
    }
    
    .geometric-illustration {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .global-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .global-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
}

/* ================================
   Call to Action Section
   ================================ */

.cta-section {
    background: linear-gradient(135deg, #0B1B4E 0%, #0B1B4E 50%, #0B1B4E 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    color: #0B1B4E;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(11, 27, 78, 0.4);
    text-transform: none;
}

.cta-button:hover {
    color: #0B1B4E;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(11, 27, 78, 0.5);
}

/* ================================
   Footer
   ================================ */

.footer {
    background: #0B1B4E;
    color: white;
    padding-top: 4rem;
    position: relative;
    margin-top: -2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.footer-column {
    position: relative;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.footer-title:not(:empty)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0B1B4E, #0B1B4E);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-links a:hover {
    color: #EB1478;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #EB1478;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 20, 120, 0.3);
    border-color: #EB1478;
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.facebook:hover {
    background: #4267b2;
}

.social-link.instagram:hover {
    background: #e4405f;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 2rem 0;
    text-align: center;
}

.footer-copyright {
    color: #5D6272;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .footer {
        margin-top: -1rem;
        padding-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive Design for Payment Section */
@media (max-width: 1024px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-demo {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-demo, .desktop-demo {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .payment-showcase {
        padding: 60px 0;
    }
    
    .payment-tabs {
        flex-wrap: wrap;
        max-width: 100%;
        margin-bottom: 2rem;
        padding: 6px 12px;
        gap: 8px;
    }
    
    .tab-button {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-width: calc(33.333% - 6px);
        text-align: center;
    }
    
    .payment-title {
        font-size: 2rem;
    }
    
    .payment-description {
        font-size: 1rem;
    }
    
    .payment-demo {
        gap: 1rem;
    }
    
    .mobile-demo, .desktop-demo {
        transform: scale(0.8);
    }
    
    .payment-showcase-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .payment-tabs {
        margin: 0 -1rem 2rem -1rem;
        border-radius: 12px;
        padding: 8px;
        gap: 6px;
    }
    
    .tab-button {
        padding: 8px 14px;
        font-size: 0.8rem;
        flex: 1;
        min-width: auto;
    }
    
    .payment-title {
        font-size: 1.8rem;
    }
    
    .mobile-demo, .desktop-demo {
        transform: scale(0.7);
    }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.nav-menu a:focus,
.tab-button:focus,
.form-input:focus,
.checkout-input:focus {
    outline: 2px solid #0B1B4E;
    outline-offset: 2px;
}

/* Text-only links and CTA links */
a.text-link {
    color: #0057FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.text-link:hover {
    text-decoration: underline;
    color: #EB1478;
}

/* CTA text links */
a.cta-link {
    color: #EB1478;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

a.cta-link:hover {
    text-decoration: underline;
    color: #D1126A;
}
/* Service Page Styles - Matching Homepage Branding */

/* Service Page Layout */
.service-page {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 50%, #EEF2F9 100%);
    min-height: 100vh;
    color: #5A6272;
}

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px;
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.service-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #0B1B4E;
    letter-spacing: -2px;
}

.service-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.service-breadcrumb a {
    color: #5A6272;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: #EB1478;
}

.service-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #5A6272;
}

/* Service Buttons - Matching Homepage */
.service-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-btn-primary {
    background: #EB1478;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 20, 120, 0.3);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(235, 20, 120, 0.4);
    background: #D1126A;
}

.service-btn-secondary {
    background: #FFFFFF;
    color: #0B1B4E;
    border: 2px solid #0B1B4E;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(11, 27, 78, 0.1);
}

.service-btn-secondary:hover {
    background: #0B1B4E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 27, 78, 0.3);
}

/* Service Section Styling */
.service-section {
    padding: 80px 0;
    background: white;
}

.service-section:nth-child(even) {
    background: #F8FAFC;
}

/* Implementation Process Section - Violet/Lilac Background */
.service-process {
    padding: 80px 0;
    background: #F5F7FA;
    border-top: 1px solid rgba(11, 27, 78, 0.08);
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1B4E;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.service-section .section-subtitle {
    font-size: 1.2rem;
    color: #5A6272;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-capability-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(11, 27, 78, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 27, 78, 0.05);
}

.service-capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 27, 78, 0.15);
}

.service-capability-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1rem;
}

.service-capability-card p {
    color: #5A6272;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-capability-card ul {
    list-style: none;
    padding: 0;
}

.service-capability-card li {
    color: #5A6272;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-capability-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #EB1478;
    font-weight: bold;
}

/* Implementation Timeline */
.implementation-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.timeline-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(11, 27, 78, 0.1);
    border: 1px solid rgba(11, 27, 78, 0.05);
}

.timeline-step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #EB1478;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.timeline-step p {
    color: #5A6272;
    line-height: 1.6;
}

/* Technology Stack Grid */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tech-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(11, 27, 78, 0.1);
    border: 1px solid rgba(11, 27, 78, 0.05);
}

.tech-category h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B1B4E;
    margin-bottom: 1.5rem;
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-logo {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 27, 78, 0.05);
}

.tech-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 27, 78, 0.1);
    background: white;
}

.tech-logo span {
    font-weight: 600;
    color: #0B1B4E;
    font-size: 0.9rem;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, #0B1B4E 0%, #1a2a5e 50%, #EB1478 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta {
    background: linear-gradient(135deg, #0B1B4E 0%, #1a2a5e 50%, #EB1478 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.service-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.service-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.service-cta-section .service-cta-buttons {
    position: relative;
    z-index: 1;
    justify-content: center;
    display: flex;
}

.cta-content .service-cta-buttons {
    justify-content: center;
    display: flex;
}

/* Dashboard Styles for Service Pages */
.service-dashboard,
.infrastructure-dashboard {
    background: linear-gradient(135deg, #1e2a4a 0%, #2a3a6a 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 15px 30px rgba(11, 27, 78, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.dashboard-status,
.status-indicator {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator .status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #EB1478;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .service-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .implementation-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-section {
        padding: 60px 0;
    }
    
    .service-section h2 {
        font-size: 2rem;
    }
    
    .implementation-timeline {
        grid-template-columns: 1fr;
    }
    
    .service-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-btn-primary,
    .service-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 80px 0 40px;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-container {
        padding: 0 1rem;
    }
    
    .service-capability-card,
    .timeline-step,
    .tech-category {
        padding: 1.5rem;
    }
    
    .service-cta-section {
        padding: 60px 0;
    }
    
    .service-cta-section h2 {
        font-size: 2rem;
    }
}

/* Infrastructure Dashboard Specific Styles */
.infrastructure-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.infrastructure-flow .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.infrastructure-flow .flow-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.infrastructure-flow .flow-step span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.infrastructure-status {
    margin-top: 1.5rem;
}

.service-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.healthy {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-badge.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive adjustments for infrastructure dashboard */
@media (max-width: 768px) {
    .infrastructure-flow {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .infrastructure-flow .flow-step {
        flex: 1 1 40%;
        min-width: 120px;
    }
    
    .service-status {
        padding: 0.5rem 0.75rem;
    }
    
    .service-name {
        font-size: 0.85rem;
    }
    
    .status-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .infrastructure-flow .flow-step {
        flex: 1 1 100%;
        margin-bottom: 0.5rem;
    }
    
    .infrastructure-flow .flow-icon {
        font-size: 1.2rem;
    }
}

/* Force browser refresh - Mon Aug  4 08:44:00 PM UTC 2025 */
