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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo h1 {
    color: #0052cc;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0052cc;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #003d99 0%, #0052cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0052cc;
    border: 2px solid #0052cc;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
    border-color: transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banking-card {
    background: linear-gradient(45deg, #1a1a1a, #333);
    width: 350px;
    height: 220px;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.banking-card:hover {
    transform: rotateY(-5deg) rotateX(5deg);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: white;
}

.card-info {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.9rem;
}

/* Products & Services Section */
.products-services {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card i {
    font-size: 3rem;
    color: #0052cc;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

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



/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

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

.learn-more {
    color: #0052cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #003d99;
}

.smart-banking-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-shield {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.safety-shield i {
    font-size: 3rem;
    color: #0052cc;
    margin-bottom: 1rem;
}

.shield-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.shield-text span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.shield-text span:last-child {
    font-size: 1rem;
    color: #666;
}

/* Mobile App Section */
.mobile-app {
    padding: 5rem 0;
    background: white;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-app-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.mobile-app-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0052cc;
}

.mobile-app-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.app-store-btn,
.google-play-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0052cc;
    border-radius: 5px;
    background: white;
    color: #0052cc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-store-btn:hover,
.google-play-btn:hover {
    background: #0052cc;
    color: white;
}

.app-store-btn i,
.google-play-btn i {
    font-size: 1.5rem;
}

.mobile-app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-stack {
    position: relative;
}

.phone {
    background: #333;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.phone:hover {
    transform: rotateY(-5deg) rotateX(5deg);
}

.phone-screen {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    width: 200px;
    height: 300px;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-preview {
    background: #0052cc;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.app-content-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.balance-preview {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.quick-actions {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    color: #666;
}

.action-item i {
    font-size: 1.2rem;
    color: #0052cc;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #0052cc;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0052cc;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0052cc;
}

/* Bank Input Wrapper */
.bank-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.bank-input-wrapper input {
    flex: 1;
    padding-right: 2.5rem;
}

.bank-icon {
    position: absolute;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0052cc;
    pointer-events: none;
    transition: all 0.3s ease;
}

.bank-icon i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .bank-icon {
        font-size: 1rem;
        right: 0.6rem;
    }

    .bank-icon i {
        font-size: 1rem;
    }

    .bank-input-wrapper input {
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    .bank-icon {
        font-size: 0.9rem;
        right: 0.5rem;
    }

    .bank-icon i {
        font-size: 0.9rem;
    }

    .bank-input-wrapper input {
        padding-right: 1.8rem;
    }
}

/* Success Splash Screen */
.success-splash {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
}

.success-content {
    text-align: center;
    max-width: 500px;
    padding: 3rem 2rem;
    animation: successSlideIn 0.5s ease;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    animation: successPulse 1s ease;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.success-content h2 {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.success-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.success-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
    color: #333;
}

.success-detail-item:last-child {
    border-bottom: none;
}

.success-detail-item strong {
    color: #0052cc;
    font-weight: 600;
}

@media (max-width: 768px) {
    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-content h2 {
        font-size: 1.5rem;
    }

    .success-details {
        padding: 1rem;
    }
}

.auth-footer {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.auth-footer a {
    color: #0052cc;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard {
    margin-top: 80px;
    padding: 2rem;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
}

/* Dashboard Tabs */
.dashboard-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e1e5e9;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #0052cc;
}

.tab-btn.active {
    color: #0052cc;
    border-bottom-color: #0052cc;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.dashboard-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0052cc;
}

.dashboard-header h1 {
    color: #333;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #666;
}

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

.dashboard-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 82, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc 0%, #0066ff 100%);
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dashboard-card h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-balance {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

.transaction-list {
    list-style: none;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-info {
    flex: 1;
}

.transaction-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

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

.transfer-type {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.transaction-description {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.transaction-date {
    color: #666;
    font-size: 0.85rem;
}

.no-transactions {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem 0;
}

/* Dashboard Sections */
.dashboard-section {
    margin-top: 80px;
    padding: 2rem;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
}

.account-details {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.account-details p {
    margin: 0.5rem 0;
    color: #666;
}

.support-info p {
    margin: 0.5rem 0;
    color: #666;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.help-link:hover {
    background: #e9ecef;
}

.location-info p {
    margin: 0.5rem 0;
    color: #666;
}

.scheduled-payments {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem 0;
}

.transaction-amount {
    font-weight: 600;
}

.transaction-amount.positive {
    color: #28a745;
}

.transaction-amount.negative {
    color: #dc3545;
}

/* Transfer Form */
.transfer-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.transfer-form h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Dashboard Additional Styles */
.user-welcome {
    color: #333;
    font-weight: 500;
    margin-right: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .user-welcome {
        max-width: 140px;
        font-size: 0.85rem;
        margin-right: 0.4rem;
    }
}

@media (max-width: 768px) {
    .user-welcome {
        max-width: 120px;
        font-size: 0.8rem;
        margin-right: 0.3rem;
    }

    .nav-buttons {
        gap: 0.3rem;
    }

    .nav-buttons .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .user-welcome {
        max-width: 100px;
        font-size: 0.75rem;
        margin-right: 0.25rem;
    }

    .nav-buttons {
        gap: 0.25rem;
    }

    .nav-buttons .btn-secondary {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

.account-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.account-actions button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.view-all-transactions {
    margin-top: 1rem;
    text-align: center;
}

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

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-action-btn:hover {
    background: #0052cc;
    color: white;
    border-color: #0052cc;
}

.quick-action-btn i {
    font-size: 1.5rem;
}

.quick-action-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

.spending-chart {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 1rem 0;
}

.chart-placeholder {
    text-align: center;
    color: #666;
    padding: 2rem;
}

.chart-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #0052cc;
    opacity: 0.7;
}

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

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

/* Professional Spending Insights */
.spending-insights {
    padding: 0;
}

.spending-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e5e9;
}

.spending-total h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.spending-total .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.spending-trend {
    text-align: right;
}

.trend-indicator {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trend-indicator.positive {
    color: #28a745;
}

.trend-indicator.negative {
    color: #dc3545;
}

.trend-text {
    font-size: 0.8rem;
    color: #666;
}

.spending-categories {
    margin-bottom: 1.5rem;
}

.category-item {
    margin-bottom: 1rem;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.category-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    color: #0052cc;
}

.category-icon i {
    font-size: 1rem;
}

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

.category-name {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.category-amount {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.category-bar {
    width: 100%;
    height: 6px;
    background: #f8f9fa;
    border-radius: 3px;
    overflow: hidden;
}

.category-progress {
    height: 100%;
    background: linear-gradient(90deg, #0052cc 0%, #0066ff 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.spending-insights-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e1e5e9;
}

.spending-insights-footer .btn-secondary {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.security-notice {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #0052cc;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 500;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc3545;
}

.status-indicator.active {
    background: #28a745;
}

/* Form Select Styles */
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group select:focus {
    outline: none;
    border-color: #0052cc;
}

/* Additional Page Styles */

/* Personal Banking Page */
.personal-hero {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
}

.banking-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card {
    background: linear-gradient(45deg, #1a1a1a, #333);
    width: 300px;
    height: 180px;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.card-1 {
    transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    z-index: 2;
}

.card-2 {
    transform: rotateY(-15deg) rotateX(10deg) translateY(-20px);
    z-index: 1;
    opacity: 0.8;
}

.card:hover {
    transform: rotateY(-5deg) rotateX(5deg);
}

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.card-number {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: white;
}

.card-info {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.8rem;
}

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

.section-badge {
    background: linear-gradient(135deg, #0052cc, #0066ff);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.personal-banking-illustration {
    text-align: center;
    color: white;
}

.personal-banking-illustration i {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.floating-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}



.floating-card:nth-child(2) {
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.account-types {
    padding: 5rem 0;
    background: white;
}

.account-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.account-type-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.account-icon {
    width: 80px;
    height: 80px;
    background: #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.account-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.account-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-features i {
    color: #28a745;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    justify-content: center;
}

.highlight {
    background: linear-gradient(135deg, #0052cc, #0066ff);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banking-services {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-item i {
    font-size: 2.5rem;
    color: #0052cc;
    margin-bottom: 1rem;
}

.loan-products {
    padding: 5rem 0;
    background: white;
}

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

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

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

.loan-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0052cc, #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.loan-rate {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 0.5rem;
}

.loan-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.loan-feature {
    background: #f8f9fa;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e1e5e9;
}

/* Business Banking Page */
.business-hero {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
}

.business-banking-illustration {
    text-align: center;
    color: white;
}

.business-banking-illustration i {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.floating-elements {
    position: absolute;
    top: 20px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.personal-hero .floating-elements {
    position: absolute;
    top: 50px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-element {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    animation-delay: 2s;
}

.business-accounts {
    padding: 5rem 0;
    background: white;
}

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

.business-account-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.business-loans {
    padding: 5rem 0;
    background: #f8f9fa;
}

.business-tools {
    padding: 5rem 0;
    background: white;
}

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

.tool-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.tool-card i {
    font-size: 2.5rem;
    color: #0052cc;
    margin-bottom: 1rem;
}

.tool-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.tool-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tool-card ul li:before {
    content: "•";
    color: #0052cc;
    position: absolute;
    left: 0;
}

/* Wealth Management Page */
.wealth-hero {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
}

.wealth-illustration {
    text-align: center;
    color: white;
}

.wealth-illustration i {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.investment-chart {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.chart-points {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    bottom: 0;
}

.point:nth-child(1) {
    left: 10%;
    bottom: 20%;
}

.point:nth-child(2) {
    left: 30%;
    bottom: 40%;
}

.point:nth-child(3) {
    left: 60%;
    bottom: 60%;
}

.point:nth-child(4) {
    left: 90%;
    bottom: 80%;
}

.wealth-services {
    padding: 5rem 0;
    background: white;
}

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

.wealth-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.wealth-icon {
    width: 80px;
    height: 80px;
    background: #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.wealth-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.wealth-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wealth-features i {
    color: #28a745;
}

.investment-products {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.investment-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0052cc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.investment-rate {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0052cc;
    margin: 1rem 0;
}

.financial-planning {
    padding: 5rem 0;
    background: white;
}

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

.planning-item {
    text-align: center;
    padding: 2rem;
}

.planning-item i {
    font-size: 2.5rem;
    color: #0052cc;
    margin-bottom: 1rem;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
}

.about-illustration {
    text-align: center;
    color: white;
}

.about-illustration i {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.company-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.company-story {
    padding: 5rem 0;
    background: white;
}

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.mission-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    background: #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.leadership {
    padding: 5rem 0;
    background: white;
}

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

.leader-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.leader-photo {
    width: 100px;
    height: 100px;
    background: #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.leader-photo i {
    font-size: 2.5rem;
    color: white;
}

.leader-title {
    color: #0052cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.awards {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.award-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.community-impact {
    padding: 5rem 0;
    background: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.impact-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.impact-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.impact-text ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.impact-text ul li:before {
    content: "•";
    color: #0052cc;
    position: absolute;
    left: 0;
}

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

.impact-stat {
    text-align: center;
}

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0052cc;
    display: block;
}

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

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
}

.contact-illustration {
    text-align: center;
    color: white;
}

.contact-illustration i {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.contact-elements {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.contact-element {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.contact-element:nth-child(2) {
    animation-delay: 1s;
}

.contact-element:nth-child(3) {
    animation-delay: 2s;
}

.contact-methods {
    padding: 5rem 0;
    background: white;
}

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

.contact-method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.contact-info {
    margin: 1.5rem 0;
    text-align: left;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.hours {
    color: #0052cc;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

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

.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
    font-family: inherit;
}

.form-group textarea:focus {
    outline: none;
    border-color: #0052cc;
}

.contact-info-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #0052cc;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.faq-section {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0052cc;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.branch-locator {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.locator-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.locator-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.locator-info ul {
    list-style: none;
    margin-top: 1rem;
}

.locator-info ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.locator-info ul li:before {
    content: "•";
    color: #0052cc;
    position: absolute;
    left: 0;
}

/* Contact Us Section */
.contact-us {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: #0052cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.contact-option h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0052cc 0%, #0066ff 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Active Navigation */
.nav-menu a.active {
    color: #0052cc;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .banking-card {
        width: 280px;
        height: 180px;
        padding: 1.5rem;
    }

    .card-number {
        font-size: 1.2rem;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}