/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f7fb;
    color:#222;
    line-height:1.6;
}

/* =========================
   HEADER
========================= */

header{
    width:100%;
    background:#071a35;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo h2{
    color:#d4af37;
    font-size:28px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.btn-signin{
    text-decoration:none;
    background:#d4af37;
    color:#071a35;
    padding:10px 20px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.btn-signin:hover{
    background:white;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(7,26,53,.85),rgba(7,26,53,.85)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80");
    background-size:cover;
    background-position:center;
    color:white;
    padding:40px 20px;
}

.hero-content{
    max-width:800px;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:15px 30px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.btn-primary{
    background:#d4af37;
    color:#071a35;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:#071a35;
}

/* =========================
   SECTIONS
========================= */

section{
    padding:80px 20px;
}

section h2{
    text-align:center;
    margin-bottom:25px;
    color:#071a35;
    font-size:38px;
}

.about p{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:18px;
}

/* =========================
   FEATURES
========================= */

.feature-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.feature-card{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card h3{
    color:#071a35;
    margin-bottom:15px;
}

/* =========================
   PLANS
========================= */

.plan-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.plan-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.plan-card:hover{
    transform:scale(1.03);
}

.plan-card h3{
    color:#071a35;
    margin-bottom:15px;
}

.plan-card button{
    margin-top:20px;
    padding:12px 30px;
    border:none;
    background:#d4af37;
    color:#071a35;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.plan-card button:hover{
    background:#071a35;
    color:white;
}

/* =========================
   CONTACT
========================= */

.contact{
    text-align:center;
    background:#071a35;
    color:white;
}

.contact h2{
    color:#d4af37;
}

.contact p{
    margin:12px 0;
    font-size:18px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#04111f;
    color:white;
    text-align:center;
    padding:25px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    section h2{
        font-size:30px;
    }

}

/* ===========================
   ABOUT SECTION
=========================== */

.about{
    padding:90px 10%;
    background:#111;
    color:white;
}

.about-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:40px;
    color:#d4af37;
    margin-bottom:20px;
}

.about-text p{
    line-height:1.8;
    margin-bottom:20px;
    color:#ddd;
}

.about-boxes{
    display:flex;
    gap:20px;
    margin:35px 0;
    flex-wrap:wrap;
}

.box{
    flex:1;
    min-width:220px;
    background:#1d1d1d;
    padding:25px;
    border-radius:12px;
    border-left:5px solid #d4af37;
    transition:.3s;
}

.box:hover{
    transform:translateY(-8px);
}

.box h3{
    color:#d4af37;
    margin-bottom:10px;
}

.about-btn{
    display:inline-block;
    padding:15px 35px;
    background:#d4af37;
    color:black;
    text-decoration:none;
    font-weight:bold;
    border-radius:30px;
    transition:.3s;
}

.about-btn:hover{
    background:white;
}

/* Mobile */

@media(max-width:768px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-text h2{
        font-size:32px;
    }

}
/* ABOUT SECTION */

.about{
    padding:80px 20px;
    background:#f8f9fa;
}

.about h2{
    text-align:center;
    font-size:2.2rem;
    margin-bottom:20px;
    color:#222;
}

.about p{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
    line-height:1.8;
    color:#555;
}

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

.about-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-card h3{
    color:#d4af37;
    margin-bottom:15px;
}

.about-card p{
    text-align:left;
    margin:0;
}
.features{
    padding:80px 10%;
    background:#111;
    text-align:center;
}

.features h2{
    color:gold;
    font-size:2rem;
    margin-bottom:40px;
}

.feature-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.feature-card{
    background:#1b1b1b;
    width:300px;
    padding:30px;
    border-radius:15px;
    border:1px solid gold;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px gold;
}

.feature-card h3{
    color:gold;
    margin-bottom:15px;
}

.feature-card p{
    color:#ddd;
    line-height:1.6;
}
/* =======================
   Statistics Section
======================= */

.stats{
    padding:80px 10%;
    background:#000;
    text-align:center;
}

.stats h2{
    color:gold;
    margin-bottom:40px;
    font-size:2.2rem;
}

.stats-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.stat-box{
    width:220px;
    padding:30px;
    border:2px solid gold;
    border-radius:15px;
    background:#111;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px gold;
}

.stat-box h3{
    color:gold;
    font-size:2rem;
}

.stat-box p{
    color:white;
    margin-top:10px;
}

/* =======================
   Testimonials
======================= */

.testimonials{

    padding:80px 10%;
    background:#111;
    text-align:center;

}

.testimonials h2{

    color:gold;
    margin-bottom:40px;

}

.testimonial-container{

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;

}

.testimonial-card{

    width:320px;
    background:#1c1c1c;
    color:white;
    padding:30px;
    border-radius:15px;
    border:1px solid gold;
    transition:.3s;

}

.testimonial-card:hover{

    transform:scale(1.05);

}

.testimonial-card h4{

    color:gold;
    margin-top:20px;

}

/* =======================
   Footer
======================= */

footer{

    background:black;
    color:white;
    text-align:center;
    padding:50px 20px;

}

footer h2{

    color:gold;
    margin-bottom:15px;

}

.footer-links{

    margin:25px 0;

}

.footer-links a{

    color:white;
    text-decoration:none;
    margin:0 15px;
    transition:.3s;

}

.footer-links a:hover{

    color:gold;

}

.copyright{

    color:#999;
    margin-top:20px;

}
/* FEATURES SECTION */

.features{
    padding:80px 20px;
    background:#111;
    color:white;
    text-align:center;
}

.features h2{
    font-size:2.2rem;
    color:gold;
    margin-bottom:15px;
}

.section-text{
    max-width:700px;
    margin:0 auto 50px;
    color:#ccc;
    line-height:1.8;
}

.feature-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.feature-card{
    width:300px;
    background:#1d1d1d;
    padding:30px;
    border:2px solid gold;
    border-radius:15px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px rgba(255,215,0,.4);
}

.feature-card h3{
    color:gold;
    margin-bottom:15px;
}

.feature-card p{
    color:#ddd;
    line-height:1.6;
}
/* TESTIMONIALS */

.testimonials{
    background:#111;
    color:white;
    padding:80px 20px;
    text-align:center;
}

.testimonials h2{
    color:gold;
    margin-bottom:50px;
    font-size:2.3rem;
}

.testimonial-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.testimonial-card{
    max-width:320px;
    padding:25px;
    border:2px solid gold;
    border-radius:15px;
    background:#1a1a1a;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px rgba(255,215,0,.4);
}

.testimonial-card p{
    line-height:1.7;
    color:#ddd;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:gold;
}
/* ==========================
   PLANS SECTION
========================== */

.plans{
    background:#0d0d0d;
    padding:80px 20px;
    text-align:center;
}

.plans h2{
    color:gold;
    font-size:2.5rem;
    margin-bottom:10px;
}

.plans-subtitle{
    color:#ccc;
    margin-bottom:50px;
    font-size:1rem;
}

.plans-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.plan-card{
    background:#1a1a1a;
    width:300px;
    padding:30px;
    border:2px solid gold;
    border-radius:15px;
    transition:0.3s;
    position:relative;
}

.plan-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px rgba(255,215,0,0.4);
}

.plan-card h3{
    color:gold;
    margin-bottom:10px;
}

.plan-card h4{
    color:#fff;
    font-size:2rem;
    margin-bottom:20px;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.plan-card ul li{
    color:#ddd;
    margin:12px 0;
}

.plan-card button{
    background:gold;
    color:#000;
    border:none;
    padding:12px 25px;
    border-radius:30px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.plan-card button:hover{
    background:#fff;
}

.popular{
    border:3px solid gold;
    transform:scale(1.05);
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:gold;
    color:#000;
    padding:6px 15px;
    border-radius:20px;
    font-size:0.8rem;
    font-weight:bold;
}
/* =================================
   SIGN IN PAGE
================================= */

.signin-container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(rgba(7,26,53,.95),rgba(7,26,53,.95)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80");
    background-size:cover;
    background-position:center;
    padding:20px;
}

.signin-card{
    width:100%;
    max-width:450px;
    background:#111;
    padding:40px;
    border-radius:20px;
    border:2px solid gold;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.signin-card h1{
    color:gold;
    text-align:center;
    margin-bottom:10px;
}

.signin-card p{
    text-align:center;
    color:#ccc;
    margin-bottom:30px;
}

.input-group{
    margin-bottom:20px;
}

.input-group label{
    display:block;
    color:white;
    margin-bottom:8px;
    font-weight:bold;
}

.input-group input{
    width:100%;
    padding:15px;
    border:2px solid #333;
    border-radius:10px;
    background:#1b1b1b;
    color:white;
    font-size:16px;
    transition:.3s;
}

.input-group input:focus{
    border-color:gold;
    outline:none;
}

.signin-btn{
    width:100%;
    padding:15px;
    background:gold;
    color:#111;
    border:none;
    border-radius:30px;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.signin-btn:hover{
    background:white;
}

.signup-link{
    text-align:center;
    margin-top:25px;
    color:#ccc;
}

.signup-link a{
    color:gold;
    text-decoration:none;
    font-weight:bold;
}

.signup-link a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .signin-card{

        padding:30px 20px;

    }

}
/* =================================
   SIGN UP PAGE
================================= */

.signup-container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(rgba(7,26,53,.95),rgba(7,26,53,.95)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80");
    background-size:cover;
    background-position:center;
    padding:20px;
}

.signup-card{
    width:100%;
    max-width:500px;
    background:#111;
    padding:40px;
    border:2px solid gold;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.signup-card h1{
    color:gold;
    text-align:center;
    margin-bottom:10px;
}

.signup-card p{
    color:#ccc;
    text-align:center;
    margin-bottom:30px;
}

.signup-card .input-group{
    margin-bottom:20px;
}

.signup-card .input-group label{
    display:block;
    color:white;
    margin-bottom:8px;
    font-weight:bold;
}

.signup-card .input-group input{
    width:100%;
    padding:15px;
    border:2px solid #333;
    border-radius:10px;
    background:#1b1b1b;
    color:white;
    font-size:16px;
    transition:.3s;
}

.signup-card .input-group input:focus{
    border-color:gold;
    outline:none;
}

.signup-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:30px;
    background:gold;
    color:#111;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.signup-btn:hover{
    background:white;
}

.signin-link{
    text-align:center;
    margin-top:25px;
    color:#ccc;
}

.signin-link a{
    color:gold;
    text-decoration:none;
    font-weight:bold;
}

.signin-link a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .signup-card{

        padding:30px 20px;

    }

}
/* =====================================
   DASHBOARD
===================================== */

.dashboard{
    padding:40px 8%;
    background:#0b1220;
    min-height:100vh;
}

.dashboard h2{
    color:gold;
    margin-bottom:10px;
}

.dashboard .section-text{
    color:#bbb;
    margin-bottom:35px;
}

/* =====================================
   DASHBOARD OVERVIEW
===================================== */

.dashboard-overview{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-bottom:40px;
}

.overview-card{
    background:#151515;
    border:2px solid rgba(255,215,0,.25);
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
}

.overview-card:hover{
    transform:translateY(-8px);
    border-color:gold;
    box-shadow:0 0 25px rgba(255,215,0,.25);
}

.card-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:gold;
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;
}

.card-info h4{
    color:#bdbdbd;
    font-size:15px;
    margin-bottom:8px;
    font-weight:500;
}

.card-info h2{
    color:#fff;
    font-size:30px;
    margin-bottom:8px;
}

.card-info span{
    font-size:14px;
    color:#aaa;
}

.positive{
    color:#00d26a !important;
}

.warning{
    color:#ffb300 !important;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:768px){

    .dashboard{
        padding:25px 20px;
    }

    .overview-card{
        flex-direction:column;
        text-align:center;
    }

    .card-info h2{
        font-size:24px;
    }

}
/* =====================================
   DASHBOARD GRID
===================================== */

.dashboard-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    margin-bottom:40px;
}

.left-column,
.right-column{
    display:flex;
    flex-direction:column;
}

/* =====================================
   DASHBOARD CARD
===================================== */

.dashboard-card{
    background:#151515;
    border:2px solid rgba(255,215,0,.25);
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    transition:.3s;
}

.dashboard-card:hover{
    border-color:gold;
    box-shadow:0 0 25px rgba(255,215,0,.25);
}

/* =====================================
   CARD HEADER
===================================== */

.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.card-header h3{
    color:gold;
    font-size:24px;
}

.card-header span{
    color:#bbb;
    font-size:14px;
}

/* =====================================
   PORTFOLIO CHART
===================================== */

.chart-placeholder{
    height:320px;
    border:2px dashed rgba(255,215,0,.3);
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#1b1b1b;
    transition:.3s;
}

.chart-placeholder:hover{
    border-color:gold;
    background:#202020;
}

.chart-placeholder i{
    font-size:70px;
    color:gold;
    margin-bottom:20px;
}

.chart-placeholder h4{
    color:white;
    font-size:24px;
    margin-bottom:12px;
}

.chart-placeholder p{
    color:#bbb;
    max-width:300px;
    line-height:1.6;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .dashboard-grid{

        grid-template-columns:1fr;

    }

}
/* =====================================
   PROFILE CARD
===================================== */

.profile-card{
    text-align:center;
    margin-bottom:30px;
}

.profile-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid gold;
    box-shadow:0 0 20px rgba(255,215,0,.35);
    margin-bottom:20px;
}

.profile-card h3{
    color:#ffffff;
    font-size:24px;
    margin-bottom:8px;
}

.profile-card p{
    color:#c9c9c9;
    font-size:16px;
    margin-bottom:20px;
}

.verification{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:30px;
    font-weight:bold;
    font-size:14px;
}

.verification.verified{
    background:rgba(255,215,0,.15);
    color:gold;
    border:1px solid gold;
}

.verification i{
    font-size:16px;
}
/* =====================================
   QUICK ACTION BUTTONS
===================================== */

.quick-actions{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.action-btn{
    padding:16px;
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#111;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(212,175,55,.25);
}

.action-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(212,175,55,.45);
    background:linear-gradient(135deg,#f5d76e,#ffffff);
}

.action-btn:active{
    transform:scale(.97);
}

/* Mobile */

@media(max-width:768px){

    .quick-actions{

        grid-template-columns:1fr;

    }

}
/* =====================================
   RECENT TRANSACTIONS
===================================== */

.transactions-card{
    margin-top:40px;
}

.table-responsive{
    width:100%;
    overflow-x:auto;
}

.transaction-table{
    width:100%;
    border-collapse:collapse;
    min-width:700px;
}

.transaction-table thead{
    background:#1f1f1f;
}

.transaction-table th{
    padding:18px;
    text-align:left;
    color:gold;
    font-size:15px;
    border-bottom:2px solid rgba(255,215,0,.25);
}

.transaction-table td{
    padding:18px;
    color:#ddd;
    border-bottom:1px solid rgba(255,255,255,.08);
    vertical-align:middle;
}

.transaction-table tbody tr{
    transition:.3s;
}

.transaction-table tbody tr:hover{
    background:#1b1b1b;
}

.transaction-table strong{
    color:#fff;
}

.status{
    display:inline-block;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:bold;
}

.status.completed{
    background:rgba(0,210,106,.15);
    color:#00d26a;
}

.status.pending{
    background:rgba(255,179,0,.15);
    color:#ffb300;
}

.status.failed{
    background:rgba(255,77,77,.15);
    color:#ff4d4d;
}

.transaction-table .positive{
    color:#00d26a;
    font-weight:bold;
}

.card-header a{
    color:gold;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.card-header a:hover{
    color:#ffffff;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .transaction-table{

        min-width:600px;

    }

}
/* =====================================
   INVESTMENT PORTFOLIO
===================================== */

.portfolio-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:20px;
}

.portfolio-item{
    background:#1b1b1b;
    border:2px solid rgba(255,215,0,.20);
    border-radius:16px;
    padding:25px;
    transition:.3s ease;
}

.portfolio-item:hover{
    transform:translateY(-5px);
    border-color:gold;
    box-shadow:0 0 20px rgba(255,215,0,.20);
}

.portfolio-item h4{
    color:gold;
    font-size:22px;
    margin-bottom:15px;
}

.portfolio-item p{
    color:#d6d6d6;
    margin:10px 0;
    font-size:16px;
    line-height:1.6;
}

.portfolio-item strong{
    color:#ffffff;
}

.portfolio-item .positive{
    color:#00d26a;
    font-weight:bold;
}

.portfolio-item .status{
    display:inline-block;
    margin-top:5px;
}
.gold-showcase {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 20px;
}

.gold-showcase img {
    display: block;
    width: 80%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
}
#google_translate_element {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: white;
    padding: 6px;
    border-radius: 5px;
}
/* ==========================================
   AURUM GOLD - NEW DASHBOARD
========================================== */

.dashboard-container {
    min-height: 100vh;
    background: #0b1220;
    color: #fff;
    padding-bottom: 40px;
}

.dashboard-header {
    width: 100%;
    background: #071a35;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212,175,55,.25);
}

.dashboard-header h1 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 5px;
}

.dashboard-header h1 span {
    color: #d4af37;
}

.dashboard-header p {
    color: #aaa;
    font-size: 15px;
}

.profile-mini img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
}


/* ==========================================
   DASHBOARD CARDS
========================================== */

.dashboard-cards {
    width: 84%;
    max-width: 1300px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: #151515;
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.dashboard-card:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    transition: .3s;
}

.dashboard-card .card-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: #d4af37;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.dashboard-card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 5px;
}

.dashboard-card h2 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}


/* ==========================================
   DASHBOARD SECTIONS
========================================== */

.dashboard-section {
    width: 84%;
    max-width: 1300px;
    margin: 25px auto;
    background: #151515;
    border: 1px solid rgba(212,175,55,.20);
    border-radius: 18px;
    padding: 28px;
}

.dashboard-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-section .section-header h2 {
    color: #d4af37;
    font-size: 23px;
    margin: 0;
    text-align: left;
}

.dashboard-section .section-header a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.dashboard-section .section-header a:hover {
    color: #fff;
}


/* ==========================================
   PORTFOLIO GROWTH
========================================== */

.portfolio-growth {
    min-height: 180px;
    border: 1px dashed rgba(212,175,55,.35);
    border-radius: 15px;
    background: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portfolio-growth p {
    color: #aaa;
}


/* ==========================================
   PROFILE
========================================== */

.profile-section {
    display: flex;
    justify-content: center;
}

.profile-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

.profile-card img {
    width: 90px;
    height: 90px;
    margin: 0;
}

.profile-info h2 {
    color: #fff;
    margin-bottom: 5px;
}

.profile-info p {
    color: #aaa;
    margin-bottom: 10px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d4af37;
    font-size: 14px;
    font-weight: bold;
}


/* ==========================================
   QUICK ACTIONS
========================================== */

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 0;
}

.action-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#d4af37,#f5d76e);
    color: #111;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    transition: .3s;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,.3);
}

.action-btn i {
    margin-right: 7px;
}


/* ==========================================
   TRANSACTION TABLE
========================================== */

.table-container {
    width: 100%;
    overflow-x: auto;
}

.table-container table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
}

.table-container th {
    padding: 15px;
    text-align: left;
    color: #d4af37;
    background: #1b1b1b;
}

.table-container td {
    padding: 15px;
    color: #ddd;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.table-container tr:hover td {
    background: #1b1b1b;
}


/* ==========================================
   REFERRAL CARD
========================================== */

.referral-card {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.referral-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 250px;
}

.referral-content h2 {
    color: #d4af37;
    font-size: 23px;
    margin: 0 0 7px;
}

.referral-content p {
    color: #aaa;
    margin: 0;
}

.referral-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #d4af37;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.referral-code-box {
    background: #1b1b1b;
    border: 1px solid rgba(212,175,55,.3);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 170px;
    text-align: center;
}

.referral-code-box span {
    display: block;
    color: #999;
    font-size: 12px;
    margin-bottom: 5px;
}

.referral-code-box strong {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 1px;
}


/* ==========================================
   MARKET UPDATES
========================================== */

.market-updates {
    min-height: 120px;
    background: #1b1b1b;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #aaa;
}


/* ==========================================
   FOOTER
========================================== */

.dashboard-footer {
    width: 100%;
    background: #04111f;
    text-align: center;
    padding: 25px 20px;
    color: #888;
    margin-top: 40px;
}

.dashboard-footer p {
    margin: 0;
}


/* ==========================================
   MOBILE DASHBOARD
========================================== */

@media (max-width: 992px) {

    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .dashboard-header {
        padding: 20px;
    }

    .dashboard-header h1 {
        font-size: 23px;
    }

    .dashboard-cards {
        width: 92%;
        grid-template-columns: 1fr;
    }

    .dashboard-section {
        width: 92%;
        padding: 20px;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .referral-card {
        flex-direction: column;
        align-items: stretch;
    }

    .referral-content {
        flex-direction: column;
        text-align: center;
    }

    .referral-code-box {
        width: 100%;
    }

    .referral-card .action-btn {
        width: 100%;
    }
}
/* ==========================================
   AURUM GOLD - TRANSACTION HISTORY
========================================== */

.transaction-page {
    min-height: 100vh;
    padding: 40px 8%;
    background: #0b1220;
    color: #ffffff;
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.transaction-header h1 {
    margin: 0 0 8px;
    color: #d4af37;
    font-size: 30px;
}

.transaction-header p {
    margin: 0;
    color: #aab2c0;
}

.back-dashboard-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    background: #d4af37;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.back-dashboard-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.transaction-card {
    background: #111a2b;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.transaction-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.transaction-card-header h2 {
    margin: 0;
    color: #ffffff;
}

.transaction-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.transaction-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.transaction-history-table th {
    padding: 16px 20px;
    text-align: left;
    background: #151f33;
    color: #d4af37;
    font-size: 14px;
    text-transform: uppercase;
}

.transaction-history-table td {
    padding: 16px 20px;
    color: #d7dce5;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.transaction-history-table tbody tr {
    transition: background 0.2s ease;
}

.transaction-history-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.06);
}

.empty-transactions {
    text-align: center !important;
    padding: 35px !important;
    color: #9ca3af !important;
}


/* STATUS BADGES */

.transaction-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.transaction-status.completed {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.transaction-status.pending {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
}

.transaction-status.failed,
.transaction-status.rejected {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}


/* MOBILE */

@media (max-width: 700px) {

    .transaction-page {
        padding: 25px 15px;
    }

    .transaction-header {
        flex-direction: column;
        align-items: stretch;
    }

    .transaction-header h1 {
        font-size: 24px;
    }

    .back-dashboard-btn {
        width: 100%;
    }

    .transaction-card-header {
        padding: 16px;
    }

    .transaction-history-table th,
    .transaction-history-table td {
        padding: 13px 14px;
    }
}
/* ==========================================
   QUICK ACTION BUTTON FIX
========================================== */

.quick-actions {
    position: relative;
    z-index: 10;
}

.action-btn {
    position: relative;
    z-index: 11;
    cursor: pointer;
    pointer-events: auto;
}
/* ==========================================
   AURUM GOLD - QUICK ACTIONS
========================================== */

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.action-btn {
    min-height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    background: linear-gradient(145deg, #151f33, #0e1728);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 11;
    pointer-events: auto;
    transition: transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease,
                background 0.25s ease;
}

.action-btn i {
    font-size: 27px;
    color: #d4af37;
    transition: transform 0.25s ease;
}

.action-btn:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    background: linear-gradient(145deg, #1b2942, #111c30);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.action-btn:hover i {
    transform: scale(1.15);
}

.action-btn:active {
    transform: translateY(-1px);
}


/* ==========================================
   QUICK ACTION SECTION HEADER
========================================== */

.dashboard-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.dashboard-section .section-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 850px) {

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .action-btn {
        min-height: 90px;
        padding: 15px 10px;
        border-radius: 14px;
        font-size: 14px;
    }

    .action-btn i {
        font-size: 24px;
    }

}
/* ==========================================
   AURUM GOLD - DEPOSIT & WITHDRAW PAGES
========================================== */

.deposit-page,
.withdraw-page {
    min-height: 100vh;
    padding: 40px 8%;
    background: #0b1220;
    color: #ffffff;
}

/* Page Header */

.deposit-header,
.withdraw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.deposit-header h1,
.withdraw-header h1 {
    margin: 0 0 8px;
    color: #d4af37;
    font-size: 30px;
}

.deposit-header p,
.withdraw-header p {
    margin: 0;
    color: #aab2c0;
}

/* Back Button */

.back-dashboard-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    background: #d4af37;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.back-dashboard-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Main Form Card */

.deposit-card,
.withdraw-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 30px;
    background: #111a2b;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.deposit-card h2,
.withdraw-card h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Balance Display */

.available-balance {
    padding: 18px;
    margin-bottom: 25px;
    border-radius: 12px;
    background: #151f33;
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.available-balance span {
    display: block;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 6px;
}

.available-balance strong {
    color: #d4af37;
    font-size: 25px;
}

/* Form Groups */

.deposit-form-group,
.withdraw-form-group {
    margin-bottom: 20px;
}

.deposit-form-group label,
.withdraw-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e5e7eb;
    font-weight: 600;
}

.deposit-form-group input,
.deposit-form-group select,
.withdraw-form-group input,
.withdraw-form-group select {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px;
    border: 1px solid #29364d;
    border-radius: 10px;
    background: #0d1626;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.deposit-form-group input:focus,
.deposit-form-group select:focus,
.withdraw-form-group input:focus,
.withdraw-form-group select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* Submit Buttons */

.deposit-submit-btn,
.withdraw-submit-btn {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease,
                box-shadow 0.2s ease;
}

.deposit-submit-btn:hover,
.withdraw-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Information Box */

.deposit-info,
.withdraw-info {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: #b8c0cc;
    font-size: 13px;
    line-height: 1.6;
}

/* Mobile */

@media (max-width: 700px) {

    .deposit-page,
    .withdraw-page {
        padding: 25px 15px;
    }

    .deposit-header,
    .withdraw-header {
        flex-direction: column;
        align-items: stretch;
    }

    .deposit-header h1,
    .withdraw-header h1 {
        font-size: 25px;
    }

    .back-dashboard-btn {
        width: 100%;
    }

    .deposit-card,
    .withdraw-card {
        padding: 22px 18px;
    }
}
/* ==========================================
   AURUM GOLD - PAYMENT INFORMATION
========================================== */

.payment-information {
    max-width: 650px;
    margin: 25px auto 0;
    padding: 25px;
    background: #111a2b;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.payment-information h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 21px;
}

.payment-information > p {
    margin: 0 0 22px;
    color: #9ca3af;
    font-size: 14px;
}


/* Wallet Information */

.payment-wallet {
    margin-bottom: 18px;
    padding: 18px;
    background: #0d1626;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
}

.payment-wallet:last-child {
    margin-bottom: 0;
}

.payment-wallet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.payment-wallet-header i {
    color: #d4af37;
    font-size: 20px;
}

.payment-wallet-header strong {
    color: #ffffff;
    font-size: 15px;
}


/* Wallet Address */

.wallet-address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-address input,
.wallet-address textarea {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #29364d;
    border-radius: 9px;
    background: #080f1c;
    color: #d7dce5;
    font-size: 13px;
    outline: none;
}

.wallet-address input:focus,
.wallet-address textarea:focus {
    border-color: #d4af37;
}


/* Copy Wallet Button */

.copy-wallet-btn {
    flex-shrink: 0;
    border: none;
    border-radius: 9px;
    padding: 13px 15px;
    background: #d4af37;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.copy-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
}


/* Wallet Network */

.wallet-network {
    display: inline-block;
    margin-top: 9px;
    color: #9ca3af;
    font-size: 12px;
}


/* Mobile */

@media (max-width: 600px) {

    .payment-information {
        margin-top: 20px;
        padding: 20px 15px;
    }

    .payment-wallet {
        padding: 15px;
    }

    .wallet-address {
        flex-direction: column;
        align-items: stretch;
    }

    .copy-wallet-btn {
        width: 100%;
    }

}
/* ==========================================
   AURUM GOLD - INVESTMENT CENTER
========================================== */

.investment-page {
    min-height: 100vh;
    padding: 40px 8%;
    background: #0b1220;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.investment-header h1 {
    margin: 0 0 8px;
    color: #d4af37;
    font-size: 30px;
}

.investment-header p {
    margin: 0;
    color: #aab2c0;
}


/* BALANCE */

.investment-balance-card {
    max-width: 650px;
    margin: 0 auto 22px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(145deg, #151f33, #0e1728);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
}

.investment-balance-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    font-size: 22px;
}

.investment-balance-card span {
    display: block;
    color: #9ca3af;
    font-size: 13px;
}

.investment-balance-card h2 {
    margin: 5px 0 0;
    color: #d4af37;
    font-size: 28px;
}


/* MAIN CARD */

.investment-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 30px;
    background: #111a2b;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.investment-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.investment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    font-size: 21px;
}

.investment-card-header h2 {
    margin: 0 0 5px;
    color: #ffffff;
}

.investment-card-header p {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
}


/* FORM */

.investment-form-group {
    margin-bottom: 22px;
}

.investment-form-group label {
    display: block;
    margin-bottom: 9px;
    color: #e5e7eb;
    font-weight: 600;
    font-size: 14px;
}

.investment-input-wrapper {
    position: relative;
}

.investment-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    z-index: 2;
}

.investment-input-wrapper input,
.investment-input-wrapper select {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px 14px 44px;
    border: 1px solid #29364d;
    border-radius: 10px;
    background: #0d1626;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.investment-input-wrapper input:focus,
.investment-input-wrapper select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}


/* SUBMIT */

.investment-submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #111827;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.investment-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}


/* INFORMATION */

.investment-info-card {
    max-width: 650px;
    margin: 22px auto 0;
    padding: 18px 20px;
    display: flex;
    gap: 13px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
}

.investment-info-card > i {
    color: #d4af37;
    font-size: 20px;
    margin-top: 2px;
}

.investment-info-card h3 {
    margin: 0 0 5px;
    font-size: 15px;
}

.investment-info-card p {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 700px) {

    .investment-page {
        padding: 25px 15px;
    }

    .investment-header {
        flex-direction: column;
        align-items: stretch;
    }

    .investment-header h1 {
        font-size: 25px;
    }

    .investment-card {
        padding: 22px 18px;
    }

    .investment-balance-card {
        padding: 18px;
    }

    .investment-card-header {
        align-items: flex-start;
    }

    .back-dashboard-btn {
        width: 100%;
    }
}
/* ==========================================
   AURUM GOLD - DEPOSIT PAGE
========================================== */

.deposit-container {
    min-height: 100vh;
    padding: 40px 8%;
    background: #0b1220;
    color: #ffffff;

    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(280px, 420px);
    justify-content: center;
    align-items: start;
    gap: 25px;

    box-sizing: border-box;
}


/* ==========================================
   DEPOSIT CARD
========================================== */

.deposit-card {
    width: 100%;
    box-sizing: border-box;
    padding: 30px;

    background: #111a2b;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.deposit-card h1 {
    margin: 0 0 8px;
    color: #d4af37;
    font-size: 30px;
}

.deposit-card > p {
    margin: 0 0 28px;
    color: #9ca3af;
}


/* ==========================================
   INPUTS
========================================== */

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;

    color: #e5e7eb;
    font-size: 14px;
    font-weight: 600;
}

.input-group input,
.input-group select {
    width: 100%;
    box-sizing: border-box;

    padding: 14px 15px;

    background: #0d1626;
    border: 1px solid #29364d;
    border-radius: 10px;

    color: #ffffff;
    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: 0.2s ease;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #d4af37;

    box-shadow:
        0 0 0 3px rgba(212, 175, 55, 0.12);
}


/* File input */

.input-group input[type="file"] {
    padding: 11px;
    cursor: pointer;
}

.input-group input[type="file"]::file-selector-button {
    margin-right: 10px;
    padding: 8px 12px;

    border: none;
    border-radius: 7px;

    background: #d4af37;
    color: #111827;

    font-weight: 700;
    cursor: pointer;
}


/* ==========================================
   DEPOSIT BUTTON
========================================== */

.deposit-btn {
    width: 100%;

    padding: 15px;
    margin-top: 5px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #d4af37,
        #b8860b
    );

    color: #111827;

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.deposit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(212, 175, 55, 0.22);
}

.deposit-btn:active {
    transform: translateY(0);
}


/* ==========================================
   PAYMENT INFORMATION
========================================== */

.payment-details {
    width: 100%;
    box-sizing: border-box;

    padding: 25px;

    background: #111a2b;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}

.payment-details h2 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: 21px;
}


/* ==========================================
   WALLET BOXES
========================================== */

.wallet-box {
    margin-bottom: 15px;
    padding: 17px;

    background: #0d1626;

    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;

    transition: 0.2s ease;
}

.wallet-box:last-child {
    margin-bottom: 0;
}

.wallet-box:hover {
    border-color: rgba(212, 175, 55, 0.45);

    transform: translateY(-2px);
}

.wallet-box h3 {
    margin: 0 0 9px;

    color: #d4af37;
    font-size: 15px;
}

.wallet-box p {
    margin: 5px 0;

    color: #c5ccd7;

    font-size: 12px;
    line-height: 1.6;

    overflow-wrap: anywhere;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .deposit-container {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }

    .deposit-card,
    .payment-details {
        max-width: 650px;
        margin: 0 auto;
    }
}


@media (max-width: 500px) {

    .deposit-card,
    .payment-details {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .deposit-card h1 {
        font-size: 25px;
    }

    .payment-details h2 {
        font-size: 19px;
    }
}
/* ==========================================
   AURUM GOLD - GOOGLE TRANSLATE
========================================== */

#google_translate_element {
    display: flex;
    align-items: center;
    margin-left: 15px;
    z-index: 1000;
}

/* Google Translate dropdown */
#google_translate_element .goog-te-gadget {
    font-family: Arial, sans-serif;
    font-size: 0;
    color: transparent;
}

/* Dropdown itself */
#google_translate_element .goog-te-combo {
    min-width: 150px;
    padding: 9px 12px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

/* Hover */
#google_translate_element .goog-te-combo:hover {
    border-color: #d4af37;
}

/* Mobile */
@media (max-width: 600px) {
    #google_translate_element {
        margin: 10px 0;
        justify-content: center;
    }

    #google_translate_element .goog-te-combo {
        width: 100%;
        max-width: 180px;
    }
}
.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.location-link:hover {
  color: #f5d76e;
  text-decoration: underline;
}
.wallet-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.wallet-section h3 {
    margin-bottom: 8px;
}

.wallet-description {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 18px;
    line-height: 1.5;
}

.wallet-section .input-group {
    margin-bottom: 15px;
}
/* ==========================================
   AURUM GOLD - DASHBOARD HEADER ACTIONS
========================================== */

.dashboard-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logout-btn {
    padding: 10px 16px;
    border: 1px solid rgba(212,175,55,.45);
    border-radius: 10px;
    background: transparent;
    color: #d4af37;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.logout-btn:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-2px);
}

.logout-btn i {
    margin-right: 6px;
}

.profile-mini {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.profile-mini img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.dashboard-profile-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

.dashboard-profile-card:hover {
    transform: translateY(-2px);
}

.profile-card-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.dashboard-profile-card .profile-info {
    flex: 1;
}

.profile-arrow {
    color: #d4af37;
    font-size: 20px;
}

.growth-placeholder i,
.market-placeholder i {
    color: #d4af37;
    font-size: 30px;
    margin-bottom: 10px;
}

.growth-placeholder h3,
.market-placeholder h3 {
    color: #fff;
    margin: 5px 0;
}

.growth-placeholder p,
.market-placeholder p {
    color: #aaa;
}

@media (max-width: 768px) {

    .dashboard-header-actions {
        gap: 8px;
    }

    .logout-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .dashboard-profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-arrow {
        display: none;
    }
}
[06/09, 11:27 am] +234 813 270 7799: <div id="google_translate_container">
    <div id="google_translate_element"></div>
</div>
[06/09, 11:27 am] +234 813 270 7799: <style>

    #google_translate_container {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 99999;
    }

    #google_translate_element {
        font-family: Arial, sans-serif;
    }

    .goog-te-gadget {
        font-size: 0 !important;
    }

    .goog-te-gadget .goog-te-combo {
        font-size: 14px !important;
        padding: 8px 10px;
        border-radius: 7px;
        border: 1px solid #d4af37;
        background: #111;
        color: #fff;
        outline: none;
        cursor: pointer;
        max-width: 190px;
    }

    .goog-te-gadget .goog-te-combo:hover {
        border-color: #f0d477;
    }

    .goog-te-banner-frame {
        display: none !important;
    }

    body {
        top: 0 !important;
    }

</style>