/* /Components/Shared/UI/LogoShowcase.razor.rz.scp.css */
.logo-showcase[b-rjm85xhrjd] {
    background: white;
    padding: var(--lms-space-10) 0;
    border-radius: var(--lms-radius-2xl);
    box-shadow: var(--lms-shadow-md);
    margin: var(--lms-space-10) 0;
    position: relative;
}

.logo-showcase[b-rjm85xhrjd]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(110, 83, 145, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    border-radius: var(--lms-radius-2xl);
    pointer-events: none;
}

.logo-grid[b-rjm85xhrjd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--lms-space-4);
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.logo-item[b-rjm85xhrjd] {
    padding: var(--lms-space-4);
    border-radius: var(--lms-radius-lg);
    transition: all var(--lms-transition-base);
    max-width: 300px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item:hover[b-rjm85xhrjd] {
    background: var(--neutral-whisper);
    transform: scale(1.05);
    box-shadow: var(--lms-shadow-md);
}

.logo-item img[b-rjm85xhrjd] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: all var(--lms-transition-base);
}

.logo-item:hover img[b-rjm85xhrjd] {
    filter: drop-shadow(0 8px 16px rgba(110, 83, 145, 0.2));
}

.logo-labels .logo-item[b-rjm85xhrjd] {
    height: auto;
    min-height: 60px;
}

.logo-labels .logo-item h6[b-rjm85xhrjd] {
    margin: 0;
    color: var(--neutral-charcoal);
    font-size: var(--lms-font-size-sm);
    text-align: center;
}

@media (max-width: 768px) {
    .logo-grid[b-rjm85xhrjd] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--lms-space-6);
    }
    
    .logo-item[b-rjm85xhrjd] {
        max-width: 150px;
        height: 100px;
    }
}

/* /Components/Shared/UI/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-3a0hnllmzh] {
    position: relative;
    width: 28px;
    height: 56px;
    border: 2px solid var(--neutral-charcoal);
    border-radius: 14px;
    background: linear-gradient(180deg, var(--neutral-whisper) 0%, var(--neutral-pearl) 100%);
    cursor: pointer;
    transition: all var(--lms-transition-base);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.theme-toggle:hover[b-3a0hnllmzh] {
    border-color: var(--primary-royal);
    box-shadow: 0 0 0 2px rgba(110, 83, 145, 0.1);
}

html[data-theme="dark"] .theme-toggle:hover[b-3a0hnllmzh] {
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.theme-toggle-icon[b-3a0hnllmzh] {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neutral-charcoal), var(--neutral-midnight));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-slate);
    font-size: 13px;
    transition: all var(--lms-transition-base);
    top: 3px;
    box-shadow: var(--lms-shadow-sm);
    z-index: 1;
}

.theme-toggle-icon i[b-3a0hnllmzh] {
    transition: all var(--lms-transition-base);
}

/* Light mode - dark colors, moon icon at top */
.theme-toggle-icon i.fa-moon[b-3a0hnllmzh] {
    color: var(--neutral-slate);
}

.theme-toggle-icon i.fa-sun[b-3a0hnllmzh] {
    color: var(--secondary-gold);
}

/* Dark mode styles - dark background with gold/yellow indicator at bottom */
html[data-theme="dark"] .theme-toggle[b-3a0hnllmzh] {
    background: linear-gradient(180deg, var(--neutral-charcoal) 0%, var(--neutral-midnight) 100%);
    border-color: var(--neutral-charcoal);
}

html[data-theme="dark"] .theme-toggle .theme-toggle-icon[b-3a0hnllmzh] {
    top: calc(100% - 25px);
    background: linear-gradient(135deg, var(--secondary-gold), var(--secondary-gold-light));
    transform: rotate(360deg);
}

html[data-theme="dark"] .theme-toggle-icon i.fa-sun[b-3a0hnllmzh] {
    color: var(--neutral-charcoal);
}

html[data-theme="dark"] .theme-toggle-icon i.fa-moon[b-3a0hnllmzh] {
    color: var(--neutral-charcoal);
}

/* Focus state for accessibility */
.theme-toggle:focus[b-3a0hnllmzh] {
    outline: 2px solid var(--primary-royal);
    outline-offset: 2px;
}

.theme-toggle:focus:not(:focus-visible)[b-3a0hnllmzh] {
    outline: none;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */

.main-content[b-9xogb5gjns] {
    min-height: calc(100vh - 4rem);
    background-color: var(--lms-bg-primary);
    padding-top: var(--lms-space-4);
    padding-bottom: var(--lms-space-8);
}

.content[b-9xogb5gjns] {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: var(--lms-space-4);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .content[b-9xogb5gjns] {
        padding: var(--lms-space-6);
    }
}

@media (min-width: 992px) {
    .content[b-9xogb5gjns] {
        padding: var(--lms-space-8);
    }
}

/* Ensure proper spacing for nested components */
.content[b-9xogb5gjns]  > * {
    margin-bottom: var(--lms-space-4);
}

.content[b-9xogb5gjns]  > *:last-child {
    margin-bottom: 0;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ar0htrvbwh] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-ar0htrvbwh] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ar0htrvbwh] {
    font-size: 1.1rem;
}

.bi[b-ar0htrvbwh] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ar0htrvbwh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ar0htrvbwh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ar0htrvbwh] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ar0htrvbwh] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ar0htrvbwh] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ar0htrvbwh] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ar0htrvbwh]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-ar0htrvbwh]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ar0htrvbwh]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ar0htrvbwh] {
        display: none;
    }

    .collapse[b-ar0htrvbwh] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-ar0htrvbwh] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/About.razor.rz.scp.css */
.about-page[b-f0tj8fug8n] {
    width: 100%;
}

/* Hero Section */
.about-hero[b-f0tj8fug8n] {
    background: linear-gradient(135deg, var(--primary-royal) 0%, var(--primary-royal-dark) 100%);
    color: white;
    padding: var(--lms-space-8) 0;
    position: relative;
    overflow: hidden;
}

.about-hero[b-f0tj8fug8n]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero .container[b-f0tj8fug8n] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero h1[b-f0tj8fug8n] {
    color: white;
    font-size: var(--lms-font-size-5xl);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: var(--lms-space-4);
}

/* Partnership Overview */
.partnership-overview[b-f0tj8fug8n] {
    padding: var(--lms-space-12) 0;
    background: var(--neutral-whisper);
}

html[data-theme="dark"] .partnership-overview[b-f0tj8fug8n] {
    background: var(--lms-bg-secondary);
}

.overview-content[b-f0tj8fug8n] {
    text-align: center;
    margin-bottom: var(--lms-space-12);
}

.overview-content h2[b-f0tj8fug8n] {
    color: var(--primary-royal);
    font-family: var(--font-serif);
    margin-bottom: var(--lms-space-4);
}

html[data-theme="dark"] .overview-content h2[b-f0tj8fug8n] {
    color: var(--lms-primary);
}

.overview-content .lead[b-f0tj8fug8n] {
    margin: 0 auto;
    max-width: 800px;
    color: var(--neutral-slate);
    font-size: var(--lms-font-size-lg);
    line-height: 1.6;
}

html[data-theme="dark"] .overview-content .lead[b-f0tj8fug8n] {
    color: var(--lms-text-secondary);
}

/* Partner Profiles */
.partner-profiles[b-f0tj8fug8n] {
    padding: var(--lms-space-8) 0;
}

.partner-profile[b-f0tj8fug8n] {
    margin-bottom: var(--lms-space-20);
}

.partner-profile-alt[b-f0tj8fug8n] {
    background: var(--neutral-whisper);
    padding: var(--lms-space-12);
    border-radius: var(--lms-radius-2xl);
}

html[data-theme="dark"] .partner-profile-alt[b-f0tj8fug8n] {
    background: var(--lms-bg-secondary);
}

.partner-profile-grid[b-f0tj8fug8n] {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--lms-space-12);
    align-items: center;
}

.partner-profile-grid-reverse[b-f0tj8fug8n] {
    grid-template-columns: 1fr 200px;
}

.partner-logo-container[b-f0tj8fug8n] {
    display: flex;
    justify-content: center;
}

.partner-logo-card[b-f0tj8fug8n] {
    padding: var(--lms-space-6);
    background: white;
    border-radius: var(--lms-radius-xl);
    box-shadow: var(--lms-shadow-base);
    border: 1px solid var(--neutral-soft);
    transition: all var(--lms-transition-base);
}

html[data-theme="dark"] .partner-logo-card[b-f0tj8fug8n] {
    background: var(--lms-bg-secondary);
    border-color: var(--lms-border-color);
}

.partner-logo-card:hover[b-f0tj8fug8n] {
    transform: scale(1.05);
    box-shadow: var(--lms-shadow-md);
}

.partner-logo-card img[b-f0tj8fug8n] {
    max-width: 150px;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: all var(--lms-transition-base);
}

.partner-logo-card:hover img[b-f0tj8fug8n] {
    filter: drop-shadow(0 8px 16px rgba(110, 83, 145, 0.2));
}

.partner-content h2[b-f0tj8fug8n] {
    color: var(--primary-royal);
    font-family: var(--font-serif);
    margin-bottom: var(--lms-space-6);
}

html[data-theme="dark"] .partner-content h2[b-f0tj8fug8n] {
    color: var(--lms-primary);
}

.partner-section[b-f0tj8fug8n] {
    margin-bottom: var(--lms-space-6);
}

.partner-section h3[b-f0tj8fug8n] {
    color: var(--secondary-gold);
    font-size: var(--lms-font-size-xl);
    font-family: var(--font-serif);
    margin-bottom: var(--lms-space-3);
}

.partner-leadership[b-f0tj8fug8n] {
    font-weight: 600;
    color: var(--primary-royal);
    margin-bottom: var(--lms-space-3);
}

html[data-theme="dark"] .partner-leadership[b-f0tj8fug8n] {
    color: var(--lms-primary);
}

.partner-section p[b-f0tj8fug8n] {
    margin-bottom: var(--lms-space-4);
    color: var(--neutral-charcoal);
    line-height: 1.7;
}

html[data-theme="dark"] .partner-section p[b-f0tj8fug8n] {
    color: var(--lms-text-secondary);
}

.expertise-list[b-f0tj8fug8n] {
    margin: 0;
    padding-left: var(--lms-space-6);
    color: var(--neutral-charcoal);
    list-style: none;
}

html[data-theme="dark"] .expertise-list[b-f0tj8fug8n] {
    color: var(--lms-text-secondary);
}

.expertise-list li[b-f0tj8fug8n] {
    padding: var(--lms-space-2) 0;
    padding-left: var(--lms-space-6);
    position: relative;
}

.expertise-list li[b-f0tj8fug8n]::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: bold;
    font-size: var(--lms-font-size-lg);
}

/* Partnership Vision */
.partnership-vision[b-f0tj8fug8n] {
    padding: var(--lms-space-20) 0;
    background: var(--primary-royal);
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-vision[b-f0tj8fug8n]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.partnership-vision .container[b-f0tj8fug8n] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.partnership-vision h2[b-f0tj8fug8n] {
    color: white;
    font-family: var(--font-serif);
    margin-bottom: var(--lms-space-8);
}

.vision-grid[b-f0tj8fug8n] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lms-space-12);
    margin-bottom: var(--lms-space-12);
}

.vision-item h3[b-f0tj8fug8n] {
    color: var(--secondary-gold);
    font-family: var(--font-serif);
    margin-bottom: var(--lms-space-4);
}

.vision-item p[b-f0tj8fug8n] {
    opacity: 0.95;
    margin-bottom: 0;
    color: white;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partner-profile-grid[b-f0tj8fug8n],
    .partner-profile-grid-reverse[b-f0tj8fug8n] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--lms-space-8);
    }
    
    .partner-logo-container[b-f0tj8fug8n] {
        order: -1;
    }
    
    .partner-profile-grid-reverse .partner-logo-container[b-f0tj8fug8n] {
        order: 0;
    }
}

@media (max-width: 768px) {
    .about-page[b-f0tj8fug8n] {
        overflow-x: hidden;
    }
    
    .about-hero[b-f0tj8fug8n] {
        padding: var(--lms-space-6) 0;
    }
    
    .about-hero h1[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-3xl);
        padding: 0 var(--lms-space-4);
    }
    
    .partnership-overview[b-f0tj8fug8n] {
        padding: var(--lms-space-8) 0;
    }
    
    .overview-content[b-f0tj8fug8n] {
        padding: 0 var(--lms-space-4);
    }
    
    .overview-content .lead[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-base);
        padding: 0 var(--lms-space-4);
    }
    
    .partner-profiles[b-f0tj8fug8n] {
        padding: var(--lms-space-6) 0;
    }
    
    .partner-profile[b-f0tj8fug8n] {
        margin-bottom: var(--lms-space-12);
        padding: 0 var(--lms-space-4);
    }
    
    .partner-profile-alt[b-f0tj8fug8n] {
        padding: var(--lms-space-6);
        margin: 0 var(--lms-space-4);
        border-radius: var(--lms-radius-lg);
    }
    
    .partner-profile-grid[b-f0tj8fug8n],
    .partner-profile-grid-reverse[b-f0tj8fug8n] {
        gap: var(--lms-space-6);
    }
    
    .partner-logo-card[b-f0tj8fug8n] {
        padding: var(--lms-space-4);
        max-width: 100%;
    }
    
    .partner-logo-card img[b-f0tj8fug8n] {
        max-width: 120px;
        max-height: 100px;
    }
    
    .partner-content[b-f0tj8fug8n] {
        padding: 0;
    }
    
    .partner-content h2[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-2xl);
        margin-bottom: var(--lms-space-4);
    }
    
    .partner-section[b-f0tj8fug8n] {
        margin-bottom: var(--lms-space-4);
        text-align: left;
    }
    
    .partner-section h3[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-lg);
    }
    
    .vision-grid[b-f0tj8fug8n] {
        grid-template-columns: 1fr;
        gap: var(--lms-space-8);
        padding: 0 var(--lms-space-4);
    }
    
    .partnership-vision[b-f0tj8fug8n] {
        padding: var(--lms-space-12) 0;
    }
    
    .partnership-vision h2[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-3xl);
        padding: 0 var(--lms-space-4);
    }
    
    .vision-item[b-f0tj8fug8n] {
        padding: 0 var(--lms-space-4);
    }
}

@media (max-width: 480px) {
    .about-hero h1[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-2xl);
    }
    
    .partner-content h2[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-xl);
    }
    
    .partnership-vision h2[b-f0tj8fug8n] {
        font-size: var(--lms-font-size-2xl);
    }
    
    .partner-logo-card img[b-f0tj8fug8n] {
        max-width: 100px;
        max-height: 80px;
    }
}

/* /Pages/Home.razor.rz.scp.css */
.home-page[b-ihi8xudv0a] {
    width: 100%;
}

/* Hero Section with Modern Depth */
.hero-section[b-ihi8xudv0a] {
    background: linear-gradient(
        135deg,
        var(--primary-royal) 0%,
        var(--primary-royal-dark) 35%,
        var(--primary-royal) 100%
    );
    color: white;
    padding: var(--lms-space-12) 0 var(--lms-space-12);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-bottom: var(--lms-space-8);
}

.hero-section[b-ihi8xudv0a]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content[b-ihi8xudv0a] {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-section h1[b-ihi8xudv0a] {
    color: white;
    font-size: var(--lms-font-size-6xl);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: var(--lms-space-6);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle[b-ihi8xudv0a] {
    color: white;
    font-size: var(--lms-font-size-4xl);
    font-family: var(--font-serif);
    margin-bottom: var(--lms-space-6);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-showcase-wrapper[b-ihi8xudv0a] {
    margin-top: var(--lms-space-8);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(110, 83, 145, 0.1);
    box-shadow: 0 8px 32px rgba(110, 83, 145, 0.1);
    border-radius: var(--lms-radius-2xl);
}

.hero-description[b-ihi8xudv0a] {
    margin-top: var(--lms-space-8);
    position: relative;
    z-index: 1;
}

.hero-description-title[b-ihi8xudv0a] {
    color: white;
    font-size: var(--lms-font-size-2xl);
    font-family: var(--font-serif);
    margin-bottom: var(--lms-space-4);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-description-text[b-ihi8xudv0a] {
    color: white;
    font-size: var(--lms-font-size-2xl);
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Decorative elements */
.hero-decoration[b-ihi8xudv0a] {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float-b-ihi8xudv0a 6s ease-in-out infinite;
}

.hero-decoration-1[b-ihi8xudv0a] {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}

.hero-decoration-2[b-ihi8xudv0a] {
    bottom: 30%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: float-b-ihi8xudv0a 4s ease-in-out infinite reverse;
}

@keyframes float-b-ihi8xudv0a {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

.featured-courses[b-ihi8xudv0a] {
    margin-top: var(--lms-space-8);
}

.featured-courses h2[b-ihi8xudv0a] {
    text-align: center;
    margin-bottom: var(--lms-space-6);
    color: var(--neutral-charcoal);
    font-family: var(--font-serif);
}

.course-grid-home[b-ihi8xudv0a] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--lms-space-4);
}

.course-card[b-ihi8xudv0a] {
    height: 100%;
    transition: transform var(--lms-transition-fast), box-shadow var(--lms-transition-fast);
}

.course-card:hover[b-ihi8xudv0a] {
    transform: translateY(-4px);
    box-shadow: var(--lms-shadow-lg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-section h1[b-ihi8xudv0a] {
        font-size: var(--lms-font-size-5xl);
    }
    
    .hero-subtitle[b-ihi8xudv0a] {
        font-size: var(--lms-font-size-3xl);
    }
}

@media (max-width: 768px) {
    .hero-section[b-ihi8xudv0a] {
        padding: var(--lms-space-12) 0 var(--lms-space-12);
        min-height: 50vh;
    }
    
    .hero-section h1[b-ihi8xudv0a] {
        font-size: var(--lms-font-size-4xl);
    }
    
    .hero-subtitle[b-ihi8xudv0a] {
        font-size: var(--lms-font-size-2xl);
    }
    
    .hero-description-title[b-ihi8xudv0a] {
        font-size: var(--lms-font-size-xl);
    }
    
    .hero-description-text[b-ihi8xudv0a] {
        font-size: var(--lms-font-size-lg);
    }
    
    .course-grid-home[b-ihi8xudv0a] {
        grid-template-columns: 1fr;
    }
}











