.elementor-3261 .elementor-element.elementor-element-88b6c74{--display:flex;}.elementor-3261 .elementor-element.elementor-element-88b6c74.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-3261 .elementor-element.elementor-element-c3c9a2d{width:100%;max-width:100%;}@media(max-width:1024px){.elementor-3261 .elementor-element.elementor-element-c3c9a2d{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;border-radius:0px 0px 0px 0px;}}@media(min-width:768px){.elementor-3261 .elementor-element.elementor-element-88b6c74{--width:72.363%;}}/* Start custom CSS for html, class: .elementor-element-c3c9a2d *//* ==============================================
   AI FUSION-X — Udemy-Style Design System
   ============================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --primary: #5624d0;
    --primary-light: #8b5cf6;
    --primary-dark: #401b9c;
    --dark: #1c1d1f;
    --dark-2: #2d2f31;
    --gray-900: #1c1d1f;
    --gray-700: #3e4143;
    --gray-500: #6a6f73;
    --gray-300: #d1d7dc;
    --gray-100: #f7f9fa;
    --white: #ffffff;
    --success: #1e6055;
    --warning: #f69c08;
    --accent-purple: #5624d0;
    --accent-blue: #0ea5e9;
    --accent-green: #26a69a;
    --accent-red: #ef5350;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);

    --container: 1340px;
    --navbar-height: 70px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--navbar-height) + 20px);
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.mt-4 {
    margin-top: 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-family);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-primary:hover {
    background: var(--gray-700);
    border-color: var(--gray-700);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    padding: 14px 28px;
    font-size: 16px;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    padding: 14px 28px;
    font-size: 16px;
}

.btn-hero-outline:hover {
    background: rgba(86, 36, 208, 0.08);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white);
    text-align: center;
    padding: 12px 48px 12px 24px;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: underline;
}

.announcement-bar a:hover {
    color: var(--white);
}

.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.announcement-close:hover {
    opacity: 1;
}

.announcement-bar.hidden {
    display: none;
}

/* ===== STICKY NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: var(--navbar-height);
    gap: 16px;
}

.navbar-logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-x {
    color: var(--primary);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-link-subtle {
    color: var(--gray-500);
    font-weight: 500;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    font-family: var(--font-family);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s;
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Search bar */
.navbar-search {
    flex: 1;
    max-width: 480px;
    position: relative;
    margin: 0 8px;
}

.navbar-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    pointer-events: none;
}

.navbar-search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    font-size: 14px;
    font-family: var(--font-family);
    background: var(--gray-100);
    transition: all 0.2s;
    outline: none;
}

.navbar-search input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(86, 36, 208, 0.1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO BANNER ===== */
.hero {
    background: var(--dark);
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(86, 36, 208, 0.25) 0%, rgba(30, 30, 35, 0.4) 50%, rgba(14, 165, 233, 0.2) 100%);
    z-index: 2;
}
.hero-bg {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    min-height: 520px;
    position: relative;
    z-index: 3;
}

.hero-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 520px;
    animation: slideInLeft 0.8s ease;
}

.hero-content {
    flex: 0 0 50%;
    z-index: 2;
}



.hero-card h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary);
}

.highlight-white {
    color: var(--primary-light);
}

.hero-card > p {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-badges span {
    font-size: 12px;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-visual {
    flex: 0 0 50%;
    position: relative;
    min-height: 360px;
}

.hero-floating-icons {
    position: absolute;
    inset: 0;
}

.floating-icon {
    position: absolute;
    font-size: 48px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.icon-1 { top: 10%; right: 20%; animation-delay: 0s; }
.icon-2 { top: 50%; right: 5%; animation-delay: 1.5s; }
.icon-3 { bottom: 10%; right: 30%; animation-delay: 3s; }
.icon-4 { top: 30%; right: 50%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

/* ===== CATEGORY CARDS CAROUSEL ===== */
.categories-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.categories-header {
    margin-bottom: 40px;
}

.categories-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.categories-text h2 em {
    font-style: italic;
}

.categories-text p {
    color: var(--gray-500);
    font-size: 15px;
    max-width: 500px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
    flex: 1;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-emoji {
    font-size: 64px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.card-label {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.card-label span {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.card-label svg {
    color: var(--gray-500);
    transition: transform 0.2s;
}

.category-card:hover .card-label svg {
    transform: translateX(4px);
    color: var(--primary);
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    width: 24px;
    background: var(--primary);
}

/* ===== AI ERA SECTION ===== */
.ai-era-section {
    background: var(--dark);
    padding: 80px 0;
}

.ai-era-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-era-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.ai-era-text p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.ai-era-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.era-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all 0.3s;
}

.era-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.era-card-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.era-card h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.era-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    padding: 28px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
    background: var(--white);
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.why-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.journey-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}

.journey-step {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    flex: 0 0 280px;
    transition: all 0.3s;
}

.journey-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.journey-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.journey-step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

.journey-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    flex-shrink: 0;
}

/* ===== CURRICULUM SECTION ===== */
.curriculum-section {
    padding: 80px 0;
    background: var(--white);
}

.curriculum-accordion,
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family);
    transition: background 0.2s;
}

.accordion-header:hover {
    background: var(--gray-100);
}

.module-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(86, 36, 208, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
    flex-shrink: 0;
}

.module-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    flex: 1;
}

.accordion-chevron {
    flex-shrink: 0;
    color: var(--gray-500);
    transition: transform 0.3s;
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
    max-height: 200px;
    padding: 0 20px 16px;
}

.accordion-body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    padding-left: 4px;
    border-left: 3px solid var(--primary-light);
    padding-left: 16px;
}

.curriculum-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: inline;
    letter-spacing: -1px;
}

.stat-plus {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255,255,255,0.7);
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* ===== COMPANIES SECTION ===== */
.companies-section {
    padding: 40px 0;
    background: var(--dark-2);
}

.companies-text {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 24px;
}

.companies-text strong {
    color: var(--primary-light);
}

.companies-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.company-logo {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.company-logo:hover {
    color: rgba(255,255,255,0.7);
}

/* ===== POPULAR SKILLS ===== */
.skills-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-300);
}

.skills-highlight h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.skill-link-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.skill-link-main:hover {
    color: var(--primary-dark);
}

.skill-learners {
    font-size: 13px;
    color: var(--gray-500);
}

.skills-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.skill-link {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 0;
    transition: padding-left 0.2s;
}

.skill-link:hover {
    padding-left: 8px;
    color: var(--primary-dark);
}

.skills-cta {
    text-align: center;
    margin-top: 32px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-100);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-author strong {
    font-size: 14px;
    color: var(--dark);
    display: block;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== LEARNING MODES ===== */
.modes-section {
    padding: 80px 0;
    background: var(--white);
}

.modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mode-card {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.mode-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.mode-card-featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(86,36,208,0.03) 0%, transparent 100%);
    box-shadow: var(--shadow-sm);
}

.mode-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: var(--gray-100);
    color: var(--gray-500);
}

.mode-badge-featured {
    background: var(--primary);
    color: var(--white);
}

.mode-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.mode-card > p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.5;
}

.mode-features {
    list-style: none;
    margin-bottom: 24px;
}

.mode-features li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
}

.mode-features li:last-child {
    border-bottom: none;
}

/* ===== ENROLL SECTION ===== */
.enroll-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.enroll-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enroll-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.enroll-text > p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.enroll-contact p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-bottom: 4px;
}

.enroll-contact a {
    color: var(--white);
    font-weight: 600;
}

.enroll-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.enroll-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.enroll-form-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.enroll-form-card input,
.enroll-form-card select {
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: var(--font-family);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    background: var(--white);
}

.enroll-form-card input:focus,
.enroll-form-card select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(86, 36, 208, 0.1);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--gray-100);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-socials a {
    font-size: 20px;
    transition: transform 0.2s;
}

.footer-socials a:hover {
    transform: scale(1.15);
}

.footer-col > a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col > a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-address {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
}

.footer-map-link {
    font-size: 13px;
    color: var(--primary-light);
    display: inline-block;
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.8);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== FAB (Floating Action Buttons) ===== */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.fab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.fab-whatsapp {
    background: #25d366;
    color: var(--white);
    font-size: 24px;
    padding: 16px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
}

.fab-enroll {
    background: var(--primary);
    color: var(--white);
}

.fab-enroll:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-bg {
        flex-direction: column;
        padding: 40px 24px;
        min-height: auto;
    }

    .hero-content {
        flex: none;
        width: 100%;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-visual {
        display: none;
    }

    .ai-era-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enroll-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .skills-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }

    .navbar-links,
    .navbar-search,
    .navbar-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile menu */
    .navbar-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-300);
        box-shadow: var(--shadow-md);
        padding: 16px 24px;
        gap: 4px;
        z-index: 998;
    }

    .navbar-search.mobile-open {
        display: block;
        position: absolute;
        top: calc(var(--navbar-height) + 180px);
        left: 0;
        right: 0;
        padding: 0 24px 16px;
        background: var(--white);
        max-width: 100%;
        z-index: 998;
    }

    .navbar-actions.mobile-open {
        display: flex;
        position: absolute;
        top: calc(var(--navbar-height) + 230px);
        left: 0;
        right: 0;
        padding: 16px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--gray-300);
        box-shadow: var(--shadow-md);
        z-index: 997;
    }

    .hero-card h1 {
        font-size: 26px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .categories-text h2 {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

    .ai-era-text h2 {
        font-size: 26px;
    }

    .ai-era-cards {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }

    .journey-steps {
        flex-direction: column;
        gap: 16px;
    }

    .journey-connector {
        width: 2px;
        height: 30px;
    }

    .journey-step {
        flex: none;
        width: 100%;
    }

    .enroll-text h2 {
        font-size: 26px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .category-card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .fab-enroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 28px 20px;
    }

    .hero-card h1 {
        font-size: 22px;
    }

    .hero-badges {
        flex-direction: column;
    }

    .companies-logos {
        justify-content: center;
    }
}
/* Full Width Fix — AI Fusion-X */

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Elementor container full width */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}

/* Remove default page padding */
.site-content,
.content-area,
.entry-content,
.page-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Elementor full stretch */
.elementor-section {
    width: 100% !important;
}

/* WordPress main wrapper */
.site,
#page,
#content,
.site-inner,
.container,
.wp-site-blocks {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}
/* Hello Elementor Full Width Fix */
.elementor-section.elementor-section-stretched {
    width: 100% !important;
    left: 0 !important;
}

body.elementor-page .site-content {
    padding: 0 !important;
}

.elementor-section-wrap,
.entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.page-content,
article.page {
    padding: 0 !important;
}

main#main,
.site-main {
    padding: 0 !important;
    margin: 0 !important;
}
/* ===== HELLO ELEMENTOR FULL WIDTH NUCLEAR FIX ===== */

/* Remove all wrappers width limits */
.page-template-elementor_header_footer body,
body.elementor-page,
.elementor,
.elementor-inner,
.elementor-section-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Hello Elementor specific fixes */
.entry-content,
.entry,
article.page,
.page-content,
.site-content,
.content-area,
#content,
#primary,
main#main,
.site-main,
.site,
#page {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

/* Force stretch all sections */
.elementor-section.elementor-section-stretched {
    left: 0 !important;
    width: 100% !important;
}

/* Container width */
.elementor-section > .elementor-container,
.e-container {
    max-width: 100% !important;
}
/* Hello Elementor Full Width Fix */
html, body {
    width: 100% !important;
    overflow-x: hidden !important;
}

.hello-elementor .site,
.hello-elementor #page,
.hello-elementor .site-content,
.hello-elementor #content,
.hello-elementor #primary,
.hello-elementor .site-main,
.hello-elementor #main,
.hello-elementor .entry-content,
.hello-elementor .entry {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-section.elementor-section-stretched {
    left: 0 !important;
    width: 100% !important;
}
/* Hero section column background fix */
.hero .elementor-column-wrap,
.hero .elementor-widget-wrap,
.hero .e-con-inner,
.hero .elementor-column-gap-default > .elementor-column > .elementor-column-wrap {
    background: transparent !important;
    background-color: transparent !important;
}
.afx-slider { position: relative; width: 100%; overflow: hidden; }
.afx-slides { position: relative; }
.afx-slide { display: none; min-height: 560px; position: relative; overflow: hidden; align-items: center; }
.afx-slide.active { display: flex; }
.afx-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; pointer-events: none; }
.afx-orb1 { width: 400px; height: 400px; background: rgba(139,92,246,0.5); top: -100px; left: -100px; }
.afx-orb2 { width: 300px; height: 300px; background: rgba(14,165,233,0.4); bottom: -80px; right: 200px; }
.afx-slide-inner { max-width: 1340px; margin: 0 auto; padding: 60px 80px; display: flex; align-items: center; gap: 60px; width: 100%; position: relative; z-index: 2; animation: afxIn 0.3s ease; }
@keyframes afxIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.afx-text { flex: 1; }
.afx-badge { display: inline-block; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 999px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2); }
.afx-title { font-size: 48px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 8px; letter-spacing: -1px; }
.afx-hl { color: #a78bfa; display: block; }
.afx-desc { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.6; margin-bottom: 32px; max-width: 520px; }
.afx-btns { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.afx-btn-primary { background: #fff; color: #1c1d1f; border: 2px solid #fff; padding: 14px 28px; font-size: 15px; font-weight: 700; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.afx-btn-primary:hover { background: #f7f9fa; transform: translateY(-2px); }
.afx-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 14px 28px; font-size: 15px; font-weight: 700; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.afx-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.afx-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.afx-tags span { font-size: 13px; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); }
.afx-visual { flex: 0 0 280px; height: 280px; position: relative; display: flex; align-items: center; justify-content: center; }
.afx-icon { font-size: 90px; position: relative; z-index: 2; animation: afxFloat 3s ease-in-out infinite; }
@keyframes afxFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.afx-ring { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); animation: afxRing 3s ease-in-out infinite; }
.r1 { width: 150px; height: 150px; }
.r2 { width: 210px; height: 210px; animation-delay: 0.5s; border-color: rgba(255,255,255,0.08); }
.r3 { width: 275px; height: 275px; animation-delay: 1s; border-color: rgba(255,255,255,0.04); }
@keyframes afxRing { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.afx-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; cursor: pointer; z-index: 10; transition: all 0.2s; }
.afx-arrow:hover { background: rgba(255,255,255,0.25); }
.afx-prev { left: 20px; }
.afx-next { right: 20px; }
.afx-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.afx-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.afx-dot.active { width: 28px; background: #fff; }
@media(max-width:768px){ .afx-slide-inner{flex-direction:column;padding:40px 20px 60px;text-align:center;} .afx-title{font-size:28px;} .afx-visual{flex:0 0 160px;height:160px;} .afx-icon{font-size:60px;} .afx-btns{justify-content:center;} .afx-tags{justify-content:center;} .r1{width:90px;height:90px;} .r2{width:130px;height:130px;} .r3{width:160px;height:160px;} }
/* ── Category Cards – Size Fix ── */
.category-card,
.afx-cat-card {
  min-width: 200px !important;
  max-width: 220px !important;
  flex: 0 0 220px !important;
}

.card-img {
  height: 120px !important;
}

.card-emoji,
.card-img .emoji {
  font-size: 44px !important;
}

.card-label span,
.card-label p {
  font-size: 13px !important;
}

/* ── Carousel – Fix scroll overflow ── */
.carousel-wrapper {
  overflow: visible !important;
}

.carousel-track {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.category-card {
  scroll-snap-align: start;
}

/* Fix Elementor section overflow blocking scroll */
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-section > .elementor-container {
  overflow: visible !important;
}
.afx-cats-section,
.afx-cats-section .elementor-container,
.afx-cats-section .elementor-widget-wrap {
  overflow: visible !important;
}
.afx-cats-section {
  padding: 60px 0;
  background: #fff;
  width: 100%;
}
.afx-cats-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
.afx-cats-header {
  margin-bottom: 36px;
}
.afx-cats-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 8px;
}
.afx-cats-header h2 em {
  font-style: italic;
}
.afx-cats-header p {
  color: #6a6f73;
  font-size: 15px;
  max-width: 500px;
}
.afx-cats-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.afx-cats-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  flex: 1;
}
.afx-cats-track::-webkit-scrollbar {
  display: none;
}
.afx-cat-card {
  flex: 0 0 210px;
  min-width: 210px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
  border: 1px solid #e8e8e8;
}
.afx-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.afx-cat-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}
.afx-cat-label {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
.afx-cat-label span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: #1c1d1f;
}
.afx-cat-label span:last-child {
  color: #6a6f73;
  font-size: 14px;
}
.afx-cats-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d1d7dc;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  color: #1c1d1f;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.afx-cats-btn:hover {
  background: #1c1d1f;
  color: #fff;
  border-color: #1c1d1f;
}
@media (max-width: 768px) {
  .afx-cats-container { padding: 0 16px; }
  .afx-cat-card { flex: 0 0 160px; min-width: 160px; }
  .afx-cat-img { height: 90px; font-size: 36px; }
  .afx-cats-header h2 { font-size: 22px; }
}
/* ===== CURRICULUM CARDS GRID ===== */
.curr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.curr-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-xl);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.curr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gray-300);
    transition: background 0.3s;
}

.curr-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.curr-card:hover::before {
    background: var(--primary);
}

/* Highlighted cards (ML, DL, AI) */
.curr-card-highlight {
    border-color: rgba(86, 36, 208, 0.25);
    background: linear-gradient(160deg, rgba(86,36,208,0.03) 0%, var(--white) 60%);
}

.curr-card-highlight::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

/* GenAI / Agentic cards */
.curr-card-genai {
    border-color: rgba(14, 165, 233, 0.25);
    background: linear-gradient(160deg, rgba(14,165,233,0.04) 0%, var(--white) 60%);
}

.curr-card-genai::before {
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
}

.curr-card-genai:hover {
    border-color: #0ea5e9;
}

/* Card top row */
.curr-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.curr-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-300);
    letter-spacing: -1px;
    line-height: 1;
}

.curr-card:hover .curr-num {
    color: var(--primary);
}

.curr-card-genai:hover .curr-num {
    color: #0ea5e9;
}

.curr-icon {
    font-size: 28px;
    line-height: 1;
}

/* Module tag */
.curr-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.curr-card-genai .curr-tag {
    color: #0ea5e9;
}

/* Title */
.curr-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Description */
.curr-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Footer chips */
.curr-footer {
    margin-top: auto;
}

.curr-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-500);
}

.curr-chip-pro {
    background: rgba(86, 36, 208, 0.1);
    color: var(--primary);
}

.curr-chip-genai {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
}

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

@media (max-width: 640px) {
    .curr-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
/* ===== TOP RECRUITERS — MARQUEE ===== */
.companies-section {
    padding: 44px 0;
    background: var(--dark-2);
    overflow: hidden;
}

.companies-text {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-align: center;
}

.companies-text strong {
    color: var(--primary-light);
}

/* Marquee outer wrapper — fade edges */
.companies-marquee-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.companies-marquee-wrap::before,
.companies-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.companies-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-2), transparent);
}

.companies-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-2), transparent);
}

/* Scrolling row */
.companies-marquee {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: companiesScroll 22s linear infinite;
}

.companies-marquee:hover {
    animation-play-state: paused;
}

@keyframes companiesScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Each company pill */
.cmp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.25s ease;
    cursor: default;
}

.cmp-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.cmp-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cmp-name {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.cmp-item:hover .cmp-name {
    color: rgba(255,255,255,0.95);
}

/* Mobile */
@media (max-width: 768px) {
    .companies-section {
        padding: 32px 0;
    }
    .cmp-item {
        padding: 8px 16px;
    }
    .cmp-name {
        font-size: 13px;
    }
    .companies-marquee-wrap::before,
    .companies-marquee-wrap::after {
        width: 50px;
    }
}
/* ===== CATEGORY CARDS — AUTO SCROLL MARQUEE ===== */
.afx-cats-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.afx-cats-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
}

.afx-cats-header {
    margin-bottom: 36px;
}

.afx-cats-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1c1d1f;
    margin-bottom: 8px;
}

.afx-cats-header p {
    color: #6a6f73;
    font-size: 15px;
    max-width: 520px;
}

/* Marquee outer — fade edges */
.afx-cats-marquee-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.afx-cats-marquee-wrap::before,
.afx-cats-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.afx-cats-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.afx-cats-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Scrolling row */
.afx-cats-marquee {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 8px 0 16px;
    animation: catScroll 30s linear infinite;
}

.afx-cats-marquee:hover {
    animation-play-state: paused;
}

@keyframes catScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Individual card */
.afx-cat-card {
    flex: 0 0 200px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    background: #fff;
    border: 1px solid #e8e8e8;
    user-select: none;
}

.afx-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.afx-cat-img {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
}

.afx-cat-label {
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.afx-cat-label span:first-child {
    font-size: 13px;
    font-weight: 700;
    color: #1c1d1f;
    line-height: 1.3;
}

.afx-cat-label span:last-child {
    color: #6a6f73;
    font-size: 14px;
    transition: transform 0.2s, color 0.2s;
}

.afx-cat-card:hover .afx-cat-label span:last-child {
    transform: translateX(4px);
    color: #5624d0;
}

/* Mobile */
@media (max-width: 768px) {
    .afx-cats-section { padding: 40px 0; }
    .afx-cats-container { padding: 0 16px; }
    .afx-cats-header h2 { font-size: 22px; }
    .afx-cat-card { flex: 0 0 160px; width: 160px; }
    .afx-cat-img { height: 88px; font-size: 36px; }
    .afx-cats-marquee-wrap::before,
    .afx-cats-marquee-wrap::after { width: 50px; }
}
/* ===== AI ERA SECTION — PURPLE GRADIENT ===== */
.ai-era-section {
    background: linear-gradient(135deg, #3b1fa8 0%, #5624d0 50%, #7c3aed 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ai-era-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ai-era-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

/* Badge */
.ai-era-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.95);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 20px;
}

/* Heading block */
.ai-era-head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.ai-era-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.ai-era-hl {
    color: #c4b5fd;
}

.ai-era-head p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 28px;
}

.ai-era-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ai-era-btn:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* 4 Cards Row */
.ai-era-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.ai-era-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
}

.ai-era-card:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-4px);
}

.ai-era-card-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}

.ai-era-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.ai-era-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* SEO Trust bar */
.ai-era-seo {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
    position: relative;
    z-index: 1;
}

.ai-era-seo p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}

.ai-era-seo strong {
    color: rgba(255,255,255,0.9);
}

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

@media (max-width: 768px) {
    .ai-era-head h2 {
        font-size: 28px;
    }

    .ai-era-head p {
        font-size: 14px;
    }

    .ai-era-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ai-era-card {
        padding: 18px 14px;
    }

    .ai-era-card-icon {
        font-size: 28px;
    }

    .ai-era-seo p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ai-era-cards {
        grid-template-columns: 1fr 1fr;
    }

    .ai-era-head h2 {
        font-size: 24px;
    }
}
/* Curriculum CTA buttons */
.curriculum-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-curr-batch {
    background: linear-gradient(135deg, #5624d0, #7c3aed);
    color: #fff !important;
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(86,36,208,0.4);
}
.btn-curr-batch:hover {
    background: linear-gradient(135deg, #401b9c, #5624d0);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86,36,208,0.45);
}

.btn-curr-demo {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    padding: 15px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(16,185,129,0.4);
}
.btn-curr-demo:hover {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.45);
}

@media (max-width: 768px) {
    .btn-curr-batch, .btn-curr-demo {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS */.elementor-section {
    width: 100% !important;
}
.elementor-container {
    max-width: 100% !important;
}
/* Force ALL Elementor elements full width */
.elementor-section,
.e-container,
.e-con,
.elementor-container,
.elementor-row {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}

/* Elementor new containers (flex) */
.e-con-inner {
    max-width: 100% !important;
    width: 100% !important;
}
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}/* End custom CSS */