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

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 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.nav-brand h2 {
    color: #059b5a;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #059b5a;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #059b5a;
}

.signup-btn {
    background: linear-gradient(135deg, #059b5a, #047857);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(5, 155, 90, 0.3);
    border: none;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none; /* Hide on desktop */
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 155, 90, 0.4);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #e2e8f0 50%, #cbd5e1 75%, #94a3b8 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 200px 20px 30px; /* More top padding for better header gap */
    position: relative;
    overflow: hidden;
    margin: 0; /* Remove margins */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(5, 155, 90, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(5, 155, 90, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(5, 155, 90, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        background: 
            linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #e2e8f0 50%, #cbd5e1 75%, #94a3b8 100%),
            linear-gradient(90deg, rgba(5, 155, 90, 0.3) 1px, transparent 1px),
            linear-gradient(rgba(5, 155, 90, 0.3) 1px, transparent 1px);
        background-size: 
            cover,
            30px 30px,
            30px 30px;
        background-position: center;
        background-repeat: no-repeat, repeat, repeat;
        min-height: auto;
        padding: 60px 1rem 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        background: 
            linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #e2e8f0 50%, #cbd5e1 75%, #94a3b8 100%),
            linear-gradient(90deg, rgba(5, 155, 90, 0.3) 1px, transparent 1px),
            linear-gradient(rgba(5, 155, 90, 0.3) 1px, transparent 1px);
        background-size: 
            cover,
            30px 30px,
            30px 30px;
        background-position: center;
        background-repeat: no-repeat, repeat, repeat;
        padding: 50px 0.75rem 30px;
    }
}

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

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        justify-items: center;
        text-align: center;
        position: relative;
        z-index: 10;
    }
}

    .hero-left {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
        width: 100%;
    }

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.highlight {
    color: #059b5a;
}

.features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059b5a;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px dashed #059b5a;
    border-radius: 20px;
    font-size: 0.9rem;
}

.feature i {
    color: #059b5a;
    font-size: 1rem;
}

.cta-btn {
    background: #059b5a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 155, 90, 0.3);
}

/* Transfer Calculator */
.transfer-calculator {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease-out 0.6s both;
    overflow: hidden;
}

.exchange-rate-banner {
    background: #e6f7ff;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #059b5a;
    font-weight: 500;
    font-size: 0.9rem;
}

.exchange-rate-banner i:first-child {
    color: #059b5a;
}

.exchange-rate-banner i:last-child {
    margin-left: auto;
    color: #6b7280;
    cursor: pointer;
}

.input-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.currency-input {
    margin-bottom: 1rem;
}

.currency-input label {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-color: #059b5a;
    box-shadow: 0 0 0 3px rgba(5, 155, 90, 0.1);
}

.flag {
    width: 24px;
    height: 16px;
    margin-right: 0.75rem;
    border-radius: 2px;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.currency-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.currency-dropdown:hover {
    background-color: #f3f4f6;
}

.currency-dropdown i {
    font-size: 0.8rem;
}

.exchange-rate, .fee-section, .transfer-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.exchange-rate span:first-child,
.fee-section span:first-child,
.transfer-time span:first-child {
    color: #6b7280;
    font-size: 0.9rem;
}

.exchange-rate span:last-child {
    font-weight: 600;
    color: #059b5a;
}

.fee-amount {
    color: #dc2626;
    font-weight: 600;
}

.transfer-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.transfer-time i {
    color: #6b7280;
    font-size: 0.8rem;
    cursor: pointer;
}

.output-section {
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.transfer-btn {
    width: 100%;
    background: #059b5a;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transfer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 155, 90, 0.3);
}

/* Trust Section */
.trust-section {
    background: #f8fafc;
    padding: 2rem 0;
    text-align: center;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #059669;
}

.trust-badge i {
    color: #059669;
    font-size: 1.2rem;
}

/* Features Section */
.features-section {
    padding: 1rem 0; /* Reduced padding */
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
        linear-gradient(90deg, rgba(5, 155, 90, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(5, 155, 90, 0.08) 1px, transparent 1px);
    background-size: 
        cover,
        40px 40px,
        40px 40px;
    background-repeat: no-repeat, repeat, repeat;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin: 0; /* Remove margins */
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(5, 155, 90, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 8s ease-in-out infinite;
    z-index: 1;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 6s ease-in-out infinite reverse;
    z-index: 1;
}

.promise-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f0f9ff;
    color: #059b5a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 auto 1rem;
    text-align: center;
    width: fit-content;
    opacity: 1 !important;
    visibility: visible !important;
}

.promise-badge i {
    font-size: 0.8rem;
}

.section-subtitle {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

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

.feature-card {
    background-image: linear-gradient(157.05deg, rgba(217, 255, 237, .3) 20.92%, rgba(210, 225, 255, .3) 102.17%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #24cb7138;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-illustration {
    height: 120px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.step-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom:-42px;
}

.security-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    width: 100%;
    height: auto;
    display: block;
}

/* Globe Illustration */
.globe-illustration {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    width: 60px;
    height: 60px;
    background: #059b5a;
    border-radius: 50%;
    position: relative;
}

.globe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
}

.paper-plane {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: #059b5a;
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    transform: rotate(45deg);
}

.currency-symbols {
    position: absolute;
    top: 10px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
    color: #059b5a;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.sparkles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #1f2937;
    border-radius: 50%;
}

.sparkles span:nth-child(1) { top: 20%; left: 20%; }
.sparkles span:nth-child(2) { top: 60%; right: 30%; }
.sparkles span:nth-child(3) { bottom: 30%; left: 40%; }

/* Wallet Illustration */
.wallet-illustration {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 50%;
}

.hand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 40px;
    background: white;
    border-radius: 20px;
}

.wallet {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background: #059b5a;
    border-radius: 8px;
}

.coins {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
}

.coins span {
    width: 8px;
    height: 8px;
    background: #1f2937;
    border-radius: 50%;
}

/* Phone Illustration */
.phone-illustration {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 60px;
    background: #059b5a;
    border-radius: 8px;
}

.phone-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 50px;
    background: white;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.dollar-circle {
    width: 20px;
    height: 20px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.arrow {
    font-size: 0.8rem;
    color: #059b5a;
    font-weight: bold;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 2rem 0; /* Reduced padding */
    background: 
        linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%),
        linear-gradient(90deg, rgba(5, 155, 90, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(5, 155, 90, 0.06) 1px, transparent 1px);
    background-size: 
        cover,
        45px 45px,
        45px 45px;
    background-repeat: no-repeat, repeat, repeat;
    position: relative;
    margin: 0; /* Remove margins */
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 10s ease-in-out infinite;
    z-index: 1;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(5, 155, 90, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 7s ease-in-out infinite reverse;
    z-index: 1;
}



.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(5, 155, 90, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 7s ease-in-out infinite reverse;
    z-index: 1;
}

.get-started-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.get-started-header .promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #059b5a;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(5, 155, 90, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #059b5a;
    transition: all 0.3s ease;
}

.get-started-header .promise-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 155, 90, 0.2);
}

.get-started-header .promise-badge i {
    color: #059b5a;
    font-size: 0.9rem;
}

.get-started-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.get-started-header .title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-header .title-icon i {
    color: #fbbf24;
    font-size: 2rem;
    margin-left: 0.5rem;
}

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

.step {
    background-image: linear-gradient(157.05deg, rgba(217, 255, 237, .3) 20.92%, rgba(210, 225, 255, .3) 102.17%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #24cb7138;
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1f2937;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.step p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Screenshot Cards */
.step-screenshot {
    margin-top: 2rem;
}

.screenshot-card {
    /* background-image: linear-gradient(157.05deg, rgba(217, 255, 237, .3) 20.92%, rgba(210, 225, 255, .3) 102.17%); */
    border-radius: 8px;
    padding: 1.25rem;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    /* border: 1px solid #24cb7138; */
    margin-top: 1rem;
}

.screenshot-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.screenshot-subtitle {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-field label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.input-field input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.input-field input:focus {
    outline: none;
    border-color: #059b5a;
    box-shadow: 0 0 0 3px rgba(5, 155, 90, 0.1);
}

.create-account-btn {
    width: 100%;
    background: #059b5a;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-account-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

.login-link {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

.login-link a {
    color: #059b5a;
    text-decoration: none;
}

/* KYC Status */
.user-welcome {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #059b5a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.welcome-text {
    display: flex;
    flex-direction: column;
}

.welcome-text span {
    font-size: 0.8rem;
    color: #6b7280;
}

.welcome-text strong {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.kyc-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background-image: linear-gradient(157.05deg, rgba(217, 255, 237, .3) 20.92%, rgba(210, 225, 255, .3) 102.17%);
    border: 1px solid #24cb7138;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-card.active {
    background-image: linear-gradient(157.05deg, rgba(217, 255, 237, .5) 20.92%, rgba(210, 225, 255, .5) 102.17%);
    border: 2px solid #24cb7138;
    box-shadow: 0 2px 8px rgba(36, 203, 113, 0.2);
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.status-icon.blue {
    background: #3b82f6;
}

.status-icon.orange {
    background: #f59e0b;
}

.status-icon.green {
    background: #059b5a;
}

.status-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-content span {
    font-size: 0.9rem;
    color: #1f2937;
    font-weight: 500;
}

.start-kyc-btn {
    background: #059b5a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-kyc-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

.status-content i {
    color: #6b7280;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.status-content i:hover {
    color: #374151;
}

/* Transfer Form */
.fx-rate-banner {
    background: #e6f7ff;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #059b5a;
}

.transfer-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transfer-form .input-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.transfer-form label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.amount-input {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.amount-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.currency-dropdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.8rem;
}

.currency-dropdown .flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.rate-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f0f9ff 100%);
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.rate-item span:first-child {
    color: #6b7280;
}

.rate-item span:last-child {
    color: #1f2937;
    font-weight: 500;
}

.send-now-btn {
    width: 100%;
    background: #059b5a;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
}

/* WhatsApp Chat */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Security Section */
.security-section {
    padding: 2rem 0; /* Reduced padding */
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
        linear-gradient(90deg, rgba(5, 155, 90, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(5, 155, 90, 0.04) 1px, transparent 1px);
    background-size: 
        cover,
        50px 50px,
        50px 50px;
    background-repeat: no-repeat, repeat, repeat;
    text-align: center;
    margin: 0; /* Remove margins */
    position: relative;
    overflow: hidden;
}



.security-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 155, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 12s ease-in-out infinite;
    z-index: 1;
}

.security-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 9s ease-in-out infinite reverse;
    z-index: 1;
}

.security-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.security-header .promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #059b5a;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(5, 155, 90, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #059b5a;
    transition: all 0.3s ease;
}

.security-header .promise-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 155, 90, 0.2);
}

.security-header .promise-badge i {
    color: #059b5a;
    font-size: 0.9rem;
}

.security-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.03em;
}

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

.security-card {
    background-image: linear-gradient(157.05deg, rgba(217, 255, 237, .3) 20.92%, rgba(210, 225, 255, .3) 102.17%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #24cb7138;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #047857);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.security-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    border-color: #059669;
}

.security-card:hover::before {
    opacity: 1;
}

.security-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}

.security-card:hover .security-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.4);
}

.security-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.security-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.security-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 280px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 1rem 0; /* Reduced padding */
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
        linear-gradient(90deg, rgba(5, 155, 90, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(5, 155, 90, 0.08) 1px, transparent 1px);
    background-size: 
        cover,
        40px 40px,
        40px 40px;
    background-repeat: no-repeat, repeat, repeat;
    text-align: center;
    margin: 0; /* Remove margins */
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(5, 155, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 9s ease-in-out infinite;
    z-index: 1;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -12%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 7s ease-in-out infinite reverse;
    z-index: 1;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-header .promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #059b5a;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(5, 155, 90, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #059b5a;
    transition: all 0.3s ease;
}

.faq-header .promise-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 155, 90, 0.2);
}

.faq-header .promise-badge i {
    color: #059b5a;
    font-size: 0.9rem;
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.03em;
}

.region-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.region-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-btn.active {
    border-color: #059b5a;
    background: #059b5a;
    color: white;
}

.region-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.region-btn .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%),
        linear-gradient(90deg, rgba(5, 155, 90, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(5, 155, 90, 0.06) 1px, transparent 1px);
    background-size: 
        cover,
        45px 45px,
        45px 45px;
    background-repeat: no-repeat, repeat, repeat;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(5, 155, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 11s ease-in-out infinite;
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 8s ease-in-out infinite reverse;
    z-index: 1;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonials-header .promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #059b5a;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(5, 155, 90, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #059b5a;
    transition: all 0.3s ease;
}

.testimonials-header .promise-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 155, 90, 0.2);
}

.testimonials-header .promise-badge i {
    color: #059b5a;
    font-size: 0.9rem;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-header .title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-header .title-icon i {
    color: #6b7280;
    font-size: 2rem;
    margin-left: 0.5rem;
}

.testimonials-container {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .testimonials-container {
        overflow: visible;
        padding: 0;
        max-width: 100vw;
    }
}

.testimonials-wrapper {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .testimonials-wrapper::-webkit-scrollbar {
        display: none;
    }
}

.testimonial-card {
    width: 100%;
    min-width: 100%;
    min-height: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: left;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: #059b5a;
}

.testimonial-card.active {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(5, 155, 90, 0.2);
    border-color: #059b5a;
    border-width: 2px;
    min-height: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100vw;
        max-width: 100vw;
        min-width: 100vw;
        padding: 1.5rem;
        margin: 0;
        scroll-snap-align: start;
        box-sizing: border-box;
    }
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #059b5a;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.profile-name h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.profile-name i {
    color: #0077b5;
    font-size: 1rem;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.profile-location span {
    font-size: 0.9rem;
    color: #6b7280;
}

.profile-location .flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.testimonial-text {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    font-style: normal;
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .testimonials-nav {
        margin-top: 1.5rem;
    }
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: #059b5a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 155, 90, 0.3);
}

.nav-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nav-btn.next-btn {
    background: #059b5a;
    color: white;
}

.faq-item {
    background-image: linear-gradient(157.05deg, rgba(217, 255, 237, .3) 20.92%, rgba(210, 225, 255, .3) 102.17%);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #24cb7138;
}

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

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

.faq-question:hover {
    background-color: #f8fafc;
}

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

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

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    color: #059b5a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer-feature i {
    color: #059b5a;
    font-size: 1rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #f9fafb;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #059b5a;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: #059b5a;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

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

.social-link {
    color: #d1d5db;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-link:hover {
    color: #059b5a;
    background: rgba(5, 155, 90, 0.2);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Animation Classes */
.reveal-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-animate.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure sections are visible */
.features-section,
.security-section,
.testimonials-section,
.faq-section {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Ensure headers are visible */
.section-title,
.section-subtitle,
.promise-badge {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Stagger animations for cards */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }

.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.2s; }
.step:nth-child(3) { transition-delay: 0.3s; }

.security-card:nth-child(1) { transition-delay: 0.1s; }
.security-card:nth-child(2) { transition-delay: 0.2s; }
.security-card:nth-child(3) { transition-delay: 0.3s; }

/* Parallax effects */
.hero-content {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-left {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.transfer-calculator {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.feature-card,
.security-card,
.testimonial-card {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.feature i,
.security-icon,
.testimonial-profile img {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Parallax layers */
.parallax-layer-1 {
    transform: translateZ(0);
}

.parallax-layer-2 {
    transform: translateZ(-100px);
}

.parallax-layer-3 {
    transform: translateZ(-200px);
}

/* Smooth parallax scrolling */
.parallax-container {
    perspective: 1000px;
    overflow-x: hidden;
}

/* Enhanced floating with parallax */
@keyframes floatWithParallax {
    0%, 100% {
        transform: translateY(0px) translateZ(0);
    }
    50% {
        transform: translateY(-15px) translateZ(20px);
    }
}

.feature i,
.security-icon {
    animation: floatWithParallax 4s ease-in-out infinite;
}

/* Floating animation for icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
}

/* First time animation only */
.feature i,
.security-icon,
.testimonial-profile img {
    animation: float 3s ease-in-out 1; /* Run only once */
    animation-fill-mode: forwards; /* Keep final state */
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 155, 90, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(5, 155, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(5, 155, 90, 0);
    }
}

/* First time animation only */
.cta-btn,
.transfer-btn,
.signup-btn {
    animation: pulse 2s 1; /* Run only once */
    animation-fill-mode: forwards; /* Keep final state */
}

/* Slide in from left/right */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* First time animations only */
.hero-left {
    animation: slideInLeft 1s ease-out 1; /* Run only once */
    animation-fill-mode: forwards; /* Keep final state */
}

.transfer-calculator {
    animation: slideInRight 1s ease-out 0.3s 1 both; /* Run only once */
    animation-fill-mode: forwards; /* Keep final state */
}

/* Scale animation for cards */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* First time animations only */
.feature-card,
.security-card,
.testimonial-card {
    animation: scaleIn 0.6s ease-out 1; /* Run only once */
    animation-fill-mode: forwards; /* Keep final state */
}

/* Bounce animation for testimonials */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* First time animations only */
.testimonial-card {
    animation: bounceIn 0.8s ease-out 1; /* Run only once */
    animation-fill-mode: forwards; /* Keep final state */
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: #059b5a;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .signup-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 1rem 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        justify-items: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .features {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .feature {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    /* Transfer Calculator */
    .transfer-calculator {
        margin: 0 auto;
        border-radius: 8px;
        max-width: 100%;
        overflow: hidden;
        width: 100%;
    }
    
    .input-section,
    .output-section {
        padding: 1rem;
    }
    
    .currency-input label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .input-group {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .input-group input {
        font-size: 1rem;
        min-width: 0;
        flex: 1;
    }
    
    .currency-dropdown {
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }
    
    .exchange-rate,
    .fee-section,
    .transfer-time {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .exchange-rate-banner {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .input-section {
        padding: 1rem;
    }
    
    .input-group {
        padding: 0.75rem;
    }
    
    .input-group input {
        font-size: 1rem;
    }
    
    .transfer-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    /* Features Section */
    .features-section {
        padding: 2rem 1rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-illustration {
        height: 100px;
        margin-bottom: 1rem;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 2rem 1rem;
    }
    
    .get-started-header .section-title {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-screenshot {
        margin-top: 1rem;
    }
    
    .step-image {
        width: 100%;
        height: auto;
    }
    
    /* Security Section */
    .security-section {
        padding: 2rem 1rem;
        background: 
            linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
            linear-gradient(90deg, rgba(5, 155, 90, 0.04) 1px, transparent 1px),
            linear-gradient(rgba(5, 155, 90, 0.04) 1px, transparent 1px);
        background-size: 
            cover,
            50px 50px,
            50px 50px;
        background-repeat: no-repeat, repeat, repeat;
        position: relative;
        overflow: hidden;
    }

    .security-section::before {
        content: '';
        position: absolute;
        top: -40%;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(5, 155, 90, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle 12s ease-in-out infinite;
        z-index: 1;
    }

    .security-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        right: 10%;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle 9s ease-in-out infinite reverse;
        z-index: 1;
    }
    
    .security-section .section-title {
        font-size: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-card {
        padding: 1.5rem;
    }
    
    .security-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 1rem 1rem;
        background: 
            linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
            linear-gradient(90deg, rgba(5, 155, 90, 0.08) 1px, transparent 1px),
            linear-gradient(rgba(5, 155, 90, 0.08) 1px, transparent 1px);
        background-size: 
            cover,
            40px 40px,
            40px 40px;
        background-repeat: no-repeat, repeat, repeat;
        position: relative;
        overflow: hidden;
    }

    .faq-section::before {
        content: '';
        position: absolute;
        top: -15%;
        right: -8%;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(5, 155, 90, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle 9s ease-in-out infinite;
        z-index: 1;
    }

    .faq-section::after {
        content: '';
        position: absolute;
        bottom: -25%;
        left: -12%;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle 7s ease-in-out infinite reverse;
        z-index: 1;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .region-selector {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .region-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 1.5rem 1rem;
        background: 
            linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%),
            linear-gradient(90deg, rgba(5, 155, 90, 0.06) 1px, transparent 1px),
            linear-gradient(rgba(5, 155, 90, 0.06) 1px, transparent 1px);
        background-size: 
            cover,
            45px 45px,
            45px 45px;
        background-repeat: no-repeat, repeat, repeat;
        position: relative;
        overflow: hidden;
    }

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: -20%;
        left: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(5, 155, 90, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle 11s ease-in-out infinite;
        z-index: 1;
    }

    .testimonials-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -5%;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle 8s ease-in-out infinite reverse;
        z-index: 1;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonials-wrapper {
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 0;
    }
    
    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .testimonial-profile {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .features {
        gap: 0.5rem;
    }
    
    .feature {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    /* Transfer Calculator */
    .transfer-calculator {
        padding: 1rem;
    }
    
    .input-section {
        padding: 0.75rem;
    }
    
    .input-group {
        padding: 0.5rem;
    }
    
    .input-group input {
        font-size: 0.9rem;
    }
    
    /* Features */
    .feature-card,
    .security-card,
    .step {
        padding: 1rem;
    }
    
    .feature-illustration {
        height: 80px;
    }
    
    .security-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Sections */
    .features-section,
    .how-it-works,
    .security-section,
    .faq-section,
    .testimonials-section {
        padding: 1.5rem 0.75rem;
    }
    
    .section-subtitle,
    .get-started-header .section-title,
    .security-section .section-title,
    .faq-section .section-title,
    .testimonials-section .section-title {
        font-size: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 250px;
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    /* Footer */
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-btn,
    .transfer-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .security-card,
    .step {
        padding: 0.75rem;
    }
    
    .section-subtitle,
    .get-started-header .section-title,
    .security-section .section-title,
    .faq-section .section-title,
    .testimonials-section .section-title {
        font-size: 1.3rem;
    }
} 

/* ===== FULL-PAGE SCROLLING ===== */

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

body {
    overflow: auto;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Normal section heights */
.hero,
.features-section,
.how-it-works-section,
.security-section,
.testimonials-section,
.faq-section {
    min-height: auto;
    width: 100%;
    position: relative;
    overflow: visible;
    background: #fff;
    padding: 200px 0 20px 0; /* Reduced padding */
    margin: 0; /* Remove any margins */
}

/* Normal footer positioning */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1f2937, #111827);
}

/* Container for all sections - Disabled for normal scrolling */
.sections-container {
    display: none;
}

/* Navigation Dots - Hidden for normal scrolling */
.nav-dots {
    display: none;
}

.nav-dot {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0.6;
}

.nav-dot:hover {
    opacity: 1;
}

.nav-dot.active {
    opacity: 1;
}

.nav-dot .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-dot.active .dot {
    background: #059b5a;
    border-color: #059b5a;
    box-shadow: 0 0 10px rgba(5, 155, 90, 0.5);
    transform: scale(1.2);
}

.nav-dot .dot-label {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-dot:hover .dot-label,
.nav-dot.active .dot-label {
    opacity: 1;
    transform: translateX(0);
}

/* Section transitions */
.section {
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Progress indicator - Hidden for normal scrolling */
.scroll-progress {
    display: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #059b5a, #047857);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Mobile responsive for nav dots */
@media (max-width: 768px) {
    .nav-dots {
        right: 15px;
        padding: 15px 10px;
        gap: 15px;
    }
    
    .nav-dot .dot {
        width: 10px;
        height: 10px;
    }
    
    .nav-dot .dot-label {
        font-size: 0.7rem;
    }
}

/* Keyboard navigation indicator - Hidden for normal scrolling */
.keyboard-nav {
    display: none;
}

.keyboard-nav.show {
    opacity: 1;
}

/* Section entrance animations */
.section-entering {
    animation: sectionEnter 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes sectionEnter {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth section transitions */
.section-transition {
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Disable scroll on body when full-page scrolling is active - Disabled for normal scrolling */
body.fullpage-scroll {
    overflow: auto;
}

/* Enable scroll for specific elements */
.fullpage-scroll .transfer-calculator,
.fullpage-scroll .testimonials-wrapper,
.fullpage-scroll .faq-content {
    overflow-y: auto;
    max-height: 60vh;
}

/* Touch gesture support - Hidden for normal scrolling */
.touch-indicator {
    display: none;
}

.touch-indicator.show {
    opacity: 1;
    animation: touchPulse 1s ease-in-out;
}

@keyframes touchPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Enhanced section entrance animation */
@keyframes sectionEnter {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translateY(25px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Smooth section transitions */
.section-entering {
    animation: sectionEnter 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* Navigation dots smooth transitions */
.nav-dot {
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-dot .dot {
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-dot .dot-label {
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
} 