/* 
   Theme: Dark Cinematic with Neon Accents
   Fonts: 'Outfit', sans-serif
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #14141f;
    --bg-alt: #0f0f18;
    --primary: #00f2ea;
    /* Neon Cyan */
    --secondary: #ff0055;
    /* Neon Pink */
    --accent: #7000ff;
    /* Neon Purple */
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --gradient-main: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-text: linear-gradient(to right, var(--primary), var(--accent));
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--primary);
    }

    50% {
        box-shadow: 0 0 20px var(--primary), 0 0 10px var(--accent);
    }

    100% {
        box-shadow: 0 0 5px var(--primary);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 242, 234, 0.5));
    transition: filter 0.3s;
}

.logo-img:hover {
    filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.8));
}

.cta-btn-small {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn-small:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.1) 0%, rgba(10, 10, 15, 1) 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: 20%;
    right: 15%;
    opacity: 0.2;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: 10%;
    left: 10%;
    opacity: 0.15;
    animation-delay: 1s;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-meta {
    display: inline-flex;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-large {
    padding: 15px 40px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
}

/* Concept Section */
.section {
    padding: 100px 0;
}

.alt-bg {
    background-color: var(--bg-alt);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.section-title span {
    border-bottom: 3px solid var(--secondary);
}

.concept-grid,
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.concept-card,
.outcome-item {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.concept-card:hover,
.outcome-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card-icon,
.outcome-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.concept-card h3,
.outcome-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.concept-card p,
.outcome-item p {
    color: var(--text-gray);
}

/* Outcomes Specific */
/* Outcomes Specific */
.outcomes-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.outcome-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0;
    overflow: hidden;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.outcome-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 242, 234, 0.2);
}

.outcome-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.outcome-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.outcome-item:hover .outcome-img {
    transform: scale(1.05);
}

.outcome-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.outcome-content h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.outcome-item:hover .outcome-content h3 {
    color: var(--primary);
}

.outcome-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Details Section */
.details-section {
    background: #0f0f15;
}

.details-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.details-image {
    flex: 1;
    min-width: 300px;
}

.placeholder-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.frame-decoration {
    position: absolute;
    border: 2px solid var(--primary);
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    opacity: 0.3;
    pointer-events: none;
}

.details-content {
    flex: 1;
    min-width: 300px;
}

.details-list {
    list-style: none;
    margin-top: 30px;
}

.details-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Timeline/Curriculum */
.curriculum-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--gradient-main);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.time-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Instructor Section */
.instructor-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.instructor-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    position: relative;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.instructor-info {
    max-width: 500px;
}

.instructor-bio {
    margin: 20px 0;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.instructor-achievements span {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9rem;
    color: var(--text-white);
    background: var(--bg-card);
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: 10px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
}

.faq-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Enrollment Section */
.enrollment {
    position: relative;
    text-align: center;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Pricing */
.price-display {
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price-display-large {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.discounted-price {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.4);
}

.discount-badge {
    font-size: 0.8rem;
    background: var(--secondary);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 1px;
    vertical-align: middle;
}

.form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .details-wrapper,
    .instructor-wrapper {
        flex-direction: column;
    }

    .curriculum-timeline::before {
        left: 0;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
    background-color: #20bd5a;
    color: #fff;
}

/* Video Library Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.video-item {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 220px;
    width: 100%;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 234, 0.2);
    border-color: var(--primary);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}