:root {
            --primary-color: #4cc3ff;
            --secondary-color: #5f5eff;
            --gradient-start: #4cc3ff;
            --gradient-end: #5f5eff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --glass-shadow: rgba(0, 0, 0, 0.25);
            --font-family: 'Poppins', sans-serif;
            --text-color: #ffffff;
            --accent-color: #0fffcf;
            --blur-amount: 15px;
            --border-radius: 20px;
            --transition-speed: 0.3s;
        }

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

        body {
            font-family: var(--font-family);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: var(--text-color);
            overflow-x: hidden;
            position: relative;
        }

        /* Animated background particles */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .particle {
            position: absolute;
            background: var(--accent-color);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }        /* Hero Section */
        .hero-section {
            background: none;
            padding: 120px 0;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/>') center/cover no-repeat;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Button Styles */
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--text-color);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            color: var(--text-color);
        }

        .btn-primary-custom i {
            transition: transform 0.3s ease;
        }

        .btn-primary-custom:hover i {
            transform: translateX(5px);
        }

        .btn-outline-custom {
            border: 2px solid var(--text-color);
            color: var(--text-color);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(5px);
        }

        .btn-outline-custom:hover {
            background: var(--glass-bg);
            transform: translateY(-2px);
        }        /* Course Card Styles */        .course-card {
            height: 750px; /* Fixed height for all cards */
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount));
            -webkit-backdrop-filter: blur(var(--blur-amount));
            box-shadow: 0 8px 32px 0 var(--glass-shadow);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            transition: all var(--transition-speed) ease;
        }

        @media (max-width: 768px) {
            .course-card {
                height: auto;
                min-height: 600px;
            }
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px 0 var(--glass-shadow);
            border-color: var(--accent-color);
        }

        /* Course Icon Enhancement */
       .course-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lottie-animation {
    width: 80px;
    height: 80px;
}

/* Ensure the SVG inside scales properly */
.lottie-animation svg {
    width: 100% !important;
    height: 100% !important;
}

        .course-card:hover .course-icon {
            transform: scale(1.1);
        }

        .course-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-color);
        }

        .course-duration {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            font-size: 0.9rem;
            margin: 1rem 0;
        }

        .course-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            margin: 1rem 0;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .feature-list li {
            margin: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.9rem;
        }

        .feature-list li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        /* Pricing Section Styles */
        #pricing {
            background: transparent !important;
            padding: 5rem 0;
        }

        .pricing-card {
            background: var(--glass-bg);
            backdrop-filter: blur(var(--blur-amount));
            -webkit-backdrop-filter: blur(var(--blur-amount));
            box-shadow: 0 8px 32px 0 var(--glass-shadow);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
        }

        .most-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #000;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

        .pricing-card.featured {
            transform: translateY(-10px);
            border: 2px solid var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px 0 var(--glass-shadow);
            border-color: var(--accent-color);
        }

        .original-price {
            text-decoration: line-through;
            opacity: 0.7;
            font-size: 1rem;
        }

        .savings {
            background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            margin-left: 8px;
        }

        .bundle-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin: 1rem 0;
        }

        #pricing .lead.text-muted,
        #pricing .text-muted,
        #pricing h3,
        #pricing h2 {
            color: var(--text-color) !important;
        }

        .pricing-card i {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        /* Features Section Styles */
        .features-section {
            background: transparent;
        }

        .features-section i {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .features-section h5 {
            color: var(--text-color);
            margin: 1rem 0;
        }

        .features-section p {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        .features-section .col-md-4 {
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .features-section .col-md-4:hover {
            transform: translateY(-5px);
        }

        /* Story Section Styles */
        .story-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 100%;
}

.story-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.story-card small {
    color: var(--accent-color);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    padding: 5px 15px;
    background: var(--accent-color);
    color: #000;
    font-weight: bold;
    border-radius: 3px;
}

.featured {
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.value-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Payment Options Styles */
.payment-options {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.payment-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.payment-card.featured {
    border: 2px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.payment-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent-color);
    color: #000;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.payment-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.payment-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.payment-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.payment-features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.payment-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.payment-example {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--accent-color);
    text-align: center;
    margin-top: auto;
}
