/* Course Pages Styling */

/* General Course Page Styling */
body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

p {
    color: #555555;
}

.course-header {
    padding: 3rem 0;
    position: relative;
}

.bg-primary {
    background-color: #3B5BDB !important;
}

.bg-orange {
    background-color: #FF6B35 !important;
}

.bg-purple {
    background-color: #9151ea !important;
}

.text-white {
    color: #ffffff !important;
}

.course-subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.course-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.course-description-header {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.course-meta-item i {
    font-size: 1.1rem;
}

.course-featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.course-featured-image:hover img {
    transform: scale(1.05);
}

/* Sticky Enrollment Button */
.sticky-enroll-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    display: none;
}

.sticky-enroll-button .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.btn-primary {
    background-color: #3B5BDB !important;
    border-color: #3B5BDB !important;
    color: #ffffff !important;
}

.btn-orange {
    background-color: #FF6B35 !important;
    color: #ffffff !important;
}

.btn-orange:hover {
    background-color: #e55a28 !important;
    color: #ffffff !important;
}

.btn-purple {
    background-color: #9151ea !important;
    border-color: #9151ea !important;
    color: #ffffff !important;
}

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

/* Content Section */
.course-content-section {
    padding: 4rem 0;
    position: relative;
    background-color: #f8f9fa;
}

/* What You Will Learn Section */
.syllabus-learn-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.syllabus-learn-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #333333;
}

.syllabus-learn-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3B5BDB;
    border-radius: 2px;
}

/* Make title underlines purple for fullstack development page */
.page-fullstack-development .syllabus-learn-title:after,
.page-fullstack-development .section-title:after {
    background-color: #9151ea !important;
}

.page-digital-marketing .syllabus-learn-title:after{
    background-color: #ff6c00 !important;
}

.syllabus-learn-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.syllabus-learn-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555555;
}

.syllabus-learn-list li i {
    color: #3B5BDB;
    margin-right: 10px;
    margin-top: 5px;
}

/* Make checkmark bullets purple for fullstack development page */
.page-fullstack-development .syllabus-learn-list li i {
    color: #9151ea !important;
}

.page-digital-marketing .syllabus-learn-list li i {
    color: #ff6c00 !important;
}

/* Learning Path */
.learning-path-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.learning-path-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
}

.learning-path {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.learning-path-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    padding: 1rem 0.5rem;
    border-radius: 8px;
    background: #f1f3f9;
    position: relative;
    transition: all 0.3s ease;
    color: #555555;
}

.learning-path-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 20px;
    height: 2px;
    background-color: #d1d9e6;
    z-index: 1;
}

.learning-path-item.active {
    background: #3B5BDB;
    color: white;
}

.path-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3B5BDB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.path-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
}

.learning-path-item.active .path-step {
    background: #EDF2F7;
}

.download-syllabus {
    margin-top: 1.5rem;
    text-align: center;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #f1f3f9;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    color: #3B5BDB;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-link:hover {
    background: #e1e7f5;
    color: #3B5BDB;
}

/* Syllabus Accordion */
.syllabus-container {
    margin-bottom: 3rem;
}

.syllabus-module {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.syllabus-module-header {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.syllabus-module-header:hover {
    background: #e9ecef;
}

/* Course-specific modules */
.page-digital-marketing .module-icon-wrapper {
    background: #FF6B35;
}

.page-graphic-design .module-icon-wrapper {
    background: #3B5BDB;
}

.page-fullstack-development .module-icon-wrapper {
    background-color: #9151ea !important;
}

.page-fullstack-development .module-icon-wrapper i {
    color: #ffffff !important;
}

.module-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    flex-shrink: 0;
}

.syllabus-module-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
    color: #333333;
}

.expand-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.syllabus-module-header[aria-expanded="true"] .expand-icon {
    transform: rotate(180deg);
}

.syllabus-module-content {
    background: #ffffff;
    padding: 0;
}

.module-details {
    padding: 1.5rem;
}

.syllabus-list {
    padding-left: 1.2rem;
    margin: 0;
}

.syllabus-list li {
    margin-bottom: 0.5rem;
    color: #555555;
}

/* Project Container */
.project-container {
    margin-top: 1.5rem;
}

.project-item {
    background: #f1f3f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-item h4 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.project-item p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 0;
}

/* Certifications Section */
.certifications-showcase {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
    position: relative;
    padding-bottom: 10px;
}

/* Add underline to section titles */
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3B5BDB;
    border-radius: 2px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.certification-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.certification-logo img {
    max-width: 100%;
    max-height: 100%;
}

.certification-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
}

/* Testimonials Section */
.testimonials-section {
    background: #3B5BDB;
    padding: 3rem 2rem;
    border-radius: 12px;
    color: white;
    margin-bottom: 3rem;
}

.testimonials-section .section-title {
    color: white !important;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid white;
}

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

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    color: #ffffff;
}

.author-info {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    color: #F9CF6A;
    font-size: 0.8rem;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #3B5BDB 0%, #2A4086 100%);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content span {
    color: #A3BFFA;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Enrollment Form */
.enrollment-form-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.enrollment-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333333;
}

.enrollment-form-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.form-progress {
    margin: 1.5rem 0;
}

.progress-indicator {
    position: relative;
}

.progress-step {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-line {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.progress-line-inner {
    height: 100%;
    background-color: #3B5BDB;
    transition: width 0.3s ease;
}

/* Make form progress elements purple for fullstack development page - More aggressive targeting */
.page-fullstack-development .progress-line,
.page-fullstack-development .progress-line *,
.page-fullstack-development .progress-indicator *,
.page-fullstack-development .form-progress * {
    border-color: #9151ea !important;
}

/* Make sure progress line inner is purple */
.page-fullstack-development .progress-line-inner {
    background-color: #9151ea !important;
}

/* Fix specifically for the progress line */
.page-fullstack-development .progress-line {
    background-color: #e9ecef !important; /* Light gray background */
    border: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Override any blue progress bars and borders */
.page-fullstack-development .progress-line-inner {
    background-color: #9151ea !important;
    background: #9151ea !important;
    border-color: #9151ea !important;
}

/* Make sure all progress elements use the correct purple */
.page-fullstack-development .progress-indicator .progress-step.completed .step-number,
.page-fullstack-development .progress-indicator .progress-step[data-step="1"] .step-number,
.page-fullstack-development .progress-indicator div:first-child .step-number {
    background-color: #9151ea !important;
    color: white !important;
    border-color: #9151ea !important;
}

.page-fullstack-development .privacy-notice a {
    color: #9151ea !important;
}

.page-fullstack-development .contact-html-form input:focus,
.page-fullstack-development .contact-html-form textarea:focus {
    border-color: #9151ea !important;
    box-shadow: 0 0 0 3px rgba(145, 81, 234, 0.1) !important;
}

.page-fullstack-development .submit-button {
    background: #9151ea !important;
}

.page-fullstack-development .submit-button:hover {
    background: #7b37dc !important; /* Slightly darker purple for hover */
    box-shadow: 0 4px 12px rgba(145, 81, 234, 0.2) !important;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f3f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6c757d;
    z-index: 1;
}

.progress-step.completed .step-number {
    background: #3B5BDB;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555555;
}

.privacy-notice {
    margin: 1rem 0;
    font-size: 0.85rem;
    color: #6c757d;
}

.privacy-notice a {
    color: #3B5BDB;
}

.form-row {
    margin-bottom: 1.2rem;
}

.contact-html-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #495057;
}

.contact-html-form label .required {
    color: #E53E3E;
}

.contact-html-form input[type="text"],
.contact-html-form input[type="email"],
.contact-html-form input[type="tel"],
.contact-html-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #495057;
}

.contact-html-form input:focus,
.contact-html-form textarea:focus {
    border-color: #3B5BDB;
    box-shadow: 0 0 0 3px rgba(59, 91, 219, 0.1);
    outline: none;
}

.contact-html-form ::placeholder {
    color: #adb5bd;
}

.submit-button {
    width: 100%;
    padding: 0.8rem;
    font-weight: 600;
    border: none;
    background: #3B5BDB;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #304AC1;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 91, 219, 0.2);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Special section for the Advanced Skills section */
.specialization-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.specialization-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specialization-title .badge {
    background-color: #3B5BDB;
    color: white;
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
    border-radius: 50px;
    font-weight: 600;
}

.specialization-intro {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .course-title {
        font-size: 2.5rem;
    }
    
    .course-content-section {
        padding: 3rem 0;
    }
    
    .enrollment-form-container {
        margin-top: 2rem;
        position: static;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    /* Hide section title underlines in mobile view */
    .syllabus-learn-title:after,
    .section-title:after,
    .course-title::after,
    .page-fullstack-development .syllabus-learn-title:after,
    .page-fullstack-development .section-title:after,
    .module-title:after,
    [class*="-title"]:after,
    .syllabus-module h3:after,
    .mobile-header-inner h1:after,
    .mobile-header-inner h2:after,
    .mobile-header-inner h3:after,
    .specialization-title:after,
    .software-title:after,
    .learning-path-title:after {
        display: none !important;
    }
    
    /* Hide borders that create visual lines - revised to keep module card structure */
    .syllabus-module-header, /* affects only its own border, if any */
    .syllabus-module-content, /* affects only its own border, if any */
    .course-info-item { /* This is fine for course info items */
        border-color: transparent !important;
    }

    /* Ensure syllabus module retains its card appearance on mobile */
    .syllabus-module {
        border: 1px solid #e9ecef !important; /* Restore border */
        background-color: #ffffff; /* Explicitly set background to contrast if needed, though content/header usually handle this */
        margin-bottom: 1rem !important; /* Ensure spacing */
        border-radius: 8px !important; /* Ensure rounded corners */
        overflow: hidden !important; /* Ensure content clipping */
    }

    .syllabus-module-header {
        background-color: #f8f9fa !important; /* Ensure header background consistent with desktop */
    }

    .syllabus-module-content {
        background-color: #ffffff !important; /* Ensure content background consistent with desktop */
        padding: 0 !important; /* Set padding to 0 as requested */
    }

    /* Remove extra padding from module content on mobile */
    .syllabus-module-content .module-details {
        padding-top: 1rem !important;
        padding-bottom: 0.5rem !important; /* Reduce bottom padding */
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .course-header {
        padding: 2rem 0;
    }
    
    .course-title {
        font-size: 2rem;
    }
    
    .course-description-header {
        font-size: 1rem;
    }
    
    .course-featured-image {
        margin-top: 2rem;
    }
    
    .syllabus-learn-title,
    .learning-path-title {
        font-size: 1.5rem;
    }
    
   
    .sticky-enroll-button {
        display: block;
    }
}

/* Directly target the problematic breakpoint and rule */
@media (max-width: 767.98px) {
    .syllabus-module-content {
        padding: 0 !important; /* Override the 15px padding */
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 2rem 1rem;
    }
    
    .cta-banner {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

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

.course-featured-image,
.syllabus-learn-block,
.learning-path-container,
.syllabus-module,
.certifications-showcase,
.testimonial-card,
.cta-banner,
.enrollment-form-container {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Course Information Box Styles */
.course-info-container {
    margin-top: 1.5rem;
}

.course-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.course-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.course-info-item i {
    font-size: 1.5rem;
    color: #3B5BDB;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.course-info-content {
    flex-grow: 1;
}

.course-info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #495057;
}

.course-info-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Additional Project Styles */
.project-container {
    margin-top: 1.5rem;
}

.project-item {
    background: #f1f3f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-item h4 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.5rem;
}

.project-item p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 0;
}

/* Modern Progress Indicator Redesign */
.modern-progress-indicator {
    position: relative;
    padding: 20px 0;
    margin: 20px 0 30px;
    width: 100%;
}

.progress-step-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.progress-bar-container {
    position: absolute;
    top: 18px; /* Align with circles */
    left: 70px;
    right: 70px;
    width: auto;
    height: 3px;
    z-index: 1;
}

.progress-bar-background {
    background-color: #e9ecef;
    border-radius: 4px;
    height: 100%;
    width: 100%;
    position: absolute;
}

.progress-bar-fill {
    background-color: #3B5BDB;
    border-radius: 4px;
    height: 100%;
    position: absolute;
    transition: width 0.3s ease;
}

.page-fullstack-development .progress-bar-fill {
    background-color: #9151ea;
}

.page-digital-marketing .progress-bar-fill {
    background-color: #ff6c00;
}

.modern-progress-indicator .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: auto;
    min-width: 80px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f3f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-number {
    font-weight: 600;
    font-size: 16px;
    color: #6c757d;
    transition: opacity 0.3s ease;
}

.step-check {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-check i {
    color: white;
    font-size: 14px;
}

.step-label {
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    text-align: center;
    white-space: normal; /* Allow wrap for "Personal Info" */
    width: 100%;
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* Improved completed step styling */
.progress-step.completed .step-circle {
    background-color: #3B5BDB;
    border-color: #3B5BDB;
}

.page-fullstack-development .progress-step.completed .step-circle {
    background-color: #9151ea;
    border-color: #9151ea;
}

.progress-step.completed .step-number {
    opacity: 0;
    display: none;
}

.progress-step.completed .step-check {
    opacity: 1;
    display: flex;
}

.progress-step.completed .step-label {
    color: #333333;
}

/* Active step styling */
.progress-step.active .step-circle {
    border-color: #3B5BDB;
}

.page-fullstack-development .progress-step.active .step-circle {
    border-color: #9151ea;
}

/* Hover effects */
.progress-step:not(.completed):hover .step-circle {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .progress-bar-container {
        left: 45px;
        right: 45px;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
    }
    
    .step-label {
        font-size: 12px;
    }
} 