* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    color: #2B2B2B;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: #0A2C6B;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    margin-right: 25px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #C7A14A;
}

.top-bar i {
    margin-right: 8px;
}

/* Main Navigation */
.main-nav {
    background: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A2C6B !important;
}

.navbar-brand span {
    color: #C7A14A;
}

.nav-link {
    color: #0A2C6B !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #C7A14A !important;
}

.navbar-toggler {
    border: 2px solid #0A2C6B;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 44, 107, 1)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    height: 650px;
    background: linear-gradient(135deg, rgba(10,44,107,0.85) 0%, rgba(11,58,130,0.85) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-gold {
    background: #C7A14A;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

.btn-gold:hover {
    background: #b8923f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(199,161,74,0.4);
    color: white;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-left: 15px;
}

.btn-outline:hover {
    background: white;
    color: #0A2C6B;
}

/* Quick Access */
.quick-access {
    background: #0A2C6B;
}

.quick-access .item {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    color: white;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}

.quick-access .item:last-child {
    border-right: none;
}

.quick-access .item:hover {
    background: #0B3A82;
}

.quick-access .item i {
    font-size: 2rem;
    margin-right: 15px;
    color: #C7A14A;
}

.quick-access .item h5 {
    margin: 0;
    font-weight: 600;
}

.quick-access .item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0A2C6B;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0A2C6B, #C7A14A);
    margin: 20px auto;
    border-radius: 2px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card .content {
    padding: 30px;
}

.service-card h4 {
    color: #0A2C6B;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card .btn-link {
    color: #C7A14A;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.service-card .btn-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-card:hover .btn-link i {
    transform: translateX(5px);
}

/* Features */
.features {
    padding: 100px 0;
    background: white;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0A2C6B 0%, #0B3A82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

.feature-box h4 {
    color: #0A2C6B;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, #0A2C6B 0%, #0B3A82 100%);
    padding: 80px 0;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #C7A14A;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(rgba(10,44,107,0.9), rgba(10,44,107,0.9)),
                url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1920&q=80') center/cover fixed;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #0A2C6B;
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #C7A14A;
}

.footer-desc {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-heading {
    color: #C7A14A;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #C7A14A;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    color: #C7A14A;
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #C7A14A;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 60px;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom a {
    color: #C7A14A;
}

/* Login Page */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #E6F0FA 0%, #FFFFFF 100%);
    padding: 50px 0;
}

.login-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.login-image {
    background: linear-gradient(135deg, rgba(10,44,107,0.9) 0%, rgba(11,58,130,0.9) 100%),
                url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=800&q=80') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px;
}

.login-image h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.login-image p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.login-form {
    padding: 60px 50px;
}

.login-form h3 {
    color: #0A2C6B;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-form .subtitle {
    color: #666;
    margin-bottom: 35px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #0A2C6B;
    box-shadow: 0 0 0 3px rgba(10,44,107,0.1);
}

.btn-login {
    background: #0A2C6B;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-login:hover {
    background: #0B3A82;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10,44,107,0.3);
}

/* Dashboard */
.dashboard-body {
    background: #f4f6f9;
}

.dashboard-nav {
    background: #0A2C6B;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dashboard-nav .navbar-brand {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-nav .navbar-brand span {
    color: #C7A14A;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.user-menu span {
    color: white;
    font-weight: 500;
}

.logout-btn {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #C7A14A;
    color: white;
}

.dashboard-content {
    background: #f4f6f9;
    min-height: calc(100vh - 70px);
    padding: 30px;
}

.sidebar {
    background: white;
    border-radius: 15px;
    padding: 25px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.sidebar-menu a {
    display: block;
    padding: 15px 30px;
    color: #2B2B2B;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: #E6F0FA;
    color: #0A2C6B;
    border-left-color: #C7A14A;
}

.sidebar-menu a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.welcome-card {
    background: linear-gradient(135deg, #0A2C6B 0%, #0B3A82 100%);
    border-radius: 20px;
    color: white;
    padding: 40px;
    margin-bottom: 30px;
}

.welcome-card h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-card p {
    opacity: 0.9;
    margin: 0;
}

.date-display {
    opacity: 0.9;
    margin: 0;
}

.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    height: auto;
}

.dashboard-card.balance-card {
    background: linear-gradient(135deg, #0A2C6B 0%, #0B3A82 100%);
    color: white;
}

.dashboard-card.balance-card .card-content label {
    color: rgba(255,255,255,0.8);
}

.dashboard-card.balance-card .card-content h3 {
    color: #C7A14A;
}

.dashboard-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: #E6F0FA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dashboard-card .card-icon i {
    font-size: 1.5rem;
    color: #0A2C6B;
}

.dashboard-card .card-icon.blue {
    background: #E6F0FA;
}

.dashboard-card .card-icon.blue i {
    color: #0A2C6B;
}

.dashboard-card .card-icon.green {
    background: #d4edda;
}

.dashboard-card .card-icon.green i {
    color: #28a745;
}

.dashboard-card.balance-card .card-icon {
    background: rgba(255,255,255,0.2);
}

.dashboard-card.balance-card .card-icon i {
    color: #C7A14A;
}

.dashboard-card .card-content label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.dashboard-card .card-content h3 {
    color: #0A2C6B;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.dashboard-card h5 {
    color: #0A2C6B;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-table {
    width: 100%;
}

.info-table tr td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr td:first-child {
    color: #6c757d;
    width: 40%;
}

.info-table tr td:last-child {
    font-weight: 500;
    text-align: right;
}

.btn-transfer {
    background: #C7A14A;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-transfer:hover {
    background: #b8922d;
    transform: translateY(-2px);
}

.transaction-table {
    margin: 0;
}

.transaction-table thead th {
    background: #0A2C6B;
    color: white;
    font-weight: 500;
    border: none;
    padding: 15px;
}

.transaction-table tbody td {
    padding: 18px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.badge-success {
    background: #28a745 !important;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-danger {
    background: #dc3545 !important;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.view-all {
    color: #C7A14A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.view-all:hover {
    color: #0A2C6B;
}

.btn-primary {
    background: #0A2C6B;
    border-color: #0A2C6B;
}

.btn-primary:hover {
    background: #0B3A82;
    border-color: #0B3A82;
}

/* Responsive */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        height: auto;
        padding: 100px 0;
    }
    
    .quick-access .item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    
    .login-image {
        min-height: 300px;
    }
    
    .login-form {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .balance-display {
        font-size: 2rem;
    }
}
