:root {
    --primary-color: #bf00ff;
    /* Neon Purple */
    --secondary-color: #ff0080;
    /* Hot Pink */
    --accent-color: #ff8c00;
    /* Bright Orange */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Bar */
.sticky-bar {
    background: linear-gradient(90deg, #ff0000, #ff8c00);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--primary-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, var(--text-gray));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

:root {
    --primary-color: #bf00ff;
    /* Neon Purple */
    --secondary-color: #ff0080;
    /* Hot Pink */
    --accent-color: #ff8c00;
    /* Bright Orange */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Bar */
.sticky-bar {
    background: linear-gradient(90deg, #ff0000, #ff8c00);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--primary-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, var(--text-gray));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Video Placeholder */
.video-wrapper {
    margin: 20px 0;
    /* Reduced margin */
    position: relative;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.video-wrapper:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    font-size: 4rem;
    background: rgba(255, 0, 128, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.play-overlay p {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    /* Reset margin */
}

.play-overlay.hidden {
    display: none;
}

.video-placeholder {
    background: #000;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    font-size: 4rem;
    color: white;
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #00c853, #64dd17);
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.6);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 200, 83, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.time-box small {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.separator {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-gray);
    margin-top: -20px;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    color: black;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.notification.hidden {
    transform: translateY(100px);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification .icon {
    font-size: 2rem;
}

/* Sections General */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Bonus Section */
.bonus-section {
    background: var(--secondary-color);
    padding: 40px 0;
}

.bonus-box {
    text-align: center;
    color: white;
}

.bonus-box h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.bonus-box p {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.course-item {
    background: var(--bg-card);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.course-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.small-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Trust Badges */
.trust-badges {
    background: #151515;
    padding: 40px 0;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
}

.badge-item .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Steps Timeline */
.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.step-item h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Models Gallery */
.models-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Techniques Grid */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: linear-gradient(145deg, #1a1a1a, #222);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Varieties Grid */
.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.variety-item {
    text-align: center;
}

.variety-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, var(--bg-dark), #1a001a);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    color: black;
    box-shadow: 0 0 50px rgba(191, 0, 255, 0.3);
}

.pricing-header {
    background: #000;
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.spots-left {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.spots-count {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.progress-bar {
    height: 10px;
    background: #333;
    border-radius: 5px;
    margin: 10px 0 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary-color);
}

.urgent-text {
    color: #ff4444;
    font-weight: bold;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pricing-body {
    padding: 40px;
    text-align: center;
}

.promo-end {
    font-weight: bold;
    margin-bottom: 10px;
}

.countdown-container.small .time-box {
    background: #f0f0f0;
    color: black;
    border-color: #ddd;
}

.countdown-container.small .time-box span {
    color: black;
    font-size: 1.5rem;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
}

.guarantee-box {
    margin-top: 30px;
    text-align: left;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.guarantee-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 20px;
    padding-top: 0;
    color: var(--text-gray);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-style: italic;
}

.testimonial-card strong {
    display: block;
    margin-top: 20px;
    color: var(--primary-color);
    font-style: normal;
}

/* Footer */
footer {
    background: black;
    padding: 40px 0;
    text-align: center;
    color: #666;
}

}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    color: black;
    box-shadow: 0 0 50px rgba(191, 0, 255, 0.3);
}

.pricing-header {
    background: #000;
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.spots-left {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.spots-count {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.progress-bar {
    height: 10px;
    background: #333;
    border-radius: 5px;
    margin: 10px 0 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary-color);
}

.urgent-text {
    color: #ff4444;
    font-weight: bold;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pricing-body {
    padding: 40px;
    text-align: center;
}

.promo-end {
    font-weight: bold;
    margin-bottom: 10px;
}

.countdown-container.small .time-box {
    background: #f0f0f0;
    color: black;
    border-color: #ddd;
}

.countdown-container.small .time-box span {
    color: black;
    font-size: 1.5rem;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
}

.guarantee-box {
    margin-top: 30px;
    text-align: left;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.guarantee-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 20px;
    padding-top: 0;
    color: var(--text-gray);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-style: italic;
}

.testimonial-card strong {
    display: block;
    margin-top: 20px;
    color: var(--primary-color);
    font-style: normal;
}

/* Footer */
footer {
    background: black;
    padding: 40px 0;
    text-align: center;
    color: #666;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 20px 0;
        /* Further reduced padding */
        min-height: auto;
        align-items: flex-start;
        /* Align to top */
    }

    .hero-content {
        margin-top: 10px;
    }

    .badge {
        margin-bottom: 10px;
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Smaller title */
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .video-wrapper {
        margin: 10px 0;
        /* Minimal margin */
    }

    .video-placeholder,
    .video-wrapper video {
        height: auto;
        /* Allow height to adjust based on width */
        max-height: 250px;
        /* Limit height */
    }

    .hero-cta {
        margin-top: 10px;
    }

    .btn {
        padding: 12px 30px;
        /* Slightly smaller button */
        font-size: 1rem;
    }

    .countdown-container {
        flex-wrap: wrap;
        margin-top: 15px;
        gap: 5px;
    }

    .time-box {
        min-width: 50px;
        padding: 5px;
    }

    .time-box span {
        font-size: 1.2rem;
    }

    .time-box small {
        font-size: 0.7rem;
    }

    .separator {}

    .countdown-container.small .time-box span {
        color: black;
        font-size: 1.5rem;
    }

    .price-box {
        margin: 30px 0;
    }

    .old-price {
        display: block;
        text-decoration: line-through;
        color: #888;
        font-size: 1.2rem;
    }

    .new-price {
        display: block;
        font-size: 3rem;
        font-weight: 900;
        color: var(--primary-color);
    }

    .btn-large {
        width: 100%;
        padding: 20px;
        font-size: 1.5rem;
    }

    .guarantee-box {
        margin-top: 30px;
        text-align: left;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
    }

    .guarantee-box p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* FAQ */
    .faq-grid {
        max-width: 800px;
        margin: 0 auto;
    }

    details {
        background: var(--bg-card);
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
    }

    summary {
        padding: 20px;
        cursor: pointer;
        font-weight: bold;
        list-style: none;
        position: relative;
    }

    summary::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 1.5rem;
    }

    details[open] summary::after {
        content: '-';
    }

    details p {
        padding: 20px;
        padding-top: 0;
        color: var(--text-gray);
    }

    /* Testimonials */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .testimonial-card {
        background: var(--bg-card);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        font-style: italic;
    }

    .testimonial-card strong {
        display: block;
        margin-top: 20px;
        color: var(--primary-color);
        font-style: normal;
    }

    /* Footer */
    footer {
        background: black;
        padding: 40px 0;
        text-align: center;
        color: #666;
    }

    .disclaimer {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero {
            padding: 20px 0;
            /* Further reduced padding */
            min-height: auto;
            align-items: flex-start;
            /* Align to top */
        }

        .hero-content {
            margin-top: 10px;
        }

        .badge {
            margin-bottom: 10px;
            font-size: 0.8rem;
            padding: 4px 10px;
        }

        .hero h1 {
            font-size: 1.8rem;
            /* Smaller title */
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .hero p {
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .video-wrapper {
            margin: 10px 0;
            /* Minimal margin */
        }

        .video-placeholder,
        .video-wrapper video {
            height: auto;
            /* Allow height to adjust based on width */
            max-height: 250px;
            /* Limit height */
        }

        .hero-cta {
            margin-top: 10px;
        }

        .btn {
            padding: 12px 30px;
            /* Slightly smaller button */
            font-size: 1rem;
        }

        .countdown-container {
            flex-wrap: wrap;
            margin-top: 15px;
            gap: 5px;
        }

        .time-box {
            min-width: 50px;
            padding: 5px;
        }

        .time-box span {
            font-size: 1.2rem;
        }

        .time-box small {
            font-size: 0.7rem;
        }

        .separator {
            font-size: 1.2rem;
            margin-top: -10px;
        }
    }

    /* 3D and Parallax Effects */
    .parallax-element {
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Course Grid 3D Effects */
    .course-item {
        transform-style: preserve-3d;
        perspective: 1000px;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .course-item:hover {
        transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
        box-shadow: 0 20px 40px rgba(191, 0, 255, 0.3);
    }

    .course-item img {
        transition: transform 0.6s ease;
    }

    .course-item:hover img {
        transform: scale(1.05);
    }

    /* Benefit Cards 3D */
    .benefit-card {
        transform-style: preserve-3d;
        transition: all 0.5s ease;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(191, 0, 255, 0.4);
    }

    /* Tech Cards 3D */
    .tech-card {
        transform-style: preserve-3d;
        transition: all 0.5s ease;
    }

    .tech-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(255, 0, 128, 0.3);
    }

    /* Gallery Images */
    .gallery-img {
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .gallery-img:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(191, 0, 255, 0.5);
    }

    /* Testimonial Cards 3D */
    .testimonial-card {
        transform-style: preserve-3d;
        perspective: 1000px;
        transition: all 0.5s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(191, 0, 255, 0.4);
    }

    /* Scroll Reveal Animations */
    .scroll-reveal {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .scroll-reveal-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .scroll-reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }

    .scroll-reveal-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .scroll-reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }

    /* Floating Animation */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }
    }

    .step-item:hover {
        transform: translateX(10px);
        box-shadow: -10px 10px 30px rgba(255, 140, 0, 0.3);
    }

    /* Badge Items 3D */
    .badge-item {
        transform-style: preserve-3d;
        transition: all 0.4s ease;
    }

    .badge-item:hover {
        transform: translateY(-10px) scale(1.1);
    }

    .badge-item .icon {
        transition: transform 0.4s ease;
    }

    .badge-item:hover .icon {
        transform: rotateY(360deg) scale(1.2);
    }

    /* MOBILE OPTIMIZATIONS */
    @media (max-width: 768px) {

        /* Disable 3D effects on mobile for better performance */
        .course-item,
        .benefit-card,
        .tech-card,
        .testimonial-card,
        .pricing-card,
        .step-item,
        .badge-item {
            transform: none !important;
            transform-style: flat !important;
            perspective: none !important;
        }

        .course-item:hover,
        .benefit-card:hover,
        .tech-card:hover,
        .testimonial-card:hover,
        .pricing-card:hover,
        .step-item:hover,
        .badge-item:hover {
            transform: none !important;
        }

        .gallery-img {
            transform: none !important;
        }

        .gallery-img:hover {
            transform: scale(1.02) !important;
        }

        /* Simplify scroll reveals on mobile */
        .scroll-reveal,
        .scroll-reveal-left,
        .scroll-reveal-right {
            opacity: 0;
            transform: translateY(20px);
        }

        .scroll-reveal.revealed,
        .scroll-reveal-left.revealed,
        .scroll-reveal-right.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Better spacing for mobile */
        .course-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .benefits-grid,
        .techniques-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .varieties-grid {
            grid-template-columns: 1fr;
        }

        /* Improve touch targets */
        .btn {
            min-height: 48px;
            padding: 15px 25px;
        }

        /* Better text sizing */
        h2 {
            font-size: 1.8rem;
        }

        h3 {
            font-size: 1.3rem;
        }

        p {
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Optimize images */
        .course-item img,
        .gallery-img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* Better card spacing */
        .course-item,
        .benefit-card,
        .tech-card,
        .testimonial-card {
            padding: 20px;
        }

        /* Improve notification positioning */
        .notification {
            bottom: 20px;
            left: 10px;
            right: 10px;
            max-width: calc(100% - 20px);
        }
    }