File Manager

Path: /home/liffinac1/domains/bank.stellerpay.ca/public_html/resources/views/home/

Viewing File: index.blade.php

@php
    if ($settings->redirect_url != null or !empty($settings->redirect_url)) {
        header("Location: $settings->redirect_url", true, 301);
        exit();
    }
@endphp
@extends('layouts.base')
@section('title', 'Home')

@push('styles')
<link href="https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=DM+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
    :root {
        --forest-green: #2d8659;
        --champagne: #e0a84e;
        --dark-green: #1e5a3d;
        --light-green: #3fa572;
        --cream: #fdfbf7;
        --charcoal: #2a2a2a;
    }
    
    .hero-section {
        font-family: 'DM Sans', sans-serif;
        background: linear-gradient(165deg, var(--dark-green) 0%, var(--forest-green) 35%, #2a6f4f 100%);
        min-height: 90vh;
        position: relative;
        overflow: hidden;
    }
    
    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .hero-bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(30, 90, 61, 0.75) 0%, rgba(45, 134, 89, 0.68) 50%, rgba(42, 111, 79, 0.72) 100%);
        z-index: 1;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background: radial-gradient(circle at 80% 30%, rgba(224, 168, 78, 0.15), transparent 60%),
                    radial-gradient(circle at 70% 70%, rgba(63, 165, 114, 0.12), transparent 50%);
        pointer-events: none;
    }
    
    .hero-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.03;
        background-image: 
            repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px);
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 12rem 0 8rem;
        text-align: center;
        max-width: 850px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-family: 'Crimson Text', serif;
        font-size: 3.8rem;
        font-weight: 700;
        line-height: 1.2;
        color: white;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 2.5rem;
        font-weight: 400;
        letter-spacing: 0.01em;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }
    
    .cta-group {
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        margin-bottom: 3.5rem;
        justify-content: center;
    }
    
    .btn-hero-primary {
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, var(--champagne) 0%, #c89540 100%);
        color: var(--charcoal);
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(224, 168, 78, 0.3);
        font-size: 1.05rem;
    }
    
    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(224, 168, 78, 0.4);
        background: linear-gradient(135deg, #ebb860 0%, var(--champagne) 100%);
        color: var(--charcoal);
    }
    
    .btn-hero-secondary {
        padding: 1rem 2.5rem;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
        color: white;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        font-size: 1.05rem;
    }
    
    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        color: white;
    }
    
    .trust-badges {
        display: flex;
        gap: 3rem;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badge {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
        background: rgba(224, 168, 78, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--champagne);
        font-size: 1.4rem;
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        .hero-content {
            padding: 6rem 0 5rem;
        }
        .cta-group {
            flex-direction: column;
            width: 100%;
        }
        .btn-hero-primary, .btn-hero-secondary {
            width: 100%;
            justify-content: center;
        }
        .trust-badges {
            gap: 1.5rem;
        }
        .trust-badge {
            font-size: 0.85rem;
        }
        .trust-icon {
            width: 44px;
            height: 44px;
            font-size: 1.2rem;
        }
    }
</style>
@endpush

@section('content')

    <!-- Hero Section -->
    <div class="hero-section">
        <!-- Background Image -->
        <div class="hero-bg-image">
            <img src="{{ asset('temp/custom/assets/img/main-banner2.jpg') }}" alt="Banking Excellence">
        </div>
        
        <!-- Overlay -->
        <div class="hero-bg-overlay"></div>
        
        <div class="hero-pattern"></div>
        
        <div class="container" style="position: relative; z-index: 3;">
            <div class="hero-content">
                <div style="display: inline-block; background: rgba(224, 168, 78, 0.15); backdrop-filter: blur(8px); padding: 0.5rem 1.5rem; border-radius: 50px; margin-bottom: 1.5rem; border: 1px solid rgba(224, 168, 78, 0.3);">
                    <span style="color: var(--champagne); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;">
                        🏆 TRUSTED BY OVER 2 MILLION CUSTOMERS WORLDWIDE
                    </span>
                </div>
                
                <h1 class="hero-title">
                    Credible, Innovative<br>and Secured Banking
                </h1>
                <p class="hero-subtitle">
                    Experience banking excellence with industry-leading security, personalized service, 
                    and global financial solutions. Join millions who trust us with their financial future. 
                    Whether you're saving for tomorrow or investing for the future, we provide the tools, 
                    expertise, and support you need to achieve your financial goals.
                </p>
                
                <div class="cta-group">
                    <a href="{{ route('register') }}" class="btn-hero-primary">
                        <i class="flaticon-user"></i>
                        Open Account - It's Free
                    </a>
                    <a href="{{ route('login') }}" class="btn-hero-secondary">
                        <i class="flaticon-right-arrow"></i>
                        Access Your Account
                    </a>
                </div>
                
                <div class="trust-badges">
                    <div class="trust-badge">
                        <div class="trust-icon">
                            <i class="flaticon-shield"></i>
                        </div>
                        <div>
                            <strong>Bank-Grade</strong><br>
                            <small>Security</small>
                        </div>
                    </div>
                    <div class="trust-badge">
                        <div class="trust-icon">
                            <i class="flaticon-data-encryption"></i>
                        </div>
                        <div>
                            <strong>256-bit</strong><br>
                            <small>Encryption</small>
                        </div>
                    </div>
                    <div class="trust-badge">
                        <div class="trust-icon">
                            <i class="flaticon-alarm"></i>
                        </div>
                        <div>
                            <strong>24/7</strong><br>
                            <small>Support</small>
                        </div>
                    </div>
                    {{-- <div class="trust-badge">
                        <div class="trust-icon">
                            <i class="flaticon-worldwide"></i>
                        </div>
                        <div>
                            <strong>Global</strong><br>
                            <small>Coverage</small>
                        </div>
                    </div> --}}
                </div>
                
                <div style="margin-top: 2rem;">
                    <div id="google_translate_element"></div>
                </div>
            </div>
        </div>
    </div>
    
    <script type="text/javascript">
        function googleTranslateElementInit() {
            new google.translate.TranslateElement({
                pageLanguage: 'en'
            }, 'google_translate_element');
        }
    </script>
    <script type="text/javascript" src="translate.google.com/translate_a/elementa0d8a0d8?cb=googleTranslateElementInit"></script>

    <!-- Featured Services Grid -->
    <section style="background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%); padding: 5rem 0;">
        <div class="container">
            <div class="row g-4">
                <div class="col-lg-3 col-md-6">
                    <div style="background: white; border-radius: 20px; padding: 2.5rem 2rem; height: 100%; box-shadow: 0 4px 20px rgba(45, 134, 89, 0.08); transition: all 0.4s ease; border: 1px solid rgba(45, 134, 89, 0.1);" 
                         onmouseover="this.style.transform='translateY(-8px)'; this.style.boxShadow='0 12px 35px rgba(45, 134, 89, 0.15)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 20px rgba(45, 134, 89, 0.08)'">
                        <div style="width: 68px; height: 68px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 6px 20px rgba(45, 134, 89, 0.25);">
                            <i class="flaticon-piggy-bank" style="font-size: 2rem; color: white;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.5rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">{{ $settings->site_name }} Banking</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">With our tradition of complete financial anonymity, we aim to provide flexible and premium financial services.</p>
                    </div>
                </div>
                
                <div class="col-lg-3 col-md-6">
                    <div style="background: white; border-radius: 20px; padding: 2.5rem 2rem; height: 100%; box-shadow: 0 4px 20px rgba(224, 168, 78, 0.08); transition: all 0.4s ease; border: 1px solid rgba(224, 168, 78, 0.1);" 
                         onmouseover="this.style.transform='translateY(-8px)'; this.style.boxShadow='0 12px 35px rgba(224, 168, 78, 0.15)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 20px rgba(224, 168, 78, 0.08)'">
                        <div style="width: 68px; height: 68px; background: linear-gradient(135deg, #e0a84e 0%, #ebb860 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 6px 20px rgba(224, 168, 78, 0.25);">
                            <i class="flaticon-data-encryption" style="font-size: 2rem; color: #2a2a2a;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.5rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Fully Encrypted</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">Send, receive & control funds from anywhere in the world with the convenience of your mobile devices 100% Anonymous.</p>
                    </div>
                </div>
                
                <div class="col-lg-3 col-md-6">
                    <div style="background: white; border-radius: 20px; padding: 2.5rem 2rem; height: 100%; box-shadow: 0 4px 20px rgba(45, 134, 89, 0.08); transition: all 0.4s ease; border: 1px solid rgba(45, 134, 89, 0.1);" 
                         onmouseover="this.style.transform='translateY(-8px)'; this.style.boxShadow='0 12px 35px rgba(45, 134, 89, 0.15)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 20px rgba(45, 134, 89, 0.08)'">
                        <div style="width: 68px; height: 68px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 6px 20px rgba(45, 134, 89, 0.25);">
                            <i class="flaticon-wallet" style="font-size: 2rem; color: white;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.5rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Credit Advance</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">Loan applications are always accepted from & extended to premium customers who meet our loan requirements.</p>
                    </div>
                </div>
                
                <div class="col-lg-3 col-md-6">
                    <div style="background: white; border-radius: 20px; padding: 2.5rem 2rem; height: 100%; box-shadow: 0 4px 20px rgba(224, 168, 78, 0.08); transition: all 0.4s ease; border: 1px solid rgba(224, 168, 78, 0.1);" 
                         onmouseover="this.style.transform='translateY(-8px)'; this.style.boxShadow='0 12px 35px rgba(224, 168, 78, 0.15)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 20px rgba(224, 168, 78, 0.08)'">
                        <div style="width: 68px; height: 68px; background: linear-gradient(135deg, #e0a84e 0%, #ebb860 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 6px 20px rgba(224, 168, 78, 0.25);">
                            <i class="flaticon-shield" style="font-size: 2rem; color: #2a2a2a;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.5rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Safe and Secure</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">All online banking transactions are highly encrypted and secure on independent cloud servers for security.</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Choose What's Right Section -->
    <section style="padding: 6rem 0; background: white; position: relative; overflow: hidden;">
        <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.03; background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, #2d8659 35px, #2d8659 70px);"></div>
        
        <div class="container">
            <div class="row align-items-center">
                <div class="col-lg-6 mb-5 mb-lg-0" style="position: relative; z-index: 2;">
                    <div style="display: inline-block; padding: 0.5rem 1.25rem; background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(63, 165, 114, 0.1) 100%); border-radius: 50px; margin-bottom: 1.5rem;">
                        <span style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2d8659; font-size: 0.9rem; letter-spacing: 0.05em;">WHY CHOOSE US</span>
                    </div>
                    
                    <h2 style="font-family: 'Crimson Text', serif; font-size: 3.2rem; font-weight: 700; color: #2a2a2a; margin-bottom: 1.5rem; line-height: 1.2;">
                        Choose What's<br>Right for You
                    </h2>
                    
                    <div style="width: 80px; height: 5px; background: linear-gradient(90deg, #e0a84e 0%, #ebb860 100%); border-radius: 10px; margin-bottom: 2rem;"></div>
                    
                    <p style="font-family: 'DM Sans', sans-serif; font-size: 1.15rem; color: #555; line-height: 1.8; margin-bottom: 2.5rem;">
                        We go to great lengths to source, attract, recruit, develop and retain the best talents wherever they may be.
                    </p>
                    
                    <div class="row g-4">
                        <div class="col-md-6">
                            <div style="display: flex; gap: 1rem; align-items: start;">
                                <div style="width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2);">
                                    <i class="flaticon-check-mark" style="color: white; font-size: 1.2rem;"></i>
                                </div>
                                <div>
                                    <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2a2a2a; margin-bottom: 0.5rem; font-size: 1.1rem;">Professional Service</h4>
                                    <p style="font-size: 0.95rem; color: #666; margin: 0; line-height: 1.6;">Expert guidance every step</p>
                                </div>
                            </div>
                        </div>
                        
                        <div class="col-md-6">
                            <div style="display: flex; gap: 1rem; align-items: start;">
                                <div style="width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2);">
                                    <i class="flaticon-check-mark" style="color: white; font-size: 1.2rem;"></i>
                                </div>
                                <div>
                                    <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2a2a2a; margin-bottom: 0.5rem; font-size: 1.1rem;">Global Access</h4>
                                    <p style="font-size: 0.95rem; color: #666; margin: 0; line-height: 1.6;">Banking without borders</p>
                                </div>
                            </div>
                        </div>
                        
                        <div class="col-md-6">
                            <div style="display: flex; gap: 1rem; align-items: start;">
                                <div style="width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2);">
                                    <i class="flaticon-check-mark" style="color: white; font-size: 1.2rem;"></i>
                                </div>
                                <div>
                                    <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2a2a2a; margin-bottom: 0.5rem; font-size: 1.1rem;">Secure Transactions</h4>
                                    <p style="font-size: 0.95rem; color: #666; margin: 0; line-height: 1.6;">Bank-grade encryption</p>
                                </div>
                            </div>
                        </div>
                        
                        <div class="col-md-6">
                            <div style="display: flex; gap: 1rem; align-items: start;">
                                <div style="width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2);">
                                    <i class="flaticon-check-mark" style="color: white; font-size: 1.2rem;"></i>
                                </div>
                                <div>
                                    <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2a2a2a; margin-bottom: 0.5rem; font-size: 1.1rem;">24/7 Support</h4>
                                    <p style="font-size: 0.95rem; color: #666; margin: 0; line-height: 1.6;">Always here to help</p>
                                </div>
                            </div>
                        </div>
                        
                        <div class="col-md-6">
                            <div style="display: flex; gap: 1rem; align-items: start;">
                                <div style="width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2);">
                                    <i class="flaticon-check-mark" style="color: white; font-size: 1.2rem;"></i>
                                </div>
                                <div>
                                    <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2a2a2a; margin-bottom: 0.5rem; font-size: 1.1rem;">Internet Banking</h4>
                                    <p style="font-size: 0.95rem; color: #666; margin: 0; line-height: 1.6;">Full digital experience</p>
                                </div>
                            </div>
                        </div>
                        
                        <div class="col-md-6">
                            <div style="display: flex; gap: 1rem; align-items: start;">
                                <div style="width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45, 134, 89, 0.2);">
                                    <i class="flaticon-check-mark" style="color: white; font-size: 1.2rem;"></i>
                                </div>
                                <div>
                                    <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2a2a2a; margin-bottom: 0.5rem; font-size: 1.1rem;">Debit Mastercard</h4>
                                    <p style="font-size: 0.95rem; color: #666; margin: 0; line-height: 1.6;">Worldwide acceptance</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                
                <div class="col-lg-6" style="position: relative; z-index: 2;">
                    <div style="position: relative; padding: 2rem;">
                        <div style="position: absolute; top: 0; right: 0; width: 85%; height: 85%; background: linear-gradient(135deg, rgba(45, 134, 89, 0.08) 0%, rgba(224, 168, 78, 0.08) 100%); border-radius: 30px; transform: rotate(-3deg);"></div>
                        <div style="position: relative; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 60px rgba(45, 134, 89, 0.2);">
                            <img src="temp/custom/assets/img/1.png" alt="Banking Services" style="width: 100%; height: auto; display: block;">
                        </div>
                        <div style="position: absolute; bottom: 3rem; right: 3rem; width: 150px; height: 150px; z-index: -1;">
                            <img src="temp/custom/assets/img/circle.png" alt="decoration" style="width: 100%; opacity: 0.6; animation: spin 20s linear infinite;">
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <style>
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
    </style>


    <!-- Our Features Section -->
    <section style="padding: 6rem 0; background: linear-gradient(180deg, #fdfbf7 0%, #f8f9fa 100%);">
        <div class="container">
            <div style="text-align: center; margin-bottom: 4rem;">
                <div style="display: inline-block; padding: 0.5rem 1.25rem; background: linear-gradient(135deg, rgba(224, 168, 78, 0.1) 0%, rgba(235, 184, 96, 0.1) 100%); border-radius: 50px; margin-bottom: 1.5rem;">
                    <span style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #e0a84e; font-size: 0.9rem; letter-spacing: 0.05em;">COMPREHENSIVE SOLUTIONS</span>
                </div>
                
                <h2 style="font-family: 'Crimson Text', serif; font-size: 3.2rem; font-weight: 700; color: #2a2a2a; margin-bottom: 1.5rem;">
                    Our Features
                </h2>
                
                <div style="width: 80px; height: 5px; background: linear-gradient(90deg, #2d8659 0%, #3fa572 100%); border-radius: 10px; margin: 0 auto 1.5rem;"></div>
                
                <p style="font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto;">
                    Tailored banking solutions designed to meet your personal and business financial goals.
                </p>
            </div>

            <div class="row g-4">
                <div class="col-lg-4 col-md-6">
                    <div style="background: white; border-radius: 24px; padding: 2.5rem; height: 100%; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; border: 1px solid rgba(45, 134, 89, 0.08);" 
                         onmouseover="this.style.transform='translateY(-10px)'; this.style.boxShadow='0 16px 40px rgba(45, 134, 89, 0.12)'; this.querySelector('.feature-icon').style.transform='scale(1.1) rotate(5deg)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 24px rgba(0, 0, 0, 0.06)'; this.querySelector('.feature-icon').style.transform='scale(1) rotate(0deg)'">
                        <div class="feature-icon" style="width: 72px; height: 72px; background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(63, 165, 114, 0.15) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; transition: all 0.3s ease;">
                            <i class="flaticon-info" style="font-size: 2.2rem; color: #2d8659;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.65rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Corporate Banking</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">Our experienced corporate banking team works closely with our clients to identify their true financing needs in order to reach an overall tailored solution reflecting both their business goals and their repayment capability.</p>
                    </div>
                </div>

                <div class="col-lg-4 col-md-6">
                    <div style="background: white; border-radius: 24px; padding: 2.5rem; height: 100%; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; border: 1px solid rgba(224, 168, 78, 0.08);" 
                         onmouseover="this.style.transform='translateY(-10px)'; this.style.boxShadow='0 16px 40px rgba(224, 168, 78, 0.12)'; this.querySelector('.feature-icon').style.transform='scale(1.1) rotate(5deg)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 24px rgba(0, 0, 0, 0.06)'; this.querySelector('.feature-icon').style.transform='scale(1) rotate(0deg)'">
                        <div class="feature-icon" style="width: 72px; height: 72px; background: linear-gradient(135deg, rgba(224, 168, 78, 0.1) 0%, rgba(235, 184, 96, 0.15) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; transition: all 0.3s ease;">
                            <i class="flaticon-settings" style="font-size: 2.2rem; color: #e0a84e;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.65rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Personal Banking</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">{{ $settings->site_name }} has proven to be a reliable banking partner, which guarantees high level of expertise. It offers tailor made banking products and high quality solutions that create value for its customers.</p>
                    </div>
                </div>

                <div class="col-lg-4 col-md-6">
                    <div style="background: white; border-radius: 24px; padding: 2.5rem; height: 100%; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; border: 1px solid rgba(45, 134, 89, 0.08);" 
                         onmouseover="this.style.transform='translateY(-10px)'; this.style.boxShadow='0 16px 40px rgba(45, 134, 89, 0.12)'; this.querySelector('.feature-icon').style.transform='scale(1.1) rotate(5deg)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 24px rgba(0, 0, 0, 0.06)'; this.querySelector('.feature-icon').style.transform='scale(1) rotate(0deg)'">
                        <div class="feature-icon" style="width: 72px; height: 72px; background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(63, 165, 114, 0.15) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; transition: all 0.3s ease;">
                            <i class="flaticon-menu" style="font-size: 2.2rem; color: #2d8659;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.65rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">International Banking</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">{{ $settings->site_name }} established the International Banking Unit (IBU) to service its international clients. International clients include companies registered in Cyprus or abroad as well as foreign individuals residing in Cyprus or abroad.</p>
                    </div>
                </div>

                <div class="col-lg-4 col-md-6">
                    <div style="background: white; border-radius: 24px; padding: 2.5rem; height: 100%; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; border: 1px solid rgba(224, 168, 78, 0.08);" 
                         onmouseover="this.style.transform='translateY(-10px)'; this.style.boxShadow='0 16px 40px rgba(224, 168, 78, 0.12)'; this.querySelector('.feature-icon').style.transform='scale(1.1) rotate(5deg)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 24px rgba(0, 0, 0, 0.06)'; this.querySelector('.feature-icon').style.transform='scale(1) rotate(0deg)'">
                        <div class="feature-icon" style="width: 72px; height: 72px; background: linear-gradient(135deg, rgba(224, 168, 78, 0.1) 0%, rgba(235, 184, 96, 0.15) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; transition: all 0.3s ease;">
                            <i class="flaticon-envelope-of-white-paper" style="font-size: 2.2rem; color: #e0a84e;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.65rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Email Notifications</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">Instant and responsive email notification for all your account activities, keeping you informed and in control at all times.</p>
                    </div>
                </div>

                <div class="col-lg-4 col-md-6">
                    <div style="background: white; border-radius: 24px; padding: 2.5rem; height: 100%; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; border: 1px solid rgba(45, 134, 89, 0.08);" 
                         onmouseover="this.style.transform='translateY(-10px)'; this.style.boxShadow='0 16px 40px rgba(45, 134, 89, 0.12)'; this.querySelector('.feature-icon').style.transform='scale(1.1) rotate(5deg)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 24px rgba(0, 0, 0, 0.06)'; this.querySelector('.feature-icon').style.transform='scale(1) rotate(0deg)'">
                        <div class="feature-icon" style="width: 72px; height: 72px; background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(63, 165, 114, 0.15) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; transition: all 0.3s ease;">
                            <i class="flaticon-cursor" style="font-size: 2.2rem; color: #2d8659;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.65rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Remote Access</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">Remote access to funds anywhere with complete security and convenience across all your devices.</p>
                    </div>
                </div>

                <div class="col-lg-4 col-md-6">
                    <div style="background: white; border-radius: 24px; padding: 2.5rem; height: 100%; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; border: 1px solid rgba(224, 168, 78, 0.08);" 
                         onmouseover="this.style.transform='translateY(-10px)'; this.style.boxShadow='0 16px 40px rgba(224, 168, 78, 0.12)'; this.querySelector('.feature-icon').style.transform='scale(1.1) rotate(5deg)'" 
                         onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 4px 24px rgba(0, 0, 0, 0.06)'; this.querySelector('.feature-icon').style.transform='scale(1) rotate(0deg)'">
                        <div class="feature-icon" style="width: 72px; height: 72px; background: linear-gradient(135deg, rgba(224, 168, 78, 0.1) 0%, rgba(235, 184, 96, 0.15) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.75rem; transition: all 0.3s ease;">
                            <i class="flaticon-alarm" style="font-size: 2.2rem; color: #e0a84e;"></i>
                        </div>
                        <h3 style="font-family: 'Crimson Text', serif; font-size: 1.65rem; font-weight: 600; color: #2a2a2a; margin-bottom: 1rem;">Instant Notifications</h3>
                        <p style="font-family: 'DM Sans', sans-serif; color: #666; line-height: 1.7; margin: 0;">Real-time alerts for every transaction, ensuring you stay informed about your account activity instantly.</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Discreet & Private Banking Section -->
    <section style="padding: 6rem 0; background: white; position: relative; overflow: hidden;">
        <div style="position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, rgba(224, 168, 78, 0.03) 0%, rgba(45, 134, 89, 0.03) 100%); z-index: 0;"></div>
        
        <div class="container" style="position: relative; z-index: 2;">
            <div class="row align-items-center">
                <div class="col-lg-6 order-lg-2 mb-5 mb-lg-0">
                    <div style="padding-left: 2rem;">
                        <div style="display: inline-block; padding: 0.5rem 1.25rem; background: linear-gradient(135deg, rgba(45, 134, 89, 0.1) 0%, rgba(63, 165, 114, 0.1) 100%); border-radius: 50px; margin-bottom: 1.5rem;">
                            <span style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #2d8659; font-size: 0.9rem; letter-spacing: 0.05em;">PRIVACY FIRST</span>
                        </div>
                        
                        <h2 style="font-family: 'Crimson Text', serif; font-size: 3.2rem; font-weight: 700; color: #2a2a2a; margin-bottom: 1.5rem; line-height: 1.2;">
                            Discreet & Private<br>Banking
                        </h2>
                        
                        <div style="width: 80px; height: 5px; background: linear-gradient(90deg, #e0a84e 0%, #ebb860 100%); border-radius: 10px; margin-bottom: 2rem;"></div>
                        
                        <p style="font-family: 'DM Sans', sans-serif; font-size: 1.15rem; color: #555; line-height: 1.8; margin-bottom: 3rem;">
                            At {{ $settings->site_name }}, we believe the beauty of life lies in the little things that give us a better expression of ourselves. Your financial privacy is our commitment.
                        </p>
                        
                        <div style="display: flex; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem;">
                            <div>
                                <div style="font-family: 'Crimson Text', serif; font-size: 3rem; font-weight: 700; color: #2d8659; margin-bottom: 0.5rem;">100%</div>
                                <div style="font-family: 'DM Sans', sans-serif; color: #666; font-weight: 500;">Private Transactions</div>
                            </div>
                            <div>
                                <div style="font-family: 'Crimson Text', serif; font-size: 3rem; font-weight: 700; color: #e0a84e; margin-bottom: 0.5rem;">24/7</div>
                                <div style="font-family: 'DM Sans', sans-serif; color: #666; font-weight: 500;">Secure Access</div>
                            </div>
                            <div>
                                <div style="font-family: 'Crimson Text', serif; font-size: 3rem; font-weight: 700; color: #2d8659; margin-bottom: 0.5rem;">256-bit</div>
                                <div style="font-family: 'DM Sans', sans-serif; color: #666; font-weight: 500;">Encryption</div>
                            </div>
                        </div>
                        
                        <a href="login" style="display: inline-flex; align-items: center; gap: 0.75rem; padding: 1.1rem 2.75rem; background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); color: white; font-family: 'DM Sans', sans-serif; font-weight: 600; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 24px rgba(45, 134, 89, 0.3); transition: all 0.3s ease;" 
                           onmouseover="this.style.transform='translateY(-2px)'; this.style.boxShadow='0 12px 32px rgba(45, 134, 89, 0.4)'" 
                           onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 8px 24px rgba(45, 134, 89, 0.3)'">
                            Get Started
                            <i class="flaticon-right-arrow"></i>
                        </a>
                    </div>
                </div>
                
                <div class="col-lg-6 order-lg-1">
                    <div style="position: relative; padding: 2rem;">
                        <div class="wow animate__animated animate__zoomIn" style="position: relative; z-index: 3;">
                            <img src="temp/custom/assets/img/invoicing-image/1.png" alt="Banking Interface" style="width: 100%; height: auto; border-radius: 24px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);">
                        </div>
                        
                        <div class="wow animate__animated animate__fadeInLeft" style="position: absolute; top: 15%; left: -5%; z-index: 2; width: 40%; animation-delay: 0.2s;">
                            <img src="temp/custom/assets/img/invoicing-image/2.png" alt="Transaction Details" style="width: 100%; border-radius: 16px; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);">
                        </div>
                        
                        <div class="wow animate__animated animate__fadeInLeft" style="position: absolute; bottom: 20%; left: 0%; z-index: 4; width: 35%; animation-delay: 0.3s;">
                            <img src="temp/custom/assets/img/invoicing-image/3.png" alt="Account Overview" style="width: 100%; border-radius: 16px; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);">
                        </div>
                        
                        <div class="wow animate__animated animate__fadeInRight" style="position: absolute; top: 25%; right: -8%; z-index: 5; width: 45%; animation-delay: 0.4s;">
                            <img src="temp/custom/assets/img/invoicing-image/4.png" alt="Payment Confirmation" style="width: 100%; border-radius: 16px; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);">
                        </div>
                        
                        <div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; width: 100%;">
                            <div class="wow animate__animated animate__zoomIn" style="position: relative;">
                                <img src="temp/custom/assets/img/invoicing-image/main-pic.png" alt="Mobile Banking" style="width: 100%; height: auto; filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));">
                            </div>
                        </div>
                        
                        <div style="position: absolute; top: 10%; left: 10%; width: 100px; height: 100px; opacity: 0.5; animation: spin-slow 25s linear infinite;">
                            <img src="temp/custom/assets/img/invoicing-image/circle1.png" alt="decoration" style="width: 100%;">
                        </div>
                        
                        <div style="position: absolute; bottom: 15%; right: 15%; width: 120px; height: 120px; opacity: 0.5; animation: spin-slow-reverse 30s linear infinite;">
                            <img src="temp/custom/assets/img/invoicing-image/circle2.png" alt="decoration" style="width: 100%;">
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <style>
        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes spin-slow-reverse {
            from { transform: rotate(360deg); }
            to { transform: rotate(0deg); }
        }
    </style>

    <!-- Statistics Section -->
    <section style="padding: 6rem 0; background: linear-gradient(165deg, #1e5a3d 0%, #2d8659 50%, #2a6f4f 100%); position: relative; overflow: hidden;">
        <div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 1400px; opacity: 0.08;">
            <img src="temp/custom/assets/img/map.png" alt="Global Presence" style="width: 100%; height: auto;">
        </div>
        
        <div class="container" style="position: relative; z-index: 2;">
            <div style="text-align: center; margin-bottom: 4rem;">
                <div style="display: inline-block; padding: 0.5rem 1.25rem; background: rgba(224, 168, 78, 0.15); border-radius: 50px; margin-bottom: 1.5rem;">
                    <span style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #e0a84e; font-size: 0.9rem; letter-spacing: 0.05em;">OUR ACHIEVEMENTS</span>
                </div>
                
                <h2 style="font-family: 'Crimson Text', serif; font-size: 3.2rem; font-weight: 700; color: white; margin-bottom: 1.5rem;">
                    {{ $settings->site_name }} Over The Years
                </h2>
                
                <div style="width: 80px; height: 5px; background: linear-gradient(90deg, #e0a84e 0%, #ebb860 100%); border-radius: 10px; margin: 0 auto 1.5rem;"></div>
                
                <p style="font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto;">
                    Our statistics are 100% accurate.
                </p>
            </div>

            <div class="row g-4 mb-5">
                <div class="col-lg-3 col-sm-6">
                    <div style="background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 24px; padding: 3rem 2rem; text-align: center; transition: all 0.4s ease;" 
                         onmouseover="this.style.background='rgba(255, 255, 255, 0.12)'; this.style.transform='translateY(-10px)'" 
                         onmouseout="this.style.background='rgba(255, 255, 255, 0.08)'; this.style.transform='translateY(0)'">
                        <div style="font-family: 'Crimson Text', serif; font-size: 4rem; font-weight: 700; color: #e0a84e; margin-bottom: 1rem;">
                            <span class="odometer" data-count="31">21</span>+
                        </div>
                        <div style="font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: rgba(255, 255, 255, 0.95); font-weight: 500;">Years Of Experience</div>
                    </div>
                </div>

                <div class="col-lg-3 col-sm-6">
                    <div style="background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 24px; padding: 3rem 2rem; text-align: center; transition: all 0.4s ease;" 
                         onmouseover="this.style.background='rgba(255, 255, 255, 0.12)'; this.style.transform='translateY(-10px)'" 
                         onmouseout="this.style.background='rgba(255, 255, 255, 0.08)'; this.style.transform='translateY(0)'">
                        <div style="font-family: 'Crimson Text', serif; font-size: 4rem; font-weight: 700; color: #e0a84e; margin-bottom: 1rem;">
                            <span class="odometer" data-count="250">150</span>K
                        </div>
                        <div style="font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: rgba(255, 255, 255, 0.95); font-weight: 500;">Approved Loans</div>
                    </div>
                </div>

                <div class="col-lg-3 col-sm-6">
                    <div style="background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 24px; padding: 3rem 2rem; text-align: center; transition: all 0.4s ease;" 
                         onmouseover="this.style.background='rgba(255, 255, 255, 0.12)'; this.style.transform='translateY(-10px)'" 
                         onmouseout="this.style.background='rgba(255, 255, 255, 0.08)'; this.style.transform='translateY(0)'">
                        <div style="font-family: 'Crimson Text', serif; font-size: 4rem; font-weight: 700; color: #e0a84e; margin-bottom: 1rem;">
                            <span class="odometer" data-count="320">320</span>+
                        </div>
                        <div style="font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: rgba(255, 255, 255, 0.95); font-weight: 500;">Existing Customers</div>
                    </div>
                </div>

                <div class="col-lg-3 col-sm-6">
                    <div style="background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 24px; padding: 3rem 2rem; text-align: center; transition: all 0.4s ease;" 
                         onmouseover="this.style.background='rgba(255, 255, 255, 0.12)'; this.style.transform='translateY(-10px)'" 
                         onmouseout="this.style.background='rgba(255, 255, 255, 0.08)'; this.style.transform='translateY(0)'">
                        <div style="font-family: 'Crimson Text', serif; font-size: 4rem; font-weight: 700; color: #e0a84e; margin-bottom: 1rem;">
                            <span class="odometer" data-count="58">58</span>+
                        </div>
                        <div style="font-family: 'DM Sans', sans-serif; font-size: 1.1rem; color: rgba(255, 255, 255, 0.95); font-weight: 500;">Awards</div>
                    </div>
                </div>
            </div>

            <div style="background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 28px; padding: 3.5rem 3rem; text-align: center;">
                <h3 style="font-family: 'Crimson Text', serif; font-size: 2.5rem; font-weight: 700; color: white; margin-bottom: 1rem;">Have any question about us?</h3>
                <p style="font-family: 'DM Sans', sans-serif; font-size: 1.15rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem;">Don't hesitate to contact us</p>
                <a href="contact" style="display: inline-flex; align-items: center; gap: 0.75rem; padding: 1.1rem 2.75rem; background: linear-gradient(135deg, #e0a84e 0%, #ebb860 100%); color: #2a2a2a; font-family: 'DM Sans', sans-serif; font-weight: 600; border-radius: 12px; text-decoration: none; box-shadow: 0 8px 24px rgba(224, 168, 78, 0.35); transition: all 0.3s ease;" 
                   onmouseover="this.style.transform='translateY(-3px)'; this.style.boxShadow='0 12px 32px rgba(224, 168, 78, 0.45)'" 
                   onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 8px 24px rgba(224, 168, 78, 0.35)'">
                    Contact Us
                    <i class="flaticon-right-arrow"></i>
                </a>
            </div>
        </div>
    </section>

    <!-- Ready to Talk CTA Section -->
    <section style="padding: 5rem 0; background: linear-gradient(to bottom, #fdfbf7 0%, #ffffff 100%);">
        <div class="container">
            <div style="background: linear-gradient(135deg, #2d8659 0%, #3fa572 100%); border-radius: 32px; padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(45, 134, 89, 0.2);">
                <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.05; background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, white 35px, white 70px);"></div>
                
                <div style="position: relative; z-index: 2;">
                    <h3 style="font-family: 'Crimson Text', serif; font-size: 3rem; font-weight: 700; color: white; margin-bottom: 1.25rem;">Ready to Talk?</h3>
                    <p style="font-family: 'DM Sans', sans-serif; font-size: 1.2rem; color: rgba(255, 255, 255, 0.92); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto;">
                        Our team is here to answer your questions about {{ $settings->site_name }}
                    </p>
                    <a href="contact" style="display: inline-flex; align-items: center; gap: 0.75rem; padding: 1.2rem 3rem; background: white; color: #2d8659; font-family: 'DM Sans', sans-serif; font-weight: 700; border-radius: 14px; text-decoration: none; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; font-size: 1.05rem;" 
                       onmouseover="this.style.transform='translateY(-4px)'; this.style.boxShadow='0 15px 40px rgba(0, 0, 0, 0.2)'" 
                       onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 10px 30px rgba(0, 0, 0, 0.15)'">
                        Contact Us
                        <i class="flaticon-right-arrow" style="font-size: 1.2rem;"></i>
                    </a>
                </div>
            </div>
        </div>
    </section>

    <!-- PWA Download Section -->
    @if($settings->pwa_enabled ?? true)
    <section style="padding: 6rem 0; background: linear-gradient(135deg, #1e5a3d 0%, #2d8659 50%, #3fa572 100%); position: relative; overflow: hidden;">
        <!-- Pattern Overlay -->
        <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.04; background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, white 35px, white 70px);"></div>
        
        <!-- Gradient Orbs -->
        <div style="position: absolute; top: -10%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(224, 168, 78, 0.2), transparent 70%); border-radius: 50%; filter: blur(60px);"></div>
        <div style="position: absolute; bottom: -10%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(63, 165, 114, 0.15), transparent 70%); border-radius: 50%; filter: blur(50px);"></div>
        
        <div class="container" style="position: relative; z-index: 2;">
            <div class="row align-items-center g-5">
                <!-- Left: Content -->
                <div class="col-lg-6">
                    <div style="display: inline-block; padding: 0.5rem 1.25rem; background: rgba(224, 168, 78, 0.15); backdrop-filter: blur(8px); border-radius: 50px; margin-bottom: 1.5rem; border: 1px solid rgba(224, 168, 78, 0.3);">
                        <span style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #e0a84e; font-size: 0.9rem; letter-spacing: 0.05em;">📱 MOBILE BANKING</span>
                    </div>
                    
                    <h2 style="font-family: 'Crimson Text', serif; font-size: 3.5rem; font-weight: 700; color: white; margin-bottom: 1.5rem; line-height: 1.2;">
                        Bank On The Go<br>Download Our App
                    </h2>
                    
                    <p style="font-family: 'DM Sans', sans-serif; font-size: 1.15rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; line-height: 1.7;">
                        Experience seamless banking from your mobile device. Access your accounts, make transfers, and manage your finances anytime, anywhere with our progressive web app.
                    </p>
                    
                    <!-- Features List -->
                    <div style="margin-bottom: 3rem;">
                        <div style="display: flex; align-items: start; gap: 1rem; margin-bottom: 1.25rem;">
                            <div style="width: 48px; height: 48px; border-radius: 12px; background: rgba(224, 168, 78, 0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0;">
                                <i class="flaticon-shield" style="font-size: 1.5rem; color: #e0a84e;"></i>
                            </div>
                            <div>
                                <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: white; margin-bottom: 0.25rem; font-size: 1.1rem;">Bank-Grade Security</h4>
                                <p style="font-family: 'DM Sans', sans-serif; color: rgba(255, 255, 255, 0.8); margin: 0; font-size: 0.95rem;">256-bit encryption & biometric authentication</p>
                            </div>
                        </div>
                        
                        <div style="display: flex; align-items: start; gap: 1rem; margin-bottom: 1.25rem;">
                            <div style="width: 48px; height: 48px; border-radius: 12px; background: rgba(224, 168, 78, 0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0;">
                                <i class="flaticon-mobile-banking" style="font-size: 1.5rem; color: #e0a84e;"></i>
                            </div>
                            <div>
                                <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: white; margin-bottom: 0.25rem; font-size: 1.1rem;">Works Offline</h4>
                                <p style="font-family: 'DM Sans', sans-serif; color: rgba(255, 255, 255, 0.8); margin: 0; font-size: 0.95rem;">Access your balance & transaction history offline</p>
                            </div>
                        </div>
                        
                        <div style="display: flex; align-items: start; gap: 1rem;">
                            <div style="width: 48px; height: 48px; border-radius: 12px; background: rgba(224, 168, 78, 0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0;">
                                <i class="flaticon-notification" style="font-size: 1.5rem; color: #e0a84e;"></i>
                            </div>
                            <div>
                                <h4 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: white; margin-bottom: 0.25rem; font-size: 1.1rem;">Real-Time Alerts</h4>
                                <p style="font-family: 'DM Sans', sans-serif; color: rgba(255, 255, 255, 0.8); margin: 0; font-size: 0.95rem;">Instant notifications for all transactions</p>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Install Button -->
                    <div id="pwa-install-section">
                        <button id="pwa-install-btn" style="display: inline-flex; align-items: center; gap: 1rem; padding: 1.2rem 2.5rem; background: linear-gradient(135deg, #e0a84e 0%, #ebb860 100%); color: #2a2a2a; font-family: 'DM Sans', sans-serif; font-weight: 700; border-radius: 14px; border: none; cursor: pointer; box-shadow: 0 10px 30px rgba(224, 168, 78, 0.4); transition: all 0.3s ease; font-size: 1.05rem;" 
                                onmouseover="this.style.transform='translateY(-3px)'; this.style.boxShadow='0 15px 40px rgba(224, 168, 78, 0.5)'" 
                                onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='0 10px 30px rgba(224, 168, 78, 0.4)'">
                            <i class="flaticon-download" style="font-size: 1.5rem;"></i>
                            <span>Install App</span>
                        </button>
                        
                        <!-- iOS Instructions -->
                        <div id="ios-instructions" style="display: none; margin-top: 1.5rem; padding: 1.5rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.2);">
                            <h5 style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: white; margin-bottom: 1rem; font-size: 1rem;">
                                <i class="flaticon-info" style="margin-right: 0.5rem;"></i>Install on iOS
                            </h5>
                            <ol style="font-family: 'DM Sans', sans-serif; color: rgba(255, 255, 255, 0.9); margin: 0; padding-left: 1.25rem; font-size: 0.95rem; line-height: 1.8;">
                                <li>Tap the <strong>Share</strong> button in Safari 📤</li>
                                <li>Scroll down and tap <strong>"Add to Home Screen"</strong></li>
                                <li>Tap <strong>"Add"</strong> to confirm</li>
                            </ol>
                        </div>
                        
                        <!-- Already Installed Message -->
                        <div id="pwa-installed-message" style="display: none; padding: 1.25rem 1.75rem; background: rgba(224, 168, 78, 0.15); backdrop-filter: blur(10px); border-radius: 12px; border: 1px solid rgba(224, 168, 78, 0.3);">
                            <p style="font-family: 'DM Sans', sans-serif; color: white; margin: 0; font-size: 1rem;">
                                <i class="flaticon-check-mark" style="color: #e0a84e; margin-right: 0.5rem; font-size: 1.2rem;"></i>
                                <strong>App is already installed!</strong> Check your home screen or app drawer.
                            </p>
                        </div>
                    </div>
                </div>
                
                <!-- Right: Phone Mockup -->
                <div class="col-lg-6">
                    <div style="position: relative; text-align: center;">
                        <div style="display: inline-block; position: relative;">
                            <!-- Glow Effect -->
                            <div style="position: absolute; inset: -20px; background: radial-gradient(circle, rgba(224, 168, 78, 0.3), transparent 70%); filter: blur(40px); z-index: 0;"></div>
                            
                            <!-- Phone Frame -->
                            <div style="position: relative; width: 340px; padding: 1rem; background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)); backdrop-filter: blur(20px); border-radius: 48px; border: 2px solid rgba(255, 255, 255, 0.2); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);">
                                <!-- Notch -->
                                <div style="width: 120px; height: 28px; background: rgba(0, 0, 0, 0.6); border-radius: 0 0 20px 20px; margin: 0 auto 0.5rem; position: relative;">
                                    <div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: rgba(255, 255, 255, 0.3); border-radius: 50%;"></div>
                                </div>
                                
                                <!-- Screen -->
                                <div style="background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%); border-radius: 36px; padding: 2rem 1.5rem; min-height: 600px;">
                                    <!-- App Logo -->
                                    <div style="text-align: center; margin-bottom: 2rem;">
                                        <img src="{{ asset('storage/app/public/' . $settings->logo) }}" alt="{{ $settings->site_name }}" style="width: 80px; height: 80px; object-fit: contain; border-radius: 20px; background: rgba(45, 134, 89, 0.1); padding: 0.75rem; border: 2px solid rgba(45, 134, 89, 0.3);">
                                        <h4 style="font-family: 'Crimson Text', serif; color: white; margin-top: 1rem; font-size: 1.5rem; font-weight: 700;">{{ $settings->site_name }}</h4>
                                        <p style="font-family: 'DM Sans', sans-serif; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 0;">Mobile Banking</p>
                                    </div>
                                    
                                    <!-- Mock Balance Card -->
                                    <div style="background: linear-gradient(135deg, rgba(45, 134, 89, 0.2), rgba(31, 107, 69, 0.15)); backdrop-filter: blur(10px); border: 1px solid rgba(45, 134, 89, 0.3); border-radius: 20px; padding: 1.5rem; margin-bottom: 1.5rem;">
                                        <p style="font-family: 'DM Sans', sans-serif; color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; margin-bottom: 0.5rem;">Available Balance</p>
                                        <h3 style="font-family: 'Crimson Text', serif; color: white; font-size: 2rem; font-weight: 700; margin: 0;">$24,580.50</h3>
                                    </div>
                                    
                                    <!-- Mock Quick Actions -->
                                    <div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;">
                                        <div style="background: rgba(224, 168, 78, 0.15); border: 1px solid rgba(224, 168, 78, 0.3); border-radius: 14px; padding: 1rem; text-align: center;">
                                            <i class="flaticon-send" style="font-size: 1.5rem; color: #e0a84e; margin-bottom: 0.5rem;"></i>
                                            <p style="font-family: 'DM Sans', sans-serif; color: white; font-size: 0.8rem; margin: 0;">Transfer</p>
                                        </div>
                                        <div style="background: rgba(63, 165, 114, 0.15); border: 1px solid rgba(63, 165, 114, 0.3); border-radius: 14px; padding: 1rem; text-align: center;">
                                            <i class="flaticon-deposit" style="font-size: 1.5rem; color: #3fa572; margin-bottom: 0.5rem;"></i>
                                            <p style="font-family: 'DM Sans', sans-serif; color: white; font-size: 0.8rem; margin: 0;">Deposit</p>
                                        </div>
                                    </div>
                                </div>
                                
                                <!-- Home Indicator -->
                                <div style="width: 140px; height: 5px; background: rgba(255, 255, 255, 0.3); border-radius: 10px; margin: 0.75rem auto 0;"></div>
                            </div>
                        </div>
                        
                        <!-- Floating Badge -->
                        <div style="position: absolute; top: 10%; right: 5%; background: white; padding: 1rem 1.5rem; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); animation: float 3s ease-in-out infinite;">
                            <p style="font-family: 'DM Sans', sans-serif; color: #2a2a2a; font-weight: 700; margin: 0; font-size: 0.9rem;">⚡ Fast & Secure</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>
    
    <style>
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
    </style>
    
    <script>
        // PWA Install Functionality
        (function() {
            let deferredPrompt;
            const installBtn = document.getElementById('pwa-install-btn');
            const iosInstructions = document.getElementById('ios-instructions');
            const installedMessage = document.getElementById('pwa-installed-message');
            
            // Detect iOS
            const isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
            const isInStandaloneMode = ('standalone' in window.navigator) && (window.navigator.standalone);
            
            // Check if already installed
            if (isInStandaloneMode || window.matchMedia('(display-mode: standalone)').matches) {
                installBtn.style.display = 'none';
                installedMessage.style.display = 'block';
                return;
            }
            
            // For iOS, show instructions instead of install button
            if (isIOS) {
                installBtn.style.display = 'none';
                iosInstructions.style.display = 'block';
                return;
            }
            
            // Capture the beforeinstallprompt event
            window.addEventListener('beforeinstallprompt', (e) => {
                e.preventDefault();
                deferredPrompt = e;
                installBtn.style.display = 'inline-flex';
            });
            
            // Install button click handler
            installBtn.addEventListener('click', async () => {
                if (!deferredPrompt) {
                    alert('App installation is not available on this device or browser. Please use Chrome, Edge, or Safari.');
                    return;
                }
                
                deferredPrompt.prompt();
                const { outcome } = await deferredPrompt.userChoice;
                
                if (outcome === 'accepted') {
                    installBtn.style.display = 'none';
                    installedMessage.style.display = 'block';
                } else {
                    console.log('User dismissed the install prompt');
                }
                
                deferredPrompt = null;
            });
            
            // Listen for successful installation
            window.addEventListener('appinstalled', () => {
                installBtn.style.display = 'none';
                installedMessage.style.display = 'block';
                deferredPrompt = null;
            });
        })();
    </script>
    @endif
{{-- 
    <!-- Partners Section -->
    <section style="padding: 5rem 0 6rem; background: white;">
        <div class="container">
            <div style="text-align: center; margin-bottom: 4rem;">
                <div style="display: inline-block; padding: 0.5rem 1.25rem; background: linear-gradient(135deg, rgba(224, 168, 78, 0.1) 0%, rgba(235, 184, 96, 0.1) 100%); border-radius: 50px; margin-bottom: 1.5rem;">
                    <span style="font-family: 'DM Sans', sans-serif; font-weight: 600; color: #e0a84e; font-size: 0.9rem; letter-spacing: 0.05em;">TRUSTED PARTNERSHIPS</span>
                </div>
                
                <h3 style="font-family: 'Crimson Text', serif; font-size: 2.8rem; font-weight: 700; color: #2a2a2a; margin-bottom: 1rem;">Become a Partner</h3>
                
                <div style="width: 80px; height: 5px; background: linear-gradient(90deg, #2d8659 0%, #3fa572 100%); border-radius: 10px; margin: 0 auto;"></div>
            </div>

            <div class="row g-4 justify-content-center align-items-center">
                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-1.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-2.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-3.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-4.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-5.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-6.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-7.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-8.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-9.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-10.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-11.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-12.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-13.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-14.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-15.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-16.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-17.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>

                <div class="col-lg-2 col-md-3 col-sm-4 col-6">
                    <div style="padding: 1.5rem; background: #fafafa; border-radius: 16px; text-align: center; transition: all 0.3s ease; border: 1px solid #f0f0f0;" 
                         onmouseover="this.style.background='white'; this.style.transform='translateY(-5px)'; this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08)'" 
                         onmouseout="this.style.background='#fafafa'; this.style.transform='translateY(0)'; this.style.boxShadow='none'">
                        <img src="temp/custom/assets/img/partner-image/partner-18.png" alt="partner" style="width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s;" onmouseover="this.style.opacity='1'" onmouseout="this.style.opacity='0.7'">
                    </div>
                </div>
            </div>
        </div>
    </section> --}}

@endsection