/* ========================================
   PURE SKILL ACADEMY - MAIN STYLES
   ======================================== */

/* ========================================
   GLOBAL STYLES & THEME
   ======================================== */
:root {
    --ps-primary: #165ca0;
    --ps-secondary: #023e8a;
    --ps-accent: #4f46e5;
    --ps-light: #e3f2fd;
    --ps-dark: #1a1a2e;
    --ps-gray: #4a5568;
    --ps-light-gray: #f8f9fa;
    --ps-border: #e9ecef;
    --ps-shadow: rgba(0, 0, 0, 0.1);
    --ps-shadow-hover: rgba(0, 0, 0, 0.2);
    --ps-gradient-primary: linear-gradient(135deg, #1976d2, #2196f3);
    --ps-gradient-hero: linear-gradient(rgba(2, 62, 138, 0.9), rgba(0, 119, 182, 0.9));
    --ps-border-radius: 20px;
    --ps-border-radius-sm: 15px;
    --ps-border-radius-lg: 25px;
    --ps-transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
}

body { 
    background: #f4f9fd; 
    padding-top: 80px;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* Disable all animations/transitions for a simple, static UI */
html *, html *::before, html *::after {
    transition: none !important;
    animation: none !important;
}

@font-face {
    font-family: 'MyFont';
    src: url('myfont.woff2') format('woff2');
    font-display: swap;
}

/* Ensure AOS elements are visible without animations */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

a {
    text-decoration: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.theme-bg { background: var(--ps-primary) !important; }
.theme-bg-light { background: var(--ps-light) !important; }
.theme-text { color: var(--ps-primary) !important; }
.theme-btn { 
    background: var(--ps-primary); 
    color: #fff; 
    border: none; 
}
.theme-btn:hover { 
    background: var(--ps-primary); 
    color: #fff; 
}
.theme-card { 
    background: var(--ps-light); 
    border-radius: var(--ps-border-radius); 
}
.theme-icon { color: var(--ps-primary); }
.theme-footer { 
    background: var(--ps-primary); 
    color: #fff; 
}
.theme-footer a { color: #bbdefb; }
.theme-footer a:hover { color: #fff; }

/* Common card styles */
.base-card {
    background: white;
    border-radius: var(--ps-border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--ps-shadow);
    transition: var(--ps-transition);
    height: 100%;
}

.base-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--ps-shadow-hover);
}

/* Common icon styles */
.base-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ps-border-radius-sm);
    transition: var(--ps-transition);
}

.icon-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.icon-medium {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.icon-small {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Common button styles */
.base-button {
    border: none;
    border-radius: var(--ps-border-radius-lg);
    font-weight: 600;
    transition: var(--ps-transition);
    text-decoration: none;
    display: inline-block;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
.creative-navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--ps-transition);
}

.creative-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.creative-navbar .nav-link,
.creative-navbar.scrolled .nav-link {
    color: var(--ps-primary) !important;
}

.creative-navbar .navbar-brand,
.creative-navbar .navbar-brand i,
.creative-navbar.scrolled .navbar-brand,
.creative-navbar.scrolled .navbar-brand i {
    color: var(--ps-primary) !important;
}

.navbar-brand {
    color: var(--ps-primary);
    font-weight: 800;
    font-size: 1.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    color: var(--ps-primary) !important;
    font-weight: 600;
    padding: 12px 20px !important;
    margin: 0 5px;
    border-radius: var(--ps-border-radius-lg);
    position: relative;
    overflow: hidden;
}

.nav-link i { color: var(--ps-primary) !important; }

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(22, 92, 160, 0.08);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(22, 92, 160, 0.08);
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--ps-border-radius);
    box-shadow: 0 20px 40px var(--ps-shadow);
    padding: 20px 0;
    margin-top: 15px;
    min-width: 250px;
}

.dropdown-item {
    color: var(--ps-primary);
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 10px;
    margin: 5px 15px;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(22, 92, 160, 0.12);
    z-index: -1;
}

.dropdown-item:hover::before {
    width: 100%;
}

.dropdown-item:hover {
    color: #ffffff;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Mega Dropdown */
.mega-dropdown {
    width: 800px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    border-radius: var(--ps-border-radius-lg);
    overflow: hidden;
}

.mega-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.mega-header h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.mega-header p {
    opacity: 0.9;
    margin: 0;
}

.mega-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.mega-section {
    padding: 5px 5px;
    border-right: 1px solid #eee;
}

.mega-section:last-child {
    border-right: none;
}

.mega-section-title {
    color: #667eea;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: flex;
    align-items: center;
}

.mega-section-title i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 12px;
}

.mega-list a {
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: var(--ps-transition);
    border-radius: 8px;
    padding-left: 10px;
}

.mega-list a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.mega-list a i {
    margin-right: 12px;
    width: 10px;
    text-align: center;
    color: #667eea;
}

.mega-footer {
    background: var(--ps-light-gray);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.mega-footer .btn {
    margin: 0 8px;
    padding: 8px 20px;
    border-radius: var(--ps-border-radius);
    font-weight: 600;
    transition: var(--ps-transition);
}

/* Responsive */
@media (max-width: 991.98px) {
    .mega-dropdown {
        width: 100%;
        left: 0;
        transform: none;
    }
    
    .mega-content {
        grid-template-columns: 1fr;
    }
    
    .mega-section {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .mega-section:last-child {
        border-bottom: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    margin-top: -80px;
    padding-top: 80px;
    background: var(--ps-gradient-hero), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-badge,
.course-badge {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: var(--ps-border-radius);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    color: var(--ps-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--ps-secondary);
}

.section-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 50px;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CARD STYLES
   ======================================== */
/* Career Cards */
.career-card {
    background: white;
    border-radius: var(--ps-border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--ps-shadow);
    transition: var(--ps-transition);
    height: 100%;
    margin-bottom: 30px;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--ps-shadow-hover);
}

.career-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ps-border-radius-sm);
    transition: var(--ps-transition);
    width: 80px;
    height: 80px;
    background: var(--ps-light-gray);
    color: var(--ps-secondary);
    margin: 30px auto 20px;
    font-size: 2rem;
}

.career-card:hover .career-icon {
    background: var(--ps-secondary);
    color: white;
    transform: rotateY(180deg);
}

.career-content {
    padding: 0 30px 30px;
    text-align: center;
}

.career-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ps-dark);
    margin-bottom: 15px;
}

.career-text {
    color: var(--ps-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.career-salary {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ps-secondary);
    margin-bottom: 15px;
}

.skill-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--ps-light-gray);
    border-radius: var(--ps-border-radius-sm);
    margin: 5px;
    font-size: 0.9rem;
    color: var(--ps-gray);
}

/* ========================================
   FACILITY CARDS
   ======================================== */
.facility-card {
    background: white;
    border-radius: var(--ps-border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--ps-shadow);
    transition: var(--ps-transition);
    height: 100%;
    border: none;
    position: relative;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--ps-shadow-hover);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ps-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ps-border-radius-sm);
    transition: var(--ps-transition);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #1976d2;
    position: relative;
    overflow: hidden;
    font-size: 2rem;
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.facility-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.facility-card:hover .facility-icon::before {
    left: 100%;
}

.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: var(--ps-border-radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.infrastructure { 
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); 
    color: #1565c0; 
}

.learning { 
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9); 
    color: #2e7d32; 
}

.career { 
    background: linear-gradient(135deg, #fff3e0, #ffcc02); 
    color: #ef6c00; 
}

.technology { 
    background: linear-gradient(135deg, #f3e5f5, #ce93d8); 
    color: #7b1fa2; 
}

.support { 
    background: linear-gradient(135deg, #ffebee, #ffcdd2); 
    color: #c62828; 
}

.card-body {
    padding: 30px 25px;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ps-dark);
    line-height: 1.3;
}

.card-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   FACILITIES INTRO
   ======================================== */
.facilities-intro {
    background: linear-gradient(135deg, var(--ps-light-gray), var(--ps-border));
    padding: 60px 0;
    margin-bottom: 60px;
}

.intro-card {
    background: white;
    border-radius: var(--ps-border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px var(--ps-shadow);
    height: 100%;
}

.intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ps-border-radius-sm);
    transition: var(--ps-transition);
    width: 80px;
    height: 80px;
    background: var(--ps-gradient-primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--ps-gradient-primary);
    color: white;
    padding: 80px 0;
    margin: 80px 0;
}

.stat-card,
.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
}

.course-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

/* ========================================
   COURSE STYLES
   ======================================== */
.course-content-section {
    padding: 10px 0;
}

.course-overview {
    background: var(--ps-light-gray);
    border-radius: var(--ps-border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ps-border-radius-sm);
    transition: var(--ps-transition);
    width: 50px;
    height: 50px;
    background: var(--ps-gradient-hero);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
}

.overview-text h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.overview-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   CURRICULUM SECTION
   ======================================== */
.curriculum-section {
    background: white;
    border-radius: var(--ps-border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--ps-shadow);
    margin-bottom: 50px;
}

.module-card {
    background: var(--ps-light-gray);
    border-radius: var(--ps-border-radius-sm);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--ps-accent);
    transition: var(--ps-transition);
}

.module-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.2);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.module-title {
    font-weight: 600;
    color: #333;
    margin: 0;
}

.module-duration {
    background: var(--ps-accent);
    color: white;
    padding: 5px 12px;
    border-radius: var(--ps-border-radius);
    font-size: 0.8rem;
    font-weight: 500;
}

.module-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-topics li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-topics li i {
    color: var(--ps-accent);
    font-size: 0.8rem;
}

/* ========================================
   INSTRUCTOR SECTION
   ======================================== */
.instructor-section {
    background: linear-gradient(135deg, var(--ps-light-gray) 0%, var(--ps-border) 100%);
    border-radius: var(--ps-border-radius);
    padding: 40px;
    margin-bottom: 50px;
}

.instructor-card {
    background: white;
    border-radius: var(--ps-border-radius-sm);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--ps-shadow);
}

.instructor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--ps-accent);
}

.instructor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.instructor-title {
    color: var(--ps-accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructor-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.instructor-stat {
    text-align: center;
}

.instructor-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ps-accent);
}

.instructor-stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* ========================================
   ENROLLMENT SECTION
   ======================================== */
.enrollment-section {
    background: white;
    border-radius: var(--ps-border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--ps-shadow);
    text-align: center;
}

.price-card {
    background: var(--ps-gradient-hero);
    color: white;
    border-radius: var(--ps-border-radius);
    padding: 40px;
    margin: 30px 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-original {
    font-size: 1.2rem;
    opacity: 0.8;
    text-decoration: line-through;
    margin-bottom: 20px;
}

.price-discount {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--ps-border-radius);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.enroll-button {
    border: none;
    border-radius: var(--ps-border-radius-lg);
    font-weight: 600;
    transition: var(--ps-transition);
    text-decoration: none;
    display: inline-block;
    background: white;
    color: var(--ps-accent);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.enroll-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--ps-shadow-hover);
    color: var(--ps-accent);
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ps-border-radius-sm);
    transition: var(--ps-transition);
    width: 60px;
    height: 60px;
    background: var(--ps-gradient-hero);
    border-radius: var(--ps-border-radius-sm);
    color: white;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.feature-text {
    color: #333;
    font-weight: 500;
}

/* ========================================
   BACK BUTTON
   ======================================== */
.back-button {
    position: fixed;
    top: 100px;
    left: 20px;
    border: none;
    border-radius: var(--ps-border-radius-lg);
    font-weight: 600;
    transition: var(--ps-transition);
    text-decoration: none;
    display: inline-block;
    background: var(--ps-accent);
    color: white;
    padding: 12px 20px;
    z-index: 1000;
}

.back-button:hover {
    background: #7c3aed;
    color: white;
    transform: translateX(-5px);
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
    background: var(--ps-dark);
    color: #fff;
    padding: 80px 0 0;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--ps-transition);
}

.footer-social a:hover {
    background: var(--ps-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   WHO CAN LEARN SECTION
   ======================================== */
.who-can-learn {
    background: white;
    border-radius: var(--ps-border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px var(--ps-shadow);
    margin-bottom: 50px;
}

.learner-card {
    background: var(--ps-light-gray);
    border-radius: var(--ps-border-radius-sm);
    padding: 25px;
    height: 100%;
    border-left: 4px solid var(--ps-secondary);
    transition: var(--ps-transition);
}

.learner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.learner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ps-border-radius-sm);
    transition: var(--ps-transition);
    width: 60px;
    height: 60px;
    background: var(--ps-gradient-hero);
    border-radius: var(--ps-border-radius-sm);
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.learner-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.learner-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learner-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learner-features li {
    padding: 5px 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.learner-features li i {
    color: var(--ps-secondary);
    font-size: 0.8rem;
}

.prerequisites-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--ps-border);
}

.prerequisites-card {
    background: linear-gradient(135deg, var(--ps-light-gray) 0%, var(--ps-border) 100%);
    border-radius: var(--ps-border-radius-sm);
    padding: 30px;
    border: 2px solid var(--ps-secondary);
}

.prerequisites-content h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.prerequisites-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.prerequisites-list li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #dee2e6;
}

.prerequisites-list li:last-child {
    border-bottom: none;
}

.motivation-note {
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--ps-secondary);
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

.motivation-note p {
    color: var(--ps-secondary);
    font-weight: 500;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        margin-top: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .facility-card {
        margin-bottom: 20px;
    }
    
    .back-button {
        position: static;
        margin: 20px;
        display: inline-block;
    }
    
    .course-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
}