/* Modern Heading Styles */
.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #243782, #1E252D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #43A7FD, #0076CD);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}



.card-body {
    padding: 40px !important;
    justify-content: flex-start !important;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);

}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    /* color: #4a5568; */
    margin-bottom: 1rem;
    /* border-left: 4px solid #43A7FD; */
    padding-left: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
}

/* Animation for headings */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Hover effects */
.page-title:hover,
.section-title:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
} 


.content-section {
    padding: 3rem;
}

.course-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 15px;
    padding: 2rem;
    /* border-left: 4px solid #43A7FD; */
    transition: transform 0.3s ease;
}


/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #E0F0FF, #f7f8fa);
    color: #1E252D;
    padding: 3rem;
    text-align: center;
    border-radius: 15px;
}

.card-header {
    background: linear-gradient(135deg, #E0F0FF, #f7f8fa);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #233c58;
    font-size: 1.1rem;
    opacity: 0.9;
}


/* Program Section */
.program-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-table th {
    background: linear-gradient(0deg, #a8d6ff, #a7d6ff);
    color: #1E252D;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.program-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.program-table tr:hover {
    background: #f7fafc;
}

/* Instructors Section */
.instructors-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    grid-auto-flow: row;
}

.instructors-grid > * {
    grid-column: auto;
    grid-row: auto;
}

.instructor-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: none;
    float: none;
    display: block;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.instructor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.instructor-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.instructor-role {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.instructor-bio {
    color: #4a5568;
    line-height: 1.6;
}


/* Main Content */
.main-content {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.content-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.hero-section {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.course-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.course-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.stat-icon.calendar { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.stat-icon.clock { background: linear-gradient(135deg, #34D399, #10B981); }
.stat-icon.location { background: linear-gradient(135deg, #F472B6, #EC4899); }
.stat-icon.language { background: linear-gradient(135deg, #A78BFA, #8B5CF6); }
.stat-icon.price { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.stat-icon.hours { background: linear-gradient(135deg, #FB7185, #F43F5E); }

.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.25rem 0;
}

/* Section Styles */
.section {
    padding: 2rem;
    border-top: 1px solid var(--border-light);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 2px;
}

/* Course Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* .info-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-blue);
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.25rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1rem;
}

.info-card li::before {
    content: '•';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
} */

/* Program Table */
/* .program-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.program-table th {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.program-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.program-table tr:hover {
    background: var(--bg-light);
} */

.module-number {
    font-weight: 600;
    color: var(--primary-blue);
}

.module-duration {
    font-weight: 600;
    color: var(--primary-orange);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 0.6s ease-out;
}

/* .cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
} */

.contact-info {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quick Benefits */
.benefits-card {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
}

.benefits-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    .course-title {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 1.5rem;
    }

    .program-table {
        font-size: 0.9rem;
    }

    .program-table th,
    .program-table td {
        padding: 0.75rem;
    }
}

/* Interactive Elements */
.interactive-hover {
    transition: all 0.3s ease;
}

.interactive-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Progress Timeline */
.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow);
}