.elementor-3796 .elementor-element.elementor-element-eaaa2b3{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-3796 .elementor-element.elementor-element-eaaa2b3{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}@media(max-width:767px){.elementor-3796 .elementor-element.elementor-element-eaaa2b3{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-508888e */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --brand: #ff3030;
            --brand-light: #ff5050;
            --brand-dark: #e62929;
            --bg: #000000;
            --bg-secondary: #0a0a0a;
            --bg-card: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.1);
            --text: #ffffff;
            --text-secondary: #a1a1a1;
            --radius: 12px;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: var(--bg);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 48, 48, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 48, 48, 0.05) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

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

        .badge {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: rgba(255, 48, 48, 0.1);
            border: 1px solid var(--brand);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.1s backwards;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text);
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        /* Decorative elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 {
            width: 300px;
            height: 300px;
            background: rgba(255, 48, 48, 0.2);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape2 {
            width: 250px;
            height: 250px;
            background: rgba(255, 48, 48, 0.15);
            bottom: 15%;
            right: 8%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: 70vh;
                padding: 3rem 1.5rem;
            }

            .badge {
                font-size: 0.65rem;
                padding: 0.4rem 1rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .floating-shape {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 1rem;
            }

            .badge {
                margin-bottom: 1.5rem;
            }
        }

        /* Section 2 - Instructors */
        .instructors-section {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
            position: relative;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.1s backwards;
        }

        .section-description {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .section-description strong {
            color: var(--text);
            display: block;
            margin-bottom: 0.5rem;
        }

        /* Instructor Cards Grid */
        .instructors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .instructor-card {
            position: relative;
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            animation: fadeInUp 1s ease-out backwards;
            border: 1px solid var(--border);
        }

        .instructor-card:nth-child(1) { animation-delay: 0.3s; }
        .instructor-card:nth-child(2) { animation-delay: 0.4s; }
        .instructor-card:nth-child(3) { animation-delay: 0.5s; }
        .instructor-card:nth-child(4) { animation-delay: 0.6s; }

        .instructor-card:hover {
            transform: translateY(-8px);
        }

        .instructor-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                rgba(0, 0, 0, 0.3) 40%,
                rgba(0, 0, 0, 0.8) 70%,
                rgba(0, 0, 0, 0.95) 100%
            );
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .instructor-card:hover::before {
            opacity: 0.9;
        }

        .instructor-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .instructor-card:hover .instructor-image {
            transform: scale(1.05);
        }

        .instructor-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.5rem;
            z-index: 2;
        }

        .instructor-role {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 0.5rem;
        }

        .instructor-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
        }

        .instructor-bio {
            display: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .instructors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .instructors-section {
                padding: 4rem 1.5rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .instructors-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .instructor-card {
                height: 450px;
            }

            .instructor-content {
                padding: 1.5rem 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .instructors-section {
                padding: 3rem 1rem;
            }

            .instructor-card {
                height: 400px;
            }

            .instructor-name {
                font-size: 1.25rem;
            }

            .instructor-bio {
                font-size: 0.85rem;
            }
        }

        /* Section 3 - Why Learn */
        .why-section {
            padding: 6rem 2rem;
            background: var(--bg);
            position: relative;
        }

        .why-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .why-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out;
        }

        .why-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.1s backwards;
        }

        .why-subtitle {
            font-size: clamp(1.125rem, 2vw, 1.375rem);
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .why-intro {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        .features-label {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--text);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out backwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.5s; }
        .feature-item:nth-child(2) { animation-delay: 0.6s; }
        .feature-item:nth-child(3) { animation-delay: 0.7s; }
        .feature-item:nth-child(4) { animation-delay: 0.8s; }
        .feature-item:nth-child(5) { animation-delay: 0.9s; }

        .feature-item:hover {
            background: var(--bg-secondary);
            border-color: rgba(255, 48, 48, 0.3);
            transform: translateX(8px);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            background: var(--brand);
            border-radius: 50%;
            margin-top: 0.5rem;
        }

        .feature-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        .why-closing {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.125rem);
            font-weight: 500;
            color: var(--text);
            padding: 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            animation: fadeInUp 1s ease-out 1s backwards;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .why-section {
                padding: 4rem 1.5rem;
            }

            .feature-item {
                padding: 1.25rem;
            }

            .feature-item:hover {
                transform: translateX(4px);
            }
        }

        @media (max-width: 480px) {
            .why-section {
                padding: 3rem 1rem;
            }

            .why-header {
                margin-bottom: 2rem;
            }

            .why-intro {
                margin-bottom: 2rem;
            }

            .features-list {
                gap: 1rem;
            }

            .feature-item {
                padding: 1rem;
                gap: 0.75rem;
            }

            .feature-text {
                font-size: 0.9rem;
            }

            .why-closing {
                padding: 1.5rem;
            }
        }

        /* Section 4 - Join Us */
        .join-section {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .join-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 48, 48, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .join-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .join-badge {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: rgba(255, 48, 48, 0.1);
            border: 1px solid var(--brand);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.1s backwards;
        }

        .join-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .join-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        .join-description strong {
            color: var(--text);
        }

        .join-closing {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .join-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: var(--brand);
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            animation: fadeInUp 1s ease-out 0.5s backwards;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .join-cta:hover {
            background: var(--brand-dark);
            box-shadow: 0 4px 12px rgba(255, 48, 48, 0.2);
        }

        .join-cta:active {
            transform: scale(0.98);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .join-section {
                padding: 4rem 1.5rem;
            }

            .join-section::before {
                width: 400px;
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .join-section {
                padding: 3rem 1rem;
            }

            .join-section::before {
                width: 300px;
                height: 300px;
            }

            .join-badge {
                font-size: 0.65rem;
                padding: 0.4rem 1rem;
            }

            .join-cta {
                padding: 0.875rem 2rem;
                font-size: 0.9rem;
            }
        }

        /* Section 5 - Closing Statement */
        .closing-section {
            padding: 8rem 2rem;
            background: var(--bg);
            position: relative;
        }

        .closing-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .closing-text {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            line-height: 1.6;
            color: var(--text);
            font-weight: 400;
            animation: fadeInUp 1s ease-out 0.1s backwards;
        }

        .closing-text p {
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out backwards;
        }

        .closing-text p:nth-child(1) { animation-delay: 0.2s; }
        .closing-text p:nth-child(2) { animation-delay: 0.3s; }
        .closing-text p:nth-child(3) { animation-delay: 0.4s; }

        .closing-highlight {
            font-weight: 600;
            color: var(--text);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .closing-section {
                padding: 5rem 1.5rem;
            }

            .closing-text {
                font-size: 1.25rem;
                line-height: 1.7;
            }

            .closing-text p {
                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .closing-section {
                padding: 4rem 1rem;
            }

            .closing-text {
                font-size: 1.125rem;
            }

            .closing-text p {
                margin-bottom: 1.25rem;
            }
        }
 /* ================= CLICKABLE CARD FIX ================= */

/* Make anchor behave like a grid item */
.instructor-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Ensure card fills anchor completely */
.instructor-link .instructor-card {
    height: 100%;
}

/* Prevent anchor default focus styles from breaking design */
.instructor-link:focus,
.instructor-link:active {
    outline: none;
}

/* ================= GRID & RESPONSIVENESS FIX ================= */

/* Ensure grid items stretch uniformly */
.instructors-grid {
    align-items: stretch;
}

/* Tablet fix – avoid forced 2-column break */
@media (max-width: 1024px) {
    .instructors-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* Mobile fix */
@media (max-width: 768px) {
    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instructor-card {
        height: 420px;
    }
}

/* Small mobile refinement */
@media (max-width: 480px) {
    .instructor-card {
        height: 380px;
    }
}

/* ================= OPTIONAL ACCESSIBILITY (SAFE) ================= */

.instructor-link:focus-visible .instructor-card {
    outline: 2px solid rgba(255, 48, 48, 0.4);
    outline-offset: 4px;
}/* End custom CSS */