
:root {
    --primary-color: #00C853;
    --dark-bg: #121212;
    --light-bg: #F9FAFB;
    --light-text: #FAFAFA;
    --dark-text: #1E1E1E;
    --secondary-text: #9E9E9E;
    --border-color: #dee2e6;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Header */
.navbar {
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--light-text);
    font-weight: 500;
    margin-left: 1rem;
    margin-right: 1rem;
    text-transform: uppercase;
    font-size: 14px;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #00e65f;
    border-color: #00e65f;
    transform: scale(1.02);
}

/* Hero Section */
.hero-section {
    background: var(--dark-bg);
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-section .display-4 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-section .lead {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.keen-stat {
    padding: 20px 0;
    border-right: 1px solid var(--border-color);
}

.col-md-3:last-child .keen-stat {
    border-right: 0;
}

.keen-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

.keen-stat-label {
    font-size: 16px;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    color: var(--dark-text);
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card h3 {
    margin-bottom: 16px;
}

/* Split Section */
.split-section {
    padding: 80px 0;
}

.split-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

/* How It Works Section */
.process-step {
    text-align: center;
    padding: 20px;
}

.process-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 50px;
    margin: 0 auto 20px;
}

/* FAQs Section */
.accordion-item {
    background-color: #222;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 8px;
}

.accordion-button {
    background-color: #222;
    color: var(--light-text);
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #333;
}

.accordion-body {
    background-color: #333;
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.testimonial-card {
    background: #222;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.testimonial-quote {
    font-size: 60px;
    font-weight: 700;
    color: #0C63E4;
    /* color: var(--primary-color); */
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonial-author-name {
    font-weight: 700;
}

.testimonial-author-role {
    font-size: 14px;
    opacity: 0.8;
}


/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--dark-text);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background-color: var(--light-bg);
    color: var(--dark-text);
    border-color: var(--light-bg);
}

.cta-section .btn-primary:hover {
    background-color: #fff;
    border-color: #fff;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #000;
    color: var(--secondary-text);
}

.social-icon {
    color: var(--light-text);
    margin-left: 15px;
    font-size: 18px;
}

.social-icon:hover {
    color: var(--primary-color);
}
