* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COURSES HERO */
.courses-hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 80px;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f7fbff 100%);
}

.courses-hero-content {
    max-width: 900px;
    text-align: center;
}

.course-badge {
    display: inline-block;
    padding: 10px 22px;
    background: #E8F2FF;
    color: #2563eb;
    border-radius: 40px;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
}

.courses-hero h1 {
    font-size: 64px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    line-height: 1.15;
    margin-top: 28px;
}

.courses-hero p {
    max-width: 720px;
    margin: 30px auto;
    font-size: 22px;
    line-height: 1.7;
    color: #6b7280;
    font-family: 'Nunito', sans-serif;
}

.courses-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.courses-btn:hover {
    background: #1d4ed8;
    transform: translateY(-4px);
}

@media(max-width:768px) {
    .courses-hero {
        padding: 120px 25px 70px;
    }

    .courses-hero h1 {
        font-size: 42px;
    }

    .courses-hero p {
        font-size: 18px;
    }

    .courses-btn {
        width: 100%;
    }
}

/* FEATURED COURSES */
.featured-courses {
    padding: 100px 120px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-title span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
}

.section-title h2 {
    font-size: 48px;
    margin: 20px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.section-title p {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.course-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .35s;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, .06);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(37, 99, 235, .15);
}

.course-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.course-content {
    padding: 30px;
}

.course-tag {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.course-content h3 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.course-meta span {
    background: #f8fafc;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    color: #475569;
}

.course-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 30px;
    font-family: 'Nunito', sans-serif;
}

.course-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.course-btn:hover {
    background: #1d4ed8;
}

@media(max-width:768px) {
    .featured-courses {
        padding: 70px 20px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 17px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-card img {
        height: 220px;
    }

    .course-content h3 {
        font-size: 28px;
    }

    .course-btn {
        width: 100%;
        text-align: center;
    }
}

/* LEARNING PATH */
.learning-path {
    padding: 100px 120px;
    background: #f8fbff;
}

.learning-path-heading {
    text-align: center;
    max-width: 820px;
    margin: auto auto 70px;
}

.learning-path-heading span {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 15px;
}

.learning-path-heading h2 {
    font-size: 48px;
    color: #111827;
    margin: 18px 0;
    font-family: 'Nunito', sans-serif;
}

.learning-path-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.path-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.path-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .35s;
}

.path-card:hover {
    transform: translateY(-10px);
}

.path-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.path-card img {
    width: 90px;
    margin-bottom: 25px;
}

.path-card h3 {
    font-size: 26px;
    color: #111827;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.path-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 17px;
}

.path-arrow {
    font-size: 42px;
    color: #2563eb;
    font-weight: bold;
}

@media(max-width:768px) {
    .learning-path {
        padding: 70px 20px;
    }

    .learning-path-heading h2 {
        font-size: 34px;
    }

    .learning-path-heading p {
        font-size: 17px;
    }

    .path-container {
        flex-direction: column;
    }

    .path-arrow {
        transform: rotate(90deg);
    }

    .path-card {
        width: 100%;
    }
}

/* COURSE COMPARISON */
.course-comparison {
    padding: 100px 120px;
    background: #ffffff;
}

.comparison-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.comparison-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.comparison-heading h2 {
    font-size: 46px;
    color: #111827;
    margin: 18px 0;
    font-family: 'Nunito', sans-serif;
}

.comparison-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.comparison-table th {
    background: #2563eb;
    color: #fff;
    padding: 22px;
    font-size: 20px;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #edf2f7;
    font-size: 17px;
    color: #475569;
}

.comparison-table td:first-child {
    font-weight: 700;
    color: #111827;
    background: #f8fbff;
}

.comparison-table tr:hover {
    background: #f9fbff;
}

@media(max-width:768px) {
    .course-comparison {
        padding: 70px 20px;
    }

    .comparison-heading h2 {
        font-size: 34px;
    }

    .comparison-heading p {
        font-size: 17px;
    }

    .comparison-table table {
        min-width: 700px;
    }
}

/* PROJECT SHOWCASE */
.projects-showcase {
    padding: 100px 120px;
    background: #f8fbff;
}

.projects-heading {
    max-width: 850px;
    text-align: center;
    margin: auto auto 70px;
}

.projects-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-heading h2 {
    margin: 18px 0;
    font-size: 46px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.projects-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.project-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: .35s;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(37, 99, 235, .15);
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-content {
    padding: 28px;
}

.project-content span {
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.project-content h3 {
    margin: 15px 0;
    font-size: 28px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.project-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

@media(max-width:768px) {
    .projects-showcase {
        padding: 70px 20px;
    }

    .projects-heading h2 {
        font-size: 34px;
    }

    .projects-heading p {
        font-size: 17px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card img {
        height: 220px;
    }

    .project-content h3 {
        font-size: 24px;
    }
}

/* WHY KENOWIT */

.why-kenowit {
    padding: 100px 120px;
    background: #ffffff;
}

.why-heading {
    max-width: 850px;
    text-align: center;
    margin: auto auto 70px;
}

.why-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-heading h2 {
    font-size: 46px;
    color: #111827;
    margin: 20px 0;
    font-family: 'Nunito', sans-serif;
}

.why-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, .15);
}

.why-card img {
    width: 85px;
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

.why-card p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

@media(max-width:768px) {
    .why-kenowit {
        padding: 70px 20px;
    }

    .why-heading h2 {
        font-size: 34px;
    }

    .why-heading p {
        font-size: 17px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* SUCCESS STORIES */
.success-section {
    padding: 100px 120px;
    background: #f8fbff;
}

.success-heading {
    max-width: 850px;
    margin: auto auto 70px;
    text-align: center;
}

.success-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.success-heading h2 {
    font-size: 46px;
    color: #111827;
    margin: 18px 0;
    font-family: 'Nunito', sans-serif;
}

.success-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.success-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
    transition: .35s;
}

.success-card:hover {
    transform: translateY(-8px);
}

.success-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.stars {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 20px;
}

.success-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.success-card h4 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.success-card span {
    color: #6b7280;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
}

@media(max-width:768px) {
    .success-section {
        padding: 70px 20px;
    }

    .success-heading h2 {
        font-size: 34px;
    }

    .success-heading p {
        font-size: 17px;
    }

    .success-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* FAQ */
.courses-faq {
    padding: 100px 120px;
    background: #ffffff;
}

.faq-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-heading span {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-heading h2 {
    font-size: 46px;
    margin: 20px 0;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.faq-heading p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 22px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.faq-question span {
    font-size: 30px;
    color: #2563eb;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

@media(max-width:768px) {
    .courses-faq {
        padding: 70px 20px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-heading p {
        font-size: 17px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}

/* FINAL CTA */
.final-cta {
    padding: 100px 120px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    overflow: hidden;
}

.cta-content {
    flex: 1;
}

.cta-content span {
    display: inline-block;
    background: rgba(255, 255, 255, .18);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-content h2 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.cta-content p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 700px;
    color: rgba(255, 255, 255, .9);
}

.cta-buttons {
    margin-top: 45px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 18px 42px;
    background: #ffffff;
    color: #2563eb;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    padding: 18px 42px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: .3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #2563eb;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 5%;
}

@media(max-width:768px) {
    .final-cta {
        padding: 70px 20px;
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .cta-content h2 {
        font-size: 36px;
    }
    .cta-content p {
        font-size: 17px;
    }
    .cta-buttons {
        justify-content: center;
    }
    .cta-image img {
        max-width: 320px;
    }
}

