:root{
    --primary:#003b5c;
    --secondary:#00c2ff;
    --success:#16a34a;
    --danger:#dc2626;
    --bg:#f5f8fc;
    --white:#ffffff;
}

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* General */

body{
    font-family:Inter, Arial, sans-serif;
    background:var(--bg);
    color:#333;
}

/* Navbar */

.navbar{
    background:#fff;
    box-shadow:0 1px 20px rgba(0,0,0,.05);
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

.container{
    max-width:1200px;
}

.logo{
    width:70px;
    height:70spx;
    object-fit:contain;
    transform:scale(1.8);
    display:block;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.navbar-brand span{
    font-size:2rem;
    font-weight:700;
    color:#3e0504;
}

.navbar-brand img{
    width:60px;
    height:auto;
}

.navbar-brand:hover{
    color:var(--secondary);
}

.navbar-logo{
    width: 85px;
    height:85px;
    object-fit:contain;
}

.brand-mark{

    width:48px;
    height:48px;

    border-radius:12px;

    background:
    linear-gradient(
        135deg,
        #00c2ff,
        #003b5c
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:800;

    font-size:1.1rem;

}

.brand-text{

    color:#0c055e;

    font-size:1.4rem;

    font-weight:700;

}

.brand-name{

    font-size:1.8rem;

    font-weight:700;

    letter-spacing:2px;

    color:#0c055e;

    text-transform:uppercase;

    font-family:
    "Montserrat",
    sans-serif;

}

.brand-subtitle{

    font-size:1rem;

    font-weight:600;

    letter-spacing:4px;

    color:#6b7280;

    text-transform:uppercase;

}

/* Hero */

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;

    background:
    radial-gradient(
        circle at top right,
        rgba(0,194,255,.08),
        transparent 30%
    ),
    linear-gradient(
        180deg,
        #ffffff,
        #f5f8fc
    );

    padding:80px 0;
}

.dashboard-preview{
    position:relative;
}

.balance-card{

    background:
    linear-gradient(
        135deg,
        #003b5c,
        #005f8d
    );

    color:white;

    padding:45px;

    border-radius:28px;

    box-shadow:
    0 25px 60px rgba(0,59,92,.25);

}

.balance-card h6{
    opacity:.8;
    font-size:14px;
    margin-bottom:15px;
}

.balance-card h1{
    font-size:3rem;
    font-weight:800;
}

.balance-card p{
    opacity:.85;
}

.balance-amount{
    font-size:48px;
    font-weight:800;
    color:#0c055e;
}

.transaction-card{

    background:white;

    padding:25px;

    border-radius:20px;

    position:absolute;

    right:-10px;

    bottom:-25px;

    width:250px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.1);

}

/* Buttons */

.btn-primary-custom{

    background:
    linear-gradient(
        135deg,
        #00c2ff,
        #003b5c
    );

    color:white;

    border:none;

    padding:16px 34px;

    border-radius:18px;

    font-weight:700;

}

.btn-primary-custom:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    color:white;
}

/* Forms */

.form-control{
    border-radius:12px;
    padding:12px;
}

/* Cards */

.card-bank{

    background:#ffffff;

    border:1px solid rgba(0,0,0,.04);

    border-radius:24px;

    box-shadow:
    0 12px 30px rgba(15,23,42,.06);

}

.card-logo{

    width:35px;

    height:35px;

    object-fit:contain;

}

/* Virtual Card */

.credit-card{
    max-width:650px;
    height:280px;

    border-radius:30px;
    padding:35px;

    color:white;

    background:
    linear-gradient(
        135deg,
        #07527c,
        #18b5ec
    );

    position:relative;
    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.card-brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    margin-top:25px;
}

.card-logo{
    width:24px;
    height:24px;
}

.card-number{
    font-size:20px;
    letter-spacing:2px;
    margin-top:50px;
    font-weight:600;
}

.card-holder{
    margin-top:30px;
    font-size:18px;
    font-weight:500;
}

.card-footer{
    position:absolute;

    left:35px;
    right:35px;
    bottom:30px;

    display:flex;
    justify-content:space-between;

    font-size:18px;
}

.chip{

    width:60px;

    height:45px;

    border-radius:10px;

    background:
    linear-gradient(
        135deg,
        #ffd700,
        #c9a227
    );

}

.mastercard{
    position:relative;

    width:70px;
    height:40px;
}

.circle{
    width:40px;
    height:40px;

    border-radius:50%;

    position:absolute;
}

.red{
    background:#eb001b;
    left:0;
}

.yellow{
    background:#f79e1b;
    right:0;
    opacity:.85;
}

/* Progress Bar */

.progress{
    height:10px;
    border-radius:20px;
    overflow:hidden;
}

/* Tables */

.table{
    margin-top:20px;
}

.table thead{
    background:#f8fafc;
}

.table td,
.table th{
    padding:18px;
}

/* Dashboard Balance */

.card-bank h2{
    color:var(--primary);
    font-weight:700;
}

/* Responsive */

@media(max-width:768px){

    .hero{
        text-align:center;
        padding:50px 0;
    }

    .credit-card{
        height:auto;
        min-height:220px;
    }

}

/* LOGIN PAGE */

.login-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #eef3f8,
        #dde7f0
    );

}

.login-card{

    width:100%;

    max-width:500px;

    background:white;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);

}

.login-logo{

    width:100px;

    height:100px;

    object-fit:contain;

    display:block;

    margin:0 auto 20px;

}

.login-title{

    text-align:center;

    font-size:2rem;

    font-weight:700;

    color:#003b5c;

    margin-bottom:30px;

}

.login-card .form-control{

    height:60px;

    border-radius:16px;

}

.login-btn{

    width:100%;

    padding:20px;

    border:none;

    border-radius:30px;

    color:white;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #0ad6ff,
        #100879
    );

}

img{
    max-width:100%;
}

/* Statistics Section */

.stats-section h2{

    color:#003b5c;

    font-size:3rem;

    font-weight:800;

}

.stats-section p{

    color:#6b7280;

    font-size:1.1rem;

}

/* ACCOUNT TYPES */

.account-type-card{

    background:white;

    border:2px solid #e5e7eb;

    border-radius:20px;

    padding:30px;

    text-align:center;

    cursor:pointer;

    transition:.3s;

    height:100%;

}

.account-type-card:hover{

    transform:translateY(-5px);

    border-color:#00c2ff;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

.account-type-card.active{

    border-color:#003b5c;

    background:
    linear-gradient(
        135deg,
        #003b5c,
        #005f8d
    );

    color:white;

}

.account-type-card h4{

    font-weight:800;

    margin-bottom:15px;

}

.account-card{

    cursor:pointer;

    transition:.3s;

    border:2px solid #e5e7eb;

}

.account-card:hover{

    transform:translateY(-4px);

}

.account-card.active{

    background:#003b5c;

    color:white;

    border-color:#003b5c;

}

.bank-title{
    font-size:34px;
    font-weight:300;
    letter-spacing:2px;
    text-transform:uppercase;
}

.navbar small{
    font-size:14px;
    letter-spacing:1px;
    color:#666;
}

.premium-badge{
    position:absolute;

    top:40px;
    right:40px;

    padding:8px 18px;

    border-radius:20px;

    background:
    rgba(255,255,255,.15);

    color:white;

    font-size:12px;
    font-weight:600;
    letter-spacing:2px;

    backdrop-filter:blur(10px);
}

/* ADMIN PORTAL */

.admin-layout{
    display:flex;
    min-height:100vh;
}

.admin-sidebar{

    width:260px;

    background:#003b5c;

    color:white;

    padding:30px;

}

.admin-logo{

    text-align:center;

    margin-bottom:40px;

}

.admin-logo h4{

    margin-top:15px;

}

.admin-sidebar ul{

    list-style:none;

    padding:0;

}

.admin-sidebar li{

    padding:15px;

    margin-bottom:10px;

    border-radius:12px;

    cursor:pointer;

}

.admin-sidebar li:hover,
.admin-sidebar .active{

    background:
    rgba(255,255,255,.12);

}

.admin-content{

    flex:1;

    padding:40px;

    background:#f6f9fc;

}

.admin-sidebar{
    position:sticky;
    top:0;
    height:100vh;
}

.card-bank{
    transition:.3s;
}

.card-bank:hover{
    transform:translateY(-3px);
}

.table-hover tbody tr:hover{
    background:#f7f9fc;
}

/* PREMIUM HOMEPAGE CARDS */

.service-card{

    background:
    linear-gradient(
        135deg,
        #0b3f5f,
        #0f6b98
    );

    color:white;

    border:none;

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(11,63,95,.20);

    transition:.3s;

}

.service-card:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 25px 50px rgba(11,63,95,.30);

}

.service-card h4,
.service-card h5,
.service-card h6{

    color:white;

    font-weight:700;

}

.service-card p{

    color:
    rgba(255,255,255,.85);

}

.mastercard{

    position:absolute;

    bottom:30px;

    right:40px;

    width:70px;

    height:40px;

}

.circle{

    width:40px;

    height:40px;

    border-radius:50%;

    position:absolute;

}

.red{

    background:#eb001b;

    left:0;

}

.yellow{

    background:#f79e1b;

    right:0;

    opacity:.85;

}

.credit-card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:
    rgba(255,255,255,.06);

    top:-80px;

    right:-80px;

}

.credit-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:
    rgba(255,255,255,.04);

    bottom:-90px;

    left:-60px;

}