/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    color: #2c2c2c;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

/* FORZA Logo Design - Complete image logo */
.forza-logo {
    display: flex;
    align-items: center;
}

.forza-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forza-logo a:hover {
    opacity: 0.8;
}

.forza-logo-image {
    height: 80px;
    width: auto;
    max-width: 300px;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #04620e;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
    color: white;
}

.btn-login,
.btn-signup {
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-login {
    color: black;
    border: 2px solid rgb(21, 149, 40);
}

.btn-login:hover {
    background: #09cc0f;
    color: #f8f3f3 !important;
}

.btn-signup {
    background: #09cc0f;
    color: white !important;
}

.btn-signup:hover {
    background: #037122;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero { 
    color: black;
    padding: 4rem 0;
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #25ba08;
    color: white;
}

.btn-primary:hover {
    background: #1a7204;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: black;
    border: 2px solid rgb(10, 161, 15);
}

.btn-secondary:hover {
    background: white;
    color: #2c2c2c;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #044a15;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero-banner-image{
    width: 100%; 
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.hero-banner-image img{
    width: 100%; 
    object-fit: fill;
    scale: 1.1;
}

/* Investment Plans Section */
.investment-plans {
    padding: 4rem 0;
    background: white;
}

.investment-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.investment-plans > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border: 2px solid #159f27;
    transform: scale(1.05);
}

.plan-icon {
    font-size: 2.5rem;
    color: #0d6607;
    margin-bottom: 1rem;
}

.plan-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.plan-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.duration,
.roi {
    font-weight: 600;
    color: #2c2c2c;
}

.roi {
    color: #28a745;
}

.plan-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.btn-invest {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
    display: block;
    text-align: center;
}

.btn-invest:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 44, 44, 0.3);
}

/* Investment Strategy Section */
.investment-strategy {
    padding: 4rem 0;
    background: #f8f9fa;
}

.investment-strategy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; 
    justify-self: center; 
    align-self: center;
    align-items: center;
    justify-content: center;
    width: 110%;
}

.strategy-item {
    background: transparent;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #75f192;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.strategy-item i {
    font-size: 3rem;
    color: #05983b;
    margin-bottom: 1rem;
    position: absolute;
    top: -20px;
    background-color: #f8f9fa;
}

.strategy-item h3 {
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.elementor-element{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-block: 4rem;
    padding: 0 10vw;
    width: 100%;
}

.elementor-element .e-con-header .elementor-widget-container h2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.elementor-element .e-con-header .elementor-widget-container h2 .text-highlight{
    color: #1fb44e;
    font-size: 2.3rem;
    text-align: center;
}

.elementor-element .e-con-inner{
    padding: 4rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2rem 1rem;
}

.elementor-element .e-con-inner .elementor-widget-heading{
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    background-color: #7fe09718;
    padding: 1rem 2rem;
    border-radius: 20px;
}

.elementor-element .e-con-inner .elementor-widget-heading .elementor-widget-container h2{
    color: #034f1b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.elementor-element .e-con-inner .elementor-widget-heading .elementor-size-default{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 6rem !important;
    opacity: .15;
}



/* Calculator Preview Section */
.calculator-preview {
    padding: 4rem 0;
    background: white; 
}

.calculator-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.calculator-preview > .container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator-preview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.mini-calculator {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px; 
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calc-inputs input,
.calc-inputs select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-calculate {
    padding: 0.8rem 1.5rem;
    background: #069d1f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.btn-calculate:hover {
    background: #0a750f;
}

.calc-result {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

#result-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #09551c;
}

.trustServices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-block: 4rem;
}

.trustServices h2 {
    color: #2a2929;
    font-size: 2.5rem;
    line-height: 2.7rem;
    text-align: center;
    font-weight: 800;
}

.trustServices h2 span {
    color: #0d4a20;
}

.trustServices .nav{
    display: flex;
    gap: 2rem;
    margin-block: 1rem;
}

.trustServices .nav h4{
    padding: .8rem 1.5rem;
}

.trustServices .nav .active, .trustServices .nav h4:hover{
    background: #0b481edc;
    color: white;
    border-radius: 25px;
    cursor: pointer;
}

.trustServices .content{
    max-width: 80%;
    text-align: center;
    background-color: #034f1b56;
    padding: 3rem 5rem;
    text-align: left;
    border-radius: 20px;
    font-size: 20px;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    color: rgb(186, 185, 185);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1fb44e;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.8;
}
.toggle {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column; 
        align-items: flex-start;
        justify-content: flex-start;
        height: 10vh;
        overflow: hidden;
        position: relative;
        transition: height 0.3s ease;
    }

    .strategy-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 2rem;
        min-height: 60vh;
    }

    .strategy-item {
        width: 90vw;
        max-width: 320px;
        height: 320px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .container.nav-menu-active{
        height: 100vh;
        width: 100vw;
    }

    .toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
        z-index: 1001;
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start; 
        padding: 1rem .6rem;
        gap: 1.2rem;
        width: 100%;
    }

    .nav-menu .auth-buttons{ 
        gap: 1rem;
        margin-left: 0;
        display: grid;
        grid-template-columns: 1fr; 
        width: 100%;
    }

    .nav-menu .auth-buttons a{
        display: flex;
        width: 100%;
        padding: .9rem 1.5rem;
        border-radius: 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .calc-inputs {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .trustServices .nav{
        gap:.7rem;
        max-width:100%;
        overflow:scroll;
    }
    
    .trustServices .nav h4{
        font-size:10px;
        font-weight:400;
        padding:.8rem;
        text-align:center;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    
    .trustServices .nav .active, .trustServices .nav h4:hover{
        border-radius:10px;
    }
    
    .trustServices .content{
        max-width:90%;
        padding:1rem;
        font-size:15px;
    }
}

/* Form Styles */
.form-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1fb44e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1fb44e;
    box-shadow: 0 0 0 2px rgba(30, 60, 114, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #1fb44e 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* News Styles */
.news-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.news-item:hover {
    border-color: #1e3c72;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
    transform: translateY(-2px);
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-title {
    color: #1e3c72;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.news-excerpt {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.news-modal-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 1rem;
    position: relative;
}

.news-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.news-modal-close:hover {
    color: #333;
}

.admin-news-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-news-form h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.admin-news-form .form-group {
    margin-bottom: 1rem;
}

.admin-news-form textarea {
    min-height: 120px;
    resize: vertical;
}

.news-management-list {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-news-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f9f9f9;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.news-meta .news-date {
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    background: #1e3c72;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.admin-news-item h4 {
    color: #1e3c72;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.admin-news-item .news-excerpt {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-edit:hover {
    background: #218838;
}

.btn-delete {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-delete:hover {
    background: #c82333;
}

/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%) !important;
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.dashboard-nav {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-nav a {
    color: #1fb44e;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: #1fb44e;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1fb44e;
}

.stat-card p {
    color: #666;
    font-weight: 600;
}

.data-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1fb44e;
}

.data-table tr:hover {
    background: #f8f9fa;
}

.status-pending {
    color: #ffc107;
    font-weight: 600;
}

.status-approved {
    color: #28a745;
    font-weight: 600;
}

.status-declined {
    color: #dc3545;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-approve {
    background: #28a745;
    color: white;
}

.btn-decline {
    background: #dc3545;
    color: white;
}

.btn-edit {
    background: #ffc107;
    color: #333;
}

.btn-small:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}
/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.btn-edit {
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
}

.btn-delete {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-edit:hover {
    background: #0056b3;
}

.btn-delete:hover {
    background: #c82333;
}

.status-completed { color: #28a745; font-weight: bold; }
.status-pending { color: #ffc107; font-weight: bold; }
.status-cancelled { color: #dc3545; font-weight: bold; }
.status-approved { color: #28a745; font-weight: bold; }
.status-declined { color: #dc3545; font-weight: bold; }

.actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.form-container h3 {
    color: #1fb44e;
    margin-bottom: 1rem;
    border-bottom: 2px solid #1fb44e;
    padding-bottom: 0.5rem;
}

.form-container h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}
/* Enhanced Admin Styles */
.stats-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Fix investor dashboard stats overlap */
.investor-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.investor-stats-grid .stat-card {
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid #e9ecef;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.investor-stats-grid .stat-card h3 {
    font-size: 1.6rem;
    color: #1fb44e;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.2;
}

.investor-stats-grid .stat-card p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    background: linear-gradient(135deg, #1fb44e, #2a5298);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    color: #1fb44e;
    margin: 0;
    font-weight: 700;
}

.stat-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.admin-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.admin-section h3 {
    color: #1fb44e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

/* Users Section Styles */
.users-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.users-header h2 {
    color: #1fb44e;
    margin: 0;
}

.btn-add-user {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-add-user:hover {
    background: #218838;
}

.user-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-group label {
    font-weight: 600;
    color: #333;
}

.control-group input,
.control-group select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-apply {
    background: #ffc107;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.user-card {
    display: flex;
    background: #f9f5e6;
    border: 1px solid #e6d7a3;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.user-info {
    flex: 1;
    padding: 1rem;
}

.user-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.username {
    font-weight: 600;
    font-size: 1.1rem;
}

.status-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: #28a745;
    color: white;
}

.status-badge.suspended {
    background: #ffc107;
    color: #333;
}

.status-badge.disabled {
    background: #dc3545;
    color: white;
}

.user-details {
    font-size: 0.9rem;
    color: #666;
}

.amounts-info {
    flex: 1;
    padding: 1rem;
    border-left: 1px solid #e6d7a3;
}

.amount-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.amount {
    font-weight: 600;
}

.amount.positive {
    color: #28a745;
}

.amount.purple {
    color: #6f42c1;
}

.amount.blue {
    color: #007bff;
}

.actions-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-left: 1px solid #e6d7a3;
}

.btn-edit,
.btn-funds {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-size: 0.8rem;
}

.btn-edit {
    background: #28a745;
    color: white;
}

.btn-funds {
    background: #17a2b8;
    color: white;
}

.bulk-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-select-all {
    background: #007bff;
    color: white;
}

.btn-set-active {
    background: #28a745;
    color: white;
}

.btn-set-disabled {
    background: #dc3545;
    color: white;
}

.btn-set-suspended {
    background: #ffc107;
    color: #333;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.bulk-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* Settings Styles */
.settings-section {
    background: white;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.settings-section h3 {
    color: #1fb44e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1fb44e;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.crypto-wallets-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.wallet-row {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    gap: 1rem;
    align-items: center;
}

/* Transaction Type Styles */
.transaction-type {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.transaction-type.deposit {
    background: #d4edda;
    color: #155724;
}

.transaction-type.withdrawal {
    background: #f8d7da;
    color: #721c24;
}

.transaction-type.investment {
    background: #d1ecf1;
    color: #0c5460;
}

.transaction-type.earnings {
    background: #fff3cd;
    color: #856404;
}

.transaction-type.bonus {
    background: #e2e3e5;
    color: #383d41;
}

/* Admin Message */
.admin-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.admin-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.admin-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-card {
        flex-direction: column;
    }
    
    .amounts-info,
    .actions-info {
        border-left: none;
        border-top: 1px solid #e6d7a3;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .user-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bulk-actions {
        justify-content: center;
    }
}
/* Brand Logo Styling */
.brand-logo {
    height: 30px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* News Modal Styles */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.news-modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    position: relative;
    overflow: hidden;
}

.news-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    z-index: 10001;
}

.news-modal-close:hover {
    color: #333;
}

.news-modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #eee;
}

.news-modal-header h2 {
    color: #1e3c72;
    margin: 0;
    font-size: 28px;
}

.news-modal-body {
    padding: 20px 30px 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.news-modal .news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-modal .news-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-modal .news-item:hover {
    background: #e9ecef;
    border-color: #1e3c72;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.1);
}

.news-modal .news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.news-modal .news-title {
    color: #1e3c72;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.news-modal .news-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .news-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .news-modal-header,
    .news-modal-body {
        padding: 20px;
    }
    
    .news-modal-header h2 {
        font-size: 24px;
    }
    
    .news-modal .news-title {
        font-size: 16px;
    }
}
