/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Kimberley Black';
    src: url('fonts/kimberley-black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-family: 'Kimberley Black', sans-serif;
    font-size: 2.2rem;
    font-weight: normal;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation brand link styling */
.nav-brand a {
    text-decoration: none;
}

.nav-brand a:hover h1 {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important; /* Restore original color for all stat numbers */
    background: none; /* Remove gradient background */
    -webkit-background-clip: unset; /* Remove text clipping */
    -webkit-text-fill-color: unset; /* Remove text fill */
    background-clip: unset; /* Remove text clipping */
}

.stat-number-home {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700 !important; /* Yellowish color for home page */
}

.stat-number-invest {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color) !important; /* Darker color for invest page */
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-stats .stat-label {
    color: #FFF;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    line-height: 1.5;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    background: var(--gradient-highlight);
    border-radius: 50px;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 10px 28px;
    border: 1px solid white;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* Hero section button adjustments */
.hero-cta .btn-secondary {
    padding: 10px 28px !important;
    border: 2px solid white !important;
    box-sizing: border-box !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Debug: Ensure button is visible */
.invest-buttons .btn-secondary {
    background: transparent !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    min-width: 150px !important;
    text-decoration: none !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

.cta-banner {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
}

.cta-banner h3 {
    font-size: 2rem;
    font-weight: 600;
}

/* Investment Section */
.invest {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.invest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="800" cy="200" r="300" fill="rgba(102,126,234,0.05)"/><circle cx="200" cy="800" r="200" fill="rgba(118,75,162,0.05)"/></svg>');
    background-size: cover;
}

.invest-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.invest-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invest h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.invest-subtitle {
    font-size: 1.2rem;
    color: #667eea;
    margin-bottom: 2rem;
    font-weight: 600;
}

.invest-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.invest-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.invest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.invest-card.highlight {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.invest-card.highlight::before {
    background: rgba(255, 255, 255, 0.2);
}

.invest-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.invest-card-header {
    margin-bottom: 1.5rem;
}

.invest-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.invest-card.highlight .invest-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.invest-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.invest-card.highlight h3 {
    color: white;
}

.invest-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.invest-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.invest-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.invest-card.highlight .invest-metric {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.invest-card.highlight .metric-label {
    color: rgba(255, 255, 255, 0.8);
}

.metric-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.invest-card.highlight .metric-value {
    color: white;
}

.metric-value.low-risk {
    color: #28a745;
}

.metric-value.high-return {
    color: #fd7e14;
}

.invest-card.highlight .metric-value.low-risk,
.invest-card.highlight .metric-value.high-return {
    color: #ffeaa7;
}

.invest-cta {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.invest-cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.invest-cta-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.invest-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.invest-buttons .btn-secondary {
    background: transparent !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    min-width: 150px !important;
    text-decoration: none !important;
    position: relative !important;
}

.invest-buttons .btn-secondary::before {
    display: none !important;
}

.invest-buttons .btn-secondary:hover {
    background: #667eea !important;
    color: white !important;
}

.invest-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center; /* Center items horizontally */
    align-items: start; /* Align items at the top */
    margin-bottom: 2rem;
}

.invest-stat {
    text-align: center;
}

.invest-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.invest-stat .stat-number-home {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700 !important; /* Yellowish color for home page */
}

.invest-stat .stat-number-invest {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color) !important; /* Darker color for invest page */
}

.invest-stat .stat-label {
    color: #1a1a1a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="900" cy="100" r="250" fill="rgba(255,255,255,0.03)"/><circle cx="100" cy="800" r="150" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section .address i {
    color: #ffd700;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.footer-legal-info {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

/* Mobile footer styles */
@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section .address {
        justify-content: center;
        text-align: center;
    }
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section p:first-of-type {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-section .address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.footer-section .address i {
    color: #ffd700;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Services Page Styles */
.services-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-hero .hero-content {
    position: relative;
    z-index: 1;
}

.services-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-section {
    margin-bottom: 5rem;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-header .service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-detail-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-card .service-features {
    list-style: none;
    padding: 0;
}

.service-detail-card .service-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.service-detail-card .service-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.important-note {
    background: #fff3cd;
    padding: 60px 0;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.note-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    flex-shrink: 0;
}

.note-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.note-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Active navigation link */
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    width: 100%;
}

/* Invest Page Styles */
.invest-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.invest-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="800" cy="200" r="300" fill="rgba(255,255,255,0.1)"/><circle cx="200" cy="800" r="200" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.6;
}

.invest-hero .hero-content {
    position: relative;
    z-index: 1;
}

.invest-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.invest-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    font-size: 1.2rem;
    color: #ffeaa7;
}

.invest-stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.invest-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(102,126,234,0.03)"/><circle cx="800" cy="500" r="100" fill="rgba(118,75,162,0.03)"/></svg>');
    background-size: cover;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-card.highlight {
    background: var(--gradient-primary);
    color: white;
}

.stat-card.highlight .stat-number-invest {
    color: #ffd700 !important;
}

.stat-card.highlight::before {
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.stat-card.highlight .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white !important; /* Restore original color for all stat numbers */
    line-height: 1.1;
}

.stat-number-home {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700 !important; /* Yellowish color for home page */
}

.stat-number-invest {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color) !important; /* Darker color for invest page */
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-card.highlight .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.why-invest {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    background: white;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.trade-receivables {
    padding: 100px 0;
    background: #f8f9fa;
}

.receivables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.receivable-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.receivable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.receivable-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.receivable-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.receivable-card p {
    color: #666;
    line-height: 1.6;
}

/* Updated Get Started Section */
.get-started {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="200" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="600" r="150" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
    opacity: 0.6;
}

.get-started-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.get-started-content {
    text-align: left;
}

.get-started-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.get-started-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.get-started-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.get-started-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.get-started-features li:last-child {
    margin-bottom: 0;
}

.get-started-features i {
    color: #ffeaa7;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.get-started-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-visual {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-visual:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.cta-visual i {
    font-size: 3rem;
    color: white;
}

.cta-btn {
    font-size: 1.2rem;
    padding: 18px 40px;
    background: white;
    color: #667eea;
    border: none;
    font-weight: 600;
    margin-bottom: 1rem;
    min-width: 200px;
}

.cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    max-width: 300px;
    line-height: 1.4;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: white;
}

.who-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.who-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.who-content p:last-child {
    margin-bottom: 0;
}

.who-content strong {
    color: #667eea;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item.active {
    transform: translateY(-1px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    background: var(--gradient-primary);
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    flex: 1;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1rem;
}

.faq-toggle i {
    font-size: 0.9rem;
    color: #666;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-toggle {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 2rem;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 2rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.faq-answer ul li {
    color: #666;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.faq-answer ul li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-answer strong {
    color: #667eea;
    font-weight: 600;
}

/* Update primary colors and gradients */
:root {
    --primary-color: #132349;
    --primary-light: #1e3a7b;
    --primary-dark: #0c1830;
    --gradient-primary: linear-gradient(135deg, #132349 0%, #1e3a7b 100%);
    --gradient-highlight: linear-gradient(135deg, #1e3a7b 0%, #2d4ba3 100%);
    --accent-gradient: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

.nav-brand h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    background: var(--gradient-primary);
}

.hero {
    background: var(--gradient-primary);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-primary:hover {
    background: var(--gradient-highlight);
}

.service-icon,
.feature-icon,
.benefit-icon,
.invest-icon,
.contact-icon {
    background: var(--gradient-primary);
}

.cta-banner,
.get-started,
.services-cta {
    background: var(--gradient-primary);
}

.social-links a {
    background: var(--gradient-primary);
}

.invest-badge {
    background: var(--gradient-primary);
}

.invest-card::before {
    background: var(--gradient-primary);
}

.invest-card.highlight {
    background: var(--gradient-primary);
}

.stat-card::before {
    background: var(--gradient-primary);
}

.stat-icon {
    background: var(--gradient-primary);
}

.footer-section h3,
.footer-section .address i {
    color: #ffd700;
}

.footer-section h4 {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a:hover {
    color: #ffd700;
}

/* Update focus styles */
.nav-link:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
}

/* Ensure footer displays in columns on tablet and desktop */
@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
        padding: 1rem 20px;
    }

    .nav-toggle {
        grid-column: 1;
        justify-self: start;
    }

    .nav-brand {
        grid-column: 2;
        justify-self: center;
    }

    .mobile-controls {
        grid-column: 3;
        justify-self: end;
    }

    .login-btn {
        padding: 13px 14px !important;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        align-items: stretch;
    }

    /* Hide login dropdown from mobile menu */
    .nav-menu .login-dropdown {
        display: none;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-toggle {
        display: block;
    }

    /* Mobile login button styling */
    .mobile-login-btn {
        background: var(--gradient-primary);
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 20px;
        font-weight: 500;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .mobile-login-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    }

    .mobile-login-btn i {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .services-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .invest-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .invest-card.highlight {
        transform: none;
    }

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

    .invest-stats {
        grid-template-columns: 1fr; /* Display stats in a single column */
        gap: 2rem; /* Add spacing between rows */
        justify-items: center; /* Center items horizontally */
        align-items: start; /* Align items at the top */
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .services-hero .hero-title {
        font-size: 2.2rem;
    }

    .services-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-header h2 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .invest-hero .hero-title {
        font-size: 2.2rem;
    }

    .invest-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .feature-badge {
        justify-content: center;
    }

    .stats-grid,
    .benefits-grid,
    .receivables-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card,
    .benefit-card,
    .receivable-card {
        padding: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .invest-stats-section {
        padding: 50px 0;
    }

    .form-preview {
        padding: 2rem;
    }

    .get-started-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .get-started-content {
        text-align: center;
    }

    .get-started-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .get-started-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .get-started-features {
        margin-bottom: 2rem;
    }

    .get-started-features li {
        justify-content: center;
        font-size: 1rem;
    }

    .cta-visual {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .cta-visual i {
        font-size: 2.5rem;
    }

    .cta-btn {
        font-size: 1.1rem;
        padding: 16px 32px;
        min-width: 180px;
    }

    .cta-note {
        font-size: 0.9rem;
        max-width: 250px;
    }


}

@media (max-width: 480px) {
    .invest-hero .hero-title {
        font-size: 1.8rem;
    }

    .hero-features {
        gap: 0.5rem;
    }

    .feature-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .stat-card,
    .benefit-card,
    .receivable-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .invest-stats-section {
        padding: 40px 0;
    }

    .form-preview {
        padding: 1.5rem;
    }

    .get-started-content h2 {
        font-size: 1.8rem;
    }

    .get-started-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .get-started-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .get-started-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .cta-visual {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .cta-visual i {
        font-size: 2rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 14px 28px;
        min-width: 160px;
    }

    .cta-note {
        font-size: 0.85rem;
        max-width: 220px;
    }

    /* Mobile styles for login popover */
    .login-popover-content {
        /* width: 95vw; */
        padding: 1.5rem;
    }

    .login-header h3 {
        font-size: 1.1rem;
    }

    .phone-input {
        padding: 12px 12px 12px 40px;
    }

    .login-submit-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Additional mobile dropdown styles */
    .login-dropdown {
        position: static;
    }

    .login-popover {
        position: fixed !important;
        top: 70px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin-top: 0 !important;
        min-width: 300px;
        max-width: 90vw;
    }

    .login-popover.active {
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }

    .btn-primary {
        background: var(--primary-dark) !important;
        border: 2px solid #fff !important;
        color: #fff !important;
    }

    .btn-primary:hover {
        background: #fff !important;
        color: var(--primary-dark) !important;
    }
}

/* FORCE LEARN MORE BUTTON TO BE VISIBLE */
.invest .invest-cta .invest-cta-content .invest_buttons .btn.btn-secondary {
    background: transparent !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 999 !important;
    position: relative !important;
    border-radius: 48px !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.invest .invest-cta .invest-cta-content .invest_buttons .btn.btn-secondary::before {
    display: none !important;
}

.invest .invest-cta .invest-cta-content .invest_buttons .btn.btn-secondary:hover {
    background: #667eea !important;
    color: white !important;
}

/* Login Button */
.login-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.login-btn i {
    font-size: 0.8rem;
}

/* Login Dropdown */
.login-dropdown {
    position: relative;
    display: inline-block;
}

.login-popover {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    margin-top: 10px;
}

.login-popover.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-popover-content {
    padding: 1.5rem;
}

.login-header {
    margin-bottom: 1.5rem;
}

.login-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

.phone-input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.phone-input-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
}

.phone-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.phone-input:focus {
    border-color: var(--primary-color);
    background: white;
}

.login-submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-submit-btn i {
    font-size: 0.9rem;
}

/* Navigation adjustments */

/* Mobile controls container */
    .mobile-controls {
        display: none;
    }

    @media (max-width: 768px) {
        .mobile-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Hide desktop login dropdown on mobile */
        .login-dropdown {
            display: none;
        }

        /* Mobile login dropdown styles */
        .mobile-login-dropdown {
            position: relative;
            display: inline-block;
        }

        .mobile-login-popover {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
            min-width: 280px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 2000;
            margin-top: 10px;
        }

        .mobile-login-popover.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    }
