/* Hero Section */
        .hero-section {
            position: relative;
            overflow: hidden;
        }

        .hero-overlay {
            background: linear-gradient(135deg, rgba(4, 30, 67, 0.85) 0%, rgba(26, 58, 110, 0.85) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 2;
        }

        .scroll-down {
            display: inline-block;
            color: white;
            text-decoration: none;
        }

        .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 15px;
            position: relative;
            margin: 0 auto 10px;
        }

        .wheel {
            width: 4px;
            height: 8px;
            background: white;
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

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

        /* Section Spacing */
        .py-10 {
            padding-top: 8rem !important;
            padding-bottom: 8rem !important;
        }

        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #B2872B 0%, #FFD700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Section Backgrounds */
        .business-growth-section {
            background: linear-gradient(135deg, #041E43 0%, #0A3A7E 100%);
            color: white;
        }

        .rates-section {
            background-color: #f8f9fa;
        }

        .accounts-section {
            background-color: #ffffff;
        }

        .cards-section {
            background: linear-gradient(135deg, #B2872B 0%, #D4A017 100%);
            color: white;
        }

        .trust-section {
            background-color: #f8f9fa;
        }

        .security-section {
            background-color: #ffffff;
        }

        .testimonials-section {
            background-color: #f8f9fa;
        }

        .cta-section {
            background: linear-gradient(135deg, #041E43 0%, #1A3A6E 100%);
        }

        /* Card Styling */
        .cta-card {
            background: linear-gradient(135deg, rgba(178, 135, 43, 0.9) 0%, rgba(212, 160, 23, 0.9) 100%);
            backdrop-filter: blur(10px);
        }

        /* Feature Cards */
        .trust-card, .feature-card, .security-feature {
            padding: 2rem;
            border-radius: 1rem;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }

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

        .trust-icon, .feature-card-icon, .security-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #041E43 0%, #1A3A6E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: white;
            font-size: 1.5rem;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 1rem;
            border: 1px solid rgba(0,0,0,0.05);
        }

        /* Multi Currency Visual */
        .multi-currency-visual {
            position: relative;
        }

        .floating-card {
            position: absolute;
            z-index: 10;
        }

        .send-card {
            top: -20px;
            right: -20px;
        }

        .receive-card {
            bottom: -20px;
            left: -20px;
        }

        .currency-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }

        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #B2872B 0%, #D4A017 100%);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(178, 135, 43, 0.3);
        }

        .btn-lg {
            padding: 0.875rem 2rem;
            font-size: 1.125rem;
        }

        /* Account Option Cards */
        .account-option {
            transition: all 0.3s ease;
        }

        .account-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
        }

        .account-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #B2872B;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .display-2 { font-size: 2.5rem; }
            .display-4 { font-size: 2rem; }
            .display-5 { font-size: 1.75rem; }
            .display-6 { font-size: 1.5rem; }
            
            .py-10 {
                padding-top: 4rem !important;
                padding-bottom: 4rem !important;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .floating-card {
                position: relative !important;
                top: auto !important;
                right: auto !important;
                bottom: auto !important;
                left: auto !important;
                margin: 1rem 0;
            }
        }

        /* Animation Classes */
        .fade-in {
            animation: fadeIn 1s ease-in;
        }

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

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #B2872B 0%, #D4A017 100%);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #9a6f20 0%, #b88c14 100%);
        }
