body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
}

.custom-course-collection {
    background: #f8f9fa;
    padding: 60px 0;
    min-height: 60vh;
}

.page-header {
    background: #ffffff;
    padding: 60px 0 80px;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    position: relative;
    overflow: hidden;
}

.page-header nav {
    float: none !important;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

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

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '>';
    color: #666;
    padding: 0 10px;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #333;
}

.hero-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    /*flex-wrap: wrap;*/
}

.hero-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #313B3D;
    margin: 0;
}

.hero-trustpilot {
    margin-left: auto;
}

.hero-trustpilot .trustpilot-widget {
    min-width: 200px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #313B3D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #09a3b8 !important;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.hero-btn-primary:hover {
    background: var(--gradient-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.hero-btn-secondary {
    background: white;
    color: #09a3b8;
    padding: 14px 30px;
    border: 2px solid #09a3b8;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.hero-btn-secondary:hover {
    background: #09a3b8;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 25px;
    width: fit-content;
}

.hero-scroll-indicator:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.hero-image-container {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        display: none;
    }

    .hero-image-container {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-trustpilot {
        margin-left: 0;
        margin-top: 10px;
    }
    .hero-branding {
        margin-bottom:0;
    }
    .hero-brand-name {
        width:100%;
        gap:5px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-image-container {
        height: 300px;
    }
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.filter-title {
    font-weight: 600;
    color: #333;
    font-size: 1.25rem;
    margin: 0;
}

.filter-clear-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.filter-clear-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-section-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: block;
    font-size: 1rem;
}

.filter-group label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-select,
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}


.search-box {
    position: relative;
}

.search-input {
    padding-right: 45px;
    width: 100%;
}

.search-box .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #555;
    margin: 0;
    padding: 5px 0;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-item span {
    flex: 1;
}

.checkbox-item:hover {
    color: var(--primary-color);
}

/* Course Card - New Design */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Badge */
.course-badge {
    position: absolute;
    top: 0;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 25px 10px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    clip-path: polygon(100% 0, 100% 100%, 50% 85%, 0 100%, 0 0);
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.badge-save {
    font-size: 11px;
    font-weight: 400;
}

.badge-percent {
    font-size: 20px;
    font-weight: 700;
}

/* Image Section */
.course-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 130px;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.course-card:hover .course-image {
    transform: scale(1.08);
}

.award-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.course-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.course-provider img {
    width: 100px;
    background: #F8F8F8;
    padding: 5px 10px;
    border-radius: 30px;
}

.provider-logo {
    width: 20px;
    height: 20px;
}

.course-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course-title a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.course-title a:hover {
    color: var(--primary-color);
}

/* Course Meta Info */
.course-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-item i {
    color: var(--primary-color);
}

/* Star Rating */
.course-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
}

.rating-number {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.students-enrolled {
    color: #313B3D;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Price Section */
.course-footer {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 700;
    font-size: 14px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #313B3D;
}

.free-course {
    background: #27ae60;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
}

/* Enroll Button */
.enroll-btn {
    display: block;
    width: 100%;
    background: #17a2b8;
    color: white;
    text-align: center;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enroll-btn:hover {
    background: #138496;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
}

/* Results Info */

.heading-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    color: #313B3D;
}

.heading-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.custom-course-collection .heading-title {
    width: 50%;
    margin: 20px auto;
}

.custom-course-collection .heading-description {
    max-width: 70%;
    margin: 0 auto 30px;
}

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

.results-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.results-count i {
    color: var(--primary-color);
    margin-right: 8px;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-wrapper label {
    font-weight: 500;
    color: #666;
    font-size: 14px;
    margin: 0;
}

.sort-select {
    min-width: 200px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 35px 8px 15px;
    font-size: 14px;
    color: #333;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.sort-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    outline: none;
}

.sort-select:hover {
    border-color: var(--primary-color);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination-wrapper .page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .page-numbers li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    padding: 10px 18px;
    border-radius: 8px;
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    min-width: 44px;
    text-align: center;
}

.pagination-wrapper .page-numbers a:hover,
.pagination-wrapper .page-numbers span.current {
    background: black !important; 
    border-color: black !important; 
    color: white;
    text-decoration: none;
}

.pagination-wrapper .page-numbers .prev,
.pagination-wrapper .page-numbers .next {
    padding: 10px 15px;
}

.pagination-wrapper .page-numbers .dots {
    border: none;
    background: transparent;
    padding: 10px 5px;
}

/* No Courses */
.no-courses {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
}

.no-courses i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.benefits-section {
    background: white;
    padding: 60px 0;
    margin-top: 60px;
}

/* Loading Spinner */
#loading-spinner {
    padding: 40px 20px;
    text-align: center;
}

#loading-spinner i {
    font-size: 2rem;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

#loading-spinner p {
    margin-top: 15px;
    color: #666;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .custom-course-collection .heading-title,
    .custom-course-collection .heading-description {
        width: 100%;
        max-width: 100%;
    }

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

    .results-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-wrapper {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }

    /* Collapsible filters on mobile */
    .filter-section {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .filter-section.collapsed .filter-body {
        display: none;
    }

    .filter-toggle-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        color: #555;
        border: 1px solid #ddd;
        border-radius: 999px;
        padding: 6px 12px;
        background: #f9fafb;
        cursor: pointer;
    }

    .filter-toggle-btn i {
        font-size: 0.8rem;
    }
}

/* Why Choose SLC Section */
.why-slc .section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    color: #313B3D;
}

.why-slc .bullet-points {
    margin: 60px 0;
    background: linear-gradient(124.65deg, rgba(10, 164, 189, 0.1) 7.49%, rgba(0, 165, 111, 0.1) 104.49%);
    padding: 40px;
    border-radius: 0 0 48px 0;
}

.why-slc .why-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #313B3D;
}

.why-slc .bullet-points .icon {
    width: 50px;
    height: 50px;
    margin: auto 0;
}

.why-slc .view-all-btn {
    display: inline-block;
    color: #FF9B43;
    padding: 10px 20px;
    border: 1px solid #FF9B43;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 15px !important;
    font-weight: 500;
    font-size: 16px;
}

.why-slc .view-all-btn:hover {
    color: #ffffff;
    background-color: #FF9B43;
}

/* Benefits Section */

.benefits-section {
    padding: 60px 0;
    background-color: white;
}

.benefits-section .align-items-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10%;
}

.section-title {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 18px;
    margin-bottom: 40px;
}

.benefit-card-section {
    padding: 40px 0;
}

.benefits-section .heading-title {
    margin: 20px 0;
    width: 100%;
}

.benefits-section .heading-description {
    margin: 0;
    width: 100%;
}

.benefit-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-card::before {
    content: '▶';
    color: #08A3B8;
    font-size: 1.2rem;
    position: absolute;
    left: 30px;
    top: 30px;
}

.benefit-card h3 {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-left: 30px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 30px;
}

.benefit-card .hero-image {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-container {
    position: relative;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .image-container {
        margin-top: 40px;
    }

    .benefits-section .align-items-center {
        display: block;
    }
}

/* Video Testimonials Section */
.video-testimonials-section {
    background: #ffffff;
    padding: 80px 0;
}

.video-testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #313B3D;
    text-align: center;
    margin-bottom: 20px;
}

.video-testimonials-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-testimonial-item {
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.video-testimonial-item:hover {
    transform: translateY(-5px);
}

.video-testimonial-thumbnail-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.video-testimonial-thumbnail {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.video-testimonial-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

.video-testimonial-play-btn:hover {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-testimonial-play-btn svg {
    width: 28px;
    height: 28px;
    color: #313B3D;
    margin-left: 4px;
}

.video-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #313B3D;
    margin: 0;
}


/* Video Modal */
.video-testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.video-testimonial-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    pointer-events: auto;
}

.video-testimonial-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 100000;
    pointer-events: none;
}

.video-testimonial-modal-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.video-testimonial-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
}

.video-testimonial-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100001;
    pointer-events: auto;
}

.video-testimonial-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .video-testimonials-section {
        padding: 60px 0;
    }
    
    .video-testimonials-title {
        font-size: 2rem;
    }
    
    .video-testimonials-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .video-testimonial-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-testimonial-play-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .video-testimonial-name {
        font-size: 16px;
    }
    
    .video-testimonial-modal-content {
        width: 95%;
    }
    
    .video-testimonial-modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
    }
}

/* Awarding Bodies Section */
.awarding-bodies-section {
    background: white;
    padding: 60px 0;
}

.awarding-bodies-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.awarding-bodies-content {
    flex: 1;
}

.awarding-bodies-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #313B3D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.awarding-bodies-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
}

.awarding-bodies-view-all {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #FF9B43;
    color: #FF9B43;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-top: 20px;
}

.awarding-bodies-view-all:hover {
    background: #FF9B43;
    color: white;
    text-decoration: none;
}

.awarding-bodies-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.awarding-body-logo-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.awarding-body-logo-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.awarding-body-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.awarding-body-logo-text {
    font-size: 16px;
    font-weight: 500;
    color: #313B3D;
    text-align: center;
}

/* Webinars / Upcoming Schedule Section */
.webinars-section {
    background: #E5F5F2;
    padding: 60px 0 80px;
}

.webinars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.webinars-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.webinars-header-text {
    max-width: 720px;
}

.webinars-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.webinars-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.webinars-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #FF9B43;
    color: #FF9B43;
    background: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.webinars-view-all:hover {
    background: #FF9B43;
    color: #fff;
    text-decoration: none;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.webinar-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.webinar-card-image-wrapper {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f3f4f6;
}

.webinar-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webinar-card-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.webinar-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 999px;
    background: #ffd44f5c;
    color: #2a2a2a;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    width: fit-content;
}

.webinar-title {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webinar-meta-container {
    padding: 10px 0;
}

.webinar-meta {
    font-size: 15px;
    color: rgb(32, 32, 32);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.webinar-meta i {
    color: rgb(191, 191, 191);
}

.webinar-footer {
    margin-top: auto;
    padding-top: 10px;
}

.webinar-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #08A3B8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.webinar-button:hover {
    background: #0284C7;
    color: #fff;
    text-decoration: none;
}

.webinar-card-skeleton {
    animation: pulse 1.5s ease-in-out infinite;
}

.webinar-card-skeleton .webinar-card-image-wrapper,
.webinar-card-skeleton .webinar-card-body {
    background: #e5e7eb;
}

.webinars-empty,
.webinars-error {
    font-size: 14px;
    color: #6b7280;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

@media (max-width: 1024px) {
    .webinars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .webinars-container {
        padding: 0 20px;
    }

    .webinars-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .webinars-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 80px;
    align-items: center;
}

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 16px;
    color: #4b5563;
}

.faq-image-wrapper {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    display: inline-block;
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-right {
    padding-left: 40px;
}

.faq-list {
    border-top: 1px solid #e5e7eb;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-align: left;
}

.faq-question-text {
    flex: 1;
    padding-right: 16px;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6b7280;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 16px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-item.active .faq-toggle-icon {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.faq-view-more-wrapper {
    margin-top: 20px;
}

.faq-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #FF9B43;
    background: #fff7ed;
    color: #9A3412;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    gap: 6px;
    transition: all 0.2s ease;
}

.faq-view-more-btn:hover {
    background: #FF9B43;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .faq-right {
        border-left: 0;
        padding-left: 0;
    }
}

/* Hero CTA Section */
.hero-cta-section {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    padding: 80px 0;
}

.hero-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-cta-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

.hero-cta-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
}

.hero-cta-btn-primary {
    background: #09a3b8;
    color: #ffffff;
    border: none;
}

.hero-cta-btn-primary:hover {
    background: #09a3b8;
    color: #ffffff;
    text-decoration: none;
}

.hero-cta-btn-secondary {
    background: #ffffff;
    color: #09a3b8;
    border: 2px solid #09a3b8;
}

.hero-cta-btn-secondary:hover {
    background: #09a3b8;
    color: #ffffff;
    text-decoration: none;
}

.hero-cta-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-cta-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Blog Section */
.blog-section {
    background: #ffffff;
    padding: 80px 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f3f4f6;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6b7280;
}

.blog-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 10px;
    background: #F3F4F6;
    color: #4b5563;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.blog-card-date,
.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-body a {
    color: inherit;
    text-decoration: none !important;
    font-weight: 500;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    color: #09a3b8;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.blog-card-link:hover {
    color: #09a3b8;
    gap: 10px;
    text-decoration: none;
}

.blog-view-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.blog-view-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 8px;
    background: #09a3b8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
}

.blog-view-more-btn:hover {
    background: #0284C7;
    color: #ffffff;
    text-decoration: none;
    gap: 12px;
}

.filter-view-toggle {
    background: transparent !important;
    border: none;
    text-decoration: underline !important;
}

@media (max-width: 992px) {
    .hero-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cta-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .hero-cta-section {
        padding: 60px 0;
    }

    .hero-cta-container {
        padding: 0 20px;
    }

    .hero-cta-title {
        font-size: 2rem;
    }

    .hero-cta-description {
        font-size: 16px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-image-wrapper {
        margin-top: 20px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .blog-container {
        padding: 0 20px;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .awarding-bodies-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .awarding-bodies-header {
        flex-direction: column;
    }

    .awarding-bodies-view-all {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .awarding-bodies-title {
        font-size: 2rem;
    }

    .awarding-bodies-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .awarding-body-logo-card {
        min-height: 100px;
        padding: 15px;
    }

    .awarding-body-logo {
        max-height: 60px;
    }
}