/* Training Page Specific Styles - Complete File */

/* ===================================
   CORE VARIABLES - SEQURSIGN DESIGN SYSTEM
   =================================== */
:root {
    /* Primary Gradient: #667eea to #764ba2 */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #fce38a 0%, #f38181 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    
    /* Brand Colors: #2c5aa0 primary, #1e3d6f secondary, #28a745 accent */
    --brand-primary: #2c5aa0;
    --brand-secondary: #1e3d6f;
    --brand-accent: #28a745;
    --brand-warning: #ff6b35;
    
    /* Typography */
    --primary-font: 'Nunito', sans-serif;
    --secondary-font: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.2);
    
    /* Spacing */
    --section-padding: 120px;
    --card-padding: 50px;
    --border-radius: 25px;
}

/* ===================================
   BODY AND BASIC OVERRIDES - SAME AS WORKING RESOURCES PAGE
   =================================== */

/* Remove any top padding that causes clipping */
body.page-content {
    padding-top: 0 !important;
}

/* ===================================
   SCROLL INDICATOR
   =================================== */

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* ===================================
   PAGE HEADER - EXACT SAME AS WORKING RESOURCES.CSS
   =================================== */

.page-header {
    background: var(--primary-gradient) !important;
    padding: 250px 0 80px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 0 !important;
    color: white !important;
}

.page-header::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 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="100" cy="150" r="120" fill="url(%23grad1)" /><circle cx="850" cy="300" r="150" fill="url(%23grad1)" /><circle cx="300" cy="750" r="180" fill="url(%23grad1)" /><circle cx="750" cy="850" r="130" fill="url(%23grad1)" /></svg>');
    opacity: 0.8;
    animation: float 25s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    animation: shimmer 8s ease-in-out infinite;
}

.page-header h1 {
    font-size: 4.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 35px !important;
    animation: fadeInUp 1.2s ease-out !important;
    line-height: 1.1 !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    position: relative !important;
    z-index: 3 !important;
}

.page-header p {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    opacity: 0.95 !important;
    margin-bottom: 50px !important;
    animation: fadeInUp 1.2s ease-out 0.3s both !important;
    line-height: 1.6 !important;
    max-width: 90% !important;
    color: rgba(255,255,255,0.95) !important;
    position: relative !important;
    z-index: 3 !important;
}

.header-stats {
    animation: fadeInUp 1.2s ease-out 0.6s both !important;
    display: flex !important;
    gap: 60px !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 3 !important;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===================================
   SECTION TITLES
   =================================== */

.section-title {
    text-align: center;
    margin-bottom: 100px;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #2c3e50 !important;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===================================
   TRAINING PROGRAMS SECTION
   =================================== */

.features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -80px;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.features-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 1000 1000"><circle cx="900" cy="100" r="100" fill="rgba(102, 126, 234, 0.03)" /><circle cx="100" cy="500" r="150" fill="rgba(118, 75, 162, 0.02)" /></svg>');
    animation: float 30s ease-in-out infinite reverse;
}

.feature-card {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.04) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: var(--shadow-xl);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
}

.feature-list .fas {
    color: var(--brand-accent);
    font-size: 16px;
    font-weight: 600;
}

/* Course Meta Information */
.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(0,0,0,0.03);
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.duration {
    color: var(--brand-primary);
}

.level {
    color: var(--brand-accent);
}

/* ===================================
   WEBINARS SECTION
   =================================== */

.webinars-section {
    padding: var(--section-padding) 0;
    background: white;
    position: relative;
}

.webinar-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.webinar-card.featured {
    border: 3px solid var(--brand-primary);
    transform: scale(1.02);
}

.webinar-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-warning);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.webinar-content {
    position: relative;
    z-index: 2;
}

.webinar-date {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.date-block {
    text-align: center;
    background: var(--primary-gradient);
    color: white;
    padding: 15px;
    border-radius: 15px;
    min-width: 80px;
}

.date-block .day {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.date-block .month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.webinar-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.webinar-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.webinar-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0,0,0,0.02);
    border-radius: 15px;
}

.webinar-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6c757d;
}

.webinar-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Webinar List */
.webinar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upcoming-webinar {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upcoming-webinar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.webinar-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.webinar-date-small {
    text-align: center;
    background: rgba(102, 126, 234, 0.1);
    color: var(--brand-primary);
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
}

.webinar-date-small .date {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.webinar-date-small .time {
    font-size: 11px;
    font-weight: 500;
}

.webinar-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.webinar-details p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.webinar-details .presenter {
    font-size: 12px;
    color: var(--brand-primary);
    font-weight: 600;
}

.webinar-register {
    background: var(--brand-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.webinar-register:hover {
    background: var(--brand-secondary);
    color: white;
    text-decoration: none;
}

.view-all-webinars {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.view-all-webinars:hover {
    color: var(--brand-primary);
    text-decoration: none;
    transform: translateX(5px);
}

/* ===================================
   CERTIFICATION SECTION
   =================================== */

.certification-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.certification-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

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

.cert-badge {
    width: 100px;
    height: 100px;
    background: var(--success-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.cert-badge.advanced {
    background: var(--warning-gradient);
}

.cert-badge.expert {
    background: var(--primary-gradient);
}

.certification-card:hover .cert-badge {
    transform: scale(1.1);
}

.certification-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.certification-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cert-details {
    text-align: left;
    margin-bottom: 30px;
}

.cert-requirement {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cert-requirement:last-child {
    border-bottom: none;
}

.cert-requirement .label {
    font-weight: 600;
    color: #2c3e50;
}

.cert-requirement .value {
    color: #6c757d;
    font-weight: 500;
}

/* ===================================
   LEARNING RESOURCES SECTION
   =================================== */

.learning-resources-section {
    padding: var(--section-padding) 0;
    background: white;
}

.resource-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.resource-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
}

.resource-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.resource-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-stats {
    background: rgba(40, 167, 69, 0.1);
    color: var(--brand-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.resource-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-link:hover {
    color: var(--brand-primary);
    text-decoration: none;
    transform: translateX(5px);
}

/* ===================================
   SUPPORT SECTION
   =================================== */

.support-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.support-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
}

.support-content p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 40px;
}

.support-options {
    margin-bottom: 40px;
}

.support-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.support-details p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem;
}

.support-price {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 14px;
}

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

.training-placeholder {
    background: var(--primary-gradient);
    color: white;
    padding: 80px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.training-placeholder i {
    font-size: 5rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.training-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.training-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: var(--primary-gradient);
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-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 1000 1000"><circle cx="200" cy="200" r="200" fill="rgba(255,255,255,0.08)" /><circle cx="800" cy="500" r="150" fill="rgba(255,255,255,0.05)" /></svg>');
    animation: float 20s ease-in-out infinite reverse;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    animation: shimmer 10s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--brand-primary);
    border: 3px solid var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 3px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

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

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes float {
    0%, 100% { 
        transform: translateY(-20px) rotate(1deg); 
    }
    50% { 
        transform: translateY(0px) rotate(0deg); 
    }
    75% { 
        transform: translateY(15px) rotate(-1deg); 
    }
}

@keyframes shimmer {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .page-header h1 {
        font-size: 4rem !important;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 150px 0 60px !important;
    }
    
    .page-header h1 {
        font-size: 3.5rem !important;
    }

    .header-stats {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }

    .webinar-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .upcoming-webinar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .support-option {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 50px !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
    }

    .page-header p {
        font-size: 1.2rem !important;
        max-width: 100% !important;
    }

    .feature-card,
    .certification-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .feature-icon,
    .cert-badge {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .webinar-card {
        padding: 30px;
    }

    .webinar-date {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .webinar-actions {
        flex-direction: column;
        gap: 10px;
    }

    .resource-card {
        padding: 30px 25px;
    }

    .support-content h2 {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .course-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 40px !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }

    .header-stats {
        gap: 20px !important;
    }

    .feature-card,
    .certification-card {
        padding: 30px 20px;
    }

    .feature-icon,
    .cert-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .webinar-card {
        padding: 25px;
    }

    .webinar-card h3 {
        font-size: 1.5rem;
    }

    .resource-card {
        padding: 25px 20px;
    }

    .resource-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    .btn-lg {
        padding: 18px 35px;
        font-size: 14px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .upcoming-webinar {
        padding: 20px;
    }

    .support-option {
        padding: 20px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Focus Styles for Accessibility */
.btn:focus {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

.feature-card:focus-within,
.webinar-card:focus-within,
.certification-card:focus-within,
.resource-card:focus-within {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

.webinar-register:focus,
.resource-link:focus,
.view-all-webinars:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .webinar-card,
    .certification-card,
    .resource-card {
        border: 2px solid #000;
    }
    
    .feature-icon,
    .cert-badge,
    .resource-icon {
        border: 2px solid #000;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .page-header,
    .cta-section {
        background: none !important;
        color: #333 !important;
    }
    
    .feature-icon,
    .cert-badge,
    .resource-icon,
    .support-icon {
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    .btn,
    .webinar-register,
    .resource-link {
        display: none;
    }
    
    .page-loader,
    .scroll-indicator {
        display: none !important;
    }

    .webinar-badge {
        display: none;
    }
}

/* ===================================
   DARK MODE SUPPORT (Optional)
   =================================== */

@media (prefers-color-scheme: dark) {
    .feature-card,
    .webinar-card,
    .certification-card,
    .resource-card,
    .upcoming-webinar,
    .support-option {
        background: #1a1a1a;
        color: #e0e0e0;
        border-color: #333;
    }
    
    .feature-card h3,
    .webinar-card h3,
    .certification-card h3,
    .resource-card h4,
    .support-details h4 {
        color: #fff;
    }
    
    .feature-card p,
    .webinar-card p,
    .certification-card p,
    .resource-card p,
    .support-details p {
        color: #ccc;
    }
}

/* ===================================
   PAGE LOADER STYLES
   =================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   ADDITIONAL UTILITY CLASSES
   =================================== */

.text-shadow {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Container and Grid System Support */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-4,
.col-lg-3,
.col-lg-6,
.col-lg-8,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

/* Spacing utilities */
.g-4 > * {
    padding: 1.5rem;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

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

/* Alignment utilities */
.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
} translateY(0px) rotate(0deg); 
    }
    25% { 
        transform:
