/* Shadow Teacher Training Course Styles */
.course-container {
    padding: 60px 0;
}

.course-header {
    margin-bottom: 40px;
    text-align: center;
}

.course-header h2 {
    font-size: 36px;
    color: #0a2740;
    margin-bottom: 15px;
    font-weight: 700;
}

.course-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Overview Section */
.course-overview {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.course-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.overview-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.overview-header .icon {
    background-color: #ff6b6b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.overview-header .icon i {
    color: #fff;
    font-size: 24px;
}

.overview-header h3 {
    color: #0a2740;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.overview-content {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Course Detail Cards */
.course-detail-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #4e9af1;
}

.course-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.course-detail-card .icon {
    background-color: #4e9af1;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.course-detail-card .icon i {
    font-size: 20px;
}

.course-detail-card h4 {
    color: #0a2740;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-detail-card p {
    color: #555;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* Objectives Section */
.course-objectives {
    margin-bottom: 40px;
}

.objectives-header {
    margin-bottom: 25px;
}

.objectives-header h3 {
    color: #0a2740;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.objectives-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.objective-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid #4e9af1;
}

.objective-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.objective-item .number {
    background-color: #4e9af1;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.objective-item .content {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Features Section */
.course-features {
    margin-bottom: 40px;
}

.features-header {
    margin-bottom: 25px;
}

.features-header h3 {
    color: #0a2740;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.features-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #6dd5ed;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
}

.feature-content h4 {
    color: #0a2740;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Modules Section */
.course-modules {
    margin-bottom: 40px;
}

.modules-header {
    margin-bottom: 25px;
}

.modules-header h3 {
    color: #0a2740;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.modules-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.module-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.module-card .module-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.module-card .module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-card:hover .module-image img {
    transform: scale(1.05);
}

.module-card .module-content {
    padding: 20px;
}

.module-card .module-title {
    color: #0a2740;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.module-card .module-title .module-number {
    background-color: #4e9af1;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
    font-size: 14px;
}

.module-card .module-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.module-topics {
    margin-top: 15px;
}

.module-topics h5 {
    color: #0a2740;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.topic-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4e9af1;
}

/* Outcomes Section */
.course-outcomes {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.outcomes-header {
    margin-bottom: 25px;
}

.outcomes-header h3 {
    color: #0a2740;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.outcomes-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.outcomes-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.outcome-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.outcome-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.outcome-item .icon {
    background-color: #6dd5ed;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.outcome-item .icon i {
    font-size: 18px;
}

.outcome-item .content {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Call to Action Section */
.course-cta {
    background: linear-gradient(135deg, #0a2740 0%, #4e9af1 100%);
    border-radius: 10px;
    padding: 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-cta h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cta-btn i {
    margin-right: 8px;
}

.cta-btn.primary {
    background-color: #ff6b6b;
    color: #fff;
    border: 2px solid #ff6b6b;
}

.cta-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
    color: #fff;
    text-decoration: none;
}

.cta-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .course-header h2 {
        font-size: 32px;
    }
    
    .module-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .course-header h2 {
        font-size: 28px;
    }
    
    .course-overview {
        padding: 25px;
    }
    
    .overview-header .icon {
        width: 40px;
        height: 40px;
    }
    
    .overview-header h3 {
        font-size: 22px;
    }
    
    .objectives-header h3, 
    .modules-header h3, 
    .outcomes-header h3,
    .features-header h3 {
        font-size: 24px;
    }
    
    .objectives-list, 
    .outcomes-content {
        grid-template-columns: 1fr;
    }
    
    .module-grid {
        grid-template-columns: 1fr;
    }
    
    .course-cta {
        padding: 30px 20px;
    }
    
    .course-cta h3 {
        font-size: 24px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .course-header h2 {
        font-size: 24px;
    }
    
    .course-header p {
        font-size: 16px;
    }
    
    .overview-header .icon {
        width: 35px;
        height: 35px;
    }
    
    .overview-header .icon i {
        font-size: 18px;
    }
    
    .overview-header h3 {
        font-size: 20px;
    }
    
    .objectives-header h3, 
    .modules-header h3, 
    .outcomes-header h3,
    .features-header h3 {
        font-size: 22px;
    }
    
    .objective-item, 
    .outcome-item {
        padding: 15px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .course-detail-card {
        padding: 20px;
    }
}
