/* Course Listing Page Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Page Section */
.page-section {
    padding: 40px 0;
    background: #f8f9fa;
}

#content-twocols {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Styles */
#sidebar {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 0;
    height: fit-content;
}

.widget {
    border-bottom: 1px solid #eee;
}

.widget:last-child {
    border-bottom: none;
}

.widget h4 {
    background: #1e3c72;
    color: white;
    margin: 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
}

.widget-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-categories ul li {
    border-bottom: 1px solid #eee;
}

.widget-categories ul li:last-child {
    border-bottom: none;
}

.widget-categories ul li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.widget-categories ul li a:hover {
    background: #f8f9fa;
    color: #1e3c72;
    padding-left: 25px;
}

/* Course Checklist */
.widget-checklist ul {
    list-style: none;
    margin: 0;
    padding: 15px 20px;
}

.widget-checklist ul li {
    margin-bottom: 10px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.custom-checkbox input[type="radio"] {
    display: none;
}

.custom-checkbox .label {
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-checkbox .checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-checkbox input[type="radio"]:checked + .label .checkbox {
    background: #1e3c72;
    border-color: #1e3c72;
}

.custom-checkbox input[type="radio"]:checked + .label .checkbox i {
    color: white;
    font-size: 12px;
}

.custom-checkbox .checkbox i {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox input[type="radio"]:checked + .label .checkbox i {
    opacity: 1;
}

/* Content Area */
#content {
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.heading-covered {
    font-size: 28px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 3px solid #1e3c72;
    padding-bottom: 10px;
}

/* Course Content */
.course-categitm-con {
    margin-bottom: 40px;
}

.course-categitm-con h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.wpb-content-wrapper {
    margin-top: 20px;
}

.list-spacings {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.list-spacings li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #eee;
}

.list-spacings li:before {
    content: "•";
    color: #1e3c72;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.list-spacings li:last-child {
    border-bottom: none;
}

/* Tables */
.table-small {
    margin: 20px 0;
    overflow-x: auto;
}

.table-small table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    font-size: 14px;
}

.table-small table th {
    background: #1e3c72;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #ddd;
}

.table-small table td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.table-small table tr.odd {
    background: #f8f9fa;
}

.table-small table tr.even {
    background: white;
}

.table-small table tr:hover {
    background: rgba(30, 60, 114, 0.1);
}

/* tblres table style */
.tblres {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 2px solid #1e3c72;
}

.tblres th {
    background: #1e3c72;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #1e3c72;
}

.tblres td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.tblres tr.odd {
    background: #f8f9fa;
}

.tblres tr.even {
    background: white;
}

.tblres .fungat {
    background: #2a5298;
    color: white;
    font-weight: 700;
}

/* Buttons */
.vc_btn3 {
    display: inline-block;
    padding: 12px 30px;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #1e3c72;
}

.vc_btn3:hover {
    background: transparent;
    color: #1e3c72;
    text-decoration: none;
}

.vc_btn3-color-grey {
    background: #6c757d;
    border-color: #6c757d;
}

.vc_btn3-color-grey:hover {
    background: transparent;
    color: #6c757d;
}

.vc_btn3-container {
    text-align: center;
    margin: 30px 0;
}

/* Headings */
.vc_custom_heading {
    color: #1e3c72;
    font-weight: 700;
    margin: 25px 0 15px 0;
}

/* Separators */
.vc_separator {
    margin: 30px 0;
    height: 1px;
    background: #ddd;
}

/* Video Section */
.section-video {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0;
    text-align: center;
    margin-top: 40px;
}

.section-video h2 {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-holder {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.video-frame {
    position: relative;
    display: block;
    text-decoration: none;
}

.video-frame img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.btn-play i {
    font-size: 28px;
    color: #1e3c72;
    margin-left: 5px;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.cta-single .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Utilities */
.ts-80 {
    height: 80px;
}

.clear {
    clear: both;
}

/* Responsive Design */
@media (max-width: 991px) {
    #content-twocols {
        flex-direction: column;
        gap: 20px;
    }
    
    #sidebar {
        width: 100%;
        order: -1;
    }
    
    .heading-covered {
        font-size: 24px;
    }
    
    .course-categitm-con h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 20px 0;
    }
    
    #content {
        padding: 20px;
    }
    
    .table-small {
        font-size: 12px;
    }
    
    .table-small table th,
    .table-small table td {
        padding: 8px 6px;
    }
    
    .section-video h2 {
        font-size: 24px;
    }
    
    .video-frame img {
        max-width: 100%;
    }
    
    .btn-play {
        width: 60px;
        height: 60px;
    }
    
    .btn-play i {
        font-size: 20px;
    }
}

/* Custom button styles for multi-buttons */
.custon-2-button {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.custon-2-button .vc_btn3 {
    flex: 1;
    text-align: center;
    max-width: 200px;
}

@media (max-width: 576px) {
    .custon-2-button {
        flex-direction: column;
        align-items: center;
    }
    
    .custon-2-button .vc_btn3 {
        width: 100%;
        max-width: 100%;
    }
}

.top-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    transform: translateZ(0);
}

.top-bar .social-links a {
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    font-size: 16px;
    display: inline-block;
}

.top-bar .social-links a:hover {
    color: #ffd700;
    transform: translateY(-2px) translateZ(0);
}

.top-bar .contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.top-bar .contact-info a:hover {
    color: #ffd700;
}