/*
|--------------------------------------------------------------------------
| AHEBANK Responsive Main Style Sheet
|--------------------------------------------------------------------------
*/


:root {

    --primary:#111827;

    --secondary:#2563eb;

    --background:#f5f7fb;

    --white:#ffffff;

    --text:#1f2937;

    --muted:#6b7280;

    --border:#e5e7eb;

    --success:#16a34a;

    --danger:#dc2626;

}



* {

    margin:0;

    padding:0;

    box-sizing:border-box;

}



html {

    scroll-behavior:smooth;

}



body {

    font-family:

    Inter,

    Arial,

    Helvetica,

    sans-serif;

    background:var(--background);

    color:var(--text);

    min-height:100vh;

}



img {

    max-width:100%;

    height:auto;

}



a {

    text-decoration:none;

    color:inherit;

}



button,

input,

select,

textarea {

    font-family:inherit;

}







/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
*/


.container {

    width:92%;

    max-width:1200px;

    margin:auto;

}







/*
|--------------------------------------------------------------------------
| Navbar
|--------------------------------------------------------------------------
*/


.main-navbar {

    background:var(--white);

    border-bottom:1px solid var(--border);

    padding:16px 0;

    position:sticky;

    top:0;

    z-index:1000;

}



.nav-container {

    width:92%;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.nav-logo a {

    font-size:26px;

    font-weight:800;

}



.nav-menu {

    display:flex;

    gap:25px;

    align-items:center;

}



.nav-menu a {

    font-size:15px;

    font-weight:600;

}



.nav-menu button {

    background:var(--primary);

    color:white;

    border:none;

    padding:12px 20px;

    border-radius:10px;

}







/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/


.hero {

    padding:90px 0;

    text-align:center;

}



.hero h1 {

    font-size:52px;

    line-height:1.2;

}



.hero p {

    max-width:700px;

    margin:20px auto;

    color:var(--muted);

    font-size:18px;

}







/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/


.btn,

button {

    background:var(--secondary);

    color:white;

    padding:14px 24px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-weight:700;

}



.btn:hover,

button:hover {

    opacity:.9;

}







/*
|--------------------------------------------------------------------------
| Auth Pages
|--------------------------------------------------------------------------
*/


.register-wrapper {

    min-height:100vh;

    display:flex;

}



.register-banner {

    flex:1;

    background:var(--primary);

    color:white;

    padding:70px;

}



.register-content {

    flex:1;

    background:white;

    padding:70px;

}



.auth-card {

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:

    0 10px 30px rgba(0,0,0,.08);

}



.form-group {

    margin-bottom:20px;

}



.form-group label {

    display:block;

    margin-bottom:8px;

    font-weight:700;

}



input,

select,

textarea {

    width:100%;

    padding:15px;

    border:1px solid var(--border);

    border-radius:12px;

    background:white;

}



input:focus,

select:focus {

    outline:none;

    border-color:var(--secondary);

}







/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/


.card,

.wallet-card,

.stat-card {

    background:white;

    padding:25px;

    border-radius:18px;

    box-shadow:

    0 5px 20px rgba(0,0,0,.05);

}







/*
|--------------------------------------------------------------------------
| Dashboard
|--------------------------------------------------------------------------
*/


.dashboard-section {

    padding:40px 0;

}



.dashboard-grid {

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}



.balance-card {

    background:var(--primary);

    color:white;

    padding:35px;

    border-radius:22px;

}



.balance-card h1 {

    font-size:42px;

}







/*
|--------------------------------------------------------------------------
| Sidebar
|--------------------------------------------------------------------------
*/


.dashboard-layout {

    display:flex;

}



.dashboard-sidebar {

    width:260px;

    background:var(--primary);

    color:white;

    min-height:100vh;

    padding:25px;

}



.sidebar-menu a {

    display:flex;

    gap:10px;

    padding:14px;

    border-radius:10px;

    margin-bottom:8px;

}



.sidebar-menu a:hover {

    background:#1f2937;

}



.dashboard-content {

    flex:1;

    padding:30px;

}







/*
|--------------------------------------------------------------------------
| Tables
|--------------------------------------------------------------------------
*/


.table-wrapper {

    overflow-x:auto;

}



table {

    width:100%;

    border-collapse:collapse;

    background:white;

    border-radius:15px;

}



th,

td {

    padding:15px;

    border-bottom:1px solid var(--border);

    text-align:left;

}







/*
|--------------------------------------------------------------------------
| Alerts
|--------------------------------------------------------------------------
*/


.alert {

    padding:15px;

    border-radius:12px;

    margin-bottom:20px;

}



.alert.success {

    background:#dcfce7;

    color:#166534;

}



.alert.error {

    background:#fee2e2;

    color:#991b1b;

}







/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/


.main-footer {

    background:var(--primary);

    color:white;

    padding:45px 0;

}



.footer-container {

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(200px,1fr));

    gap:30px;

}







/*
|--------------------------------------------------------------------------
| Mobile Android / iPhone
|--------------------------------------------------------------------------
*/


@media(max-width:768px){



.container,

.nav-container {

    width:94%;

}



.nav-container {

    flex-direction:column;

    gap:15px;

}



.nav-menu {

    width:auto;

    flex-direction:row;

    gap:20px;

}



.hero {

    padding:50px 0;

}



.hero h1 {

    font-size:32px;

}



.register-wrapper {

    flex-direction:column;

}



.register-banner,

.register-content {

    padding:30px 20px;

}



.dashboard-layout {

    flex-direction:column;

}



.dashboard-sidebar {

    width:100%;

    min-height:auto;

}



.dashboard-content {

    padding:20px;

}



.balance-card h1 {

    font-size:30px;

}



.card,

.wallet-card,

.stat-card {

    padding:20px;

}



button,

.btn {

    width:100%;

}



table {

    min-width:700px;

}



}







/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/


@media(max-width:420px){


.hero h1 {

    font-size:28px;

}


.auth-card {

    padding:20px;

}


.nav-logo a {

    font-size:22px;

}


}







/*
|--------------------------------------------------------------------------
| iPhone Safe Area
|--------------------------------------------------------------------------
*/


@supports(padding:max(0px)) {


body {

padding-bottom:

env(safe-area-inset-bottom);

}


}
/*
|--------------------------------------------------------------------------
| AHEBANK Premium Homepage
|--------------------------------------------------------------------------
*/


.premium-hero {

    background:
    radial-gradient(circle at top,
    rgba(37,99,235,.25),
    transparent 40%),
    #050505;

    color:white;

    padding:120px 0;

}



.hero-content {

    text-align:center;

}



.hero-logo img {

    width:120px;

    margin-bottom:30px;

}



.premium-hero h1 {

    font-size:56px;

    font-weight:800;

    background:linear-gradient(
        90deg,
        #ffffff,
        #d4af37
    );

    -webkit-background-clip:text;

    color:transparent;

}



.premium-hero p {

    color:#d1d5db;

    font-size:20px;

    max-width:750px;

}






/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/


.btn-outline {

    display:inline-block;

    padding:14px 25px;

    border-radius:12px;

    border:1px solid #d4af37;

    color:#d4af37;

    margin-left:10px;

}



.btn-outline:hover {

    background:#d4af37;

    color:#111;

}








/*
|--------------------------------------------------------------------------
| Premium Cards
|--------------------------------------------------------------------------
*/


.premium-card {

    text-align:center;

    border:1px solid rgba(212,175,55,.2);

}



.premium-card h2 {

    font-size:40px;

    color:#d4af37;

}








/*
|--------------------------------------------------------------------------
| Security Section
|--------------------------------------------------------------------------
*/


.security-section {

    padding:70px 0;

}



.security-card {

    background:#111827;

    color:white;

    padding:50px;

    border-radius:25px;

    text-align:center;

}



.security-items {

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:30px;

}



.security-items span {

    background:#1f2937;

    padding:15px 25px;

    border-radius:50px;

}








/*
|--------------------------------------------------------------------------
| Wallet Preview
|--------------------------------------------------------------------------
*/


.wallet-preview {

    padding:80px 0;

}



.wallet-demo {

    max-width:500px;

    margin:auto;

    background:#050505;

    color:white;

    padding:40px;

    border-radius:30px;

    text-align:center;

}



.balance-box {

    margin:30px 0;

    background:#111827;

    padding:30px;

    border-radius:20px;

}



.balance-box h1 {

    font-size:50px;

    color:#d4af37;

}








/*
|--------------------------------------------------------------------------
| Mobile Premium
|--------------------------------------------------------------------------
*/


@media(max-width:768px){


.premium-hero {

    padding:70px 0;

}



.premium-hero h1 {

    font-size:34px;

}



.premium-hero p {

    font-size:16px;

}



.hero-logo img {

    width:90px;

}



.btn-outline {

    margin:10px 0 0;

    width:100%;

}



.security-card {

    padding:30px 20px;

}



.balance-box h1 {

    font-size:36px;

}


}
/*
|--------------------------------------------------------------------------
| AHEBANK Final Responsive Fix
|--------------------------------------------------------------------------
*/


/* Desktop Hero */

.premium-hero {

    min-height:650px;

    display:flex;

    align-items:center;

}



.hero-logo img {

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:20px;

    margin-bottom:30px;

}




.premium-hero h1 {

    max-width:900px;

    margin:auto;

    font-size:56px;

}




.stats-section {

    padding:50px 0;

}



.stats-section .grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}




.premium-card {

    padding:35px;

    text-align:center;

}




/* Navbar desktop */

.nav-logo a {

    display:flex;

    align-items:center;

    gap:8px;

}





/* Mobile iPhone 13 */

@media(max-width:768px){


.main-navbar {

    padding:20px 0;

}



.nav-container {

    flex-direction:column;

}



.nav-logo a {

    font-size:28px;

}



.nav-menu a {

    font-size:22px;

}



.hero-logo img {

    width:280px;

    height:280px;

}



.premium-hero {

    padding:40px 20px;

}



.premium-hero h1 {

    font-size:34px;

    line-height:1.2;

}



.premium-hero p {

    font-size:17px;

}



.stats-section .grid {

    grid-template-columns:1fr;

}



.card {

    margin-bottom:15px;

}



.actions {

    flex-direction:column;

}



.actions a {

    width:100%;

}



.main-footer {

    padding:35px 20px;

}



.footer-container {

    grid-template-columns:1fr;

}



}



/* Small iPhone */

@media(max-width:390px){


.hero-logo img {

    width:240px;

    height:240px;

}


.nav-menu a {

    font-size:20px;

}


}