:root {
    /* Base Colors - Deep & Premium */
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Brand Colors - Vibrant & Energetic */
    --primary: #F97316;
    --primary-glow: rgba(249, 115, 22, 0.5);

    /* Accents */
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-teal: #14B8A6;
    --accent-cyan: #06B6D4;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
    --grad-glow: linear-gradient(135deg, rgba(249, 115, 22, 0.6) 0%, rgba(236, 72, 153, 0.3) 100%);
    --grad-dark: linear-gradient(to bottom, #0F172A, #020617);
    --grad-card-hover: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --backdrop-blur: blur(12px);

    --container-width: 1280px;

    /* Legacy Compatibility */
    --white: #FFFFFF;
    --text-dark: #1E293B;
    --text-light: #94A3B8;
    --primary-dark: #EA580C;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 25%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: var(--font-body);
}

/* --- Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.text-gradient {
    background: linear-gradient(to right, #F97316, #EC4899, #8B5CF6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 10px 20px -10px rgba(249, 115, 22, 0.6);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(249, 115, 22, 0.7);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    /* Offset for fixed header */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 1) 100%);
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15), rgba(139, 92, 246, 0.1), transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    /* Orange tint */
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-num {
    display: table;
    /* Fallback */
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Features Section --- */
.features-section {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: var(--glass-border);
    transition: 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: 0.3s;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- About Section --- */
.about-section {
    background: linear-gradient(to bottom, var(--bg-dark), rgba(15, 23, 42, 0.8));
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    padding: 1rem;
    border: var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-sm);
    display: block;
}

.about-experience {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--primary);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    min-width: 180px;
}

.exp-years {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

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

.a-feature {
    display: flex;
    gap: 1.5rem;
}

.a-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.a-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.a-feature p {
    color: var(--text-secondary);
}

/* --- Courses Section --- */
.courses-section {
    position: relative;
    background: linear-gradient(to top, var(--bg-dark), rgba(15, 23, 42, 0.5));
}

.course-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.course-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(249, 115, 22, 0.3);
}

.course-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 4rem;
    color: white;
    overflow: hidden;
}

.course-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-card-bg, #1E293B);
    z-index: 1;
}

.course-header i {
    z-index: 2;
    transition: 0.5s;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.course-card:hover .course-header i {
    transform: scale(1.2) rotate(-10deg);
}

.course-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.course-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.course-meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.course-meta i {
    color: var(--primary);
}

.course-footer {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    transition: 0.3s;
}

.btn-link:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

/* Specific Colors for Cards */
.category-short-term .course-header::before {
    background: linear-gradient(135deg, #F97316, #9A3412);
}

.category-basic .course-header::before {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.category-accounting .course-header::before {
    background: linear-gradient(135deg, #06B6D4, #0E7490);
}

.category-data .course-header::before {
    background: linear-gradient(135deg, #10B981, #059669);
}

.category-marketing .course-header::before {
    background: linear-gradient(135deg, #EC4899, #BE185D);
}

.category-programming .course-header::before {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.category-database .course-header::before {
    background: linear-gradient(135deg, #EF4444, #991B1B);
}

.category-networking .course-header::before {
    background: linear-gradient(135deg, #F43F5E, #9F1239);
}

.category-ai .course-header::before {
    background: linear-gradient(135deg, #6366F1, #4338CA);
}

.category-academic .course-header::before {
    background: linear-gradient(135deg, #64748B, #334155);
}

.category-os .course-header::before {
    background: linear-gradient(135deg, #0EA5E9, #0369A1);
}

/* --- Testimonials --- */
.testimonials-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius);
    position: relative;
    backdrop-filter: blur(5px);
}

.quote {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    z-index: -1;
}

.stars {
    color: #FBBF24;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #EA580C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

/* --- Footer --- */
.footer {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
    color: var(--text-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 350px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.5);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Animations Triggered by JS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */

/* Large Screens (Desktops) */
@media (min-width: 1440px) {
    :root {
        --container-width: 1400px;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* Laptops */
@media (max-width: 1280px) {
    .container {
        padding: 0 2rem;
    }

    .course-grid {
        gap: 1.5rem;
    }
}

/* --- RESPONSIVE & MOBILE OPTIMIZATION (Unified & Robust) --- */

/* Tablet & Mobile (Max Width 1024px) - Covers iPad, Tablets, Large Phones */
@media screen and (max-width: 1024px) {

    /* Global Container Fix */
    .container {
        padding: 0 2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100vw !important;
    }

    /* FORCE GRID TO STACK (About, Courses, Features, Stats) */
    .about-grid,
    .features-grid,
    .course-grid,
    .testimonials-grid,
    .footer-content,
    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    /* Hero Stats Specific Styling for Tablet/Mobile */
    .hero-stats {
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 2rem !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .features-grid,
    .course-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* FORCE VISIBILITY ON MOBILE - Fixes "Not Showing" Issue */
    .fade-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* ABOUT SECTION - THE VISUAL FIX */
    .about-image {
        width: 100% !important;
        order: -1 !important;
        /* Image First */
        margin-bottom: 2rem !important;
        position: relative !important;
        display: block !important;
    }

    .about-image img {
        width: 100% !important;
        height: 400px !important;
        /* Explicit height for visual impact */
        object-fit: cover !important;
        border-radius: 20px !important;
        box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.4) !important;
        /* Premium Glow */
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .about-experience {
        right: 2rem !important;
        /* Adjust position */
        bottom: -2rem !important;
        z-index: 5 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    }

    /* Typography Scaling */
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.2 !important;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Mobile Specific (Max Width 768px) */
@media screen and (max-width: 768px) {

    .nav {
        display: none !important;
    }

    .hero-content {
        padding-top: 6rem !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    /* Stack Stats Vertically */
    .hero-stats {
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.03) !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    /* Make buttons full width */
    .hero-buttons,
    .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Pulse Animation for buttons */
    .btn-primary {
        animation: mobilePulse 3s infinite !important;
    }

    .about-image img {
        height: 300px !important;
        /* Smaller height for phones */
    }
}

/* Small Mobile (Max Width 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 1.25rem !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .about-image img {
        height: 250px !important;
    }

    .about-experience {
        right: 50% !important;
        transform: translateX(50%) !important;
        bottom: -1.5rem !important;
        width: max-content !important;
    }
}

@keyframes mobilePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}