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

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 1s ease-in-out;
}

.loading-screen.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(42, 108, 202, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.bg-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.bg-particle:nth-child(2) { top: 30%; left: 20%; animation-delay: 1s; }
.bg-particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 2s; }
.bg-particle:nth-child(4) { top: 50%; left: 40%; animation-delay: 3s; }
.bg-particle:nth-child(5) { top: 60%; left: 50%; animation-delay: 4s; }
.bg-particle:nth-child(6) { top: 70%; left: 60%; animation-delay: 5s; }
.bg-particle:nth-child(7) { top: 80%; left: 70%; animation-delay: 0.5s; }
.bg-particle:nth-child(8) { top: 90%; left: 80%; animation-delay: 1.5s; }
.bg-particle:nth-child(9) { top: 10%; left: 90%; animation-delay: 2.5s; }
.bg-particle:nth-child(10) { top: 25%; left: 85%; animation-delay: 3.5s; }

/* Logo Animation */
.logo-container {
    position: relative;
    z-index: 3;
    margin-bottom: 3rem;
    animation: logoFloat 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(42, 108, 202, 0.3);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: logoShine 2s ease-in-out infinite;
}

.logo img {
    width: 80px;
    height: 80px;
    z-index: 2;
    position: relative;
}

/* We Are Live Text */
.live-text {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    z-index: 3;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.live-text .highlight {
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.live-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

/* Countdown Container */
.countdown-container {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
}

.countdown-number {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1;
    position: relative;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.countdown-number.active {
    animation: countdownActive 0.8s ease forwards;
}

.countdown-number.fade-out {
    animation: countdownFadeOut 0.5s ease forwards;
}

/* Celebration Effects */
.celebration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.celebration.active {
    opacity: 1;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2A6CCA;
    animation: confettiFall 3s ease-in-out infinite;
}

.confetti:nth-child(1) { left: 10%; animation-delay: 0s; background: #2A6CCA; }
.confetti:nth-child(2) { left: 20%; animation-delay: 0.2s; background: #DE4443; }
.confetti:nth-child(3) { left: 30%; animation-delay: 0.4s; background: #2A6CCA; }
.confetti:nth-child(4) { left: 40%; animation-delay: 0.6s; background: #DE4443; }
.confetti:nth-child(5) { left: 50%; animation-delay: 0.8s; background: #2A6CCA; }
.confetti:nth-child(6) { left: 60%; animation-delay: 1s; background: #DE4443; }
.confetti:nth-child(7) { left: 70%; animation-delay: 1.2s; background: #2A6CCA; }
.confetti:nth-child(8) { left: 80%; animation-delay: 1.4s; background: #DE4443; }
.confetti:nth-child(9) { left: 90%; animation-delay: 1.6s; background: #2A6CCA; }

.fireworks {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: firework 2s ease-in-out infinite;
}

.fireworks:nth-child(1) { top: 20%; left: 25%; animation-delay: 0s; }
.fireworks:nth-child(2) { top: 30%; left: 75%; animation-delay: 0.5s; }
.fireworks:nth-child(3) { top: 60%; left: 50%; animation-delay: 1s; }
.fireworks:nth-child(4) { top: 40%; left: 15%; animation-delay: 1.5s; }
.fireworks:nth-child(5) { top: 70%; left: 85%; animation-delay: 2s; }

/* Final Message */
.final-message {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    z-index: 3;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: finalMessage 1s ease 1s forwards;
    display: none;
}

.final-message .highlight {
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Bar */
.progress-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    width: 0%;
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

/* Loading Screen Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

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

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countdownPop {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes countdownActive {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes countdownFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes underlineGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(42, 108, 202, 0.5); }
    50% { box-shadow: 0 0 20px rgba(42, 108, 202, 0.8); }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes firework {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes finalMessage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2A6CCA;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    transition: width 0.3s ease;
}

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

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sign-in-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: transparent;
    color: #2a6cca;
    border: 2px solid #2a6cca;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.sign-in-btn:hover {
    background: #2a6cca;
    color: white;
    transform: translateY(-2px);
}

.sign-up-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: #2a6cca;
    color: white;
    border: 2px solid #2a6cca;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.sign-up-btn:hover {
    background: transparent;
    color: #2a6cca;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    position: relative;
    overflow: hidden;
}

/* Clean Video-Only Hero Section */
.hero-video-only {
    background: transparent;
}

.hero-video-only .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-only .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-only .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    z-index: 2;
}

.hero-video-only .video-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

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

.hero-video-only .hero-content {
    color: white;
}

.hero-video-only .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-video-only .title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.hero-video-only .title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-video-only .title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-video-only .highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-video-only .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-video-only .hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-video-only .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-video-only .btn-primary {
    background: #2a6cca;
    color: white;
    border: 2px solid #2a6cca;
}

.hero-video-only .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-video-only .btn-secondary {
    background: white;
    color: #2a6cca;
    border: 2px solid white;
}

.hero-video-only .btn-secondary:hover {
    background: #2a6cca;
    color: #ffffff;
    border: none;
    transform: translateY(-2px);
}

.hero-video-only .hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-only .hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-video-only .hero-fintech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-video-only .hero-fintech-image:hover {
    transform: scale(1.05);
}

.hero-video-only .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    pointer-events: none;
}

.hero-video-only .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
    z-index: 4;
}

.hero-video-only .scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
    animation: bounce 2s infinite;
}

.hero-video-only .scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
}

/* Mobile video fallback */
.video-fallback-active .hero-video {
    display: none;
}

.video-fallback-active .video-fallback {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 2;
}

.video-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

/* Enhanced Fintech Elements */
.fintech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.financial-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.symbol {
    position: absolute;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    animation: floatSymbol 8s ease-in-out infinite;
    user-select: none;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.symbol:hover {
    color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.symbol-dollar { top: 12%; left: 8%; animation-delay: 0s; }
.symbol-euro { top: 20%; right: 12%; animation-delay: 1.2s; }
.symbol-pound { bottom: 25%; left: 15%; animation-delay: 2.8s; }
.symbol-yen { bottom: 15%; right: 20%; animation-delay: 4.2s; }
.symbol-rupee { top: 45%; left: 5%; animation-delay: 5.6s; }
.symbol-bitcoin { top: 55%; right: 8%; animation-delay: 6.8s; }
.symbol-won { top: 35%; left: 12%; animation-delay: 1.8s; }
.symbol-franc { bottom: 40%; right: 15%; animation-delay: 3.4s; }

.tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    animation: pulseIcon 4s ease-in-out infinite;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.tech-icon svg {
    width: 30px;
    height: 30px;
}

.circuit-chip { top: 18%; left: 22%; animation-delay: 0.8s; }
.cloud-server { top: 28%; right: 28%; animation-delay: 2.1s; }
.security-shield { bottom: 22%; left: 12%; animation-delay: 3.5s; }
.data-analytics { bottom: 32%; right: 18%; animation-delay: 5.1s; }
.network-globe { top: 42%; left: 10%; animation-delay: 6.5s; }
.blockchain { top: 52%; right: 15%; animation-delay: 7.9s; }

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: flowLine 6s linear infinite;
}

.circuit-line.line-1 {
    width: 2px;
    height: 220px;
    top: 18%;
    left: 28%;
    animation-delay: 0s;
}

.circuit-line.line-2 {
    width: 180px;
    height: 2px;
    top: 38%;
    right: 22%;
    animation-delay: 1.5s;
}

.circuit-line.line-3 {
    width: 2px;
    height: 200px;
    bottom: 18%;
    left: 58%;
    animation-delay: 3s;
}

.circuit-line.line-4 {
    width: 120px;
    height: 2px;
    top: 52%;
    left: 15%;
    animation-delay: 4.5s;
}

.circuit-line.line-5 {
    width: 2px;
    height: 160px;
    top: 25%;
    right: 35%;
    animation-delay: 6s;
}

/* Data Flow Particles */
.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFlow 8s linear infinite;
}

.particle-1 { top: 20%; left: 30%; animation-delay: 0s; }
.particle-2 { top: 40%; right: 25%; animation-delay: 1.5s; }
.particle-3 { bottom: 30%; left: 60%; animation-delay: 3s; }
.particle-4 { top: 50%; left: 15%; animation-delay: 4.5s; }
.particle-5 { top: 60%; right: 20%; animation-delay: 6s; }
.particle-6 { bottom: 20%; left: 40%; animation-delay: 7.5s; }

/* Mockup 2: Circuit Board Pattern */
.mockup-2 {
    display: none;
}

.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.board-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: circuitPulse 4s ease-in-out infinite;
}

.board-line.horizontal-1 {
    width: 300px;
    height: 2px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.board-line.horizontal-2 {
    width: 250px;
    height: 2px;
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.board-line.horizontal-3 {
    width: 200px;
    height: 2px;
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.board-line.vertical-1 {
    width: 2px;
    height: 200px;
    top: 15%;
    left: 30%;
    animation-delay: 0.5s;
}

.board-line.vertical-2 {
    width: 2px;
    height: 180px;
    top: 35%;
    right: 25%;
    animation-delay: 1.5s;
}

.board-line.vertical-3 {
    width: 2px;
    height: 160px;
    bottom: 20%;
    left: 60%;
    animation-delay: 2.5s;
}

.board-line.diagonal-1 {
    width: 150px;
    height: 2px;
    top: 40%;
    left: 25%;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.board-line.diagonal-2 {
    width: 120px;
    height: 2px;
    bottom: 35%;
    right: 30%;
    transform: rotate(-45deg);
    animation-delay: 3.5s;
}

.circuit-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-core {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: nodePulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.currency-symbol {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.node-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.connection {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    animation: connectionFlow 2s linear infinite;
}

.connection-1 {
    width: 40px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation-delay: 0s;
}

.connection-2 {
    width: 2px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation-delay: 0.5s;
}

.connection-3 {
    width: 35px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 1s;
}

.connection-4 {
    width: 2px;
    height: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation-delay: 1.5s;
}

.connection-5 {
    width: 30px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    animation-delay: 2s;
}

.connection-6 {
    width: 2px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    animation-delay: 2.5s;
}

.connection-7 {
    width: 25px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    animation-delay: 3s;
}

.connection-8 {
    width: 2px;
    height: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
    animation-delay: 3.5s;
}

.connection-9 {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    animation-delay: 4s;
}

.connection-10 {
    width: 2px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    animation-delay: 4.5s;
}

.connection-11 {
    width: 15px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
    animation-delay: 5s;
}

.connection-12 {
    width: 2px;
    height: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-225deg);
    animation-delay: 5.5s;
}

.node-1 { top: 15%; left: 20%; }
.node-2 { top: 25%; right: 20%; }
.node-3 { bottom: 30%; left: 15%; }
.node-4 { bottom: 20%; right: 25%; }
.node-5 { top: 50%; left: 10%; }
.node-6 { top: 60%; right: 15%; }

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flow-indicator {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: dataFlow 3s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.flow-1 { top: 20%; left: 30%; animation-delay: 0s; }
.flow-2 { top: 40%; right: 30%; animation-delay: 0.5s; }
.flow-3 { bottom: 30%; left: 50%; animation-delay: 1s; }
.flow-4 { top: 50%; left: 20%; animation-delay: 1.5s; }
.flow-5 { top: 60%; right: 25%; animation-delay: 2s; }
.flow-6 { bottom: 20%; left: 40%; animation-delay: 2.5s; }

/* Mockup 3: Abstract Fintech Visualization */
.mockup-3 {
    display: none;
}

.currency-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbFloat 6s ease-in-out infinite;
}

.orb-inner {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: orbPulse 4s ease-in-out infinite;
}

.orb-symbol {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.orb-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: orbRotate 8s linear infinite;
}

.orb-1 { top: 15%; left: 10%; animation-delay: 0s; }
.orb-2 { top: 25%; right: 15%; animation-delay: 1s; }
.orb-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.orb-4 { bottom: 20%; right: 25%; animation-delay: 3s; }
.orb-5 { top: 50%; left: 8%; animation-delay: 4s; }
.orb-6 { top: 60%; right: 12%; animation-delay: 5s; }

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: gridPulse 5s ease-in-out infinite;
}

.grid-h-1 {
    width: 400px;
    height: 1px;
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.grid-h-2 {
    width: 350px;
    height: 1px;
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.grid-h-3 {
    width: 300px;
    height: 1px;
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.grid-v-1 {
    width: 1px;
    height: 300px;
    top: 20%;
    left: 30%;
    animation-delay: 0.5s;
}

.grid-v-2 {
    width: 1px;
    height: 250px;
    top: 35%;
    right: 30%;
    animation-delay: 2s;
}

.grid-v-3 {
    width: 1px;
    height: 200px;
    bottom: 25%;
    left: 60%;
    animation-delay: 3.5s;
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: streamFlow 4s linear infinite;
}

.stream-1 {
    width: 200px;
    height: 2px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.stream-2 {
    width: 150px;
    height: 2px;
    top: 45%;
    right: 25%;
    animation-delay: 1s;
}

.stream-3 {
    width: 180px;
    height: 2px;
    bottom: 35%;
    left: 40%;
    animation-delay: 2s;
}

.stream-4 {
    width: 120px;
    height: 2px;
    top: 55%;
    right: 20%;
    animation-delay: 3s;
}

.holographic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.holo-element {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: holoFloat 5s ease-in-out infinite;
}

.holo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: holoGlow 3s ease-in-out infinite;
}

.holo-1 { top: 20%; left: 25%; animation-delay: 0s; }
.holo-2 { top: 40%; right: 30%; animation-delay: 1.2s; }
.holo-3 { bottom: 25%; left: 15%; animation-delay: 2.4s; }
.holo-4 { bottom: 40%; right: 20%; animation-delay: 3.6s; }

/* Mockup Selector */
.mockup-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-btn {
    padding: 8px 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.mockup-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.mockup-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animations for fintech elements */
@keyframes floatSymbol {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
        opacity: 0.25;
    }
}

@keyframes pulseIcon {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

@keyframes flowLine {
    0% { 
        opacity: 0; 
        transform: scaleY(0);
    }
    50% { 
        opacity: 1; 
        transform: scaleY(1);
    }
    100% { 
        opacity: 0; 
        transform: scaleY(0);
    }
}

@keyframes particleFlow {
    0% { 
        opacity: 0; 
        transform: translateX(0) translateY(0) scale(0);
    }
    25% { 
        opacity: 1; 
        transform: translateX(50px) translateY(-20px) scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(100px) translateY(-40px) scale(0.8);
    }
    75% { 
        opacity: 0.4; 
        transform: translateX(150px) translateY(-60px) scale(0.6);
    }
    100% { 
        opacity: 0; 
        transform: translateX(200px) translateY(-80px) scale(0);
    }
}

/* Circuit Board Animations */
@keyframes circuitPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scaleX(1.1);
    }
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

@keyframes connectionFlow {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scaleX(0);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scaleX(1);
    }
    100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scaleX(0);
    }
}

@keyframes dataFlow {
    0% { 
        opacity: 0; 
        transform: scale(0);
    }
    25% { 
        opacity: 1; 
        transform: scale(1);
    }
    75% { 
        opacity: 0.8; 
        transform: scale(1.2);
    }
    100% { 
        opacity: 0; 
        transform: scale(0);
    }
}

/* Abstract Visualization Animations */
@keyframes orbFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(180deg); 
    }
}

@keyframes orbPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

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

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scaleX(1.2);
    }
}

@keyframes streamFlow {
    0% { 
        opacity: 0; 
        transform: translateX(-100px);
    }
    50% { 
        opacity: 1; 
        transform: translateX(0);
    }
    100% { 
        opacity: 0; 
        transform: translateX(100px);
    }
}

@keyframes holoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(10deg); 
    }
}

@keyframes holoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #2a6cca;
    color: white;
    border: 2px solid #2a6cca;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: white;
    color: #2a6cca;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: #2a6cca;
    color: #ffffff;
    border: none;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-fintech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-fintech-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 900px;
    /* text-align: center; */
    margin: 0 auto;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background: #f8fafc;
}

.content-image {
    position: relative;
}

.image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: #2A6CCA;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Empowering Section */
.empowering {
    padding: 100px 0;
    background: white;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.unified-service-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.main-service-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    pointer-events: none;
}

.service-hero {
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.badge-text {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.service-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.integrated-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 3rem;
    background: white;
}

.service-module {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-module:hover::before {
    opacity: 1;
}

.service-module:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-module:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
}

.module-icon i {
    font-size: 2rem;
    color: white;
}

.service-module h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-module p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    position: relative;
    z-index: 2;
}

.service-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    align-items: center;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    text-decoration: none;
}

.cta-buttons .btn-primary {
    background: #2a6cca;
    color: white;
    border: 2px solid #2a6cca;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-secondary {
    background: white;
    color: #2a6cca;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: #2a6cca;
    color: #ffffff;
    border: none;
    transform: translateY(-2px);
}

.cta-buttons .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover svg {
    transform: translateX(5px);
}

.cta-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

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

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.member-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.member-icon i {
    font-size: 2.5rem;
    color: white;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #2A6CCA;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    font-size: 1rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.credential {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.credential::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.credential::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.credential:hover {
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(42, 108, 202, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.credential:hover::before {
    left: 100%;
}

.credential:hover::after {
    width: 100px;
    height: 100px;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: white;
    color: #2A6CCA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.member-social a:hover {
    background: #2A6CCA;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Stories Section */
.stories {
    padding: 100px 0;
    background: #f8fafc;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.story-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.story-icon i {
    font-size: 1.5rem;
    color: white;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2A6CCA;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question:active {
    transform: scale(0.98);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    color: #2A6CCA;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: #2A6CCA;
    color: white;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
    opacity: 1;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2A6CCA;
}

/* Error message styles */
.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Form feedback styles */
.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-feedback.success {
    background-color: #f0fff4;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.form-feedback.error {
    background-color: #fed7d7;
    color: #742a2a;
    border: 1px solid #feb2b2;
}

/* Button loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner {
    margin-left: 0.5rem;
}

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

.info-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
}

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

.product-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #2A6CCA;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    color: #666;
    line-height: 1.6;
}

.products-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.products-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background: #f8fafc;
}

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

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-card i {
    font-size: 2.5rem;
    color: #2A6CCA;
    margin-bottom: 1rem;
}

.industry-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #333;
}

.industry-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.industries-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.industries-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Technology Section */
.technology {
    padding: 0;
    background: white;
}

.tech-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 80px;
}

.tech-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.banner-overlay h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-overlay p {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive banner styles */
@media (max-width: 768px) {
    .tech-banner {
        height: 300px;
        margin-bottom: 60px;
    }
    
    .banner-overlay h2 {
        font-size: 2rem;
    }
    
    .banner-overlay p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

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

.tech-feature {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-feature i {
    font-size: 2rem;
    color: #2A6CCA;
    margin-bottom: 1rem;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.tech-feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Stories Conclusion */
.stories-conclusion {
    text-align: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stories-conclusion p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: #a0aec0;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2A6CCA;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2A6CCA;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .mobile-buttons .sign-in-btn,
    .mobile-buttons .sign-up-btn {
        flex: 1;
        max-width: 120px;
    }
    
    /* Video responsive adjustments */
    .hero-video {
        object-position: center center;
    }
    
    /* Mobile video optimizations */
    .hero-video {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Ensure video fallback is visible on mobile */
    .video-fallback {
        display: block;
    }
    
    /* Fintech elements responsive */
    .symbol {
        font-size: 2rem;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .circuit-line.line-1,
    .circuit-line.line-3 {
        height: 120px;
    }
    
    .circuit-line.line-2 {
        width: 100px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-video-only .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-video-only .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-video-only .hero-visual {
        height: 300px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .unified-service-container {
        padding: 0 1rem;
    }
    
    .service-hero {
        padding: 3rem 2rem;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .integrated-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3rem 2rem;
    }
    
    .service-module {
        padding: 2rem 1.5rem;
    }
    
    .module-icon {
        width: 60px;
        height: 60px;
    }
    
    .module-icon i {
        font-size: 1.5rem;
    }
    
    .service-module h4 {
        font-size: 1.2rem;
    }
    
    .service-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-image img {
        height: 300px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .member-icon {
        width: 80px;
        height: 80px;
    }
    
    .member-icon i {
        font-size: 2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile-specific video handling */
@media (max-width: 768px) {
    .hero-video {
        /* Disable video on mobile if it causes issues */
        display: none;
    }
    
    .hero-video-container {
        background: linear-gradient(135deg, #2A6CCA 0%, #DE4443 100%);
    }
    
    .video-fallback {
        display: block !important;
    }
}

/* Loading Screen Responsive Styles */
@media (max-width: 768px) {
    .live-text {
        font-size: 2rem;
    }
    
    .countdown-number {
        font-size: 6rem;
    }
    
    .final-message {
        font-size: 2.5rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .logo img {
        width: 70px;
        height: 70px;
    }
    
    .progress-container {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .live-text {
        font-size: 1.5rem;
    }
    
    .countdown-number {
        font-size: 4rem;
    }
    
    .final-message {
        font-size: 2rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .logo img {
        width: 60px;
        height: 60px;
    }
    
    .progress-container {
        width: 200px;
    }
    
    /* Video and fintech elements for small screens */
    .symbol {
        font-size: 1.5rem;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .circuit-line.line-1,
    .circuit-line.line-3 {
        height: 80px;
    }
    
    .circuit-line.line-2 {
        width: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-video-only .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .hero-video-only .hero-visual {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-credentials {
        gap: 0.3rem;
    }
    
    .credential {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}
