/* Base Styles */
:root {
    --bg-primary: #0A0E14;
    --bg-secondary: #12182A;
    --accent-primary: #00FFC8;
    --accent-secondary: #3399FF;
    --accent-loss: #FF3366;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --primary-color: #3399FF;
    --primary-dark: #0056b3;
    --primary-light: #3399FF;
    --secondary-color: #0a0e14;
    --accent-color: #00FFC8;
    --accent-light: #66ffde;
    --gold-accent: #ffcc00;
    --heading-color: #ffffff;
    --text-color: #f0f0f0;
    --text-light: #b0b0b0;
    --card-bg: rgba(18, 24, 42, 0.7);
    --card-bg-glass: rgba(18, 24, 42, 0.6);
    --border-color: rgba(51, 153, 255, 0.3);
    --border-color-accent: rgba(0, 255, 200, 0.3);
    --success-color: #00FFC8;
    --warning-color: #FFB800;
    --danger-color: #FF3366;
    --gradient-blue: linear-gradient(135deg, #3399FF, #0055CC);
    --gradient-accent: linear-gradient(135deg, #00FFC8, #00FF99);
    --gradient-dark: linear-gradient(135deg, #0A0E14, #12182A);
    --gradient-neon: linear-gradient(135deg, #00FFC8, #3399FF);
    --shadow-soft: 0 10px 30px rgba(0, 255, 200, 0.1);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 20px rgba(0, 255, 200, 0.3);
    --shadow-glow: 0 0 30px rgba(51, 153, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #0a0e14;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5em;
    font-weight: 900;
}

h2 {
    font-size: 2.5em;
    font-weight: 800;
}

h3 {
    font-size: 1.8em;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.8em;
    color: var(--heading-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title span {
    color: var(--accent-color);
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-color);
    opacity: 0.9;
}

.highlight-text {
    color: var(--gold-accent);
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    border: none;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--secondary-color);
    box-shadow: var(--shadow-accent);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 255, 200, 0.5);
    color: var(--secondary-color);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--heading-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    background-color: rgba(0, 255, 200, 0.05);
    box-shadow: 0 8px 25px rgba(0, 255, 200, 0.2);
}form: translateY(-1px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.btn-gold {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
    font-weight: 800;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(229, 57, 53, 0.3);
}

.btn-gold:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

/* Header & Navigation */
header {
    background-color: rgba(10, 14, 20, 0.85); /* Semi-transparent dark */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(42, 51, 64, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

#primary-navigation {
    display: flex;
    gap: 30px;
}

#primary-navigation a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

#primary-navigation a:hover {
    color: var(--primary-color);
}

#primary-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

#primary-navigation a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Make it full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
    padding-bottom: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    filter: brightness(0.7) saturate(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 8s ease;
    animation: slideZoom 8s ease-out;
}

@keyframes slideZoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.9) 0%, rgba(10, 14, 20, 0.7) 50%, rgba(10, 14, 20, 0.95) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.8) 0%, rgba(10, 14, 20, 0.6) 50%, rgba(10, 14, 20, 0.85) 100%);
    z-index: 0;
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-weight: 900;
    font-size: 5em; /* Larger font size */
    margin-bottom: 30px;
    color: var(--heading-color);
    text-shadow: 0 4px 20px rgba(0,0,0,0.8); /* Stronger shadow for pop */
    position: relative;
    display: inline-block;
    animation: slideDown 0.8s ease-out;
    letter-spacing: -1px; /* Tighter letter spacing for professional look */
    max-width: 1000px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1::after {
    background: var(--gradient-accent);
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.5em; /* Larger body text */
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    padding-top: 15px;
    animation: fadeIn 1s ease-out 0.2s both;
    line-height: 1.5;
}
    line-height: 1.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease-out 0.4s both;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-cta-buttons .btn {
    margin: 0;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.hero-cta-buttons .btn:hover {
    transform: translateY(-5px) scale(1.08);
}

.hero-cta-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 255, 200, 0.5);
    color: var(--secondary-color);
    animation: ctaHoverPulse 0.6s ease-out;
    box-shadow: 0 15px 40px rgba(0, 51, 153, 0.4), 
                0 0 20px rgba(229, 57, 53, 0.3);
}

@keyframes ctaHoverPulse {
    0% {
        transform: translateY(-5px) scale(1.08);
    }
    50% {
        transform: translateY(-8px) scale(1.12);
    }
    100% {
        transform: translateY(-5px) scale(1.08);
    }
}

.pulse-animation {
    animation: ctaPulse 2s infinite, ctaGlow 3s infinite;
    position: relative;
}

.pulse-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    animation: ctaRipple 2s infinite;
    pointer-events: none;
}

/* Enhanced Pulse Animation */
@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 200, 0.4),
                    0 8px 20px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 255, 200, 0),
                    0 12px 30px rgba(0, 0, 0, 0.35);
        transform: scale(1.02);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color);
    }
    100% {
        box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-light);
    }
}
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4),
                    0 8px 20px rgba(0, 51, 153, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(229, 57, 53, 0),
                    0 12px 30px rgba(0, 51, 153, 0.35);
        transform: scale(1.02);
    }
}

/* Glow Animation */
@keyframes ctaGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(229, 57, 53, 0.3));
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(229, 57, 53, 0.6));
    }
}

/* Ripple Effect Animation */
@keyframes ctaRipple {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 0 25px rgba(229, 57, 53, 0);
        opacity: 0;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: var(--shadow-strong);
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    background: rgba(0, 136, 204, 0.05);
    border: 1px solid rgba(0, 136, 204, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.2);
}

.stat-value {
    font-size: 2.2em;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1em;
    color: var(--text-color);
    opacity: 0.9;
}

/* Hero Badge */
.hero-badge {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 8px 25px; /* Slightly more padding */
    border-radius: 50px;
    font-weight: 800; /* Bolder font */
    margin-bottom: 30px; /* More separation */
    display: inline-block;
    letter-spacing: 2px; /* Wider letter spacing */
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.6), 0 0 40px rgba(0, 255, 200, 0.2); /* Stronger glow */
    animation: glow 1.5s infinite alternate;
    transform: scale(1.05); /* Make it pop */
}
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    margin-right: 8px;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 1em;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: var(--text-color);
    opacity: 0.8;
}

.hero-trust-badges i {
    color: var(--accent-color);
    margin-right: 8px;
    color: var(--gold-accent);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(0, 225, 255, 0.3);
}

.feature-card h3 {
    color: var(--gold-accent); /* Apply gold to feature card titles */
    margin-bottom: 15px;
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tool-card {
    background-color: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tool-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at bottom right, rgba(0, 225, 255, 0.15), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(0, 225, 255, 0.3);
    background-color: rgba(18, 24, 32, 0.95);
}

.tool-card:hover::after {
    opacity: 1;
}

.tool-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: white;
}

.tool-card h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: var(--gold-accent); /* Apply gold to tool card titles */
}

.tool-card p {
    margin-bottom: 25px;
    flex-grow: 1;
}

.premium-tool {
    position: relative;
    border-color: var(--gold-accent);
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
}

.professional-analysis-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 80px;
}

.analysis-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-color);
}

.analysis-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.analysis-content ul {
    margin-bottom: 30px;
}

.analysis-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.analysis-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--secondary-color);
    position: relative;
}

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

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 3em;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.3;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1em;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--secondary-color);
    position: relative;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    background-color: rgba(42, 51, 64, 0.5);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle .btn {
    border-radius: 50px;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--text-color);
    border: none;
    transition: all 0.3s ease;
}

.pricing-toggle .toggle-active {
    background-color: var(--primary-color);
    color: white;
}

.save-badge {
    background-color: var(--success-color);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7em;
    margin-left: 5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: var(--gold-accent); /* Apply gold to pricing card titles */
}

.price {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.price-value {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-description {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 30px;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.pricing-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.15);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
}

/* Scarcity Banner */
.scarcity-banner {
    background: linear-gradient(135deg, #ff9500, #ff5e3a);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

.scarcity-banner p {
    margin-bottom: 0;
    font-weight: 700;
}

.scarcity-banner i {
    margin: 0 5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 58, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 94, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 58, 0);
    }
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-card h3 {
    font-size: 1.6em;
    margin: 20px 25px 10px;
    color: var(--gold-accent); /* Apply gold to course card titles */
}

.course-description {
    margin: 0 25px 20px;
}

.course-details {
    display: flex;
    justify-content: space-between;
    padding: 0 25px 20px;
    border-bottom: 1px solid var(--border-color);
}

.course-details span {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: var(--text-color);
}

.course-details i {
    margin-right: 5px;
    color: var(--primary-color);
}

.course-pricing {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-color);
    opacity: 0.7;
}

.sale-price {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.course-card .btn {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
}

.premium-course {
    border-color: var(--gold-accent);
}

.courses-cta {
    text-align: center;
}

/* Community Section */
.community-section {
    background-image: url('images/new/business-team-corporate-organization-meeting-conce-P2H33ZT-2.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 24, 32, 0.9), rgba(18, 24, 32, 0.7));
    z-index: 0;
}

.community-section .container {
    position: relative;
    z-index: 1;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.community-feature {
    text-align: center;
    padding: 30px;
    background-color: rgba(18, 24, 32, 0.7);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.community-feature:hover {
    transform: translateY(-5px);
}

.community-feature i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.community-feature h3 {
    margin-bottom: 15px;
}

.community-cta {
    text-align: center;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-stat {
    text-align: center;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.about-stat .stat-value {
    font-size: 2.2em;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0e14 0%, rgba(0, 123, 255, 0.1) 50%, #0a0e14 100%);
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-section .btn {
    background: var(--accent-color);
    color: #0a0e14;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-section .btn:hover {
    background: white;
    color: #0a0e14;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 200, 0.3);
}

.cta-section .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cta-section .btn-outline:hover {
    background: var(--accent-color);
    color: #0a0e14;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9em;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.9em;
    color: var(--text-color);
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
    font-weight: 900;
        font-size: 3.5em;
    }
    
    .professional-analysis-section {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }
    
    .mobile-nav-toggle {
        display: block;
        z-index: 2000;
    }
    
    #primary-navigation {
        position: fixed;
        inset: 0 0 0 0;
        background: rgba(18, 24, 32, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 30px 30px;
        z-index: 1500;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
        align-items: center;
        justify-content: flex-start;
    }
    
    #primary-navigation[data-visible="true"] {
        transform: translateX(0);
    }
    
    #primary-navigation li {
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
    
    #primary-navigation a {
        font-size: 1.2em;
        padding: 10px;
        display: block;
    }
    
    .hero-content h1 {
    font-weight: 900;
        font-size: 3em;
    }
    
    .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: var(--shadow-strong);
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
    font-weight: 900;
        font-size: 2.5em;
    }
    
    .hero-cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease-out 0.4s both;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta-buttons .btn {
    margin: 0;
        margin: 0;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .about-stats {
        flex-direction: column;
    }
}

/* Animation Classes */
.pulse-animation {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 136, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Marketing Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: var(--secondary-color);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-container {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2em;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.popup-content {
    padding: 40px;
}

.popup-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-badge i {
    margin-right: 5px;
}

.popup-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.popup-content p {
    margin-bottom: 25px;
}

.popup-countdown {
    margin-bottom: 25px;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
}

.countdown-value {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-label {
    font-size: 0.8em;
    color: var(--text-color);
    opacity: 0.8;
}

.popup-spots-left {
    margin-bottom: 25px;
    text-align: center;
}

.spots-progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.spots-progress-bar {
    height: 100%;
    background: var(--gradient-blue);
    border-radius: 5px;
}

.popup-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    color: var(--text-color);
    opacity: 0.8;
}

.popup-guarantee i {
    color: var(--success-color);
}

/* Newsletter Popup */
.popup-image {
    text-align: center;
    margin-bottom: 20px;
}

.popup-image img {
    max-width: 200px;
    border-radius: 8px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.popup-privacy {
    text-align: center;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Exit Intent Popup */
.popup-offer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.popup-discount {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 10px;
}

.coupon-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.code {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.copy-code {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-code:hover {
    background-color: var(--primary-dark);
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-text:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    max-width: 300px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.social-proof-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.social-proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.social-proof-text {
    font-size: 0.9em;
}

.social-proof-text p {
    margin-bottom: 5px;
}

.social-proof-time {
    font-size: 0.8em;
    opacity: 0.7;
}
