/* File: style.css */
:root {
    --primary-color: #4361ee;
    --secondary-color: #4cc9f0;
    --accent-color: #7209b7;
    --dark-bg: #f8f9fa;
    --light-bg: #ffffff;
    --text-color: #212529;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
    position: relative;
    background-color: var(--light-bg);
    border-radius: 20px;
    margin: 20px;
    box-shadow: var(--shadow);
}

.section:nth-child(even) {
    background-color: var(--dark-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background-color: #3051e8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.btn-primary-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Header Styles */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#main-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex-basis: 45%;
    position: relative;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

.crypto-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.crypto-icons i {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.crypto-icons .fa-bitcoin { top: 10%; left: -15%; animation-delay: 0s; }
.crypto-icons .fa-ethereum { top: 40%; right: -20%; animation-delay: 2s; }
.crypto-icons .fa-chart-line { bottom: 15%; left: -10%; animation-delay: 4s; }

/* Credibility Bar */
.credibility-bar {
    background-color: var(--light-bg);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.credibility-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.credibility-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.credibility-logos img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.credibility-logos img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Value Proposition */
.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(67, 97, 238, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Pricing Tiers */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tier-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.tier-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.2);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -45px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.tier-header h3 { 
    font-size: 1.6rem; 
    color: var(--text-color);
    margin-bottom: 10px;
}

.tier-header .price { 
    font-size: 2.8rem; 
    font-weight: 700; 
    margin: 10px 0; 
    color: var(--primary-color);
}

.tier-header .price span { 
    font-size: 1.1rem; 
    color: var(--text-muted); 
    font-weight: 500;
}

.tier-header .interest-rate {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    background: rgba(114, 9, 183, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
}

.tier-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.tier-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    padding-left: 25px;
    position: relative;
}

.tier-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Performance Section */
.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: var(--light-bg);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(67, 97, 238, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Resources */
.resource-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.resource-card .card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.resource-card .card-content {
    padding: 25px;
}

.card-content .category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.card-content h4 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    color: var(--text-color);
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Final CTA */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 70px 50px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
#main-footer {
    background-color: var(--text-color);
    padding: 80px 0 30px;
    color: #fff;
    position: relative;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: #fff;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 800px;
    margin: 20px auto 0;
    opacity: 0.7;
}

/* Animated Robot Guide */
#robot-guide {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.robot-body {
    width: 60px;
    height: 45px;
    background: linear-gradient(180deg, #e0e0e0, #bdbdbd);
    border-radius: 50% / 60%;
    position: relative;
    cursor: pointer;
    animation: robot-hover 3s ease-in-out infinite;
}

.robot-head {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.robot-eye {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 5px;
    top: 15px;
    animation: robot-blink 5s infinite;
}

.robot-eye.left { left: 5px; }
.robot-eye.right { right: 5px; }

.robot-antenna {
    position: absolute;
    width: 4px;
    height: 15px;
    background: #9e9e9e;
    top: -15px;
    left: 23px;
}

.robot-antenna::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -8px;
    left: -2px;
    animation: antenna-light 2s infinite;
}

.robot-message-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    background: #fff;
    color: var(--text-color);
    padding: 15px 20px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
    font-size: 0.95rem;
    z-index: 1001;
}

.robot-message-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}

#robot-guide:hover .robot-message-box,
.robot-message-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes robot-hover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes robot-blink {
    0%, 90% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes antenna-light {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 15px var(--primary-color); }
}

.animate-on-load, .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-load.is-visible, .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; margin-bottom: 40px; max-width: 400px; margin-left: auto; margin-right: auto; }
    .cta-buttons { justify-content: center; }
    .section-title { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section {
        padding: 70px 0;
        margin: 15px;
    }
    
    .performance-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
        margin: 10px;
    }
    
    .hero-content h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .performance-stats { grid-template-columns: 1fr; }
    .tier-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .robot-message-box { width: 200px; }
}

/* Crypto Background */
#crypto-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.floating-crypto {
    position: absolute;
    font-size: 2rem;
    color: rgba(67, 97, 238, 0.2);
    opacity: 1;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Hero Bot */
.hero-bot {
    position: relative;
    width: 180px;
    height: 220px;
    margin: 0 auto;
}

.hero-bot-head {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    top: 0;
    left: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 3;
}

.hero-bot-eyes {
    position: absolute;
    top: 30px;
    left: 15px;
    width: 50px;
    height: 20px;
    background: #4361ee;
    border-radius: 10px;
    overflow: hidden;
}

.hero-bot-eyes::before,
.hero-bot-eyes::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 5px;
    animation: bot-eye-move 5s infinite;
}

.hero-bot-eyes::before { left: 10px; }
.hero-bot-eyes::after { right: 10px; }

@keyframes bot-eye-move {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
}

.hero-bot-body {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #e0e0e0, #c5c5c5);
    border-radius: 20px;
    top: 70px;
    left: 30px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.hero-bot-arm {
    position: absolute;
    width: 15px;
    height: 80px;
    background: #b0b0b0;
    top: 80px;
    z-index: 1;
    transform-origin: top center;
    border-radius: 8px;
}

.hero-bot-arm.left {
    left: 25px;
    animation: bot-arm-left 4s infinite;
}

.hero-bot-arm.right {
    right: 25px;
    animation: bot-arm-right 3s infinite;
}

@keyframes bot-arm-left {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-20deg); }
    50% { transform: rotate(10deg); }
}

@keyframes bot-arm-right {
    0%, 100% { transform: rotate(0); }
    30% { transform: rotate(15deg); }
    60% { transform: rotate(-15deg); }
}

.hero-bot-deco {
    position: absolute;
    color: rgba(67, 97, 238, 0.3);
    z-index: 0;
}

.hero-bot-deco.gear-1 {
    top: 40px;
    right: 0;
    font-size: 2.5rem;
    animation: rotate 10s linear infinite;
}

.hero-bot-deco.gear-2 {
    bottom: 40px;
    left: 0;
    font-size: 1.8rem;
    animation: rotate 8s linear infinite reverse;
}

.hero-bot-deco.plus-1 {
    top: 30px;
    left: 10px;
    font-size: 1.5rem;
    animation: pulse 3s infinite;
}

.hero-bot-deco.plus-2 {
    bottom: 30px;
    right: 10px;
    font-size: 1.5rem;
    animation: pulse 4s infinite;
}

.hero-bot-deco.circle-1 {
    top: 100px;
    left: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(67, 97, 238, 0.3);
    border-radius: 50%;
    animation: pulse 5s infinite;
}

@keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Standing Bot */
#standing-bot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#standing-bot:hover {
    transform: translateY(-5px);
}

.bot-body {
    width: 70px;
    height: 100px;
    position: relative;
}

.bot-head {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 5px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.bot-eye {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 5px;
    top: 15px;
    animation: bot-blink 5s infinite;
}

.bot-eye.left { left: 5px; }
.bot-eye.right { right: 5px; }

@keyframes bot-blink {
    0%, 90% { height: 20px; }
    92%, 96% { height: 2px; top: 25px; }
    98% { height: 20px; top: 15px; }
}

.bot-antenna {
    position: absolute;
    width: 4px;
    height: 15px;
    background: #9e9e9e;
    top: -15px;
    left: 28px;
}

.bot-antenna::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -8px;
    left: -2px;
    animation: antenna-light 2s infinite;
}

@keyframes antenna-light {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 15px var(--primary-color); }
}

.bot-arm {
    position: absolute;
    width: 10px;
    height: 60px;
    background: #b0b0b0;
    top: 30px;
    border-radius: 5px;
    transform-origin: top center;
}

.bot-arm.left {
    left: 5px;
    animation: bot-arm-swing-left 6s infinite;
}

.bot-arm.right {
    right: 5px;
    animation: bot-arm-swing-right 5s infinite;
}

@keyframes bot-arm-swing-left {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-30deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-15deg); }
}

@keyframes bot-arm-swing-right {
    0%, 100% { transform: rotate(0); }
    30% { transform: rotate(25deg); }
    60% { transform: rotate(-20deg); }
    80% { transform: rotate(10deg); }
}

.bot-message-box {
    position: absolute;
    bottom: 100px;
    right: 0;
    background: white;
    color: var(--text-color);
    padding: 15px;
    border-radius: 15px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    font-size: 0.9rem;
}

.bot-message-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

#standing-bot:hover .bot-message-box {
    opacity: 1;
    transform: translateY(0);
}

/* Standing Bot Decorations */
#standing-bot {
    position: relative;
}

.bot-deco {
    position: absolute;
    color: rgba(67, 97, 238, 0.3);
    z-index: -1;
}

.bot-deco.gear-1 {
    top: -20px;
    right: -30px;
    font-size: 2rem;
    animation: rotate 10s linear infinite;
}

.bot-deco.gear-2 {
    bottom: -10px;
    left: -25px;
    font-size: 1.5rem;
    animation: rotate 8s linear infinite reverse;
}

.bot-deco.plus-1 {
    top: 10px;
    left: -15px;
    font-size: 1.2rem;
    animation: pulse 3s infinite;
}

.bot-deco.plus-2 {
    bottom: 20px;
    right: -20px;
    font-size: 1.2rem;
    animation: pulse 4s infinite;
}

.bot-deco.circle-1 {
    top: 50px;
    left: -10px;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(67, 97, 238, 0.3);
    border-radius: 50%;
    animation: pulse 5s infinite;
}

/* Remove particles-js styles */
#particles-js {
    display: none;
}

:root {
    --primary-color: #4361ee;
    --secondary-color: #4cc9f0;
    --accent-color: #7209b7;
    --dark-bg: #f8f9fa;
    --light-bg: #ffffff;
    --text-color: #212529;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* === Main Content Sections === */
.section {
    padding: 100px 0;
    position: relative;
    background-color: var(--light-bg);
    border-radius: 20px;
    margin: 20px;
    box-shadow: var(--shadow);
}
.section:nth-child(even) { background-color: var(--dark-bg); }
.section-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 20px; color: var(--text-color); }
.section-subtitle { font-size: 1.1rem; text-align: center; color: var(--text-muted); margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.highlight { color: var(--primary-color); font-weight: 700; }

/* === Buttons === */
.btn { padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: var(--transition); display: inline-block; border: 2px solid transparent; font-size: 1rem; cursor: pointer; text-align: center; }
.btn-primary { background-color: var(--primary-color); color: #fff; box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3); }
.btn-primary:hover { background-color: #3051e8; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4); }
.btn-secondary { background-color: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-secondary:hover { background-color: var(--primary-color); color: #fff; transform: translateY(-3px); }
.btn-primary-outline { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; }
.btn-primary-outline:hover { background-color: var(--primary-color); color: #fff; }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

/* === Header === */
#main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: var(--transition); background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); }
#main-header.scrolled { padding: 15px 0; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }
#main-header nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-links { list-style: none; display: flex; gap: 30px; margin: 0; }
.nav-links a { color: var(--text-color); text-decoration: none; font-weight: 500; transition: var(--transition); position: relative; }
.nav-links a:hover { color: var(--primary-color); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: var(--transition); }
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: transparent; border: none; color: var(--text-color); font-size: 1.5rem; cursor: pointer; }

/* === Hero Section === */
#hero { padding-top: 150px; min-height: 100vh; display: flex; align-items: center; background: transparent; margin: 0; border-radius: 0; box-shadow: none; }
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-content { flex: 1; }
.hero-content h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 25px; color: var(--text-color); }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }
.cta-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-visual { flex-basis: 45%; position: relative; display: flex; justify-content: center; align-items: center; min-height: 450px; }

/* === UPDATED HERO BOT (FINAL VERSION) === */
.hero-bot {
    position: relative;
    width: 250px;
    height: 250px;
    animation: float 6s ease-in-out infinite;
}

.hero-bot-body {
    position: absolute;
    width: 160px;
    height: 160px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    box-shadow: inset 0 -10px 15px -5px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0,0,0,0.1);
}

.hero-bot-head {
    position: absolute;
    width: 140px;
    height: 120px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #f8f9fa;
    border-radius: 70px 70px 50px 50px;
    box-shadow: inset 0 -8px 12px -4px rgba(0, 0, 0, 0.1);
}

.hero-bot-eyes {
    position: absolute;
    width: 100px;
    height: 50px;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(160deg, #343a40, #212529);
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 15px;
}

.hero-bot-eyes::before,
.hero-bot-eyes::after {
    content: '';
    width: 18px;
    height: 28px;
    background-color: #00f5d4;
    border-radius: 5px;
    box-shadow: 0 0 8px #00f5d4, 0 0 15px #00f5d4;
    animation: robot-blink 4s ease-in-out infinite;
}

.hero-bot-eyes::after {
    animation-delay: 0.3s;
}

.hero-bot-arm {
    position: absolute;
    width: 40px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    z-index: -1;
}

.hero-bot-arm.left {
    top: 100px;
    left: 10px;
    transform: rotate(25deg);
    animation: float 4s ease-in-out infinite alternate;
}

.hero-bot-arm.right {
    top: 100px;
    right: 10px;
    transform: rotate(-25deg);
    animation: float 5s ease-in-out infinite alternate-reverse;
}

.hero-bot-deco {
    position: absolute;
    color: #00f5d4;
    font-weight: 600;
    opacity: 0.8;
}

.hero-bot-deco.circle-1 {
    width: 15px;
    height: 15px;
    border: 3px solid #00f5d4;
    border-radius: 50%;
    top: 60px;
    left: -20px;
    animation: float 7s ease-in-out infinite;
}

.hero-bot-deco.plus-1 {
    top: 130px;
    left: -5px;
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.hero-bot-deco.plus-2 {
    bottom: 0px;
    left: 20px;
    font-size: 1.2rem;
    animation: float 5s ease-in-out infinite reverse;
}

/* === Crypto Background & Other Sections === */
#crypto-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
.floating-crypto { position: absolute; font-size: 2rem; color: rgba(67, 97, 238, 0.1); }
.credibility-bar { background-color: var(--light-bg); padding: 20px 0; text-align: center; color: var(--text-muted); border-radius: 15px; box-shadow: var(--shadow); }
.credibility-bar .container { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.credibility-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.credibility-logos img { height: 30px; opacity: 0.7; transition: var(--transition); }
.credibility-logos img:hover { opacity: 1; transform: translateY(-3px); }
.value-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-card { background: var(--light-bg); padding: 35px 25px; border-radius: 15px; border: 1px solid var(--border-color); transition: var(--transition); text-align: center; box-shadow: var(--shadow); }
.value-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); border-color: var(--primary-color); }
.value-card i { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 20px; background: rgba(67, 97, 238, 0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 25px; }
.value-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-color); }
/* ... (Other styles for pricing, performance, etc. remain unchanged) ... */
.pricing-tiers,.performance-stats,.testimonial-container,.resource-cards-grid,.cta-box,#main-footer{
    padding: 10px;
}

/* === Animations === */
@keyframes float { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } 100% { transform: translateY(0px) rotate(0deg); } }
@keyframes robot-blink { 0%, 100% { transform: scaleY(1); } 5% { transform: scaleY(0.1); } 10% { transform: scaleY(1); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.animate-on-load, .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-load.is-visible, .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* === Robot Guide === */
#robot-guide { position: fixed; bottom: 30px; left: 30px; z-index: 1000; transition: transform 1s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.robot-body { width: 60px; height: 45px; background: linear-gradient(180deg, #e0e0e0, #bdbdbd); border-radius: 50% / 60%; position: relative; cursor: pointer; animation: robot-hover 3s ease-in-out infinite; }
.robot-head { width: 50px; height: 50px; background: #f5f5f5; border-radius: 50%; position: absolute; top: -30px; left: 5px; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); }
.robot-eye { position: absolute; width: 20px; height: 20px; background: var(--primary-color); border-radius: 5px; top: 15px; animation: robot-blink-guide 5s infinite; }
.robot-eye.left { left: 5px; }
.robot-eye.right { right: 5px; }
.robot-antenna { position: absolute; width: 4px; height: 15px; background: #9e9e9e; top: -15px; left: 23px; }
.robot-antenna::after { content: ''; position: absolute; width: 8px; height: 8px; background: var(--primary-color); border-radius: 50%; top: -8px; left: -2px; animation: antenna-light 2s infinite; }
.robot-message-box { position: absolute; bottom: 80px; left: 0; background: #fff; color: var(--text-color); padding: 15px 20px; border-radius: 15px; width: 250px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); opacity: 0; transform: translateY(20px); transition: var(--transition); pointer-events: none; font-size: 0.95rem; z-index: 1001; }
.robot-message-box::after { content: ''; position: absolute; bottom: -10px; left: 20px; border-width: 10px 10px 0; border-style: solid; border-color: #fff transparent transparent; }
#robot-guide:hover .robot-message-box, .robot-message-box.show { opacity: 1; transform: translateY(0); }
@keyframes robot-hover { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes robot-blink-guide { 0%, 90% { transform: scaleY(1); } 95% { transform: scaleY(0.1); } }
@keyframes antenna-light { 0%, 100% { box-shadow: 0 0 5px var(--primary-color); } 50% { box-shadow: 0 0 15px var(--primary-color); } }


/* === Responsive Design === */
@media (max-width: 992px) { .hero-container { flex-direction: column; text-align: center; } .hero-content { order: 2; } .hero-visual { order: 1; margin-bottom: 40px; max-width: 400px; } .cta-buttons { justify-content: center; } .section-title { font-size: 2.2rem; } .hero-content h1 { font-size: 2.5rem; } }
@media (max-width: 768px) { .nav-links { position: fixed; top: 80px; left: 0; width: 100%; background: #fff; flex-direction: column; align-items: center; padding: 30px 0; gap: 25px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); transform: translateY(-150%); transition: var(--transition); z-index: 999; } .nav-links.active { transform: translateY(0); } .mobile-menu-btn { display: block; } .section { padding: 70px 0; margin: 15px; } .performance-stats { grid-template-columns: 1fr 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .section { padding: 60px 0; margin: 10px; } .hero-content h1 { font-size: 2rem; } .section-title { font-size: 1.8rem; } .performance-stats { grid-template-columns: 1fr; } .tier-card.featured { transform: scale(1); } .footer-grid { grid-template-columns: 1fr; } .cta-buttons { flex-direction: column; } .robot-message-box { width: 200px; } }
/* Dropdown */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none; padding: .5rem 0;
}
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}
.nav-links .dropdown-menu li a {
  display: block;
  padding: .5rem 1rem;
  white-space: nowrap;
}

/* Badge */
.badge-sub {
  background: #ffc107;
  color: #212529;
  padding: .35em .75em;
  border-radius: .25rem;
  font-size: .8rem;
}

/* Mobile adjustments */
@media (max-width:768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.nav-active { 
    display: flex; 
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 1rem;
    gap: 1rem;
  }
  .mobile-menu-btn { display: block; }
}
/* Header Container */
#main-header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  max-height: 40px;    /* cap the height */
  width: auto;         /* preserve aspect ratio */
  margin-right: 0.5rem;
}

/* Ensure the logo-text stays vertical-center & doesn’t wrap */
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  white-space: nowrap;
}

/* Nav & Actions */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Logo stays at left */
  .logo {
    flex: 1 1 auto;
  }
  /* Hide desktop nav / actions */
  .nav-links,
  .nav-actions {
    display: none;
  }
  /* Show mobile button */
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
  }

  /* Mobile nav: full-screen overlay or dropdown */
  .nav-links.nav-active {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    gap: 1rem;
  }
}
/* 1) Shrink header height and padding */
#main-header .nav-container {
  padding: 0.5rem 1rem;      /* reduce vertical padding */
  align-items: center;       /* center everything vertically */
  justify-content: space-between;
}

/* 2) Logo text color & sizing */
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary-start);  /* change from white to your primary gradient start */
  white-space: nowrap;
}

/* 3) Logo image sizing (already caps height at 40px) */
.logo-img {
  max-height: 32px;  /* slightly smaller to match reduced header */
  margin-right: 0.5rem;
}

/* 4) Nav links fill the space end-to-end */
.nav-links {
  list-style: none;
  display: flex;
  flex: 1;                      /* take up remaining space */
  justify-content: space-around;/* spread links evenly across width */
  margin: 0;
  padding: 0;
}

/* 5) Nav link styling */
.nav-links li a {
  color: #333;                  /* dark text for contrast against light bg */
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}
.nav-links li a:hover {
  color: var(--primary-end);
}

/* 6) Actions (login/register) shrink slightly */
.nav-actions .btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
}

/* 7) Mobile: keep header tight */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.5rem;
  }
  .mobile-menu-btn {
    font-size: 1.25rem;
  }
}
/* Dropdown styling */
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown > a {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: .5rem 0;
  min-width: 180px;
  z-index: 1000;
}
.nav-links .dropdown-menu li a {
  display: block;
  padding: .5rem 1rem;
  color: #333;
  white-space: nowrap;
}
.nav-links .dropdown-menu li a:hover {
  background: #f1f1f1;
}

/* Show on hover (desktop) */
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile: show on click */
@media (max-width: 768px) {
  .nav-links .dropdown-menu {
    position: static;
    box-shadow: none;
  }
  .nav-links .dropdown-menu {
    display: none;
    flex-direction: column;
  }
  .nav-links .dropdown.nav-active > .dropdown-menu {
    display: flex;
  }
}
/* 1. Make the nav-wrapper a flex container and push nav-links away from the logo */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;           /* space between logo and nav-links */
}

/* 2. Push the .nav-actions (Login/Get Started) to the far right */
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 3. Style the Login link as a button too */
.nav-actions .btn-outline-light {
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
}

/* 4. Increase hamburger z-index and make it visible */
.mobile-menu-btn {
  display: none;            /* show only on mobile */
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  z-index: 2000;            /* sit above dropdown */
}

/* 5. On small screens, show the hamburger & hide desktop nav */
@media (max-width: 768px) {
  .nav-wrapper { gap: 1rem; }
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }

  /* 6. Style the mobile menu panel */
  .nav-links.nav-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;        /* white background instead of black */
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 1rem;
  }
  /* Sub-dropdowns */
  .nav-links .dropdown-menu {
    background: #fff !important;
    box-shadow: none;
    padding: 0.5rem 0;
  }
  .nav-links .dropdown.nav-active > .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}

/* 7. Ensure dropdown arrows and hover states look crisp */
.nav-links .dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links .dropdown-menu li a:hover {
  background: #f1f1f1;
}
/*
 * Header Alignment & Color Fix
 * Version: 2.2
*/

/* Fix 1: Align all nav items vertically */
.nav-wrapper .nav-links {
    display: flex;
    align-items: center; /* This is the key change for alignment */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Fix 2: Change logo text color to dark */
.logo .logo-text {
    color: var(--dark-text); /* Uses the dark text color variable */
    font-weight: 700;
}

/* Optional: A hover effect for the logo text */
.logo:hover .logo-text {
    color: var(--primary-color);
}
/* ===================================================================
   Header Text Color Fix
   =================================================================== */

/* Targets the main site name/logo text */
.header .navbar-brand span,
.nav-wrapper .logo .logo-text {
    color: #212529; /* A standard, professional dark color */
    font-weight: 600;
}

/* Targets the main navigation links like "Why Us", "Bots", etc. */
.header .nav-link,
.nav-wrapper .nav-links a {
    color: #495057; /* A slightly softer dark gray for links */
    font-weight: 500;
}

/* Style for when a link is hovered over or active */
.header .nav-link:hover,
.nav-wrapper .nav-links a:hover,
.header .nav-link.active {
    color: #0d6efd; /* Your primary blue color for hover/active state */
}
/* In your style1.css file */

/* Hide the mobile-specific buttons on desktop */
@media (min-width: 992px) { /* Adjust breakpoint if needed */
    .nav-actions-mobile {
        display: none;
    }
}

/* Hide the desktop-specific buttons on mobile */
@media (max-width: 991px) { /* Adjust breakpoint if needed */
    .nav-actions-desktop {
        display: none;
    }
    /* Style the mobile buttons to look good in the menu */
    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }
    .nav-actions-mobile .btn {
        width: 100%;
        text-align: center;
    }
}
/* We will target the existing .btn-primary class for consistency */
.btn-primary {
    /* The gradient for the button */
    background: linear-gradient(120deg, #4361ee, #5a74f1, #7209b7, #4361ee);
    
    /* The size of the gradient background. A larger size makes the animation smoother. */
    background-size: 300% 300%;
    
    color: white;
    border: none; /* Ensure no borders are interfering */
    
    /* A subtle glow effect using box-shadow */
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
    
    /* Applying the shimmer animation */
    animation: shimmer-gradient-button 4s ease infinite;
    
    transition: all 0.4s ease; /* Smooth transition for hover effects */
}

/* 3. Enhance the hover effect */
.btn-primary:hover {
    transform: translateY(-3px); /* Lifts the button slightly */
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4); /* Increases the glow */
}

/* 4. Style for disabled animated buttons */
.btn-primary:disabled {
    filter: grayscale(80%);
    animation: none; /* Turn off animation for disabled buttons */
    box-shadow: none;
    transform: none;
}
