/* Landing Page & Components Global Styles - LIGHT THEME */

/* =========================================
   1. LANDING PAGE CORE
   ========================================= */
#scroll-video {
    /* Keep video standard or adjust check if needed */
    filter: none;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: #f4f7f6;
    /* Light Background */
    color: #1a1a1a;
    /* Dark Text */
}

/* Override Main Dark Theme Vars locally */
:root {
    --gt-bg: #f4f7f6;
    --gt-text: #1a1a1a;
    --gt-card-bg: #ffffff;
    --gt-border: rgba(0, 0, 0, 0.1);
}

.text-dark {
    color: #1a1a1a !important;
}

.landing-hero {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: var(--gt-bg);
}

/* Hero Animation Init State */
.landing-hero h1,
.landing-hero h3,
.landing-hero .gt-theme-btn {
    opacity: 0;
    visibility: hidden;
}

/* Flip Card Styles */
.flip-card {
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
}

.flip-card-front {
    background-color: #ffffff;
    /* White Card */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Light Border */
    transition: all 0.3s ease;
}

.flip-card:hover .flip-card-front {
    border-color: var(--gt-theme);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.15);
}

.flip-card-back {
    background-color: var(--gt-theme);
    color: #fff;
    transform: rotateY(180deg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.flip-card-front .icon i {
    font-size: 50px;
    color: var(--gt-theme);
    margin-bottom: 20px;
    display: inline-block;
}

.flip-card-front h3 {
    font-size: 24px;
    margin-top: 15px;
    color: #1a1a1a;
    /* Dark Text */
}

.flip-card-back h3 {
    color: #fff;
    margin-bottom: 15px;
}

.flip-card-back p {
    font-size: 16px;
    line-height: 1.6;
    color: #f0f0f0;
}

/* Ascend Feature Cards */
.ascend-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.ascend-card:hover {
    transform: translateY(-8px);
    border-color: var(--gt-theme);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.ascend-card .icon-box {
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 69, 0, 0.1);
    /* Subtle theme bg */
}

.ascend-card .icon-box i {
    font-size: 36px;
    color: var(--gt-theme);
    transition: transform 0.3s ease;
}

.ascend-card:hover .icon-box i {
    transform: scale(1.1);
}

.ascend-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.ascend-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    /* Medium Grey */
    margin: 0;
    transition: color 0.3s;
}

/* Career Pathway Cards */
.pathway-card {
    background: #ffffff;
    border: 1px solid rgba(255, 69, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.pathway-card:hover {
    transform: translateY(-8px);
    border-color: var(--gt-theme);
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.1);
}

.pathway-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pathway-card .icon-box i {
    font-size: 28px;
    color: var(--gt-theme);
}

.pathway-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pathway-card .age-badge {
    display: inline-block;
    color: var(--gt-theme);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pathway-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gt-theme);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Exclusive Bonus Cards */
.bonus-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.bonus-card:hover {
    border-color: var(--gt-theme);
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.bonus-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bonus-card .icon-box i {
    font-size: 24px;
    color: var(--gt-theme);
}

.bonus-card h5 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.bonus-card .included-free {
    color: var(--gt-theme);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Learning Tracks Styles */
.track-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    background: #ffffff;
}

.track-card:hover {
    transform: translateY(-10px);
}

.track-header {
    background: linear-gradient(135deg, #FF4500 0%, #ff1a1a 100%);
    padding: 40px 30px;
    color: #fff;
    position: relative;
}

.track-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.track-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.track-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

.track-body {
    background: #ffffff;
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.track-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.track-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.track-list li {
    color: #444;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.track-list li::before {
    content: "•";
    color: var(--gt-theme);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
    line-height: 1;
}

/* Individual Pathways */
.pathway-item-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.pathway-item-card:hover {
    border-color: var(--gt-theme);
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pathway-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gt-theme);
    font-size: 20px;
}

.pathway-text {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

/* =========================================
   2. COURSE EXPLORER COMPONENT
   ========================================= */
/* Filter Sidebar */
.filter-sidebar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 25px;
    height: fit-content;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.filter-toggle-btn {
    display: none;
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-toggle-btn i {
    color: var(--gt-theme);
}

@media (max-width: 991px) {
    .filter-toggle-btn {
        display: flex;
    }

    .filter-sidebar {
        display: none;
    }

    .filter-sidebar.active {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-header h5 {
    color: #1a1a1a !important;
    /* Force override utility class */
}

.clear-filters {
    font-size: 13px;
    color: var(--gt-theme);
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.clear-filters:hover {
    opacity: 0.8;
}

.filter-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--gt-theme);
    padding-left: 12px;
    display: flex;
    align-items: center;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
    color: #555;
    font-size: 15px;
    transition: all 0.3s;
    padding: 5px 0;
    width: 100%;
}

.custom-checkbox:hover {
    color: #1a1a1a;
    transform: translateX(5px);
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.custom-checkbox input:checked+.checkmark {
    background-color: var(--gt-theme);
    border-color: var(--gt-theme);
}

.checkmark:after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 10px;
    display: none;
}

.custom-checkbox input:checked+.checkmark:after {
    display: block;
}

/* Course Card */
.course-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--gt-theme);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.course-bg {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #ffffff 0%, transparent 100%);
    opacity: 0.1;
    /* Subtler in light mode */
}

.age-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--gt-theme), #ff8c00);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.course-icon-float {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.course-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.course-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-btns {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.course-btn-small {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   3. CURRICULUM COMPONENT
   ========================================= */
.curriculum-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.curriculum-card:hover {
    border-color: var(--gt-theme);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.curr-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.curr-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gt-theme);
    flex-shrink: 0;
}

.curr-title h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.curr-title p {
    color: var(--gt-theme);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

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

.curr-item {
    background: #f8f9fa;
    /* Very Light Grey */
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.curr-item i {
    color: var(--gt-theme);
    font-size: 16px;
}

.curr-item span {
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .curriculum-card {
        padding: 25px;
    }

    .curr-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* =========================================
   4. DUBAI GAMING PROGRAM COMPONENT
   ========================================= */
.dubai-program-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.dubai-program-card:hover {
    border-color: var(--gt-theme);
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.dubai-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gt-theme);
    font-size: 20px;
}

.dubai-text {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
}

.market-banner {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.market-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../assets/img/bgs/pattern.png');
    /* Ensure pattern exists or is relevant */
    opacity: 0.1;
}

.stats-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    height: 80px;
    margin: 0 40px;
}

@media (max-width: 768px) {
    .stats-divider {
        width: 100%;
        height: 1px;
        margin: 30px 0;
    }

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

    .stats-flex {
        flex-direction: column;
    }
}

/* =========================================
   5. SUCCESS STORIES COMPONENT
   ========================================= */
.story-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--gt-theme);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.story-thumb {
    position: relative;
    height: 220px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.story-card:hover .story-thumb::after {
    background: rgba(0, 0, 0, 0.1);
}

.story-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gt-theme);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.play-btn-pulse {
    width: 60px;
    height: 60px;
    background: var(--gt-theme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    z-index: 2;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    animation: pulse-red 2s infinite;
}

.play-btn-pulse:hover {
    transform: scale(1.1);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 69, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
    }
}

.story-content {
    padding: 25px;
    background: #ffffff;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 69, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #555;
}

.profile-info h5 {
    color: #1a1a1a;
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.profile-info span {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.story-text {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   6. FACILITY FEATURES COMPONENT
   ========================================= */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    height: 100%;
    min-height: 140px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    border-color: var(--gt-theme);
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-icon-check {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gt-theme);
}

.feature-title {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

/* Gallery Placeholders */
.gallery-card {
    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    border-color: var(--gt-theme);
}

.gallery-icon-placeholder {
    font-size: 40px;
    color: rgba(255, 69, 0, 0.2);
    border: 2px solid rgba(255, 69, 0, 0.2);
    border-radius: 12px;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-card:hover .gallery-icon-placeholder {

    /* 
   General Rule: In Light Theme, "text-white" usually needs to be dark 
   BECAUSE the background became white.
*/
    body,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .tx-title,
    .sec_title {
        color: #1a1a1a;
    }

    .text-white {
        color: #1a1a1a !important;
    }

    /* EXCEPTIONS: Elements that REMAIN dark in Light Theme */
    .gt-theme-btn,
    .gt-theme-btn-2,
    .btn-primary,
    .badge,
    .track-header,
    .market-banner,
    .story-badge,
    .age-tag,
    .popular-badge,
    .flip-card-back,
    footer,
    .footer-area {
        color: #ffffff !important;
    }

    /* Ensure text inside these specific dark containers stays white */
    .track-header h3,
    .track-header p,
    .market-banner h2,
    .market-banner p,
    .flip-card-back h3,
    .flip-card-back p,
    footer h3,
    footer h4,
    footer p,
    footer li,
    footer a {
        color: #ffffff !important;
    }

    /* Specific text utilities that need inversion */
    .text-muted {
        color: #666 !important;
    }

    /* Fix for specific sections if they have hardcoded classes */
    .sec_title.text-white {
        color: #1a1a1a !important;
    }

    /* Input Fields in Light Mode */
    input,
    textarea,
    select {
        background-color: #ffffff !important;
        color: #1a1a1a !important;
        border: 1px solid #ddd !important;
    }

    input::placeholder,
    textarea::placeholder {
        color: #999 !important;
    }

    /* Header/Navbar fixes if sticky remains dark */
    .header-area.sticky {
        background-color: #ffffff !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .header-area.sticky .menu-item a {
        color: #1a1a1a !important;
    }

    /* Sidebar in Course Explorer */
    .filter-title {
        color: #1a1a1a !important;
    }

    .filter-sidebar {
        color: #1a1a1a;
        /* Sticky Sidebar Logic - Light Theme */
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        /* Offset for header */
    }