/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #062e1f 0%, #0b5d3b 45%, #058b54 100%);
    backdrop-filter: blur(10px);
    z-index: 1002;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(103, 188, 69, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 1;
}


.logo {
    border-radius: 8px;
    width: 180px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #67bc45;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    order: 2;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #67bc45;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #67bc45;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    order: 3;
}

/* Hide mobile buttons on desktop */
.mobile-buttons {
    display: none;
}

.btn-login {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    border-color: #67bc45;
    color: #67bc45;
}

.btn-signup {
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
}


.fa, .fa-brands, .fa-duotone, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fab, .fad, .fal, .far, .fas, .fat {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    color: #5db93a;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1003;
    order: 4;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image:url(../images/background.png);
    /* background: linear-gradient(135deg, #003b19 0%, #1a1a1a 100%); */
    overflow: hidden;
    z-index: 1;
}





.hero-slider {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide.active {
    display: flex;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    min-height: 80vh;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(103, 188, 69, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #67bc45;
    color: #67bc45;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #67bc45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: #67bc45;
    opacity: 0.9;
    font-feature-settings: "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
   
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(103, 188, 69, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(103, 188, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(103, 188, 69, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Styles */
section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

/* About Section Part 1 - Intro */
.about-intro {
     background-image:url(../images/bg1.jpg);
    /* background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0a1a0a 100%); */
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
   
    display: flex;
    align-items: center;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.green-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, transparent 0%, rgba(103, 188, 69, 0.1) 50%, transparent 100%);
    background-size: 100px 100px;
    animation: waveMove 8s ease-in-out infinite;
}

.green-waves::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(103, 188, 69, 0.1) 2px,
        rgba(103, 188, 69, 0.1) 4px
    );
    animation: waveFlow 6s linear infinite;
}

.green-waves::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(103, 188, 69, 0.05) 3px,
        rgba(103, 188, 69, 0.05) 6px
    );
    animation: waveFlow 4s linear infinite reverse;
}

@keyframes waveMove {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes waveFlow {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(103, 188, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(103, 188, 69, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(103, 188, 69, 0.06) 0%, transparent 50%);
    animation: particleFloat 10s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    padding-left: 2rem;
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #67bc45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(103, 188, 69, 0.3);
}

.intro-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
}

.glow-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 4px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #67bc45, transparent, #5aa83a, transparent, #67bc45);
    background-size: 400% 400%;
    animation: rotate 8s linear infinite, gradientShift 6s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(103, 188, 69, 0.7),
        inset 0 0 30px rgba(103, 188, 69, 0.3);
}

.glow-ring-2 {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(103, 188, 69, 0.4), transparent, rgba(103, 188, 69, 0.6), transparent);
    background-size: 400% 400%;
    animation: rotate 12s linear infinite reverse, gradientShift 8s ease-in-out infinite;
    box-shadow: 
        0 0 40px rgba(103, 188, 69, 0.5),
        inset 0 0 20px rgba(103, 188, 69, 0.2);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.logo-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #67bc45, #5aa83a, #4a9c2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 50px rgba(103, 188, 69, 0.8),
        0 0 100px rgba(103, 188, 69, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        box-shadow: 
            0 0 50px rgba(103, 188, 69, 0.8),
            0 0 100px rgba(103, 188, 69, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    100% {
        box-shadow: 
            0 0 70px rgba(103, 188, 69, 1),
            0 0 140px rgba(103, 188, 69, 0.6),
            inset 0 0 40px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

.logo-symbol {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 40px rgba(103, 188, 69, 0.6))
        brightness(1.2)
        contrast(1.1);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: 
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 40px rgba(103, 188, 69, 0.6))
            brightness(1.2)
            contrast(1.1);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
        filter: 
            drop-shadow(0 0 30px rgba(255, 255, 255, 1))
            drop-shadow(0 0 60px rgba(103, 188, 69, 0.8))
            brightness(1.4)
            contrast(1.2);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.company-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.about-visual .stat-box {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(103, 188, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-visual .stat-box:hover {
    background: rgba(103, 188, 69, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(103, 188, 69, 0.2);
}

.about-visual .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #67bc45;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(103, 188, 69, 0.5);
}

.about-visual .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.content-wrapper h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.2rem;
    color: #67bc45;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.content-wrapper p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    margin: 2rem 0;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(103, 188, 69, 0.1);
    transform: translateX(10px);
}

.feature-point i {
    color: #67bc45;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.feature-point span {
    color: #ffffff;
    font-weight: 500;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        padding-left: 0;
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .logo-container {
        width: 250px;
        height: 250px;
    }
    
    .glow-ring {
        width: 230px;
        height: 230px;
    }
    
    .glow-ring-2 {
        width: 270px;
        height: 270px;
    }
    
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .logo-symbol {
        font-size: 3rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}




/* Trading Section */
.trading-section {
    background-image:url(../images/bg1.jpg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.trading-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(103, 188, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(103, 188, 69, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.trading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trading-text .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.trading-features {
    margin: 2rem 0 3rem;
}

.trading-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trading-feature:hover {
    background: rgba(103, 188, 69, 0.05);
    transform: translateX(10px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trading-feature:hover .feature-icon-small {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-small i {
    font-size: 1.5rem;
    color: #000000;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.trading-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(103, 188, 69, 0.2);
}

.trading-stat {
    text-align: center;
    flex: 1;
}

.trading-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #67bc45;
    margin-bottom: 0.3rem;
}

.trading-stat .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.trading-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.trading-visual {
    position: relative;
    display: block;
    justify-content: center;
    align-items: center;
}

.trading-dashboard {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(103, 188, 69, 0.3);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(103, 188, 69, 0.2);
    animation: dashboardFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(2deg);
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(103, 188, 69, 0.2);
}

.dashboard-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #67bc45;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #67bc45;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.crypto-cards {
    margin-bottom: 1.5rem;
}

.crypto-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(103, 188, 69, 0.1);
    transition: all 0.3s ease;
    animation: cardSlideIn 0.6s ease-out;
}

.crypto-card:nth-child(1) { animation-delay: 0.2s; }
.crypto-card:nth-child(2) { animation-delay: 0.4s; }
.crypto-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.crypto-card:hover {
    background: rgba(103, 188, 69, 0.1);
    transform: translateX(5px);
}

.crypto-card .crypto-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.crypto-card.btc .crypto-icon {
    background: linear-gradient(135deg, #f7931a, #ff9500);
    color: #ffffff;
}

.crypto-card.eth .crypto-icon {
    background: linear-gradient(135deg, #627eea, #4f6cda);
    color: #ffffff;
}

.crypto-card.ada .crypto-icon {
    background: linear-gradient(135deg, #0033ad, #1e3a8a);
    color: #ffffff;
}

.crypto-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crypto-name {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.crypto-price {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.crypto-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.crypto-change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.crypto-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.chart-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(103, 188, 69, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.chart-timeframe {
    background: rgba(103, 188, 69, 0.2);
    color: #67bc45;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.chart-lines {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 60px;
    padding: 0 0.5rem;
}

.chart-line {
    flex: 1;
    background: linear-gradient(to top, #67bc45, #5aa83a);
    border-radius: 2px 2px 0 0;
    animation: chartGrow 2s ease-out infinite alternate;
}

.line-1 { height: 30%; animation-delay: 0s; }
.line-2 { height: 60%; animation-delay: 0.2s; }
.line-3 { height: 45%; animation-delay: 0.4s; }
.line-4 { height: 80%; animation-delay: 0.6s; }
.line-5 { height: 35%; animation-delay: 0.8s; }

@keyframes chartGrow {
    0% {
        opacity: 0.6;
        transform: scaleY(0.8);
    }
    100% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

.trading-actions {
    display: flex;
    gap: 0.8rem;
}

.action-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn.buy {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
}

.action-btn.buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.action-btn.sell {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

.action-btn.sell:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #092705, #063502);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
    animation: floatCoin 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(103, 188, 69, 0.3);
}
.coin-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.coin-2 {
    top: 70%;
    left: -8%;
    animation-delay: 1.5s;
}

.coin-3 {
    bottom: 15%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design for Trading Section */
@media (max-width: 768px) {
    .trading-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .trading-text .section-header {
        text-align: center;
    }
    
    .trading-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trading-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trading-dashboard {
        max-width: 350px;
    }
    
    .floating-coin {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trading-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .trading-stats {
        padding: 1rem;
    }
    
    .trading-dashboard {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .crypto-card {
        padding: 0.6rem;
    }
    
    .chart-lines {
        height: 40px;
    }
}

/* About Section Part 2 - Values */
.about-values {
 background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0a1a0a 100%);
    padding: 2rem 0;
}


.about-values1 {
 background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0a1a0a 100%);
    padding: 2rem 0;
}


.about-values2 {
 background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0a1a0a 100%);
    padding: 2rem 0;
}



.about-values3 {
 background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0a1a0a 100%);
     padding: 2rem 0;
}

.about-values4 {
 background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0a1a0a 100%);
    padding: 2rem 0;
}

.about-values5 {
 background: linear-gradient(135deg, #0a1a0a 0%, #1a2e1a 50%, #0a1a0a 100%);
     padding: 2rem 0;
}


.value-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.value-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-item.reverse {
    grid-template-columns: 2fr 1fr;
}

.value-item.reverse .value-image {
    order: 2;
}

.value-item.reverse .value-content {
    order: 1;
}

.value-image img {
    width:100%;
}


.bgvss1 {
    background-image: url(../images/bg1.jpg);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}



.bgvss2 {
    background-image: url(../images/bg2.jpg);
    padding: 2rem 0;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.value-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(103, 188, 69, 0.3);
}

.image-container i {
    font-size: 4rem;
    color: #000000;
    z-index: 2;
    transition: all 0.3s ease;
}

.image-container:hover i {
    transform: scale(1.1) rotate(10deg);
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(103, 188, 69, 0.4),
        transparent,
        rgba(103, 188, 69, 0.4),
        transparent
    );
    animation: rotate 4s linear infinite;
    border-radius: 50%;
}

.value-content {
    padding: 2rem 0;
}

.value-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-content p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.feature-point i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #000000;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .value-item,
    .value-item.reverse {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .value-item.reverse .value-image,
    .value-item.reverse .value-content {
        order: unset;
    }
    
    .image-container {
        width: 150px;
        height: 150px;
    }
    
    .image-container i {
        font-size: 3rem;
    }
    
    .value-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-values {
        padding: 3rem 0;
    }
    
    .value-item {
        margin-bottom: 3rem;
    }
    
    .image-container {
        width: 120px;
        height: 120px;
    }
    
    .image-container i {
        font-size: 2.5rem;
    }
    
    .value-content h3 {
        font-size: 1.8rem;
    }
    
    .value-content p {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .company-highlights {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-data .section-header {
        text-align: center;
    }
}

/* Features Section */
.features {
   
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(103, 188, 69, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(103, 188, 69, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(103, 188, 69, 0.1);
    border: 1px solid rgba(103, 188, 69, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #67bc45;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-showcase {
    margin-top: 3rem;
}

/* Main Feature Card */
.main-feature-card {
    background: linear-gradient(135deg, #153b06, #2a2a2a);
    border: 1px solid rgba(103, 188, 69, 0.2);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.main-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(103, 188, 69, 0.05), transparent);
    pointer-events: none;
}

.main-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.main-feature-icon i {
    font-size: 2.5rem;
    color: #000000;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(15px);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.main-feature-text h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.main-feature-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.feature-stats .stat {
    text-align: center;
}

.feature-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #67bc45;
}

.feature-stats .stat-label {
    font-size: 0.9rem;
    color: #999999;
}

/* Bot Animation */
.main-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot-animation {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(103, 188, 69, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring:nth-child(1) {
    width: 100px;
    height: 100px;
}

.pulse-ring:nth-child(2) {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
}

.pulse-ring:nth-child(3) {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.bot-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: rotate 10s linear infinite;
}

.bot-core i {
    font-size: 2rem;
    color: #000000;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card.enhanced {
    background: linear-gradient(135deg, #273f1e, #00470057);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(103, 188, 69, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(103, 188, 69, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card.enhanced:hover::before {
    opacity: 1;
}

.feature-card.enhanced:hover {
    transform: translateY(-10px);
    border-color: rgba(103, 188, 69, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(103, 188, 69, 0.1);
}

.feature-card.enhanced .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-card.enhanced .feature-icon i {
    font-size: 2rem;
    color: #000000;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 20px;
    opacity: 0.2;
    filter: blur(10px);
}

.feature-card.enhanced h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.feature-card.enhanced p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(103, 188, 69, 0.1);
    border: 1px solid rgba(103, 188, 69, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: #67bc45;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-highlight i {
    font-size: 0.8rem;
}

.feature-flair {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.flair-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flair-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.flair-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.flair-badge.free {
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    color: #000000;
    box-shadow: 0 4px 15px rgba(103, 188, 69, 0.3);
}

/* Feature Benefits */
.feature-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(103, 188, 69, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(103, 188, 69, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.benefit-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.benefit-text p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-feature-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: center;
    }
}

/* Bot Program Section */

.bot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bot-features {
    margin: 2rem 0;
}

.bot-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bot-feature i {
    font-size: 1.5rem;
    color: #67bc45;
    width: 30px;
}

.bot-feature h4 {
    margin-bottom: 0.3rem;
}

.bot-feature p {
    color: #cccccc;
    font-size: 0.9rem;
}

.bot-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.bot-stat {
    text-align: center;
}

.bot-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #67bc45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1;
}

.bot-stat .stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}


.bot-image {
    position: relative;
    min-height: 300px; /* Ensure minimum height */
}

.bot-image img {
    width: 100%;
    max-width: 500px; /* Limit maximum width */
    height: auto;
    border-radius: 20px;
    display: block; /* Ensure it's displayed as block */
}



.bot-image1 {
    position: relative;
    min-height: 300px; /* Ensure minimum height */
}

.bot-image1 img {
    width: 100%;
    max-width: 500px; /* Limit maximum width */
    height: auto;
    border-radius: 20px;
    display: block; /* Ensure it's displayed as block */
}

.bot-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 2px solid #67bc45;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

@keyframes pulse {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
/* Download Section */
.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-features {
    margin: 2rem 0;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.download-feature i {
    color: #67bc45;
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.download-btn img {
    height: 60px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.download-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
}

/* Plans Section */
.plans {
    background: #111111;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: #1a1a1a;
    border: 1px solid rgba(103, 188, 69, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 188, 69, 0.3);
}

.plan-card.popular {
    border-color: #67bc45;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #67bc45;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #67bc45;
}

.period {
    color: #cccccc;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features .fa-check {
    color: #67bc45;
}

.plan-features .fa-times {
    color: #666666;
}

.plan-btn {
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(103, 188, 69, 0.3);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-items {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(103, 188, 69, 0.1);
    border: 1px solid rgba(103, 188, 69, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67bc45;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #67bc45;
    color: #000000;
}

.contact-form {
    padding: 2rem;
    background: linear-gradient(135deg, rgb(38 95 5) 0%, rgb(12 41 0) 50%, rgb(35 97 12) 100%);
    border-radius: 16px;
    border: 1px solid rgba(103, 188, 69, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #0a0a0a00;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #67bc45;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ffffff;
}

option {
    background:#103300;
}
/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #204d06 0%, #1a1a1a 50%, #144103 100%);
    padding: 11px 10px;
    border-top: 1px solid rgba(103, 188, 69, 0.2);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.crypto-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(103, 188, 69, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(103, 188, 69, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(103, 188, 69, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(103, 188, 69, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(103, 188, 69, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.footer-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(103, 188, 69, 0.1) 0%, transparent 70%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(103, 188, 69, 0.1) 0%, rgba(103, 188, 69, 0.05) 100%);
    border-bottom: 1px solid rgba(103, 188, 69, 0.2);
    margin-bottom: 3rem;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #67bc45, #85d55c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(103, 188, 69, 0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #888888;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #67bc45, #85d55c);
    border: none;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #85d55c, #67bc45);
    transform: translateY(-2px);
}

.newsletter-features {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.newsletter-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-features i {
    color: #67bc45;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr  1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    position: relative;
}

.footer-main {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 150px;
  
    border-radius: 12px;
    filter: drop-shadow(0 0 10px rgba(103, 188, 69, 0.3));
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #67bc45, #85d55c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.trust-item i {
    color: #67bc45;
    font-size: 1rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section h4 i {
    color: #67bc45;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-radius: 6px;
    font-size: 0.95rem;
}

.footer-section ul li a i {
    color: #67bc45;
    font-size: 0.9rem;
    width: 16px;
}

.footer-section ul li a:hover {
    color: #67bc45;
    background: rgba(103, 188, 69, 0.1);
    padding-left: 0.75rem;
    transform: translateX(5px);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(103, 188, 69, 0.1);
    border: 1px solid rgba(103, 188, 69, 0.2);
    border-radius: 10px;
    color: #67bc45;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link:hover {
    background: #67bc45;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(103, 188, 69, 0.3);
}

.social-link span {
    display: none;
}

.social-link:hover span {
    display: inline;
}

/* Crypto Tickers */
.crypto-tickers {
    margin-bottom: 1.5rem;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(103, 188, 69, 0.1);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: rgba(103, 188, 69, 0.1);
    border-color: rgba(103, 188, 69, 0.3);
}

.ticker-item i {
    font-size: 1.2rem;
    color: #67bc45;
}

.crypto-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.crypto-price {
    color: #cccccc;
    font-size: 0.85rem;
}

.crypto-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: auto;
}

.crypto-change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.crypto-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.view-all-markets {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #67bc45;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-all-markets:hover {
    color: #85d55c;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
   
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom p {
    color: #888888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(103, 188, 69, 0.1);
    border: 1px solid rgba(103, 188, 69, 0.2);
    border-radius: 20px;
    color: #67bc45;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #71ff37;
;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #67bc45;
}

/* Responsive Design */
@media (max-width: 768px) {


 

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


    .hero-stats
 {
    flex-direction: row;
    gap: 1rem;
}

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #062e1f 0%, #0b5d3b 45%, #058b54 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        border-top: 1px solid rgba(103, 188, 69, 0.2);
        z-index: 1000;
        height: calc(100vh - 70px);
        overflow-y: auto;
        backdrop-filter: blur(10px);
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu backdrop */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu li.mobile-buttons {
        margin-top: 1rem;
        padding: 1rem;
        border-top: 1px solid rgba(103, 188, 69, 0.2);
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mobile-btn {
        flex: 1;
        max-width: 120px;
        text-align: center;
        padding: 0.7rem 1.2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: block;
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        margin: 0.3rem 1rem;
    }

    .nav-link:hover {
        background: rgba(103, 188, 69, 0.1);
    }

    .nav-buttons {
        display: none;
    }

    /* Additional Mobile Menu Improvements */
    .nav-menu li a {
        position: relative;
        overflow: hidden;
    }

    .nav-menu li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(103, 188, 69, 0.1), transparent);
        transition: left 0.5s;
    }

    .nav-menu li a:hover::before {
        left: 100%;
    }

    /* Compact mobile menu spacing */
    .nav-menu {
        gap: 0;
    }

    .nav-menu li:not(.mobile-buttons) {
        border-bottom: 1px solid rgba(103, 188, 69, 0.1);
    }

    .nav-menu li:last-child:not(.mobile-buttons) {
        border-bottom: none;
    }

    /* Show mobile buttons on mobile */
    .mobile-buttons {
        display: flex !important;
    }

    /* Hide mobile buttons on desktop */
    .mobile-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
        position: relative;
    }

    /* Ensure proper layout: Logo left, Hamburger right */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-logo {
        order: 1;
        flex: 0 0 auto;
    }

    .nav-buttons {
        display: none;
        order: 3;
    }

    .hamburger {
        order: 4;
        margin-left: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 20px;
        min-height: auto;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
        max-width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .floating-cards {
        display: none; /* Hide floating cards on mobile for better performance */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat {
        min-width: 120px;
    }
    
    .about-grid,
    .bot-content,
    .download-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Ensure bot image is visible on mobile */
    .bot-image {
        text-align: center;
        margin-top: 2rem;
    }
    
    .bot-image img {
        max-width: 90%;
        height: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }

    /* Trading Section Mobile */
    .trading-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trading-visual {
        order: -1;
    }

    .crypto-widget {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1.2rem;
    }

    .crypto-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
    }

    .crypto-card {
        padding: 1rem;
    }

    .crypto-info {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .crypto-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .crypto-details h4 {
        font-size: 0.85rem;
    }

    .crypto-symbol {
        font-size: 0.7rem;
    }

    .price {
        font-size: 0.9rem;
    }

    .change {
        font-size: 0.75rem;
        padding: 0.15rem 0.4rem;
    }
    
    /* Footer Responsive */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .newsletter-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-main {
        padding-right: 0;
    }
    
    .trust-indicators {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link span {
        display: inline;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        width: 140px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 1rem 15px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat {
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about-intro {
        padding: 3rem 0;
    }

    .intro-title {
        font-size: 2.2rem;
    }

    .intro-description {
        font-size: 1rem;
    }

    .logo-container {
        width: 200px;
        height: 200px;
    }

    .glow-ring {
        width: 180px;
        height: 180px;
    }

    .glow-ring-2 {
        width: 220px;
        height: 220px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .logo-symbol {
        width: 80px;
        height: 80px;
    }

    /* Trading Section Mobile */
    .trading-section {
        padding: 3rem 0;
    }

    .crypto-widget {
        padding: 1rem;
        border-radius: 16px;
    }

    .widget-header h3 {
        font-size: 1rem;
    }

    .crypto-card {
        padding: 0.8rem;
    }

    .crypto-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .crypto-details h4 {
        font-size: 0.85rem;
    }

    .crypto-symbol {
        font-size: 0.7rem;
    }

    .price {
        font-size: 0.9rem;
    }

    .change {
        font-size: 0.75rem;
        padding: 0.15rem 0.4rem;
    }

    /* Features Section Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card.enhanced {
        padding: 2rem;
    }

    .main-feature-card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .main-feature-icon {
        width: 60px;
        height: 60px;
    }

    .main-feature-icon i {
        font-size: 2rem;
    }

    .main-feature-text h3 {
        font-size: 1.5rem;
    }

    .feature-stats {
        gap: 1rem;
    }

    .feature-benefits {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    /* Value Items Mobile */
    .value-item {
        margin-bottom: 3rem;
    }

    .value-content h3 {
        font-size: 2rem;
    }

    .value-content p {
        font-size: 0.95rem;
    }

    /* Contact Form Mobile */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .footer-newsletter {
        padding: 2rem 0;
    }
    
    .newsletter-text h3 {
        font-size: 1.3rem;
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .social-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .crypto-tickers {
        margin-bottom: 1rem;
    }
    
    .ticker-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .footer-badges {
        gap: 0.5rem;
    }
    
    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    /* Navigation Mobile Improvements */
    .nav-menu {
        top: 73px;
        padding: 1rem 0;
    }

    .nav-menu li {
        margin: 0.4rem 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
        margin: 0.2rem 1rem;
    }

    .nav-buttons {
        bottom: 15px;
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .btn-login, .btn-signup {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}


/* Crypto Widget Styles */
.crypto-widget {
   
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    max-width: 500px;
   
    animation: widgetFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes widgetFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(103, 188, 69, 0.2);
}

.widget-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-header h3 i {
    color: #67bc45;
}

.refresh-btn {
    width: 35px;
    height: 35px;
    background: rgba(103, 188, 69, 0.2);
    border: 1px solid rgba(103, 188, 69, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: rgba(103, 188, 69, 0.3);
    transform: rotate(180deg);
}

.refresh-btn i {
    color: #67bc45;
    font-size: 1rem;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr)!important;
    gap: 1rem;
}

.crypto-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(103, 188, 69, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #67bc45, #5aa83a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.crypto-card:hover::before {
    transform: scaleX(1);
}

.crypto-card:hover {
    background: rgba(103, 188, 69, 0.1);
    border-color: rgba(103, 188, 69, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(103, 188, 69, 0.2);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.crypto-card[data-symbol="BTC"] .crypto-icon {
  
    color: #ffffff;
}

.crypto-card[data-symbol="ETH"] .crypto-icon {
   
    color: #ffffff;
}

.crypto-card[data-symbol="BNB"] .crypto-icon {
  
    color: #000000;
}

.crypto-card[data-symbol="ADA"] .crypto-icon {
  
    color: #ffffff;
}

.crypto-card[data-symbol="SOL"] .crypto-icon {
   
    color: #ffffff;
}

.crypto-card[data-symbol="DOT"] .crypto-icon {
   
    color: #ffffff;
}

.crypto-details h4 {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.crypto-symbol {
    font-size: 0.75rem;
    color: #cccccc;
    font-weight: 500;
}

.crypto-price {
    text-align: right;
}

.price {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.3rem;
    animation: priceUpdate 2s ease-in-out infinite;
}

@keyframes priceUpdate {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Animation for crypto cards */
.crypto-card {
    animation: cardSlideIn 0.6s ease-out;
}

.crypto-card:nth-child(1) { animation-delay: 0.1s; }
.crypto-card:nth-child(2) { animation-delay: 0.2s; }
.crypto-card:nth-child(3) { animation-delay: 0.3s; }
.crypto-card:nth-child(4) { animation-delay: 0.4s; }
.crypto-card:nth-child(5) { animation-delay: 0.5s; }
.crypto-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design for crypto widget */
@media (max-width: 768px) {
    .crypto-widget {
        max-width: 400px;
        padding: 1.2rem;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .crypto-card {
        padding: 0.8rem;
    }
    
    .crypto-info {
        gap: 0.5rem;
    }
    
    .crypto-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .crypto-details h4 {
        font-size: 0.85rem;
    }
    
    .crypto-symbol {
        font-size: 0.7rem;
    }
    
    .price {
        font-size: 0.9rem;
    }
    
    .change {
        font-size: 0.75rem;
        padding: 0.15rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .crypto-widget {
        max-width: 320px;
        padding: 1rem;
    }
    
    .widget-header h3 {
        font-size: 1rem;
    }
    
    .crypto-card {
        padding: 0.7rem;
    }
    
    .crypto-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .crypto-details h4 {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 0.85rem;
    }
}

/* ===== PARTICLE EFFECTS & ANIMATIONS ===== */

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

/* Ensure content is above particles */
.hero-content {
    position: relative;
    z-index: 10;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(103, 188, 69, 0.1), rgba(0, 255, 136, 0.1));
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: -7s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: -14s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: translateY(20px) rotate(240deg);
        opacity: 0.4;
    }
}

/* Section Particles */
.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #67bc45;
    border-radius: 50%;
    animation: floatParticle 15s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.particle-4 {
    top: 40%;
    right: 30%;
    animation-delay: -7s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(10px) translateX(-15px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-15px) translateX(5px);
        opacity: 0.8;
    }
}

/* ===== ENHANCED ANIMATIONS ===== */

/* Animated Text */
.animated-text {
    background: linear-gradient(45deg, #67bc45, #00ff88, #67bc45);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Pulse Button */
.pulse-btn {
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

.pulse-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pulse-btn:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(103, 188, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(103, 188, 69, 0.8);
    }
}

/* Floating Image */
.floating-image {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Floating Cards */
.floating-card {
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: -1.3s;
}

.card-3 {
    animation-delay: -2.6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Animated Rings */
.animated-ring {
    animation: rotateRing 10s linear infinite;
}

.animated-ring-2 {
    animation: rotateRing 15s linear infinite reverse;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Pulse Logo */
.pulse-logo {
    animation: pulseLogo 3s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(103, 188, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(103, 188, 69, 0.6);
    }
}

/* ===== HOVER EFFECTS ===== */

/* Hover Lift */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hover Scale */
.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Enhanced Feature Cards */
.feature-card.enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(103, 188, 69, 0.2);
    transition: all 0.4s ease;
}

.feature-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(103, 188, 69, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card.enhanced:hover::before {
    left: 100%;
}

.feature-card.enhanced:hover {
    border-color: rgba(103, 188, 69, 0.5);
    box-shadow: 0 15px 35px rgba(103, 188, 69, 0.2);
}

/* Icon Animations */
.feature-icon {
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(103, 188, 69, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== LOADING ANIMATIONS ===== */

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #67bc45;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #67bc45;
    }
}

/* ===== SCROLL ANIMATIONS ===== */

/* Fade In Up */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== INTERACTIVE ELEMENTS ===== */

/* Magnetic Effect */
.magnetic {
    transition: all 0.3s ease;
}

.magnetic:hover {
    transform: scale(1.05);
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 2s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s ease-in-out infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s ease-in-out infinite;
    color: #00ff00;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-1px, 1px);
    }
    40% {
        transform: translate(-1px, -1px);
    }
    60% {
        transform: translate(1px, 1px);
    }
    80% {
        transform: translate(1px, -1px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(1px, -1px);
    }
    40% {
        transform: translate(1px, 1px);
    }
    60% {
        transform: translate(-1px, -1px);
    }
    80% {
        transform: translate(-1px, 1px);
    }
}

/* ===== RESPONSIVE ANIMATIONS ===== */

@media (max-width: 768px) {
    .particles-container {
        display: none; /* Hide particles on mobile for performance */
    }
    
    .bg-circle {
        display: none; /* Hide background circles on mobile */
    }
    
    .floating-card {
        animation: none; /* Disable floating animations on mobile */
    }
    
    .hover-lift:hover {
        transform: none; /* Disable hover effects on mobile */
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

/* ===== ADDITIONAL COOL EFFECTS ===== */

/* Neon Glow */
.neon-glow {
    text-shadow: 
        0 0 5px #67bc45,
        0 0 10px #67bc45,
        0 0 15px #67bc45,
        0 0 20px #67bc45;
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow: 
            0 0 5px #67bc45,
            0 0 10px #67bc45,
            0 0 15px #67bc45,
            0 0 20px #67bc45;
    }
    50% {
        text-shadow: 
            0 0 2px #67bc45,
            0 0 5px #67bc45,
            0 0 8px #67bc45,
            0 0 12px #67bc45;
    }
}

/* Matrix Rain Effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

/* Holographic Effect */
.holographic {
    background: linear-gradient(45deg, #67bc45, #00ff88, #67bc45, #00ff88);
    background-size: 400% 400%;
    animation: holographicShift 4s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes holographicShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

/* Cyber Grid */
.cyber-grid {
    background-image: 
        linear-gradient(rgba(103, 188, 69, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 188, 69, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

/* Energy Orb */
.energy-orb {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, #67bc45, transparent);
    animation: energyPulse 3s ease-in-out infinite;
}

.energy-orb::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #67bc45, #00ff88, #67bc45);
    animation: energyRotate 2s linear infinite;
    z-index: -1;
}

@keyframes energyPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes energyRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* ===== CONTENT VISIBILITY FIXES ===== */

/* Ensure all text content is visible */
.hero-title,
.hero-description,
.hero-buttons,
.hero-stats {
    position: relative;
    z-index: 15;
}

/* Make sure particles canvas doesn't interfere */
#particles-js canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ensure proper text visibility */
.hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    color: #cccccc !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Button visibility */
.btn-primary {
    position: relative;
    z-index: 20;
}

/* Stats visibility */
.hero-stats {
    color: #ffffff !important;
}

.stat-number {
    color: #67bc45 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-label {
    color: #cccccc !important;
}

/* Image visibility */
.hero-image {
    position: relative;
    z-index: 10;
}

/* Floating cards visibility */
.floating-cards {
    position: relative;
    z-index: 12;
}

.floating-cards .card {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(103, 188, 69, 0.3) !important;
    color: #ffffff !important;
}
/* ===== DEBUG AND VISIBILITY FIXES ===== */

/* Force visibility for hero elements */
.hero-slider {
    opacity: 1 !important;
    visibility: visible !important;
}

.slide.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-text {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure proper display */
.hero-title {
    display: block !important;
    opacity: 1 !important;
    color: #ffffff !important;
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.hero-description {
    display: block !important;
    opacity: 1 !important;
    color: #cccccc !important;
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
}

.hero-buttons {
    display: flex !important;
    opacity: 1 !important;
    margin-bottom: 2rem !important;
}

.hero-stats {
    display: flex !important;
    opacity: 1 !important;
    gap: 2rem !important;
}

/* Remove any conflicting animations initially */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Particles should not block content */
#particles-js {
    pointer-events: none !important;
    z-index: 1 !important;
}

#particles-js canvas {
    pointer-events: none !important;
    z-index: 1 !important;
}