:root {
    --primary-color: #1a7b88;
    /* Teal/blue-green as requested */
    --primary-dark: #146570;
    --primary-light: #e8f4f5;
    --accent-color: #f47c3c;
    /* Warm orange accent */
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --bg-dark: #1a202c;
    --success: #48bb78;
    --warning: #ecc94b;
    --danger: #f56565;
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

/* Utility Classes */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-white {
    color: var(--white) !important;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.heading-tbl {
    color: #2f2f2f !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    text-align: center; 
}
.heading-offer {
    color: #616161 !important;
    font-weight: normal !important;
    font-size: 0.8rem !important;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: #e56f30;
    border-color: #e56f30;
    color: var(--white);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: var(--white);
    color: var(--primary-dark);
}

/* Pulse Animation for CTA Buttons */
.pulse-button {
    position: relative;
    box-shadow: 0 0 0 0 rgba(244, 124, 60, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 124, 60, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(244, 124, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 124, 60, 0);
    }
}

/* Floating Offer Button (Mobile) */
.floating-offer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand img {
    /* height: 80px; */
    /* width: 2cm !important; */
    height: 2cm !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 10px 15px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.search-container {
    position: relative;
}

.search-input {
    padding-right: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-300);
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--gray-500);
}

/* Mega Menu Styles */
.mega-menu {
    position: static !important;
}

.mega-menu .dropdown-menu {
    width: 100%;
    border: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin-top: 0;
    box-shadow: var(--box-shadow-lg);
    padding: 30px;
    border-top: 2px solid var(--primary-color);
}

.mega-menu-header {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-color);
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    transition: var(--transition);
}

.mega-menu-item:hover {
    background-color: var(--primary-light);
}

.mega-menu-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
}

.mega-menu-content h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.mega-menu-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.mega-menu-right-col {
    border-left: 1px solid var(--gray-200);
    padding-left: 30px;
}

.feature-card {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-card-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Promo Section (Offer Banner) */
.promo-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 15px 0;
    color: var(--white);
}

.promo-text {
    font-size: 1rem;
    line-height: 1.5;
}

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

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

.counter-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.15);
}

.counter-number {
    color: white;
}

.counter-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-cta {
    margin-top: 30px;
}

.hero-cta .btn {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
}

.hero-image-container {
    position: relative;
}

.hero-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-tag {
    position: absolute;
    top: -80px;
    right: 30px;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    z-index: 3;
}

.hero-floating-element {
    position: absolute;
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-element i {
    margin-right: 8px;
    color: var(--accent-color);
}

.hero-floating-1 {
    bottom: 50px;
    left: 20px;
    animation-delay: 0.5s;
}

.hero-floating-2 {
    top: 140px;
    right: 90px;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    background-color: var(--gray-100);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.trust-badge i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1rem;
}

/* Stats Counter Section */
.stats-section {
    background-color: var(--primary-light);
    padding: 0px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: inline-block;
}



.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    vertical-align: top;
}

.stat-number2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: inline-block;
}

.stat-number2::after {
    content: '%';
    font-size: 1rem;
    vertical-align: top;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    background-color: var(--gray-100);
    padding: 20px 0;
}

.logos-container {
    padding: 0px 0;
    overflow: hidden;
    white-space: nowrap;
}

.logos-track {
    display: inline-flex;
    animation: scrollLogos 30s linear infinite;
}

.logos-track img {
    height: 80px;
    margin-right: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Featured Courses Section */
.featured-courses-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Instead, let Bootstrap handle the grid spacing */
.featured-courses-section .row {
    margin-top: 40px;
}

/* .course-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%; */
    /* This ensures all cards are the same height */
    /* display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
} */

/* .course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
} */

.course-card-top {
    position: relative;
}

.course-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.course-card-body {
    padding: 20px;
    flex-grow: 1;
    /* This makes the body take up all available space */
}

.course-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 2.8rem;
    /* Helps align cards when titles are different lengths */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.course-rating i {
    color: #FFD700;
    margin-right: 2px;
}

.course-rating span {
    margin-left: 5px;
    color: var(--text-light);
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

/* .meta-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.meta-item i {
    margin-right: 5px;
    font-size: 5px;
    color: var(--primary-color);
} */

.course-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.feature-item i {
    margin-right: 8px;
    color: var(--success);
    font-size: 0.9rem;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.course-card-footer {
    padding: 0 20px 20px;
}

/* This ensures proper spacing in all screen sizes */
@media (max-width: 767.98px) {
    .featured-courses-section .col-md-4 {
        margin-bottom: 30px;
    }

    .featured-courses-section .col-md-4:last-child {
        margin-bottom: 0;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 30px 0;
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.benefit-card.premium {
    border: 2px solid var(--accent-color);
}

/* .benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
} */
 /* Estilo para los iconos de beneficio en la sección hero */
 .course-hero-section .benefit-item {
     display: flex;
     margin-bottom: 20px;
 }

/* .course-hero-section .benefit-icon {
    min-width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.course-hero-section .benefit-icon i {
    color: var(--success);
    font-size: 1.2rem;
} */
.course-hero-section .benefit-item .benefit-icon {
    min-width: 35px !important;
    height: 35px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 15px !important;
}

.course-hero-section .benefit-item .benefit-icon i {
    color: var(--success) !important;
    font-size: 1.2rem !important;
    margin: 0 !important;
    /* Esto elimina cualquier margen que pueda estar desplazando el ícono */
    padding: 0 !important;
}

.course-hero-section .benefit-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Mantener los estilos de benefit-icon en otras secciones */
.content-block .benefit-icon,
.path-icon,
.format-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.content-block .benefit-icon i,
.path-icon i,
.format-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 8px;
    font-weight: 500;
}

/* Audience Section */
.audience-section {
    padding: 30px 0;
    background-color: var(--white);
}

.audience-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.audience-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.audience-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.audience-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.audience-card ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Certificate Section */
.certificate-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.certificate-showcase {
    position: relative;
    margin-bottom: 30px;
}

.certificate-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
}

.certificate-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
}

.certificate-tabs {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 5px;
}

.certificate-tabs-nav {
    width: 40%;
    padding: 15px 0;
}

.certificate-tab-button {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certificate-tab-button:hover,
.certificate-tab-button.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.certificate-tab-button::after {
    content: '\F132';
    font-family: "bootstrap-icons";
    font-size: 1rem;
    opacity: 0.6;
}

.certificate-tab-content {
    width: 60%;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.certificate-tab-content h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.certificate-tab-content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.certificate-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.certificate-meta .meta-item {
    color: var(--white);
    opacity: 0.9;
}

.certificate-meta .meta-item i {
    color: var(--accent-color);
}

.certificate-rating {
    color: #FFD700;
    margin-bottom: 20px;
}

.certificate-rating span {
    color: var(--white);
    opacity: 0.9;
    margin-left: 5px;
}

/* Membership Section */
.membership-section {
    background-color: var(--white);
    position: relative;
}

.membership-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.membership-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    width: 350px;
    position: relative;
    border: 1px solid var(--gray-200);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.membership-card.featured {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--accent-color);
    z-index: 1;
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 0 0 5px 5px;
    z-index: 1;
}

.card-badge.accent {
    background-color: var(--accent-color);
}

.card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.card-header h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
    margin-left: 5px;
}

.card-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.card-body {
    padding: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-list li i {
    margin-right: 10px;
    font-size: 1rem;
}

.feature-list li.disabled {
    color: var(--gray-400);
}

.card-footer {
    padding: 20px 30px 30px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-light);
    position: relative;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    min-width: 320px;
    max-width: 400px;
    flex: 1;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--gray-200);
    font-size: 2rem;
    opacity: 0.5;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    margin-right: 15px;
}

.testimonial-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.testimonial-logos {
    margin-top: 80px;
    text-align: center;
}

.testimonial-logos h6 {
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.logo-carousel {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.logo-carousel img {
    height: 60px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-carousel img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Lead Magnet Section */
.lead-magnet-section {
    background-color: var(--white);
    position: relative;
}

.lead-magnet-card {
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.lead-magnet-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.lead-magnet-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.lead-magnet-card .lead {
    position: relative;
    z-index: 1;
}

.check-list {
    position: relative;
    z-index: 1;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.check-list li::before {
    content: '\F26B';
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.toolkit-preview {
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.toolkit-preview img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.lead-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.lead-form-card h5 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.final-cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-countdown {
    position: relative;
    z-index: 1;
}

.countdown-wrapper {
    gap: 15px;
}

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

.countdown-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.3);
}

.countdown-number {
    color: white;
}

.countdown-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

/* Footer Styles */
footer {
    /* background-color: var(--bg-dark); */
    background-color: var(--gray-400) !important;
    /* color: var(--white); */
    color: var(--text-secondary) !important;
    padding: 30px 0 20px !important;
}

footer h6 {
    /* color: var(--white); */
    color: var(--text-secondary) !important;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    /* color: rgba(255, 255, 255, 0.7); */
    color: var(--text-secondary) !important;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white) !important;
    text-decoration: none;
}

.social-icons {
    display: flex;
}

.social-icons a {
    /* color: rgba(255, 255, 255, 0.7); */
    color: var(--text-secondary) !important;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--white);
}

footer .input-group {
    margin-bottom: 20px;
}

footer .form-control {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: none;
    padding: 10px 15px;
}

footer .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 10px 15px;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.value-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    z-index: -1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    font-size: 1.05rem;
    background-color: var(--white);
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.accordion-button::after {
    color: var(--primary-color);
}

.accordion-body {
    padding: 20px;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
}

.accordion-body p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.overall-rating {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-right: 20px;
}

.rating-stars {
    display: flex;
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating-breakdown {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.breakdown-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.breakdown-item:last-child {
    margin-bottom: 0;
}

.breakdown-label {
    width: 130px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breakdown-bar {
    flex-grow: 1;
    margin: 0 15px;
}

.progress {
    height: 8px;
    background-color: var(--gray-200);
    border-radius: 4px;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.breakdown-score {
    font-weight: 600;
    color: var(--text-color);
    width: 30px;
    text-align: right;
}

.featured-review {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 15px;
}

.review-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.review-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-content blockquote {
    font-style: italic;
    color: var(--text-color);
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--primary-light);
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 30px 0;
    background-color: var(--white);
}

.pricing-cta-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.pricing-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent-color);
}

.pricing-cta-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.guarantee {
    margin-top: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.guarantee i {
    color: var(--success);
    margin-right: 5px;
}


/* Course Catalog Header */
.course-catalog-header {
    padding: 30px 0;
    background-color: var(--primary-light);
    margin-bottom: -30px;
}

.course-catalog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.course-catalog-header .lead {
    color: var(--text-light);
    font-size: 1.2rem;
}

.filter-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-toggle .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
}

.view-toggle .btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Course Catalog Section */
.course-catalog-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Category Sidebar */
.category-sidebar {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    /* position: sticky; */
    position: relative;
    top: 100px;
}

.category-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.list-group-item {
    border: none;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: var(--border-radius) !important;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.list-group-item:hover {
    background-color: var(--gray-100);
}

.list-group-item.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
}

.list-group-item.active .badge {
    background-color: var(--primary-color);
}

.badge {
    font-weight: 500;
    font-size: 0.75rem;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Course List View */
.course-list-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.course-list-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.course-list-image {
    position: relative;
    height: 100%;
}

.course-list-image img {
    border-radius: var(--border-radius);
    height: 100%;
    object-fit: cover;
}

.course-list-content {
    padding: 0 15px;
}

.course-list-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.course-list-pricing {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Pagination Styles */
.pagination-container {
    margin-top: 40px;
}

.pagination .page-link {
    border: none;
    color: var(--text-color);
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: var(--border-radius);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    color: var(--gray-400);
}

/* Bundle Offers Section */
.bundle-offers-section {
    padding: 30px 0;
    background-color: var(--primary-light);
}

.bundle-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    height: 100%;
    transition: var(--transition);
    overflow: hidden;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.bundle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
}

.bundle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding-right: 80px;
}

.bundle-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.bundle-courses {
    margin-bottom: 25px;
}

.bundle-course-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.bundle-course-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.bundle-course-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.bundle-course-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.bundle-course-meta span {
    display: inline-block;
    margin-right: 15px;
}

.bundle-course-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.bundle-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.bundle-price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-right: 10px;
}

.bundle-price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Membership CTA Section */
.membership-cta-section {
    padding: 30px 0;
    background-color: var(--white);
}

.membership-cta-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.membership-cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.membership-cta-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.membership-cta-card .lead {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
}

.benefit-item i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.1rem;
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-value {
    font-size: 3rem;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-comparison {
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}


/* 
   Course Detail Page Styles
   Consistent with site redesign using teal/blue-green colors
*/

/* Course Hero Section */
.course-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.course-hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

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

.course-badge-fd {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.course-title-fd {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
}

.course-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    margin-bottom: 20px;
}

/* .benefit-icon {
    color: var(--success);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
} */

.benefit-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.course-hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.course-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.stat-item i {
    margin-right: 8px;
    color: var(--accent-color);
}

.course-video-container {
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
}

.video-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.video-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.video-tag i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* Course Navigation */
.course-navigation {
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.course-nav-container {
    display: flex;
    justify-content: center;
    padding: 0;
}

.course-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.course-nav::-webkit-scrollbar {
    display: none;
}

.course-nav-link {
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.course-nav-link:hover {
    color: var(--primary-color);
}

.course-nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Course Content Section */
.course-content-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.content-block {
    margin-bottom: 0px;
}

.section-header {
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.course-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 15px;
}

.course-description {
    margin-bottom: 30px;
}

.course-description p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.content-divider {
    height: 1px;
    background-color: var(--gray-200);
    margin: 40px 0;
}

.learning-objectives h3,
.target-audience h3,
.prerequisites h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.objectives-list,
.prerequisites-list {
    list-style: none;
    padding-left: 0;
}

.objectives-list li,
.prerequisites-list li {
    display: flex;
    margin-bottom: 15px;
}

.objectives-list li i,
.prerequisites-list li i {
    color: var(--success);
    margin-right: 15px;
    margin-top: 4px;
}

.target-audience ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.target-audience li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Course Format */
.course-format {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

.format-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.format-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.format-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Course Modules */
.course-modules {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.module-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
}

.module-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.module-header:hover {
    background-color: var(--primary-light);
}

.module-title {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.module-toggle i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.collapsed .module-toggle i {
    transform: rotate(-90deg);
}

.module-content {
    border-top: 1px solid var(--gray-200);
}

.module-lessons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    background-color: var(--white);
    transition: var(--transition);
}

.lesson-item:last-child {
    border-bottom: none;
}

.lesson-item:hover {
    background-color: var(--primary-light);
}

.lesson-info {
    flex-grow: 1;
}

.lesson-title {
    margin-bottom: 5px;
    font-weight: 500;
}

.lesson-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.lesson-duration i {
    margin-right: 5px;
    color: var(--primary-color);
}

.lesson-badge {
    display: flex;
    align-items: center;
}

.free-preview {
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 4px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 500;
}

/* Career Impact Section */
.career-impact {
    margin-top: 30px;
}

.impact-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.impact-stat {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
    margin: 0 10px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.career-paths h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.career-path-cards {
    display: flex;
    gap: 20px;
}

.path-card {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.path-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.path-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.path-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.path-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(50% - 10px);
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--primary-light);
    opacity: 0.5;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-rating {
    margin-left: auto;
    color: #FFD700;
}

/* FAQ Section */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--gray-200);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--primary-light);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    border-top: 1px solid var(--gray-200);
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Course Sidebar */
.course-sidebar {
    /* position: sticky; */
    top: 100px;
}

.sidebar-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
}

.card-header {
    padding: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* .course-rating {
    display: flex;
    align-items: center;
} */

.rating-stars {
    color: #FFD700;
    margin-right: 10px;
}

/* .rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
} */

.card-divider {
    height: 1px;
    background-color: var(--gray-200);
}

.card-instructor {
    padding: 25px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
}

.instructor-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.instructor-info p {
    margin-bottom: 3px;
    font-weight: 500;
}

.instructor-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.instructor-credential {
    font-size: 0.85rem;
    color: var(--text-light);
}

.course-meta-info {
    padding: 25px;
    border-bottom: 1px solid var(--gray-200);
}

/* .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-color);
} */

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1rem;
}

.price-container {
    padding: 25px;
    background-color: var(--primary-light);
    border-bottom: 1px solid var(--gray-200);
}

/* .course-price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
} */

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 15px;
}

.price-current {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-discount {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.cta-buttons {
    padding: 25px;
    border-bottom: 1px solid var(--gray-200);
}

.enrollment-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.enrollment-guarantee i {
    margin-right: 8px;
    color: var(--success);
}

.included-features {
    padding: 25px;
}

.included-features h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.features-list {
    padding-left: 0;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.course-bundle {
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.bundle-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.course-bundle h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.course-bundle p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.bundle-price {
    margin-bottom: 20px;
    text-align: center;
}

.bundle-price .price-current {
    font-size: 2rem;
}

.bundle-price .price-period {
    font-size: 1rem;
    color: var(--text-light);
}

/* Related Courses Section */
.related-courses-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Final CTA Section */
.course-cta-section {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.cta-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-benefits {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.cta-benefits .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.cta-benefits .benefit-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-tag {
    margin-bottom: 10px;
}

.price-tag .price-original {
    font-size: 1.5rem;
}

.price-tag .price-current {
    font-size: 3rem;
}

.price-savings {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
}

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

.enrollment-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Certificate and cart styles */
/* Cart Button Styles */
.cart-btn {
    border-radius: 50px;
    padding: 8px 12px;
    transition: var(--transition);
}

.cart-btn:hover {
    transform: scale(1.05);
}

.cart-count {
    font-size: 0.75rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Offcanvas Styles */
.cart-offcanvas {
    width: 400px;
}

.empty-cart-icon {
    opacity: 0.6;
}

/* Cart Item Styles */
.cart-item {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.cart-item:hover {
    background-color: var(--gray-100);
}

.cart-item-image {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
    line-height: 1.3;
}

.cart-item-type {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item-original-price {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: var(--transition);
}

.remove-item:hover {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

/* Cart Footer Styles */
.cart-summary {
    font-size: 0.9rem;
}

.cart-footer {
    background-color: var(--gray-100);
    margin-top: auto;
}

/* Success notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--success);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-offcanvas {
        width: 100%;
    }
}


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

    .certificate-stats {
        justify-content: center;
    }

    .certificate-cta {
        justify-content: center;
        flex-direction: column;
    }

    .price-display {
        margin-left: 0;
        margin-top: 20px;
    }

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

    .value-cards {
        grid-template-columns: 1fr;
    }

    .sticky-cta .container {
        flex-direction: column;
        gap: 15px;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .course-hero-section {
        padding: 50px 0;
    }

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

    .course-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-stats {
        margin-top: 20px;
    }

    .course-video-container {
        margin-top: 40px;
    }

    .course-nav {
        justify-content: flex-start;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .impact-stats {
        flex-direction: column;
        gap: 20px;
    }

    .impact-stat {
        margin: 0;
    }

    .career-path-cards {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }

    .course-sidebar {
        margin-top: 50px;
        position: static;
    }

    .cta-benefits {
        flex-wrap: wrap;
    }

    .cta-price {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .course-hero-section {
        padding: 40px 0;
        text-align: center;
    }

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

    .benefit-item {
        justify-content: center;
    }

    .course-hero-cta {
        justify-content: center;
    }

    .course-stats {
        justify-content: center;
    }

    .course-nav-link {
        padding: 1rem;
    }

    .course-format {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-card {
        padding: 30px;
        text-align: center;
    }

    .cta-benefits {
        justify-content: center;
    }
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .category-sidebar {
        margin-bottom: 30px;
        position: static;
    }

    .course-list-content {
        padding: 20px 0;
    }

    .course-list-pricing {
        padding-top: 20px;
    }

    .membership-benefits {
        grid-template-columns: 1fr;
    }

    .membership-price {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .course-catalog-header {
        padding: 40px 0;
        text-align: center;
    }

    .filter-container {
        margin-top: 30px;
    }

    .course-list-image {
        margin-bottom: 20px;
    }

    .bundle-pricing {
        flex-direction: column;
        text-align: center;
    }

    .bundle-price {
        margin-bottom: 15px;
    }

    .membership-cta-card {
        padding: 30px;
        text-align: center;
    }
}

/* Animation for course cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.course-card {
    animation: fadeInUp 0.6s ease forwards;
}

.course-card:nth-child(2) {
    animation-delay: 0.1s;
}

.course-card:nth-child(3) {
    animation-delay: 0.2s;
}

.course-card:nth-child(4) {
    animation-delay: 0.3s;
}

.course-card:nth-child(5) {
    animation-delay: 0.4s;
}

.course-card:nth-child(6) {
    animation-delay: 0.5s;
}



/* Media Queries */
@media (max-width: 991.98px) {
    .rating-breakdown {
        margin-bottom: 30px;
    }

    .featured-review {
        margin-top: 30px;
    }

    .pricing-cta-card {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .value-card {
        margin-bottom: 20px;
    }

    .rating-number {
        font-size: 3rem;
    }

    .pricing-cta-card {
        padding: 30px;
    }

    .pricing-cta-card h2 {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

/* Media Queries */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .benefit-card h3 {
        font-size: 1rem;
    }

    .membership-cards {
        flex-direction: column;
        align-items: center;
    }

    .membership-card {
        width: 100%;
        max-width: 500px;
    }

    .membership-card.featured {
        transform: scale(1);
    }

    .membership-card.featured:hover {
        transform: translateY(-10px);
    }
}

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

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

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

    .certificate-tabs {
        flex-direction: column;
    }

    .certificate-tabs-nav,
    .certificate-tab-content {
        width: 100%;
    }

    .lead-magnet-card {
        padding: 30px;
    }

    .countdown-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .course-cards {
        gap: 20px;
    }

    .testimonials-slider {
        padding-bottom: 40px;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .course-card-body {
        padding: 15px;
    }

    .countdown-wrapper {
        gap: 10px;
    }

    .countdown-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .final-cta-section h2 {
        font-size: 1.8rem;
    }
}