/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1765349789
Updated: 2025-12-10 06:56:29

*/

/* LECTURER SINGLE PAGE STYLES */
.lecturer-single-page {
    padding: 20px 0;
    background: #f5f5f5;
}

.lecturer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 15px;
}

/* Sidebar */
.lecturer-sidebar {
    width: 25%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    align-self: flex-start;
}

.lecturer-avatar img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #eee;
}

.lecturer-name {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.lecturer-meta p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.lecturer-org {
    color: #1B6196;
    font-weight: bold;
}

.lecturer-subject,
.lecturer-degree {
    font-style: italic;
}

.lecturer-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: left;
}

.contact-link {
    display: block;
    color: #555;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: 14px;
}

.contact-link i {
    width: 20px;
    text-align: center;
    color: #999;
}

.contact-link:hover {
    color: #0073aa;
}

/* Content Area */
.lecturer-content {
    flex: 1;
    width: 70%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.lecturer-tabs {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.tab-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.tab-nav li {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-nav li:hover,
.tab-nav li.active {
    color: #0073aa;
    border-bottom-color: #0073aa;
}

/* Tab Content */
.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Tab: Stories & Students */
.story-item,
.student-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.story-item:last-child,
.student-item:last-child {
    border-bottom: none;
}

.story-item h3,
.student-item h4 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.student-content {
    font-style: italic;
    color: #555;
    margin-bottom: 5px;
}

.student-name {
    text-align: right;
    font-weight: bold;
    color: #777;
}

/* Tab: Media */
.media-list {
    list-style: inside circle;
    padding-left: 10px;
}

.media-list li {
    margin-bottom: 10px;
}

.media-list a {
    color: #0073aa;
    text-decoration: none;
}

.media-list a:hover {
    text-decoration: underline;
}

/* Tab: Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.course-item {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
    transition: transform 0.2s;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
}

.course-info {
    padding-top: 10px;
}

.teacher-name {
    font-size: 12px;
    color: #999;
}

.course-title {
    font-size: 16px;
    margin: 5px 0;
    line-height: 1.3;
}

.course-title a {
    text-decoration: none;
    color: #333;
}

.course-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-link {
    display: inline-block;
    padding: 5px 15px;
    background: #0073aa;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    text-decoration: none;
}

.course-link:hover {
    background: #005177;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .lecturer-sidebar,
    .lecturer-content {
        width: 100%;
    }
}

/* LECTURER ARCHIVE PAGE STYLES */
.lecturer-archive-page {
    padding: 30px 0;
    background: #f9f9f9;
}

.lecturer-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.archive-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

.lecturer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

@media (max-width: 767px) {
    .lecturer-grid {
        grid-template-columns: 1fr;
    }
}

.lecturer-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.lecturer-card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.lecturer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

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

.lecturer-card-info {
    padding: 20px;
    text-align: center;
}

.lecturer-card-name {
    font-size: 18px;
    margin: 0 0 10px;
}

.lecturer-card-name a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.lecturer-card-name a:hover {
    color: #0073aa;
}

.lecturer-card-meta {
    margin-bottom: 15px;
    min-height: 50px;
}

.card-org {
    color: #1B6196;
    font-weight: bold;
    font-size: 14px;
    margin: 0 0 5px;
}

.card-subject {
    color: #666;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

.lecturer-read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background 0.2s;
}

.lecturer-read-more:hover {
    background: #005177;
    color: #fff;
}

.lecturer-pagination {
    margin-top: 40px;
    text-align: center;
}

/* CUSTOM SINGLE POST STYLES */
.single-post-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.post-header {
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.post-header .entry-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.post-meta {
    font-size: 14px;
    color: #777;
}

.post-meta .posted-on,
.post-meta .byline {
    margin-right: 15px;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.entry-content {
    flex: 1;
    min-width: 0;
    /* Fix flex overflow */
}

.entry-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
}

.post-sidebar {
    width: 300px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .post-content-wrapper {
        flex-direction: column;
    }

    .post-sidebar {
        width: 100%;
        margin-top: 30px;
    }
}

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.related-posts-list li:last-child {
    border-bottom: none;
}

.related-posts-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.related-posts-list a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}


/* TUTOR LMS CUSTOM STYLES */
.custom-course-layout-figma .tutor-course-details-page {
    padding-top: 40px;
    padding-bottom: 60px;
}

.custom-course-layout-figma .tutor-course-details-title {
    font-size: 32px !important;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
}

.custom-course-layout-figma .tutor-course-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

/* Sidebar Box Styling */
.custom-sidebar-box {
    border: 1px solid #E0E0E0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    background: #fff;
    padding: 24px !important;
}

.custom-sidebar-box h3 {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

/* Sidebar List Items */
.custom-sidebar-box .tutor-ul li {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.custom-sidebar-box .tutor-ul li:last-child {
    border-bottom: none !important;
}

.custom-sidebar-box .tutor-ul li .tutor-icon-success {
    color: #00B894 !important;
}

/* Sidebar Price */
.tutor-course-price .price,
.tutor-course-price .regular-price {
    font-size: 24px !important;
    color: #FF5252 !important;
    /* Red */
    font-weight: 800;
}

/* Enroll Button */
.tutor-enroll-course-button,
.tutor-btn-primary {
    background-color: #00B894 !important;
    border-color: #00B894 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 14px 20px !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tutor-enroll-course-button:hover,
.tutor-btn-primary:hover {
    background-color: #00a180 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.2);
}

/* Benefits Section (Checkmarks) */
.tutor-course-benefits-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.tutor-course-benefits-content ul li {
    padding-left: 24px;
    position: relative;
}

.tutor-course-benefits-content ul li:before {
    content: '\2713';
    color: #00B894;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Video Wrapper */
.course-video-sidebar .tutor-course-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Breadcrumbs */

/* Social Share Icons */
.custom-social-share .social-icons-wrapper {
    gap: 12px;
}

.custom-social-share .share-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.custom-social-share .share-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Tabs Styling (Matching Figma Green Underline) */
.tutor-nav {
    border-bottom: 1px solid #E0E0E0 !important;
    display: flex !important;
    gap: 40px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tutor-nav .tutor-nav-item {
    margin: 0 !important;
    padding: 0 !important;
}

.tutor-nav .tutor-nav-link {
    padding: 12px 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #666 !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-decoration: none !important;
}

.tutor-nav .tutor-nav-link.is-active {
    color: #00B894 !important;
    border-bottom-color: #00B894 !important;
    font-weight: 700 !important;
}

.tutor-nav .tutor-nav-link:hover {
    color: #00B894 !important;
}

/* Related Courses Section Styling */
/* Custom Course Header */
.custom-course-layout-figma .tutor-course-details-title {
    color: #333 !important;
    letter-spacing: -0.5px;
}

.custom-course-layout-figma .tutor-course-excerpt {
    color: #666 !important;
}

.custom-course-layout-figma .tutor-course-details-top-meta {
    padding-top: 10px;
}

.custom-course-layout-figma .tutor-course-details-info img {
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.related-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .related-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .related-courses-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Course Sidebar Card - Minimalist */
.custom-sidebar-box {
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.custom-sidebar-box .tutor-card-body {
    background: #fff !important;
    padding: 24px !important;
}

.custom-sidebar-box h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

/* Minimalist Social Share */
.custom-social-share h4 {
    font-size: 14px !important;
    color: #999 !important;
    display: block;
    margin-bottom: 12px !important;
    font-weight: 500 !important;
}

.custom-social-share .social-icons-wrapper a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 50%;
    background-color: #f5f5f5 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    font-size: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.custom-social-share .social-icons-wrapper a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
}

.custom-social-share .share-icon.facebook {
    color: #3b5998 !important;
}

.custom-social-share .share-icon.twitter {
    color: #000000 !important;
}

.custom-social-share .share-icon.linkedin {
    color: #0077b5 !important;
}

.custom-social-share .share-icon.email {
    color: #1ABC9C !important;
}

/* Elegant Button */
.custom-sidebar-box .tutor-enroll-course-button {
    background: #00B894 !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    height: 48px !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.custom-sidebar-box .tutor-enroll-course-button:hover {
    background: #00a383 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.15) !important;
}

/* Custom Price & Info styling */
.custom-sidebar-box .tutor-fs-7.tutor-color-muted {
    font-size: 14px !important;
    font-weight: 500;
}

.custom-sidebar-box .tutor-fs-7.tutor-fw-medium.tutor-color-black {
    font-size: 14px !important;
}

.custom-sidebar-box .tutor-course-price span {
    letter-spacing: -0.5px;
}

/* Fixing Related Courses spacing */
.related-courses-full-wrap {
    clear: both;
}

.related-course-card {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: block;
}

.related-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.related-course-thumb {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.related-course-content {
    padding: 16px;
}

.related-course-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
}

.related-course-meta {
    font-size: 13px;
    color: #777;
    display: flex;
    justify-content: space-between;
}

/* ELEMENTOR & TUTOR LMS PAGINATION STYLING */
.elementor-pagination,
.etlms-pagination,
.etlms-course-list-pagination-wrap .etlms-pagination {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.elementor-pagination .page-numbers,
.etlms-pagination .page-numbers {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 8px;
    background: #f8f9fa;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
    margin: 0;
}

.elementor-pagination .page-numbers.current,
.etlms-pagination .page-numbers.current {
    background: #1B6196 !important;
    /* Consistent with site blue */
    color: #fff !important;
    border-color: #1B6196 !important;
    box-shadow: 0 4px 10px rgba(27, 97, 150, 0.2);
}

.elementor-pagination .page-numbers:hover:not(.current),
.etlms-pagination .page-numbers:hover:not(.current) {
    background: #fff !important;
    color: #1B6196 !important;
    border-color: #1B6196 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.elementor-pagination .next,
.elementor-pagination .prev,
.etlms-pagination .next,
.etlms-pagination .prev {
    font-weight: bold;
}

/* REGISTRATION MODAL STYLES */
.reg-advice-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.reg-advice-content {
    background: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

@keyframes modalFadeIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reg-advice-close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #333;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.reg-advice-close:hover {
    color: #FF5252;
}

.reg-advice-header {
    background: #1B6196;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.reg-advice-header h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 800;
    color: #fff !important;
}

.reg-advice-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.reg-advice-body {
    padding: 30px;
}

/* CF7 Form Styling within Modal */
.registration-form-container .form-group {
    margin-bottom: 20px;
}

.registration-form-container .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.registration-form-container .form-control:focus {
    border-color: #1B6196;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 97, 150, 0.1);
    outline: none;
}

.registration-form-container .form-submit {
    text-align: center;
    margin-top: 25px;
}

.registration-form-container .wpcf7-submit {
    background: #FF9F43 !important;
    /* Premium Orange */
    color: #fff !important;
    border: none !important;
    padding: 14px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 15px rgba(255, 159, 67, 0.3) !important;
}

.registration-form-container .wpcf7-submit:hover {
    background: #ff8c1a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 159, 67, 0.4) !important;
}

body.modal-open-scroll-lock {
    overflow: hidden;
}

/* Success Message styling */
.wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    text-align: center !important;
}

@media (max-width: 600px) {
    .reg-advice-content {
        margin: 20% auto;
        width: 95%;
    }
}

/* Tutor course card buttons - white text on hover */
.tutor-course-list-wrap .tutor-btn:hover,
.tutor-card .tutor-btn:hover,
.tutor-course-footer .tutor-btn:hover,
.tutor-loop-course-container .tutor-btn:hover,
.add_to_cart_button:hover,
.tutor-btn-outline-primary:hover {
    color: #fff !important;
}