/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:verdana;
}

body {
    background-color: #0b0e11;
    color: #ffffff;
}



/* Navigation */
/* Navigation - Base State (At Top) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0b0e11;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease; 
}

/* Navigation - Scrolled State (Triggered by JS) */
nav.scrolled {
    padding: 15px 5%; /* Becomes slimmer */
    background: rgba(11, 14, 17, 0.95); /* Solid dark background */
    backdrop-filter: blur(12px); /* Glassmorphism effect */
    border-bottom: 1px solid rgba(46, 189, 133, 0.2); /* Subtle green border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure Logo and Links are clearly visible */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.nav-auth .btn-text {
    color: #ffffff;
    transition: color 0.3s;
}

.nav-auth .btn-text:hover {
    color: #2ebd85;
}
/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(11, 14, 17, 0.8), rgba(11, 14, 17, 0.8)), 
                url('images/herogreen.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.container {
    max-width: 600px;
}

.badge {
    display: inline-block;
    color: orange;

   
    font-size: 24px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    background: orange;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: orangered;
}

.btn-outline {
    border: 1px solid #2d3339;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 10px;
}
/* About Us Styles */
.about-section {
    padding: 100px 5%;
    background-color: #0b0e11;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side Visuals */
.about-visual {
    position: relative;
}



.active-users-card {
    position: absolute;
    bottom: -30px;
    right: 10px;
    background: #181d23;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #2d3339;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.user-icon {
    background: rgba(46, 189, 133, 0.1);
    padding: 12px;
    border-radius: 8px;
    
}

.user-info h3 {
    font-size: 24px;
    color: orange;
}

.user-info p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Right Side Content */
.section-title {
    font-size: 2rem;
    margin: 15px 0;
    font-weight: 700;
}

.section-desc {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    background: rgba(46, 189, 133, 0.1);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;

}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    color: #a0a0a0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .active-users-card {
        right: 10%;
    }

    .feature-item {
        text-align: left;
    }
}

/* Chart Section Styles */
.chart-section {
    margin-top: -10px;
    padding: 30px 5%;
    background-color: #0b0e11; /* Matching the deep dark theme */
}

.chart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 700;
    
    margin-bottom: 20px;
}



/* Widget Styling */
.tradingview-widget-container {
    border: 1px solid rgb(33, 32, 32);
    border-radius: 12px;
    overflow: hidden; /* Ensures the widget corners match the container radius */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title-large {
        font-size: 2.5rem;
    }
}

/* Premium Trading Section */
.premium-section {
    padding: 100px 5%;
    text-align: center;
}

.badge-pill {
   
    color: orange;
    
  
    font-size: 14px;
    font-weight: 600;
}


.subtitle-main {
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #181d23;
    border-radius: 4px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #2d3339;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(46, 189, 133, 0.2);
    backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    border: 1px solid rgba(46, 189, 133, 0.3);
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.card-body p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.5;
}

/* Ready to Start CTA */
.cta-section {
    padding: 20px 5%;
}

.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(145deg, #12161b, #0b0e11);
    border: 1px solid #2d3339;
    border-radius: 20px;
    text-align: center;
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: #a0a0a0;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-box h2 { font-size: 2.5rem; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-outline { margin-left: 0; width: 100%; max-width: 280px; }
}

/* Footer Styles */
.main-footer {
    background-color: #080a0c;
    padding: 80px 5% 40px;
    border-top: 1px solid #2d3339;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-text {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: orangered;
}

.social-links a {
    color: orange;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
}

/* Copyright Bar */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #1c2127;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col {
        text-align: center;
    }
}