:root {
    --primary-dark: #3f5354;       /* Deep teal for headers and accents */
    --primary-medium: #4b8c8c;     /* Medium teal for buttons and highlights */
    --primary-light: #20dc72;      /* Vibrant green for CTAs and accents */
    --dark-gray: #34332f;          /* Almost black for text */
    --medium-gray: #545350;        /* Medium gray for secondary text */
    --light-bg: #f8fbf8;          /* Very light greenish bg */
    --dark-green: #33473e;         /* Dark green for accents */
    --medium-green: #526b62;       /* Medium green for secondary elements */
    --accent-orange: #ff7e5f;      /* Complementary accent color */
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
}

.btn-primary {
    background-color: var(--primary-medium);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(75, 140, 140, 0.2);
}

.btn-outline-primary {
    color: var(--primary-medium);
    border: 2px solid var(--primary-medium);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-medium);
    color: white;
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-medium));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Navigation - More Premium */
.navbar {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-dark);
}

.navbar-brand span {
    margin-left: 12px;
    background: linear-gradient(90deg, var(--primary-medium), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 8px 18px;
    margin: 0 5px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    bottom: 0;
    left: 18px;
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-medium);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-medium);
    font-weight: 600;
}

.btn-get-started {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    color: white !important;
    border-radius: 50px;
    padding: 10px 24px !important;
    margin-left: 12px;
    box-shadow: 0 4px 12px rgba(32, 220, 114, 0.3);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(32, 220, 114, 0.4);
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-light));
}

/* Hero Section - More Vibrant */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(248, 251, 248, 0.9) 0%, rgba(235, 245, 240, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(75, 140, 140, 0.08) 0%, rgba(75, 140, 140, 0) 70%);
    top: -300px;
    right: -300px;
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.hero-section p.lead {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--medium-gray);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    position: relative;
    z-index: 1;
}

.hero-section img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(63, 83, 84, 0.2));
    position: relative;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section - Card Redesign */
.features-section {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, white, rgba(248, 251, 248, 0));
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    padding-left:20px;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: white;
    box-shadow: 0 10px 30px rgba(63, 83, 84, 0.08);
    border: 1px solid rgba(75, 140, 140, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-medium));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(63, 83, 84, 0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(75, 140, 140, 0.1) 0%, rgba(32, 220, 114, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-medium);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    color: white;
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Projects Section - More Engaging */
.projects-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.project-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(63, 83, 84, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(75, 140, 140, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(63, 83, 84, 0.15);
}

.project-badge {
    position: absolute;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(32, 220, 114, 0.3);
    z-index: 2;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.project-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--medium-gray);
    padding: 12px 0;
    border-top: 1px solid rgba(75, 140, 140, 0.1);
    border-bottom: 1px solid rgba(75, 140, 140, 0.1);
}

.project-meta i {
    margin-right: 8px;
    color: var(--primary-medium);
}

/* How It Works - More Visual */
.how-it-works {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-bg), white);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(32, 220, 114, 0.2);
    position: relative;
}



@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step p {
    color: var(--medium-gray);
    font-size: 1.05rem;
}

/* Testimonials - More Polished */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.testimonial-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(63, 83, 84, 0.08);
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(75, 140, 140, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(75, 140, 140, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-light);
    box-shadow: 0 5px 15px rgba(32, 220, 114, 0.2);
}

.testimonial-author h5 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* CTA Section - More Impactful */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(32, 220, 114, 0.15) 0%, rgba(32, 220, 114, 0) 70%);
    bottom: -200px;
    right: -200px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -150px;
    left: -150px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 15px 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.cta-section .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Footer - More Sophisticated */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-green) 100%);
    color: white;
    padding: 100px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--light-bg), rgba(248, 251, 248, 0));
    z-index: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-brand span {
    font-size: 1.6rem;
    font-weight: 700;
    margin-left: 12px;
    background: linear-gradient(90deg, white, #d1fae5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(32, 220, 114, 0.3);
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
    bottom: 0;
    left: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
}

.footer ul li a:hover {
    color: white;
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 70px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-section img {
        margin-bottom: 40px;
        max-width: 70%;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer ul li a:hover {
        transform: none;
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p.lead {
        font-size: 1.1rem;
    }

    .navbar-brand span {
        font-size: 1.4rem;
    }

    .btn-get-started {
        margin-left: 0;
        margin-top: 10px;
    }
}
/* Project Header */
.project-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(248, 251, 248, 0.9) 0%, rgba(235, 245, 240, 0.9) 100%);
    border-bottom: 1px solid rgba(75, 140, 140, 0.1);
}

.project-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.project-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.project-meta i {
    color: var(--primary-medium);
}

/* Progress Card */
.progress-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(63, 83, 84, 0.08);
    text-align: center;
    border: 1px solid rgba(75, 140, 140, 0.1);
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle .progress-bg {
    fill: none;
    stroke: rgba(75, 140, 140, 0.1);
    stroke-width: 8;
}

.progress-circle .progress-fill {
    fill: none;
    stroke: var(--primary-medium);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: progress-animation 1.5s ease-out forwards;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

@keyframes progress-animation {
    from { stroke-dashoffset: 283; }
    to { stroke-dashoffset: calc(283 - (283 * var(--value))); }
}

/* Tasks Section */
.tasks-section {
    padding: 60px 0;
}

.task-filters, .resources-panel {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(63, 83, 84, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(75, 140, 140, 0.1);
}

.task-filters h3, .resources-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--medium-green);
}

.form-check {
    margin-bottom: 8px;
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* Resources Panel */
.resource-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(75, 140, 140, 0.1);
}

.resource-item i {
    font-size: 1.5rem;
    color: var(--primary-medium);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.resource-item div {
    flex: 1;
}

.resource-item h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--primary-dark);
}

.resource-item p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.resource-download {
    color: var(--primary-medium);
    font-size: 1.1rem;
    padding: 5px;
}

.resource-download:hover {
    color: var(--primary-dark);
}

/* Task List */
.task-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.task-list-header h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.form-select-sm {
    font-size: 0.9rem;
    padding: 5px 10px;
    border-color: rgba(75, 140, 140, 0.2);
}

/* Task Items */
.task-item {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(63, 83, 84, 0.05);
    margin-bottom: 15px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 140, 140, 0.1);
}

.task-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(63, 83, 84, 0.1);
}

.task-item.completed {
    border-left-color: var(--primary-light);
    opacity: 0.9;
}

.task-item.in-progress {
    border-left-color: var(--primary-medium);
}

.task-item.not-started {
    border-left-color: #ddd;
}

.task-item.locked {
    background-color: #f9f9f9;
}

.task-checkbox {
    margin-right: 20px;
}

.checkbox-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    color: #ddd;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.checkbox-circle.checked {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.checkbox-circle.in-progress {
    background-color: var(--primary-medium);
    border-color: var(--primary-medium);
    color: white;
}

.task-content {
    flex: 1;
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.task-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.task-meta {
    display: flex;
    gap: 15px;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.difficulty-beginner {
    background-color: rgba(32, 220, 114, 0.1);
    color: var(--primary-light);
}

.difficulty-intermediate {
    background-color: rgba(75, 140, 140, 0.1);
    color: var(--primary-medium);
}

.difficulty-advanced {
    background-color: rgba(63, 83, 84, 0.1);
    color: var(--primary-dark);
}

.duration {
    font-size: 0.85rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.duration i {
    font-size: 0.8rem;
}

.task-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.task-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(75, 140, 140, 0.1);
}

.task-status {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.task-status.completed {
    color: var(--primary-light);
}

.task-status.in-progress {
    color: var(--primary-medium);
}

.task-status.not-started {
    color: var(--medium-gray);
}

.task-status.locked {
    color: #aaa;
}

.task-actions {
    display: flex;
    gap: 15px;
}

.btn-resources, .btn-review, .btn-continue, .btn-start {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-resources {
    color: var(--primary-medium);
    background-color: rgba(75, 140, 140, 0.1);
}

.btn-resources:hover {
    background-color: rgba(75, 140, 140, 0.2);
}

.btn-review {
    color: var(--primary-light);
    background-color: rgba(32, 220, 114, 0.1);
}

.btn-review:hover {
    background-color: rgba(32, 220, 114, 0.2);
}

.btn-continue, .btn-start {
    color: white;
    background-color: var(--primary-medium);
}

.btn-continue:hover, .btn-start:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Task Completion CTA */
.task-completion-cta {
    background: linear-gradient(135deg, rgba(75, 140, 140, 0.05) 0%, rgba(32, 220, 114, 0.05) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    border: 1px dashed var(--primary-medium);
}

.task-completion-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.task-completion-cta p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .project-header {
        text-align: center;
    }

    .project-meta {
        justify-content: center;
    }

    .progress-card {
        max-width: 300px;
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {
    .task-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .task-meta {
        width: 100%;
    }

    .task-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .task-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
/* Task Steps Section */
.task-steps {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid #0d6efd;
}

.task-steps h5 {
    color: #2c3e50;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-item {
    display: flex;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #e9ecef;
}

.step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    background-color: #0d6efd;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.step-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
}

.step-actions .btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

/* For completed steps */
.step-item.completed .step-number {
    background-color: #198754;
}

.step-item.completed .step-content strong,
.step-item.completed .step-content p {
    opacity: 0.7;
    text-decoration: line-through;
}
.pagination-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.page-item.dropdown .page-link {
    position: relative;
    padding-right: 2rem;
}

.page-item.dropdown .page-link::after {
    display: none;
}

.page-item.dropdown .dropdown-menu {
    min-width: 100px;
}

.page-item.dropdown .dropdown-item {
    padding: 0.25rem 1rem;
    font-size: 0.9rem;
}

.page-item.dropdown .dropdown-item.active {
    background-color: #0d6efd;
    color: white;
}

 .skills-gained {
        margin: 20px 0;
    }

    .skill-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .skill-tag {
        background-color: #e3f2fd;
        color: #1976d2;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .project-meta span {
        margin-right: 15px;
        font-size: 0.95rem;
        color: #666;
    }

    .project-meta i {
        margin-right: 5px;
    }
