/* ===================================
   UI UX COURSE - QUICK SUMMARY
=================================== */

.summary-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}


/* Heading */

.summary-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #244b46;
    margin: 0 0 45px;
    line-height: 1.3;
}


/* List */

.summary-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}


/* List Item */

.summary-section li {
    position: relative;

    /* Space for the tick icon */
    padding: 0 0 28px 45px;

    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #4a5554;

    /* IMPORTANT */
    text-align: left;

    width: 100%;
    box-sizing: border-box;
}


/* Tick Icon */

.summary-section li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 6px;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    background-color: #2f6b5d;
    color: #ffffff;

    border-radius: 50%;
}


/* Strong Text */

.summary-section strong {
    font-weight: 700;
    color: #244b46;
}
.uiux-course-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #3f4b4b;
}

.uiux-container {
    max-width: 1100px;
    margin: auto;
}


/* ===============================
   QUICK ANSWER
================================ */

.quick-answer-box {
    position: relative;
    padding: 40px;
    margin-bottom: 65px;
    background: linear-gradient(135deg, #244b46, #2f6b5d);
    border-radius: 8px;
    color: #ffffff;
    overflow: hidden;
}

.quick-answer-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

.quick-answer-box h2 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.quick-answer-box p {
    position: relative;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.quick-answer-box strong {
    color: #ffffff;
}


/* ===============================
   COURSE INFORMATION
================================ */

.course-info-section {
    margin-bottom: 70px;
}

.course-info-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #244b46;
    margin-bottom: 35px;
}

.course-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.info-card {
    padding: 25px;
    background: #f6f8f7;
    border-left: 4px solid #2f6b5d;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(31, 69, 63, 0.12);
}

.info-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2f6b5d;
    margin-bottom: 10px;
}

.info-card strong {
    display: block;
    font-size: 17px;
    line-height: 1.6;
    color: #263f3b;
}


/* ===============================
   ON THIS PAGE
================================ */

.page-navigation {
    padding: 35px;
    margin-bottom: 65px;
    background: #f7f9f8;
    border-top: 2px solid #2f6b5d;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.small-line {
    width: 40px;
    height: 3px;
    background: #2f6b5d;
}

.section-title h2 {
    font-size: 27px;
    color: #244b46;
    margin: 0;
}

.page-navigation a {
    display: inline-block;
    padding: 10px 18px;
    background: #ffffff;
    color: #2f6b5d;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #dce5e2;
    transition: 0.3s;
}

.page-navigation a:hover {
    background: #244b46;
    color: #ffffff;
}


/* ===============================
   QUICK SUMMARY
================================ */

.summary-section {
    max-width: 1000px;
    margin: auto;
}

.summary-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #244b46;
    margin-bottom: 30px;
}

.summary-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-section li {
    position: relative;
    padding: 0 0 22px 30px;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5554;
}

.summary-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    background: #2f6b5d;
    color: #ffffff;
    border-radius: 50%;
}

.summary-section strong {
    color: #244b46;
    font-weight: 700;
}

.summary-section a {
    color: #2f6b5d;
    
}

.summary-section a:hover {
    color: #183c36;
}


/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

    .uiux-course-section {
        padding: 55px 15px;
    }

    .quick-answer-box {
        padding: 28px 22px;
    }

    .quick-answer-box h2 {
        font-size: 27px;
    }

    .quick-answer-box p {
        font-size: 15px;
        line-height: 1.8;
    }

    .course-info-grid {
        grid-template-columns: 1fr;
    }

    .course-info-section h2 {
        font-size: 27px;
    }

    .summary-section h2 {
        font-size: 29px;
    }

    .summary-section li {
        font-size: 15px;
        padding-left: 30px;
    }

    .page-navigation {
        padding: 25px 20px;
    }
}


/* Links */

.summary-section a {
    color: #2f6b5d;
    font-weight: 600;
  

    transition: color 0.3s ease;
}


.summary-section a:hover {
    color: #183c36;
}


/* ===================================
   TABLET VIEW
=================================== */

@media (max-width: 992px) {

    .summary-section {
        max-width: 900px;
        padding: 50px 30px;
    }

    .summary-section h2 {
        font-size: 34px;
    }

    .summary-section li {
        font-size: 16px;
        padding-left: 42px;
    }
}


/* ===================================
   MOBILE VIEW
=================================== */

@media (max-width: 768px) {

    .summary-section {
        padding: 45px 20px;
    }

    .summary-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .summary-section li {
        font-size: 15px;
        line-height: 1.8;

        /* Space for tick */
        padding-left: 38px;
        padding-bottom: 22px;
    }

    .summary-section li::before {
        width: 20px;
        height: 20px;

        font-size: 12px;

        top: 4px;
    }
}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .summary-section {
        padding: 35px 15px;
    }

    .summary-section h2 {
        font-size: 25px;
    }

    .summary-section li {
        font-size: 14px;
        padding-left: 35px;
        padding-bottom: 20px;
    }
}

/* =========================================
   WHY THIS UI UX COURSE IS DIFFERENT
========================================= */

.difference-section {
    width: 100%;
    padding: 10px 20px;
    background: #ffffff;
}


.difference-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   SMALL LABEL
========================================= */

.section-label {
    display: block;
    text-align: center;

    font-size: 15px;
    font-weight: 600;

    color: #2f6b5d;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


/* =========================================
   MAIN HEADING
========================================= */

.difference-container h2 {
    text-align: center;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.3;

    color: #244b46;

    margin: 0 0 35px;
}


/* =========================================
   DESCRIPTION
========================================= */

.difference-content {
    max-width: 950px;
    margin: 0 auto 40px;
}


.difference-content p {
    font-size: 17px;
    line-height: 1.9;

    color: #4a5554;

    margin: 0 0 20px;

    text-align: center;
}


.difference-content strong {
    color: #244b46;
    font-weight: 700;
}


.difference-content em {
    color: #2f6b5d;
    font-weight: 600;
}


/* =========================================
   DIFFERENCE LIST
========================================= */

.difference-list {
    list-style: none;

    max-width: 1000px;

    margin: 0 auto;
    padding: 0;
}


/* LIST ITEM */

.difference-list li {
    position: relative;

    width: 100%;
    box-sizing: border-box;

    padding: 0 0 24px 45px;
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #4a5554;

    /* Important for wrapped text */
    text-align: left;
}


/* CHECK ICON */

.difference-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 5px;

    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #2f6b5d;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    border-radius: 50%;
}


/* =========================================
   HOVER EFFECT
========================================= */

.difference-list li:hover {
    color: #244b46;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .difference-section {
        padding: 65px 30px;
    }

    .difference-container h2 {
        font-size: 34px;
    }

    .difference-content p,
    .difference-list li {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .difference-section {
        padding: 55px 20px;
    }


    .section-label {
        font-size: 13px;
        letter-spacing: 1px;
    }


    .difference-container h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }


    .difference-content {
        margin-bottom: 30px;
    }


    .difference-content p {
        font-size: 15px;
        line-height: 1.8;

        /* Better readability on mobile */
        text-align: left;
    }


    .difference-list li {
        font-size: 15px;

        line-height: 1.8;

        padding-left: 38px;
        padding-bottom: 20px;
    }


    .difference-list li::before {
        width: 20px;
        height: 20px;

        font-size: 12px;

        top: 4px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .difference-section {
        padding: 45px 15px;
    }


    .difference-container h2 {
        font-size: 25px;
    }


    .difference-content p {
        font-size: 14px;
    }


    .difference-list li {
        font-size: 14px;

        padding-left: 35px;
        padding-bottom: 18px;
    }

}

/* =========================================
   WIKPOLT CLASSROOM GALLERY SECTION
========================================= */

.wikpolt-classroom-section {
    width: 100%;
    padding: 60px 60px;
    background: #ffffff;
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.wikpolt-gallery-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   SMALL LABEL
========================================= */

.gallery-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #2f6b5d;

    margin-bottom: 15px;
}


.gallery-label span {
    display: inline-block;

    width: 28px;
    height: 2px;

    background: #2f6b5d;
}


/* =========================================
   MAIN HEADING
========================================= */

.wikpolt-gallery-container h2 {
    max-width: 1100px;

    margin: 0 0 18px;

    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;

    color: #244b46;
}


/* =========================================
   DESCRIPTION
========================================= */

.gallery-description {
  

    margin: 0 0 35px;

    font-size: 18px;
    line-height: 1.7;

    color: #566463;
}


/* =========================================
   IMAGE GALLERY
========================================= */

.classroom-gallery {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   IMAGE CONTAINER
========================================= */

.gallery-image {
    width: 100%;
    height: 300px;

    overflow: hidden;

    border-radius: 10px;

    background: #f3f5f4;

    box-shadow: 0 8px 25px rgba(36, 75, 70, 0.10);
}


/* =========================================
   IMAGE
========================================= */

.gallery-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =========================================
   IMAGE HOVER EFFECT
========================================= */

.gallery-image:hover img {
    transform: scale(1.06);
}


/* =========================================
   TABLET / LAPTOP
========================================= */

@media (max-width: 1200px) {

    .wikpolt-classroom-section {
        padding: 55px 50px;
    }


    .wikpolt-gallery-container h2 {
        font-size: 42px;
    }


    .gallery-image {
        height: 270px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .wikpolt-classroom-section {
        padding: 50px 40px;
    }


    .wikpolt-gallery-container h2 {
        font-size: 36px;
    }


    .gallery-description {
        font-size: 17px;
    }


    .classroom-gallery {
        gap: 18px;
    }


    .gallery-image {
        height: 230px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .wikpolt-classroom-section {
        padding: 45px 20px;
    }


    .gallery-label {
        font-size: 14px;
    }


    .wikpolt-gallery-container h2 {
        font-size: 30px;
        line-height: 1.3;
    }


    .gallery-description {
        font-size: 15px;
        line-height: 1.8;

        margin-bottom: 28px;
    }


    .classroom-gallery {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .gallery-image {
        height: 260px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wikpolt-classroom-section {
        padding: 35px 15px;
    }


    .gallery-label {
        gap: 8px;

        font-size: 13px;
    }


    .gallery-label span {
        width: 22px;
    }


    .wikpolt-gallery-container h2 {
        font-size: 26px;
    }


    .gallery-description {
        font-size: 14px;
    }


    .gallery-image {
        height: 220px;

        border-radius: 8px;
    }

}

/* =========================================
   COURSE HIGHLIGHTS SECTION
========================================= */

.course-highlights-section {
    width: 100%;
    padding: 10px 60px;
    background: #ffffff;
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.course-highlights-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   SMALL LABEL
========================================= */

.highlights-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #2f6b5d;

    margin-bottom: 15px;
}


.highlights-label span {
    width: 28px;
    height: 2px;

    background: #2f6b5d;

    display: inline-block;
}


/* =========================================
   HEADING
========================================= */

.course-highlights-container h2 {
    margin: 0 0 35px;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.25;

    color: #244b46;
}


/* =========================================
   TABLE WRAPPER
========================================= */

.course-table-wrapper {
    width: 100%;

    overflow-x: auto;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(36, 75, 70, 0.08);
}


/* =========================================
   TABLE
========================================= */

.course-highlights-table {
    width: 100%;

    border-collapse: collapse;

    background: #ffffff;

    font-size: 16px;
}


/* =========================================
   TABLE ROW
========================================= */

.course-highlights-table tr {
    border-bottom: 1px solid #e3e9e6;
}


.course-highlights-table tr:last-child {
    border-bottom: none;
}


/* =========================================
   LEFT COLUMN
========================================= */

.course-highlights-table th {
    width: 32%;

    padding: 20px 25px;

    text-align: left;

    font-size: 16px;
    font-weight: 700;

    color: #244b46;

    background: #f3f7f5;

    border-right: 1px solid #e3e9e6;

    vertical-align: middle;
}


/* =========================================
   RIGHT COLUMN
========================================= */

.course-highlights-table td {
    padding: 20px 25px;

    text-align: left;

  

    line-height: 1.6;

    vertical-align: middle;
    font-size: 16px;
}


/* =========================================
   TABLE HOVER
========================================= */

.course-highlights-table tr:hover th {
    background: #eaf2ef;
}


.course-highlights-table tr:hover td {
    background: #fafcfb;
}


/* =========================================
   LINKS
========================================= */

.course-highlights-table a {
    color: #2f6b5d;

    font-weight: 700;



    transition: color 0.3s ease;
}


.course-highlights-table a:hover {
    color: #183c36;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .course-highlights-section {
        padding: 50px 40px;
    }


    .course-highlights-container h2 {
        font-size: 36px;
    }


    .course-highlights-table th {
        width: 35%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .course-highlights-section {
        padding: 45px 20px;
    }


    .highlights-label {
        font-size: 14px;
    }


    .course-highlights-container h2 {
        font-size: 30px;

        margin-bottom: 25px;
    }


    .course-highlights-table {
        font-size: 14px;
    }


    .course-highlights-table th,
    .course-highlights-table td {
        padding: 15px;
    }


    .course-highlights-table th {
        width: 38%;

        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .course-highlights-section {
        padding: 35px 15px;
    }


    .highlights-label {
        font-size: 13px;
        gap: 8px;
    }


    .highlights-label span {
        width: 22px;
    }


    .course-highlights-container h2 {
        font-size: 26px;
    }


    .course-highlights-table {
        font-size: 13px;
    }


    .course-highlights-table th,
    .course-highlights-table td {
        padding: 12px 10px;
    }


    .course-highlights-table th {
        width: 40%;
    }

}

/* =========================================
   COMMON PAIN POINTS SECTION
========================================= */

.pain-points-section {
    width: 100%;
    padding: 65px 60px;
    background: #f7f9f8;
    box-sizing: border-box;
    overflow: hidden;
}


.pain-points-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SMALL LABEL
========================================= */

.pain-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #2f6b5d;
    margin-bottom: 14px;

    animation: fadeDown 0.7s ease forwards;
}


.pain-label span {
    width: 30px;
    height: 2px;

    background: #2f6b5d;
    display: inline-block;
}


/* =========================================
   HEADING
========================================= */

.pain-points-container h2 {
    max-width: 850px;

    margin: 0 0 18px;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;

    color: #244b46;

    animation: fadeDown 0.8s ease forwards;
}


/* =========================================
   INTRO
========================================= */

.pain-intro {
    max-width: 850px;

    margin: 0 0 40px;

    font-size: 17px;
    line-height: 1.8;



    animation: fadeUp 0.8s ease forwards;
}


/* =========================================
   PAIN POINTS GRID
========================================= */

.pain-points-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.pain-card {
    position: relative;

    min-height: 120px;

    padding: 28px 28px 25px 55px;

    background: #ffffff;

    border: 1px solid #dfe8e4;

    border-radius: 10px;

    box-shadow: 0 5px 18px rgba(36, 75, 70, 0.06);

    box-sizing: border-box;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    animation: cardAppear 0.7s ease forwards;

    opacity: 0;
}


/* =========================================
   QUOTE ICON
========================================= */

.quote-icon {
    position: absolute;

    top: 22px;
    left: 25px;

    font-family: Georgia, serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1;

    color: #2f6b5d;

    transition: transform 0.35s ease;
}


/* =========================================
   CARD TEXT
========================================= */

.pain-card p {
    margin: 0;

    font-size: 17px;
    font-style: italic;

    line-height: 1.8;
}


/* =========================================
   HOVER EFFECT
========================================= */

.pain-card:hover {
    transform: translateY(-7px);

    border-color: #2f6b5d;

    box-shadow: 0 15px 35px rgba(36, 75, 70, 0.14);
}


.pain-card:hover .quote-icon {
    transform: scale(1.15) rotate(-5deg);
}


/* =========================================
   STAGGER ANIMATION
========================================= */

.pain-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pain-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pain-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pain-card:nth-child(4) {
    animation-delay: 0.4s;
}

.pain-card:nth-child(5) {
    animation-delay: 0.5s;
}

.pain-card:nth-child(6) {
    animation-delay: 0.6s;
}


/* =========================================
   BOTTOM TEXT
========================================= */

.pain-bottom-text {
    margin: 30px 0 0;

    font-size: 17px;
    line-height: 1.7;

    animation: fadeUp 1s ease forwards;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes cardAppear {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1200px) {

    .pain-points-section {
        padding: 60px 50px;
    }


    .pain-points-container h2 {
        font-size: 38px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .pain-points-section {
        padding: 55px 40px;
    }


    .pain-points-container h2 {
        font-size: 34px;
    }


    .pain-intro {
        font-size: 16px;
    }


    .pain-card {
        padding: 25px 22px 22px 48px;
    }


    .pain-card p {
        font-size: 15px;
    }


    .quote-icon {
        left: 20px;
        font-size: 36px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .pain-points-section {
        padding: 45px 20px;
    }


    .pain-label {
        font-size: 14px;
    }


    .pain-points-container h2 {
        font-size: 29px;
        line-height: 1.3;
    }


    .pain-intro {
        font-size: 15px;
        line-height: 1.8;

        margin-bottom: 28px;
    }


    .pain-points-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .pain-card {
        min-height: auto;

        padding: 22px 20px 22px 48px;
    }


    .pain-card p {
        font-size: 15px;
    }


    .quote-icon {
        left: 18px;
        top: 18px;

        font-size: 34px;
    }


    .pain-bottom-text {
        margin-top: 25px;

        font-size: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pain-points-section {
        padding: 35px 15px;
    }


    .pain-label {
        font-size: 13px;
        gap: 8px;
    }


    .pain-label span {
        width: 22px;
    }


    .pain-points-container h2 {
        font-size: 25px;
    }


    .pain-intro,
    .pain-card p,
    .pain-bottom-text {
        font-size: 14px;
    }


    .pain-card {
        padding-left: 43px;
    }


    .quote-icon {
        left: 15px;
        font-size: 30px;
    }

}


/* =========================================
   ACCESSIBILITY
   REDUCE ANIMATION IF USER PREFERS IT
========================================= */

@media (prefers-reduced-motion: reduce) {

    .pain-label,
    .pain-points-container h2,
    .pain-intro,
    .pain-card,
    .pain-bottom-text {
        animation: none;
        opacity: 1;
    }


    .pain-card,
    .quote-icon {
        transition: none;
    }

}

/* =========================================
   WHY LEARN UI UX DESIGN
========================================= */

.why-learn-content {
    max-width: 1000px;
    margin: 0 auto 55px;
    text-align: center;
}


.why-learn-content h2 {
    margin: 0 0 25px;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;

    color: #244b46;
}


.why-learn-content p {
    max-width: 950px;
    margin: 0 auto 18px;

    font-size: 17px;
    line-height: 1.8;



    text-align: center;
}


.why-learn-content strong {
    font-weight: 700;
    color: #244b46;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .why-learn-content {
        margin-bottom: 45px;
    }


    .why-learn-content h2 {
        font-size: 36px;
    }


    .why-learn-content p {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .why-learn-content {
        margin-bottom: 40px;
    }


    .why-learn-content h2 {
        font-size: 29px;
        line-height: 1.3;

        margin-bottom: 20px;
    }


    .why-learn-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-learn-content h2 {
        font-size: 25px;
    }


    .why-learn-content p {
        font-size: 14px;
    }

}

/* =========================================
   WHY WIKPOLT SECTION
========================================= */

.why-wikpolt-section {
    width: 100%;
    padding: 65px 60px;
    background: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.why-wikpolt-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SMALL LABEL
========================================= */

.why-wikpolt-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #2f6b5d;
    margin-bottom: 15px;
}


.why-wikpolt-label span {
    width: 30px;
    height: 2px;
    background: #2f6b5d;
}


/* =========================================
   MAIN HEADING
========================================= */

.why-wikpolt-container > h2 {
    max-width: 1000px;

    margin: 0 0 22px;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;

    color: #244b46;
}


/* =========================================
   INTRODUCTION
========================================= */

.why-wikpolt-intro {
    max-width: 1000px;
    margin-bottom: 35px;
}


.why-wikpolt-intro p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   SUB HEADING
========================================= */

.why-wikpolt-container > h3 {
    margin: 0 0 25px;

    font-size: 24px;
    font-weight: 700;

    color: #244b46;
}


/* =========================================
   FEATURES GRID
========================================= */

.why-wikpolt-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   FEATURE CARD
========================================= */

.why-wikpolt-card {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 28px;

    background: #f7f9f8;

    border: 1px solid #e1e9e5;

    border-radius: 10px;

    box-sizing: border-box;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* =========================================
   NUMBER
========================================= */

.feature-number {
    min-width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2f6b5d;

    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* =========================================
   FEATURE CONTENT
========================================= */

.feature-content {
    flex: 1;
}


.feature-content h4 {
    margin: 0 0 10px;

    font-size: 19px;
    font-weight: 700;

    color: #244b46;

    line-height: 1.4;
}


.feature-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   HOVER EFFECT
========================================= */

.why-wikpolt-card:hover {
    transform: translateY(-6px);

    background: #ffffff;

    box-shadow: 0 15px 35px rgba(36, 75, 70, 0.12);
}


.why-wikpolt-card:hover .feature-number {
    transform: rotate(8deg) scale(1.08);
    background: #244b46;
}


/* =========================================
   SIMPLE ENTRANCE ANIMATION
========================================= */

.why-wikpolt-card {
    animation: wikpoltCardAppear 0.6s ease forwards;
}


.why-wikpolt-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-wikpolt-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-wikpolt-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-wikpolt-card:nth-child(4) {
    animation-delay: 0.4s;
}

.why-wikpolt-card:nth-child(5) {
    animation-delay: 0.5s;
}

.why-wikpolt-card:nth-child(6) {
    animation-delay: 0.6s;
}


@keyframes wikpoltCardAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .why-wikpolt-section {
        padding: 55px 40px;
    }


    .why-wikpolt-container > h2 {
        font-size: 36px;
    }


    .why-wikpolt-intro p {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .why-wikpolt-section {
        padding: 45px 20px;
    }


    .why-wikpolt-label {
        font-size: 14px;
    }


    .why-wikpolt-container > h2 {
        font-size: 29px;
        line-height: 1.3;
    }


    .why-wikpolt-intro {
        margin-bottom: 28px;
    }


    .why-wikpolt-intro p {
        font-size: 15px;
        line-height: 1.8;
    }


    .why-wikpolt-container > h3 {
        font-size: 21px;
    }


    .why-wikpolt-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .why-wikpolt-card {
        padding: 22px;
        gap: 15px;
    }


    .feature-number {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }


    .feature-content h4 {
        font-size: 17px;
    }


    .feature-content p {
        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-wikpolt-section {
        padding: 35px 15px;
    }


    .why-wikpolt-label {
        font-size: 13px;
    }


    .why-wikpolt-label span {
        width: 22px;
    }


    .why-wikpolt-container > h2 {
        font-size: 25px;
    }


    .why-wikpolt-card {
        padding: 18px;
    }


    .feature-number {
        min-width: 36px;
        height: 36px;

        font-size: 12px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .why-wikpolt-card {
        animation: none;
        transition: none;
    }

}

/* =========================================
   CAREER SUPPORT SECTION
========================================= */

.career-support-section {
    width: 100%;
    padding: 70px 60px;

    background: #f7f9f8;

    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.career-support-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   CENTER HEADING AREA
========================================= */

.career-heading-area {
    max-width: 950px;

    margin: 0 auto 50px;

    text-align: center;
}


/* =========================================
   LABEL
========================================= */

.career-support-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 16px;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.5px;

    color: #2f6b5d;
}


.career-support-label span {
    width: 30px;
    height: 2px;

    display: block;

    background: #2f6b5d;
}


/* =========================================
   MAIN HEADING
========================================= */

.career-heading-area h2 {
    margin: 0 0 20px;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.25;

    color: #244b46;
}


/* =========================================
   INTRODUCTION
========================================= */

.career-support-intro {
    max-width: 850px;

    margin: 0 auto;
}


.career-support-intro p {
    margin: 0;

    font-size: 17px;

    line-height: 1.8;


}


.career-support-intro strong {
    color: #244b46;
    font-weight: 700;
}


/* =========================================
   SUPPORT LIST
========================================= */

.career-support-list {
    display: flex;

    flex-direction: column;

    max-width: 1000px;

    margin: 0 auto;

    border-top: 1px solid #d8e3de;
}


/* =========================================
   SUPPORT ITEM
========================================= */

.career-support-item {
    display: flex;

    align-items: center;

    gap: 28px;

    padding: 28px 25px;

    border-bottom: 1px solid #d8e3de;

    box-sizing: border-box;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================
   NUMBER
========================================= */

.career-number {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1.5px solid #2f6b5d;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 700;

    color: #2f6b5d;

    background: transparent;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* =========================================
   CONTENT
========================================= */

.career-content {
    flex: 1;
}


.career-content h3 {
    margin: 0 0 8px;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.4;

    color: #244b46;

    transition: color 0.3s ease;
}


.career-content p {
    margin: 0;

    font-size: 16px;

    line-height: 1.7;


}


/* =========================================
   HOVER EFFECT
========================================= */

.career-support-item:hover {
    background: #ffffff;

    transform: translateX(8px);

    box-shadow: 0 8px 25px rgba(36, 75, 70, 0.07);
}


.career-support-item:hover .career-number {
    background: #2f6b5d;

    color: #ffffff;

    transform: scale(1.08);
}


.career-support-item:hover h3 {
    color: #2f6b5d;
}


/* =========================================
   ANIMATION
========================================= */

.career-support-item {
    opacity: 0;

    animation: careerAppear 0.6s ease forwards;
}


.career-support-item:nth-child(1) {
    animation-delay: 0.1s;
}


.career-support-item:nth-child(2) {
    animation-delay: 0.2s;
}


.career-support-item:nth-child(3) {
    animation-delay: 0.3s;
}


.career-support-item:nth-child(4) {
    animation-delay: 0.4s;
}


.career-support-item:nth-child(5) {
    animation-delay: 0.5s;
}


@keyframes careerAppear {

    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .career-support-section {
        padding: 60px 40px;
    }


    .career-heading-area h2 {
        font-size: 36px;
    }


    .career-support-intro p {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .career-support-section {
        padding: 50px 20px;
    }


    .career-heading-area {
        margin-bottom: 35px;
    }


    .career-support-label {
        font-size: 14px;
    }


    .career-heading-area h2 {
        font-size: 29px;

        line-height: 1.3;
    }


    .career-support-intro p {
        font-size: 15px;
    }


    .career-support-list {
        width: 100%;
    }


    .career-support-item {
        align-items: flex-start;

        gap: 16px;

        padding: 22px 10px;
    }


    .career-number {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }


    .career-content h3 {
        font-size: 19px;
    }


    .career-content p {
        font-size: 14px;
    }


    .career-support-item:hover {
        transform: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .career-support-section {
        padding: 40px 15px;
    }


    .career-heading-area h2 {
        font-size: 25px;
    }


    .career-support-label span {
        width: 20px;
    }


    .career-support-item {
        gap: 13px;

        padding: 20px 5px;
    }


    .career-number {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }


    .career-content h3 {
        font-size: 17px;
    }

}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .career-support-item {
        animation: none;

        opacity: 1;

        transition: none;
    }

}

/* =========================================
   OUR STUDENTS WORK AT
========================================= */

.students-work-section {
    width: 100%;
    padding: 70px 60px;
    background: #ffffff;
    box-sizing: border-box;
}


/* CONTAINER */

.students-work-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.students-work-heading {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}


/* LABEL */

.students-work-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 16px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #2f6b5d;
}


.students-work-label span {
    display: block;

    width: 30px;
    height: 2px;

    background: #2f6b5d;
}


/* MAIN HEADING */

.students-work-heading h2 {
    margin: 0 0 18px;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;

    color: #244b46;
}


/* DESCRIPTION */

.students-work-heading p {
    max-width: 750px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   COMPANY LIST
========================================= */

.company-list {
    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 18px;

    max-width: 1000px;

    margin: 0 auto 45px;
}


/* COMPANY NAME */

.company-name {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 150px;

    padding: 20px 25px;

    background: #f4f8f6;

    border: 1px solid #d8e3de;

    border-radius: 8px;

    font-size: 20px;
    font-weight: 700;

    color: #244b46;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}


/* HOVER */

.company-name:hover {
    background: #2f6b5d;

    color: #ffffff;

    transform: translateY(-6px);

    box-shadow:
        0 12px 25px rgba(47, 107, 93, 0.15);
}


/* =========================================
   PLACEMENT NOTE
========================================= */

.students-placement-note {
    max-width: 900px;

    margin: 0 auto;

    padding: 32px 40px;

    text-align: center;

    background: #f4f8f6;

    border-left: 4px solid #2f6b5d;

    border-radius: 8px;
}


.students-placement-note p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}


.students-placement-note p + p {
    margin-top: 15px;

    font-weight: 600;

    color: #244b46;
}


/* =========================================
   ANIMATION
========================================= */

.company-name {
    animation: companyFadeUp 0.6s ease both;
}


.company-name:nth-child(1) {
    animation-delay: 0.1s;
}

.company-name:nth-child(2) {
    animation-delay: 0.2s;
}

.company-name:nth-child(3) {
    animation-delay: 0.3s;
}

.company-name:nth-child(4) {
    animation-delay: 0.4s;
}

.company-name:nth-child(5) {
    animation-delay: 0.5s;
}

.company-name:nth-child(6) {
    animation-delay: 0.6s;
}


@keyframes companyFadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .students-work-section {
        padding: 60px 40px;
    }

    .students-work-heading h2 {
        font-size: 36px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .students-work-section {
        padding: 50px 20px;
    }


    .students-work-heading h2 {
        font-size: 29px;
    }


    .students-work-heading p {
        font-size: 16px;
    }


    .company-list {
        gap: 12px;
    }


    .company-name {
        width: calc(50% - 6px);

        min-width: auto;

        padding: 16px 10px;

        font-size: 16px;
    }


    .students-placement-note {
        padding: 25px 20px;
    }


    .students-placement-note p {
        font-size: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .students-work-section {
        padding: 40px 15px;
    }


    .students-work-heading h2 {
        font-size: 25px;
    }


    .students-work-label span {
        width: 20px;
    }


    .company-name {
        width: 100%;

        font-size: 17px;
    }

}

/* =========================================
   LEARNING OUTCOMES SECTION
========================================= */

.learning-outcomes-section {
    width: 100%;
    padding: 70px 60px;
    background: #f7f9f8;
    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.learning-outcomes-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   CENTER HEADING
========================================= */

.learning-outcomes-heading {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}


/* =========================================
   LABEL
========================================= */

.learning-outcomes-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 16px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #2f6b5d;
}


.learning-outcomes-label span {
    width: 30px;
    height: 2px;
    display: block;

    background: #2f6b5d;
}


/* =========================================
   HEADING
========================================= */

.learning-outcomes-heading h2 {
    margin: 0 0 20px;

    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;

    color: #244b46;
}


/* =========================================
   DESCRIPTION
========================================= */

.learning-outcomes-heading p {
    max-width: 850px;
    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;

}


/* =========================================
   OUTCOMES GRID
========================================= */

.learning-outcomes-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    max-width: 1000px;
    margin: 0 auto;
}


/* Last item centered */

.learning-outcome-card:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 9px);
    justify-self: center;
}


/* =========================================
   OUTCOME CARD
========================================= */

.learning-outcome-card {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #d8e3de;

    border-radius: 10px;

    box-sizing: border-box;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* =========================================
   CHECK ICON
========================================= */

.outcome-icon {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e3f0eb;

    color: #2f6b5d;

    font-size: 17px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   TEXT
========================================= */

.learning-outcome-card p {
    margin: 4px 0 0;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   HOVER
========================================= */

.learning-outcome-card:hover {
    transform: translateY(-6px);

    border-color: #2f6b5d;

    box-shadow:
        0 15px 35px rgba(36, 75, 70, 0.10);
}


.learning-outcome-card:hover .outcome-icon {
    background: #2f6b5d;

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================
   BUTTON
========================================= */

.learning-outcomes-button {
    display: flex;
    justify-content: center;

    margin-top: 40px;
}


.learning-outcomes-button a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    background: #2f6b5d;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-radius: 6px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.learning-outcomes-button a span {
    font-size: 18px;

    transition: transform 0.3s ease;
}


.learning-outcomes-button a:hover {
    background: #244b46;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(36, 75, 70, 0.18);
}


.learning-outcomes-button a:hover span {
    transform: translateY(3px);
}


/* =========================================
   ENTRY ANIMATION
========================================= */

.learning-outcome-card {
    opacity: 0;
    animation: outcomeAppear 0.6s ease forwards;
}


.learning-outcome-card:nth-child(1) {
    animation-delay: 0.1s;
}

.learning-outcome-card:nth-child(2) {
    animation-delay: 0.2s;
}

.learning-outcome-card:nth-child(3) {
    animation-delay: 0.3s;
}

.learning-outcome-card:nth-child(4) {
    animation-delay: 0.4s;
}

.learning-outcome-card:nth-child(5) {
    animation-delay: 0.5s;
}


@keyframes outcomeAppear {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .learning-outcomes-section {
        padding: 60px 40px;
    }


    .learning-outcomes-heading h2 {
        font-size: 36px;
    }


    .learning-outcomes-heading p {
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .learning-outcomes-section {
        padding: 50px 20px;
    }


    .learning-outcomes-heading {
        margin-bottom: 30px;
    }


    .learning-outcomes-label {
        font-size: 14px;
    }


    .learning-outcomes-heading h2 {
        font-size: 29px;
        line-height: 1.3;
    }


    .learning-outcomes-heading p {
        font-size: 15px;
    }


    .learning-outcomes-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .learning-outcome-card:last-child {
        grid-column: auto;
        width: 100%;
    }


    .learning-outcome-card {
        padding: 20px;
    }


    .learning-outcome-card p {
        font-size: 15px;
    }


    .learning-outcomes-button {
        margin-top: 30px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .learning-outcomes-section {
        padding: 40px 15px;
    }


    .learning-outcomes-label span {
        width: 20px;
    }


    .learning-outcomes-heading h2 {
        font-size: 25px;
    }


    .learning-outcome-card {
        gap: 12px;
        padding: 18px;
    }


    .outcome-icon {
        width: 30px;
        height: 30px;

        font-size: 15px;
    }


    .learning-outcome-card p {
        font-size: 14px;
    }


    .learning-outcomes-button a {
        width: 100%;

        padding: 14px 20px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .learning-outcome-card {
        animation: none;
        opacity: 1;
        transition: none;
    }

}

/* ===================================
   SYLLABUS SECTION - WIKPOLT LIGHT THEME
=================================== */

.syllabus-section {
    width: 100%;
    background: #f7f6f4;
    padding: 80px 20px;
    color: #1f2933;
}


/* ===================================
   MAIN CONTAINER
=================================== */

.syllabus-section > * {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}


/* ===================================
   SECTION TAG
=================================== */

.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #1f6257;

    margin-bottom: 20px;
        justify-content: center;
}


.section-tag span {
    width: 30px;
    height: 2px;

    background: #1f6257;
        justify-content: center;
}


/* ===================================
   MAIN HEADING
=================================== */

.syllabus-section h2 {
    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.15;
    font-weight: 700;

    color: #254b46;

  

    text-align: center;
}


/* ===================================
   INTRO
=================================== */

.syllabus-intro {
    max-width: 780px;

    font-size: 18px;
    line-height: 1.7;



    margin: 0 0 40px;
     max-width: 850px;

    margin:
        0
        auto
        40px;

    text-align: center;
}


/* ===================================
   ACCORDION
=================================== */

.syllabus-accordion {
    width: 100%;

    border-top: 1px solid #d9dedc;
}


/* ===================================
   ACCORDION ITEM
=================================== */

.syllabus-item {
    width: 100%;

    background: transparent;

    border-bottom: 1px solid #d9dedc;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* HOVER */

.syllabus-item:hover {
    background: rgba(31, 98, 87, 0.035);
}


/* ACTIVE */

.syllabus-item.active {
    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(31, 62, 56, 0.05);
}


/* ===================================
   ACCORDION HEADER
=================================== */

.syllabus-header {
    width: 100%;

    display: grid;

    grid-template-columns:
        60px
        1fr
        50px;

    align-items: center;

    padding: 25px 10px;

    border: none;
    background: transparent;

    color: inherit;

    cursor: pointer;

    text-align: left;

    font-family: inherit;

    transition: background 0.3s ease;
}


/* ===================================
   FOCUS
=================================== */

.syllabus-header:focus {
    outline: none;
}


.syllabus-header:focus-visible {
    outline: 2px solid #1f6257;

    outline-offset: -2px;
}


/* ===================================
   MODULE NUMBER
=================================== */

.module-number {
    color: #1f6257;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* ===================================
   MODULE TITLE
=================================== */

.module-title {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;
    font-weight: 700;

    color: #254b46;

    text-align: left;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* ACTIVE TITLE */

.syllabus-item.active .module-title {
    color: #1f6257;
}


/* HOVER TITLE */

.syllabus-item:hover .module-title {
    color: #1f6257;
}


/* ===================================
   PLUS / MINUS ICON
=================================== */

.accordion-icon {
    justify-self: end;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #48635e;

    font-size: 30px;
    font-weight: 300;

    line-height: 1;

    border-radius: 50%;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


/* HOVER ICON */

.syllabus-item:hover .accordion-icon {
    color: #ffffff;

    background: #1f6257;
}


/* ACTIVE ICON */

.syllabus-item.active .accordion-icon {
    color: #ffffff;

    background: #1f6257;
}


/* ===================================
   ACCORDION CONTENT
=================================== */

.syllabus-content {
    width: 100%;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.55s ease,
        opacity 0.35s ease;
}


/* ===================================
   ACTIVE CONTENT
=================================== */

.syllabus-item.active .syllabus-content {
    max-height: 700px;

    opacity: 1;
}


/* ===================================
   INSIDE LIST
=================================== */

.syllabus-content ul {
    width: 100%;

    list-style: none;

    margin: 0;

    padding:
        0
        40px
        30px
        60px;

    text-align: left;
}


/* ===================================
   INSIDE POINTS
=================================== */

.syllabus-content li {
    width: 100%;

    position: relative;

    display: block;

    padding-left: 22px;

    margin: 0 0 13px;

    font-size: 17px;

    line-height: 1.7;



    text-align: left;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* ===================================
   GREEN DASH
=================================== */

.syllabus-content li::before {
    content: "—";

    position: absolute;

    left: 0;
    top: 0;

    color: #1f6257;

    font-weight: 700;
}


/* ===================================
   LIST HOVER
=================================== */

.syllabus-content li:hover {
    color: #254b46;

    transform: translateX(5px);
}


/* ===================================
   LAST ITEM
=================================== */

.syllabus-content li:last-child {
    margin-bottom: 0;
}


/* ===================================
   CONTENT ANIMATION
=================================== */

.syllabus-item.active .syllabus-content ul {
    animation: syllabusFadeUp 0.45s ease forwards;
}


@keyframes syllabusFadeUp {

    from {
        opacity: 0;

        transform: translateY(-8px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .syllabus-section {
        padding: 70px 25px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .syllabus-section {
        padding: 60px 20px;
    }


    /* SECTION TAG */

    .section-tag {
        font-size: 14px;

        margin-bottom: 15px;
    }


    /* HEADING */

    .syllabus-section h2 {
        font-size: 34px;

        line-height: 1.2;
    }


    /* INTRO */

    .syllabus-intro {
        font-size: 16px;

        line-height: 1.65;

        margin-bottom: 30px;
    }


    /* ACCORDION HEADER */

    .syllabus-header {

        grid-template-columns:
            45px
            1fr
            38px;

        padding: 20px 0;
    }


    /* NUMBER */

    .module-number {
        font-size: 14px;
    }


    /* TITLE */

    .module-title {
        font-size: 18px;

        line-height: 1.4;
    }


    /* ICON */

    .accordion-icon {
        width: 32px;

        height: 32px;

        font-size: 25px;
    }


    /* LIST */

    .syllabus-content ul {

        padding:
            0
            10px
            25px
            45px;
    }


    /* POINTS */

    .syllabus-content li {

        padding-left: 18px;

        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 12px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .syllabus-section {
        padding: 50px 16px;
    }


    .syllabus-section h2 {
        font-size: 30px;
    }


    .syllabus-header {

        grid-template-columns:
            38px
            1fr
            32px;
    }


    .module-title {
        font-size: 17px;
    }


    .syllabus-content ul {

        padding-left: 38px;

        padding-right: 5px;
    }

}
/* ===================================
   TOOLS SECTION - WIKPOLT THEME
=================================== */

.tools-section {
    width: 100%;
    padding: 85px 20px;

    background: #f7f6f4;
}


/* ===================================
   CONTAINER
=================================== */

.tools-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.tools-tag {
    justify-content: center;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #1f6257;

    margin-bottom: 18px;
}


.tools-tag span {
    width: 30px;
    height: 2px;

    background: #1f6257;
}


/* ===================================
   HEADING
=================================== */

.tools-section h2 {
    margin: 0 0 18px;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.15;

    color: #254b46;

    letter-spacing: -0.5px;
}


/* ===================================
   INTRO
=================================== */

.tools-intro {
    max-width: 850px;

    margin: 0 auto 50px;

    text-align: center;

    font-size: 18px;
    line-height: 1.7;

}


.tools-intro strong {
    color: #254b46;
}


/* ===================================
   TOOLS GRID
=================================== */

.tools-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


/* ===================================
   TOOL CARD
=================================== */

.tool-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    padding: 32px 30px;

    background: #ffffff;

    border: 1px solid #d9dedc;

    border-radius: 14px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* HOVER */

.tool-card:hover {
    transform: translateY(-6px);

    border-color: rgba(31, 98, 87, 0.35);

    box-shadow:
        0 15px 35px rgba(31, 62, 56, 0.10);
}


/* ===================================
   NUMBER
=================================== */

.tool-number {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1f6257;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


/* NUMBER ANIMATION */

.tool-card:hover .tool-number {
    transform: rotate(8deg) scale(1.08);

    background: #254b46;
}


/* ===================================
   TOOL CONTENT
=================================== */

.tool-content {
    flex: 1;
}


.tool-content h3 {
    margin: 3px 0 10px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 21px;
    font-weight: 700;

    color: #254b46;

    transition: color 0.3s ease;
}


.tool-card:hover h3 {
    color: #1f6257;
}


.tool-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;
}


/* ===================================
   LINK
=================================== */

.tool-content a {
    color: #1f6257;

    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}


.tool-content a:hover {
    color: #254b46;

    border-bottom-color: #254b46;
}


/* ===================================
   LAST CARD
   CENTER IF ALONE
=================================== */

.tool-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;

    max-width: calc(50% - 10px);

    width: 100%;
}


/* ===================================
   ENTRANCE ANIMATION
=================================== */

.tool-card {
    animation: toolFadeUp 0.6s ease both;
}


.tool-card:nth-child(1) {
    animation-delay: 0.05s;
}


.tool-card:nth-child(2) {
    animation-delay: 0.1s;
}


.tool-card:nth-child(3) {
    animation-delay: 0.15s;
}


.tool-card:nth-child(4) {
    animation-delay: 0.2s;
}


.tool-card:nth-child(5) {
    animation-delay: 0.25s;
}


@keyframes toolFadeUp {

    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .tools-section {
        padding: 70px 25px;
    }


    .tool-card:last-child:nth-child(odd) {
        max-width: 100%;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .tools-section {
        padding: 60px 20px;
    }


    /* HEADING */

    .tools-section h2 {
        font-size: 34px;
    }


    /* INTRO */

    .tools-intro {
        font-size: 16px;

        margin-bottom: 35px;
    }


    /* GRID */

    .tools-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* CARD */

    .tool-card {
        padding: 25px 20px;

        gap: 16px;
    }


    /* NUMBER */

    .tool-number {
        width: 46px;
        height: 46px;

        font-size: 14px;
    }


    /* TITLE */

    .tool-content h3 {
        font-size: 19px;
    }


    /* TEXT */

    .tool-content p {
        font-size: 15px;

        line-height: 1.65;
    }


    /* LAST CARD */

    .tool-card:last-child:nth-child(odd) {
        grid-column: auto;

        max-width: 100%;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .tools-section {
        padding: 50px 16px;
    }


    .tools-section h2 {
        font-size: 30px;
    }


    .tool-card {
        padding: 22px 16px;
    }


    .tool-number {
        width: 42px;
        height: 42px;

        font-size: 13px;
    }

}

/* ===================================
   APPLIED LEARNING
   WIKPOLT THEME
=================================== */

.projects-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.projects-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.projects-section .section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
    margin-bottom: 20px;
}

.projects-section .section-tag span {
    width: 30px;
    height: 2px;
    background: #2f665e;
}


/* ===================================
   HEADING & INTRO
   CENTER
=================================== */

.projects-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.projects-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}

.projects-heading p {
    margin: 0;

    font-size: 18px;
    line-height: 1.8;

  
}


/* ===================================
   PROJECT LIST
=================================== */

.projects-list {
    width: 100%;
    border-top: 1px solid #d8e1df;
}


/* ===================================
   PROJECT ITEM
=================================== */

.project-item {
    display: grid;
    grid-template-columns: 70px 1fr;

    align-items: center;
    gap: 25px;

    padding: 28px 20px;

    border-bottom: 1px solid #d8e1df;

    transition: 
        background 0.3s ease,
        padding-left 0.3s ease;
}

.project-item:hover {
    background: #f4f8f7;
    padding-left: 28px;
}


/* ===================================
   NUMBER
=================================== */

.project-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2f665e;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}


/* ===================================
   PROJECT TITLE
=================================== */

.project-item h3 {
    margin: 0;

    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;

    color: #294f4a;
}


/* ===================================
   CASE STUDY SECTION
=================================== */

.case-study-section {
    max-width: 950px;

    margin: 60px auto 0;
    padding: 40px 45px;

    text-align: center;

    background: #f4f8f7;

    border: 1px solid #d8e1df;
    border-radius: 12px;
}

.case-study-section h3 {
    margin: 0 0 15px;

    font-size: 25px;
    line-height: 1.4;
    font-weight: 700;

    color: #294f4a;
}

.case-study-section p {
    margin: 0;

    font-size: 16px;
    line-height: 1.8;

    color: #4d5b5a;
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .projects-section {
        padding: 60px 20px;
    }

    .projects-heading {
        margin-bottom: 40px;
    }

    .projects-heading h2 {
        font-size: 34px;
    }

    .projects-heading p {
        font-size: 16px;
    }

    .project-item {
        grid-template-columns: 55px 1fr;
        gap: 15px;

        padding: 22px 10px;
    }

    .project-item:hover {
        padding-left: 15px;
    }

    .project-number {
        width: 42px;
        height: 42px;

        font-size: 13px;
    }

    .project-item h3 {
        font-size: 17px;
    }

    .case-study-section {
        margin-top: 45px;
        padding: 30px 22px;
    }

    .case-study-section h3 {
        font-size: 21px;
    }

    .case-study-section p {
        font-size: 15px;
    }

}

/* ===================================
   PORTFOLIO SECTION
   WIKPOLT LIGHT THEME
=================================== */

.portfolio-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f6f4;
}


.portfolio-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.portfolio-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.portfolio-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING AREA
=================================== */

.portfolio-heading {
    max-width: 950px;
    margin: 0 auto;

    text-align: center;
}


.portfolio-heading h2 {
    margin: 0 0 22px;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;

    color: #294f4a;
}


/* ===================================
   MAIN HIGHLIGHT TEXT
=================================== */

.portfolio-main-text {
    max-width: 850px;
    margin: 0 auto 45px;

    font-size: 19px;
    line-height: 1.7;

    color: #4d5b5a;
}


.portfolio-main-text strong {
    color: #294f4a;
}


.portfolio-main-text em {
    color: #2f665e;
    font-weight: 600;
}


/* ===================================
   DESCRIPTION
=================================== */

.portfolio-description {
    max-width: 850px;
    margin: 0 auto 35px;
}


.portfolio-description p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;


    text-align: center;
}


/* ===================================
   PORTFOLIO POINTS
=================================== */

.portfolio-points {
    max-width: 850px;

    margin: 0 auto;

    border-top: 1px solid #d8e1df;
}


/* ===================================
   POINT
=================================== */

.portfolio-point {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 20px 10px;

    border-bottom: 1px solid #d8e1df;

    transition:
        background 0.3s ease,
        padding-left 0.3s ease;
}


.portfolio-point:hover {
    background: #ffffff;

    padding-left: 18px;
}


/* ===================================
   GREEN LINE
=================================== */

.point-line {
    width: 22px;
    height: 2px;

    min-width: 22px;

    margin-top: 13px;

    background: #2f665e;

    transition:
        width 0.3s ease;
}


.portfolio-point:hover .point-line {
    width: 32px;
}


/* ===================================
   POINT TEXT
=================================== */

.portfolio-point p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;

    font-weight: 500;

}


/* ===================================
   BOTTOM TEXT
=================================== */

.portfolio-bottom {
    max-width: 900px;

    margin: 55px auto 0;

    padding: 35px 40px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #d8e1df;

    border-radius: 12px;

    position: relative;

    overflow: hidden;
}


/* TOP ACCENT */

.portfolio-bottom::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 70px;
    height: 3px;

    background: #2f665e;
}


.portfolio-bottom p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

}


/* ===================================
   HOVER EFFECT
=================================== */

.portfolio-bottom {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.portfolio-bottom:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(33, 75, 69, 0.08);
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .portfolio-section {
        padding: 60px 20px;
    }


    .portfolio-heading h2 {
        font-size: 34px;
    }


    .portfolio-main-text {
        font-size: 17px;

        margin-bottom: 35px;
    }


    .portfolio-description p {
        font-size: 16px;
    }


    .portfolio-point {
        gap: 14px;

        padding: 18px 5px;
    }


    .portfolio-point:hover {
        padding-left: 10px;
    }


    .portfolio-point p {
        font-size: 16px;
    }


    .point-line {
        width: 18px;
        min-width: 18px;
    }


    .portfolio-bottom {
        margin-top: 40px;

        padding: 30px 22px;
    }


    .portfolio-bottom p {
        font-size: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .portfolio-section {
        padding: 50px 16px;
    }


    .portfolio-heading h2 {
        font-size: 30px;
    }


    .portfolio-tag {
        font-size: 14px;
    }


    .portfolio-main-text {
        font-size: 16px;
    }


    .portfolio-description p {
        font-size: 15px;
    }


    .portfolio-point p {
        font-size: 15px;
    }


    .portfolio-bottom p {
        font-size: 15px;
    }

}

/* ===================================
   CERTIFICATION SECTION
=================================== */

.certification-section {
    width: 100%;
    padding: 15px 20px;
    background: #f7f6f4;
    overflow: hidden;
    box-sizing: border-box;
}


/* ===================================
   CONTAINER
=================================== */

.certification-container {
    max-width: 1220px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 70px;
}


/* ===================================
   LEFT CONTENT
=================================== */

.certification-content {
    max-width: 580px;
}


/* ===================================
   SECTION TAG
=================================== */

.certification-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.certification-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.certification-content h2 {
    margin: 0 0 25px;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;

    text-align: left;

    color: #294f4a;
}


/* ===================================
   PARAGRAPH
=================================== */

.certification-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #5f6965;
}


.certification-content b {
    color: #2f665e;
    font-weight: 700;
}


/* ===================================
   RIGHT IMAGE AREA
=================================== */

.certification-image {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* ===================================
   SLIDER CONTAINER
=================================== */

.certificate-slider-container {
    width: 100%;
    max-width: 400px;
}


/* ===================================
   SLIDER
=================================== */

.certificate-slider {
    width: 100%;

    display: flex;

    overflow: hidden;

    scroll-behavior: smooth;

    border-radius: 14px;
}


/* ===================================
   EACH SLIDE
=================================== */

.certificate-slide {
    flex: 0 0 100%;
    width: 100%;
}


/* ===================================
   IMAGE BOX
=================================== */

.certificate-image-box {
    width: 100%;

    padding: 12px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #d8e1df;

    border-radius: 14px;

    box-shadow:
        0 20px 50px rgba(33, 75, 69, 0.10);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.certificate-image-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(33, 75, 69, 0.16);
}


/* ===================================
   IMAGE
=================================== */

.certificate-image-box img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 8px;
}


/* ===================================
   PREVIOUS / NEXT CONTROLS
=================================== */

.certificate-controls {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 22px;
}


/* ===================================
   BUTTON
=================================== */

.certificate-btn {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    border: 1px solid #d8e1df;

    background: #ffffff;

    color: #294f4a;

    font-size: 22px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;

    box-shadow:
        0 6px 18px rgba(33, 75, 69, 0.08);
}


.certificate-btn:hover {
    background: #2f665e;

    color: #ffffff;

    border-color: #2f665e;

    transform: translateY(-2px);
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .certification-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .certification-content {
        max-width: 700px;
    }


    .certificate-slider-container {
        max-width: 400px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .certification-section {
        padding: 60px 20px;
    }


    .certification-container {
        gap: 35px;
    }


    .certification-content h2 {
        font-size: 36px;
    }


    .certification-content p {
        font-size: 16px;
        line-height: 1.75;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .certification-section {
        padding: 50px 16px;
    }


    .certification-content h2 {
        font-size: 30px;
    }


    .certificate-image-box {
        padding: 8px;
    }


    .certificate-btn {
        width: 42px;
        height: 42px;

        font-size: 19px;
    }

}
/* ===================================
   FLEXIBLE LEARNING SECTION
=================================== */

.learning-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f6f4;
}

.learning-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.learning-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}

.learning-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.learning-heading {
    max-width: 850px;
    margin: 0 auto 50px;

    text-align: center;
}

.learning-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}

.learning-heading p {
    margin: 0;

    font-size: 18px;
    line-height: 1.8;
}


/* ===================================
   LEARNING OPTIONS
=================================== */

.learning-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    max-width: 950px;
    margin: 0 auto 35px;
}


/* ===================================
   OPTION CARD
=================================== */

.learning-option {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #d8e1df;
    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.learning-option:hover {
    transform: translateY(-5px);

    border-color: #2f665e;

    box-shadow:
        0 15px 35px rgba(33, 75, 69, 0.10);
}


/* ===================================
   NUMBER
=================================== */

.learning-number {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2f665e;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.learning-option:hover .learning-number {
    transform: rotate(8deg) scale(1.08);
    background: #294f4a;
}


/* ===================================
   OPTION TITLE
=================================== */

.learning-option h3 {
    margin: 0;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   DESCRIPTION
=================================== */

.learning-description {
    max-width: 950px;

    margin: 0 auto 45px;
    padding: 35px 40px;

    background: #ffffff;

    border-left: 4px solid #2f665e;

    border-radius: 10px;
}

.learning-description p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

}

.learning-description strong {
    color: #294f4a;
    font-weight: 700;
}


/* ===================================
   TABLE
=================================== */

.learning-table-wrapper {
    width: 100%;

    overflow-x: auto;

    border: 1px solid #d8e1df;
    border-radius: 12px;

    background: #ffffff;
}


.learning-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 650px;
}


/* TABLE HEADER */

.learning-table thead {
    background: #2f665e;
}

.learning-table th {
    padding: 18px 25px;

    text-align: left;

    font-size: 16px;
    font-weight: 600;

    color: #ffffff;
}


/* TABLE BODY */

.learning-table td {
    padding: 22px 25px;

    font-size: 16px;
    line-height: 1.6;

 

    border-bottom: 1px solid #d8e1df;
}

.learning-table tbody tr:last-child td {
    border-bottom: none;
}


/* FIRST COLUMN */

.learning-table td:first-child {
    width: 35%;

    font-weight: 700;

    color: #294f4a;
}


/* ROW HOVER */

.learning-table tbody tr {
    transition: background 0.3s ease;
}

.learning-table tbody tr:hover {
    background: #f4f8f7;
}


/* ===================================
   TABLET / MOBILE
=================================== */

@media (max-width: 768px) {

    .learning-section {
        padding: 60px 20px;
    }

    .learning-heading {
        margin-bottom: 35px;
    }

    .learning-heading h2 {
        font-size: 34px;
    }

    .learning-heading p {
        font-size: 16px;
    }

    .learning-options {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .learning-option {
        padding: 25px 20px;
    }

    .learning-option h3 {
        font-size: 19px;
    }

    .learning-description {
        padding: 28px 22px;

        margin-bottom: 35px;
    }

    .learning-description p {
        font-size: 16px;
    }

    .learning-table th,
    .learning-table td {
        padding: 18px 20px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .learning-section {
        padding: 50px 16px;
    }

    .learning-heading h2 {
        font-size: 30px;
    }

    .learning-option {
        gap: 15px;
    }

    .learning-number {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 13px;
    }

    .learning-description p {
        font-size: 15px;
    }

}

/* ===================================
   WHO SHOULD JOIN SECTION
   WIKPOLT THEME
=================================== */

.who-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}


.who-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.who-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.who-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.who-heading {
    max-width: 850px;
    margin: 0 auto 50px;

    text-align: center;
}


.who-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


.who-heading p {
    margin: 0;

    font-size: 18px;
    line-height: 1.8;
}


/* ===================================
   LEARNER GRID
=================================== */

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* ===================================
   CARD
=================================== */

.who-card {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    background: #f7f9f8;

    border: 1px solid #d8e1df;
    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.who-card:hover {
    transform: translateY(-5px);

    background: #ffffff;

    border-color: #2f665e;

    box-shadow:
        0 15px 35px rgba(33, 75, 69, 0.10);
}


/* ===================================
   NUMBER
=================================== */

.who-number {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2f665e;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.who-card:hover .who-number {
    transform: rotate(8deg) scale(1.08);

    background: #294f4a;
}


/* ===================================
   CARD TITLE
=================================== */

.who-card h3 {
    margin: 3px 0 8px;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   CARD TEXT
=================================== */

.who-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

}


/* ===================================
   LAST CARD CENTER
=================================== */

.who-card:last-child {
    grid-column: 1 / -1;

    width: 100%;
    max-width: 600px;

    margin: 0 auto;
}


/* ===================================
   BOTTOM TEXT
=================================== */

.who-bottom {
    max-width: 900px;

    margin: 50px auto 0;
    padding: 35px 40px;

    text-align: center;

    background: #f4f8f7;

    border: 1px solid #d8e1df;

    border-radius: 12px;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.who-bottom::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 70px;
    height: 3px;

    background: #2f665e;
}


.who-bottom:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(33, 75, 69, 0.08);
}


.who-bottom p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .who-section {
        padding: 60px 20px;
    }


    .who-heading {
        margin-bottom: 35px;
    }


    .who-heading h2 {
        font-size: 34px;
    }


    .who-heading p {
        font-size: 16px;
    }


    .who-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .who-card {
        padding: 25px 20px;

        gap: 16px;
    }


    .who-card:last-child {
        grid-column: auto;

        max-width: 100%;
    }


    .who-number {
        width: 44px;
        height: 44px;

        min-width: 44px;

        font-size: 13px;
    }


    .who-card h3 {
        font-size: 19px;
    }


    .who-card p {
        font-size: 15px;
    }


    .who-bottom {
        margin-top: 40px;

        padding: 30px 22px;
    }


    .who-bottom p {
        font-size: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .who-section {
        padding: 50px 16px;
    }


    .who-heading h2 {
        font-size: 30px;
    }


    .who-tag {
        font-size: 14px;
    }


    .who-card {
        padding: 22px 16px;
    }


    .who-card h3 {
        font-size: 18px;
    }


    .who-bottom p {
        font-size: 15px;
    }

}

/* ===================================
   ELIGIBILITY SECTION
=================================== */

.eligibility-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f6f4;
}


.eligibility-container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* ===================================
   CONTENT BLOCK
=================================== */

.eligibility-block {
    padding: 42px 38px;

    background: #ffffff;

    border: 1px solid #d8e1df;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.eligibility-block:hover {
    transform: translateY(-6px);

    border-color: #2f665e;

    box-shadow:
        0 15px 35px rgba(33, 75, 69, 0.10);
}


/* ===================================
   LABEL
=================================== */

.eligibility-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.5px;

    color: #2f665e;
}


.eligibility-label span {
    width: 28px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.eligibility-block h3 {
    margin: 0 0 20px;

    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   TEXT
=================================== */

.eligibility-block p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.8;
}


.eligibility-block p:last-child {
    margin-bottom: 0;
}


.eligibility-block strong {
    color: #294f4a;
    font-weight: 700;
}


/* ===================================
   CODING BLOCK ACCENT
=================================== */

.coding-block {
    position: relative;
    overflow: hidden;
}


.coding-block::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #2f665e;
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .eligibility-section {
        padding: 60px 20px;
    }


    .eligibility-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .eligibility-block {
        padding: 30px 25px;
    }


    .eligibility-block h3 {
        font-size: 23px;
    }


    .eligibility-block p {
        font-size: 15px;
        line-height: 1.75;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .eligibility-section {
        padding: 50px 16px;
    }


    .eligibility-block {
        padding: 26px 20px;
    }


    .eligibility-block h3 {
        font-size: 21px;
    }

}
/* ===================================
   UI VS UX SECTION
   WIKPOLT THEME
=================================== */

.uiux-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}


.uiux-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.uiux-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.uiux-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.uiux-heading {
    max-width: 900px;
    margin: 0 auto 50px;

    text-align: center;
}


.uiux-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


.uiux-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}


.uiux-heading strong {
    color: #294f4a;
}


.uiux-heading a {
    color: #2f665e;
    font-weight: 600;

    text-decoration: none;

    border-bottom: 1px solid #2f665e;

    transition: color 0.3s ease;
}


.uiux-heading a:hover {
    color: #294f4a;
}


/* ===================================
   UI UX GRID
=================================== */

.uiux-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* ===================================
   CARD
=================================== */

.uiux-card {
    position: relative;

    padding: 42px 38px;

    background: #f7f9f8;

    border: 1px solid #d8e1df;
    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.uiux-card:hover {
    transform: translateY(-7px);

    background: #ffffff;

    border-color: #2f665e;

    box-shadow:
        0 18px 40px rgba(33, 75, 69, 0.10);
}


/* ===================================
   UI / UX LABEL
=================================== */

.uiux-label {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background: #2f665e;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.uiux-card:hover .uiux-label {
    transform: rotate(8deg) scale(1.08);

    background: #294f4a;
}


/* ===================================
   CARD HEADING
=================================== */

.uiux-card h3 {
    margin: 0 0 15px;

    font-size: 25px;
    line-height: 1.4;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   CARD TEXT
=================================== */

.uiux-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.8;

}


/* ===================================
   BOTTOM CONTENT
=================================== */

.uiux-bottom {
    max-width: 950px;

    margin: 55px auto 0;
    padding: 38px 45px;

    text-align: center;

    background: #f4f8f7;

    border: 1px solid #d8e1df;
    border-radius: 14px;

    position: relative;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* TOP GREEN ACCENT */

.uiux-bottom::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 70px;
    height: 3px;

    transform: translateX(-50%);

    background: #2f665e;

    border-radius: 0 0 3px 3px;
}


.uiux-bottom:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(33, 75, 69, 0.08);
}


.uiux-bottom p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;


}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .uiux-section {
        padding: 60px 20px;
    }


    .uiux-heading {
        margin-bottom: 35px;
    }


    .uiux-heading h2 {
        font-size: 34px;
    }


    .uiux-heading p {
        font-size: 16px;
    }


    .uiux-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .uiux-card {
        padding: 32px 25px;
    }


    .uiux-card h3 {
        font-size: 22px;
    }


    .uiux-card p {
        font-size: 15px;
    }


    .uiux-bottom {
        margin-top: 40px;
        padding: 30px 25px;
    }


    .uiux-bottom p {
        font-size: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .uiux-section {
        padding: 50px 16px;
    }


    .uiux-heading h2 {
        font-size: 30px;
    }


    .uiux-card {
        padding: 28px 20px;
    }


    .uiux-label {
        width: 50px;
        height: 50px;

        font-size: 16px;
    }


    .uiux-card h3 {
        font-size: 20px;
    }


    .uiux-bottom {
        padding: 28px 20px;
    }


    .uiux-bottom p {
        font-size: 15px;
    }

}

/* ===================================
   INVESTMENT SECTION
   WIKPOLT THEME
=================================== */

.investment-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f6f4;
}


.investment-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.investment-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.investment-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.investment-heading {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}


.investment-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


.investment-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;


}


.investment-heading strong {
    color: #294f4a;
    font-weight: 700;
}


/* ===================================
   CTA BUTTON
=================================== */

.investment-button-wrapper {
    display: flex;
    justify-content: center;

    margin: 32px 0 55px;
}


.investment-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 28px;

    background: #2f665e;
    color: #ffffff;

    text-decoration: none;

    border-radius: 8px;

    font-size: 16px;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.investment-button span {
    font-size: 21px;

    transition: transform 0.3s ease;
}


.investment-button:hover {
    background: #294f4a;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(33, 75, 69, 0.18);
}


.investment-button:hover span {
    transform: translateX(5px);
}


/* ===================================
   COURSE VALUE AREA
=================================== */

.investment-value {
    padding: 45px;

    background: #ffffff;

    border: 1px solid #d8e1df;
    border-radius: 14px;

    box-shadow:
        0 10px 35px rgba(33, 75, 69, 0.05);
}


/* ===================================
   VALUE HEADING
=================================== */

.investment-value-heading {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;
}


.investment-value-heading span {
    width: 35px;
    height: 2px;

    background: #2f665e;
}


.investment-value-heading h3 {
    margin: 0;

    font-size: 25px;
    line-height: 1.4;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   GRID
=================================== */

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px 20px;
}


/* ===================================
   VALUE ITEM
=================================== */

.investment-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 18px 20px;

    background: #f7f9f8;

    border: 1px solid #e0e8e5;
    border-radius: 10px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.investment-item:hover {
    transform: translateY(-3px);

    background: #ffffff;

    border-color: #2f665e;
}


/* ===================================
   TICK
=================================== */

.investment-tick {
    width: 25px;
    height: 25px;

    min-width: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #2f665e;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}


/* ===================================
   ITEM TEXT
=================================== */

.investment-item p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .investment-section {
        padding: 60px 20px;
    }


    .investment-heading h2 {
        font-size: 34px;
    }


    .investment-heading p {
        font-size: 16px;
    }


    .investment-button-wrapper {
        margin: 28px 0 40px;
    }


    .investment-value {
        padding: 30px 25px;
    }


    .investment-value-heading {
        margin-bottom: 25px;
    }


    .investment-value-heading h3 {
        font-size: 21px;
    }


    .investment-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .investment-item {
        padding: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .investment-section {
        padding: 50px 16px;
    }


    .investment-heading h2 {
        font-size: 30px;
    }


    .investment-button {
        width: 100%;

        justify-content: center;

        padding: 15px 20px;
    }


    .investment-value {
        padding: 25px 18px;
    }


    .investment-value-heading {
        align-items: flex-start;
    }


    .investment-value-heading h3 {
        font-size: 19px;
    }


    .investment-item p {
        font-size: 15px;
    }

}

/* ===================================
   LEARNING JOURNEY SECTION
   WIKPOLT THEME
=================================== */

.journey-section {
    width: 100%;
    padding: 85px 20px;
    background: #ffffff;
}

.journey-container {
    max-width: 1100px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.journey-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}

.journey-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.journey-heading {
    text-align: center;
    margin-bottom: 55px;
}

.journey-heading h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   JOURNEY LIST
=================================== */

.journey-list {
    position: relative;

    max-width: 850px;
    margin: 0 auto;
}


/* VERTICAL LINE */

.journey-list::before {
    content: "";

    position: absolute;

    top: 25px;
    bottom: 25px;
    left: 28px;

    width: 1px;

    background: #d8e1df;
}


/* ===================================
   JOURNEY ITEM
=================================== */

.journey-item {
    position: relative;

    display: grid;
    grid-template-columns: 58px 1fr;

    gap: 28px;

    padding-bottom: 38px;
}


.journey-item:last-child {
    padding-bottom: 0;
}


/* ===================================
   NUMBER
=================================== */

.journey-number {
    width: 56px;
    height: 56px;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #2f665e;
    border-radius: 50%;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.journey-number span {
    font-size: 14px;
    font-weight: 700;

    color: #2f665e;

    transition: color 0.3s ease;
}


/* ===================================
   CONTENT
=================================== */

.journey-content {
    padding-top: 7px;
}


.journey-content h3 {
    margin: 0 0 8px;

    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;

    color: #294f4a;

    transition: color 0.3s ease;
}


.journey-content p {
    max-width: 650px;

    margin: 0;

    font-size: 16px;
    line-height: 1.75;

}


/* ===================================
   HOVER ANIMATION
=================================== */

.journey-item:hover .journey-number {
    background: #2f665e;

    transform: scale(1.08);
}


.journey-item:hover .journey-number span {
    color: #ffffff;
}


.journey-item:hover .journey-content h3 {
    color: #2f665e;
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .journey-section {
        padding: 60px 20px;
    }


    .journey-heading {
        margin-bottom: 40px;
    }


    .journey-heading h2 {
        font-size: 34px;
    }


    .journey-list::before {
        left: 23px;
    }


    .journey-item {
        grid-template-columns: 48px 1fr;

        gap: 18px;

        padding-bottom: 32px;
    }


    .journey-number {
        width: 46px;
        height: 46px;
    }


    .journey-number span {
        font-size: 12px;
    }


    .journey-content {
        padding-top: 2px;
    }


    .journey-content h3 {
        font-size: 19px;
    }


    .journey-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .journey-section {
        padding: 50px 16px;
    }


    .journey-heading h2 {
        font-size: 30px;
    }


    .journey-item {
        gap: 15px;
    }


    .journey-content h3 {
        font-size: 18px;
    }

}

/* ===================================
   CAREER SUPPORT SECTION
=================================== */

.career-support-section {
    width: 100%;
    padding: 80px 20px;
    background: #f7f6f4;
}


.career-support-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.career-support-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.career-support-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.career-support-heading {
    max-width: 850px;
    margin: 0 auto 50px;

    text-align: center;
}


.career-support-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


.career-support-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #52605e;
}


/* ===================================
   CARD GRID
=================================== */

.career-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


/* ===================================
   CARD
=================================== */

.career-support-card {
    position: relative;

    padding: 35px 32px;

    background: #ffffff;

    border: 1px solid #d8e1df;
    border-radius: 14px;

    overflow: hidden;
    height: 150px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* TOP ACCENT */

.career-support-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #2f665e;

    transition: width 0.4s ease;
}


.career-support-card:hover {
    transform: translateY(-7px);

    border-color: #2f665e;

    box-shadow:
        0 18px 40px rgba(33, 75, 69, 0.10);
}


.career-support-card:hover::before {
    width: 100%;
}


/* ===================================
   NUMBER
=================================== */

.career-support-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #f4f8f7;

    border: 1px solid #2f665e;

    color: #2f665e;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.career-support-card:hover .career-support-number {
    background: #2f665e;

    color: #ffffff;

    transform: rotate(8deg) scale(1.08);
}


/* ===================================
   CARD TITLE
=================================== */

.career-support-card h3 {
    margin: 0 0 12px;

    font-size: 23px;
    line-height: 1.4;
    font-weight: 700;

    color: #294f4a;

    transition: color 0.3s ease;
}


.career-support-card:hover h3 {
    color: #2f665e;
}


/* ===================================
   CARD TEXT
=================================== */

.career-support-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.75;

    color: #52605e;
}


/* ===================================
   BOTTOM CONTENT
=================================== */

.career-support-bottom {
    max-width: 950px;

    margin: 50px auto 0;
    padding: 35px 40px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #d8e1df;
    border-radius: 14px;

    position: relative;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* TOP ACCENT */

.career-support-bottom::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 70px;
    height: 3px;

    transform: translateX(-50%);

    background: #2f665e;

    border-radius: 0 0 4px 4px;
}


.career-support-bottom:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(33, 75, 69, 0.08);
}


.career-support-bottom p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #4d5b5a;
}


/* ===================================
   TABLET / MOBILE
=================================== */

@media (max-width: 768px) {

    .career-support-section {
        padding: 60px 20px;
    }


    .career-support-heading {
        margin-bottom: 35px;
    }


    .career-support-heading h2 {
        font-size: 34px;
    }


    .career-support-heading p {
        font-size: 16px;
    }


    .career-support-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .career-support-card {
        padding: 28px 25px;
    }


    .career-support-card h3 {
        font-size: 21px;
    }


    .career-support-card p {
        font-size: 15px;
    }


    .career-support-bottom {
        margin-top: 40px;
        padding: 30px 22px;
    }


    .career-support-bottom p {
        font-size: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .career-support-section {
        padding: 50px 16px;
    }


    .career-support-heading h2 {
        font-size: 30px;
    }


    .career-support-card {
        padding: 25px 20px;
    }


    .career-support-number {
        width: 44px;
        height: 44px;

        margin-bottom: 18px;
    }


    .career-support-card h3 {
        font-size: 19px;
    }


    .career-support-bottom {
        padding: 28px 20px;
    }


    .career-support-bottom p {
        font-size: 15px;
    }

}
/* ===================================
   REAL COMPARISON SECTION
   WIKPOLT THEME
=================================== */

.comparison-section {
    width: 100%;
    padding: 85px 20px;
    background: #ffffff;
}


.comparison-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.comparison-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.comparison-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.comparison-heading {
    max-width: 950px;
    margin: 0 auto 55px;

    text-align: center;
}


.comparison-heading h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   TWO COLUMN CONTENT
=================================== */

.comparison-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 60px;

    align-items: start;

    max-width: 1100px;
    margin: 0 auto;
}


/* ===================================
   LEFT INTRO
=================================== */

.comparison-intro {
    padding-top: 15px;
}


.comparison-intro p {
    margin: 0;

    font-size: 21px;
    line-height: 1.7;
    font-weight: 500;

    color: #294f4a;
}


/* ===================================
   RIGHT LIST
=================================== */

.comparison-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* ===================================
   LIST ITEM
=================================== */

.comparison-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 18px 20px;

    background: #f7f9f8;

    border: 1px solid #dce6e3;
    border-radius: 10px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.comparison-item:hover {
    background: #ffffff;

    border-color: #2f665e;

    transform: translateX(7px);

    box-shadow:
        0 10px 25px rgba(33, 75, 69, 0.08);
}


/* ===================================
   TICK ICON
=================================== */

.comparison-tick {
    width: 25px;
    height: 25px;

    min-width: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    background: #2f665e;

    border-radius: 50%;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease;
}


.comparison-item:hover .comparison-tick {
    transform: scale(1.12);
}


/* ===================================
   LIST TEXT
=================================== */

.comparison-item p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: #52605e;
}


/* ===================================
   BOTTOM CONTENT
=================================== */

.comparison-bottom {
    max-width: 1000px;

    margin: 60px auto 0;
    padding: 35px 45px;

    position: relative;

    text-align: center;

    background: #f7f9f8;

    border-top: 3px solid #2f665e;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.comparison-bottom:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(33, 75, 69, 0.08);
}


.comparison-bottom p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

  
}


.comparison-bottom strong {
    color: #294f4a;
    font-weight: 700;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .comparison-content {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .comparison-intro {
        padding-top: 0;

        text-align: center;
    }


    .comparison-intro p {
        max-width: 700px;

        margin: 0 auto;

        font-size: 19px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .comparison-section {
        padding: 60px 20px;
    }


    .comparison-heading {
        margin-bottom: 40px;
    }


    .comparison-heading h2 {
        font-size: 34px;
    }


    .comparison-item {
        padding: 16px;
    }


    .comparison-item p {
        font-size: 15px;
    }


    .comparison-bottom {
        margin-top: 40px;

        padding: 28px 22px;
    }


    .comparison-bottom p {
        font-size: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .comparison-section {
        padding: 50px 16px;
    }


    .comparison-heading h2 {
        font-size: 30px;
    }


    .comparison-intro p {
        font-size: 18px;
    }


    .comparison-list {
        gap: 12px;
    }


    .comparison-item {
        gap: 12px;
    }


    .comparison-bottom {
        padding: 25px 18px;
    }


    .comparison-bottom p {
        font-size: 15px;
    }

}

/* ===================================
   LOCAL ADVANTAGE SECTION
   WIKPOLT THEME
=================================== */

.local-advantage-section {
    width: 100%;
    padding: 85px 20px;
    background: #f7f6f4;
}


.local-advantage-container {
    max-width: 1220px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 70px;
}


/* ===================================
   LEFT CONTENT
=================================== */

.local-advantage-content {
    width: 100%;
}


/* ===================================
   SECTION TAG
=================================== */

.local-advantage-tag {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.local-advantage-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.local-advantage-content h2 {
    margin: 0 0 24px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   PARAGRAPH
=================================== */

.local-advantage-content p {
    margin: 0 0 20px;

    font-size: 17px;
    line-height: 1.8;

    color: #52605e;
}


.local-advantage-content p:last-child {
    margin-bottom: 0;
}


.local-advantage-content strong {
    color: #294f4a;
    font-weight: 700;
}


/* ===================================
   IMAGE
=================================== */

.local-advantage-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid #d8e1df;

    background: #ffffff;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* IMAGE */

.local-advantage-image img {
    display: block;

    width: 100%;
    height: 480px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


/* ===================================
   GREEN ACCENT
=================================== */

.local-advantage-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 80px;
    height: 4px;

    z-index: 2;

    background: #2f665e;

    transition:
        width 0.4s ease;
}


/* ===================================
   IMAGE HOVER
=================================== */

.local-advantage-image:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(33, 75, 69, 0.12);
}


.local-advantage-image:hover img {
    transform: scale(1.05);
}


.local-advantage-image:hover::before {
    width: 100%;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .local-advantage-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .local-advantage-image {
        max-width: 700px;

        margin: 0 auto;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .local-advantage-section {
        padding: 60px 20px;
    }


    .local-advantage-container {
        gap: 35px;
    }


    .local-advantage-content h2 {
        font-size: 34px;
    }


    .local-advantage-content p {
        font-size: 16px;
        line-height: 1.75;
    }


    .local-advantage-image img {
        height: 380px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .local-advantage-section {
        padding: 50px 16px;
    }


    .local-advantage-content h2 {
        font-size: 30px;
    }


    .local-advantage-content p {
        font-size: 15px;
    }


    .local-advantage-image {
        border-radius: 10px;
    }


    .local-advantage-image img {
        height: 300px;
    }

}

/* ===================================
   CAREER OPPORTUNITIES SECTION
   WIKPOLT THEME
=================================== */

.career-opportunities-section {
    width: 100%;
    padding: 85px 20px;
    background: #ffffff;
}


.career-opportunities-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.career-opportunities-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.career-opportunities-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.career-opportunities-heading {
    max-width: 850px;
    margin: 0 auto 50px;

    text-align: center;
}


.career-opportunities-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


.career-opportunities-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #52605e;
}


/* ===================================
   TABLE WRAPPER
=================================== */

.career-table-wrapper {
    width: 100%;

    overflow-x: auto;

    background: #ffffff;

    border: 1px solid #d8e1df;
    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(33, 75, 69, 0.06);
}


/* ===================================
   TABLE
=================================== */

.career-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 650px;
}


/* ===================================
   TABLE HEADER
=================================== */

.career-table thead {
    background: #2f665e;
}


.career-table th {
    padding: 20px 28px;

    text-align: left;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 0.3px;
}


.career-table th:first-child {
    width: 42%;
}


/* ===================================
   TABLE BODY
=================================== */

.career-table td {
    padding: 20px 28px;

    border-bottom: 1px solid #e2e9e7;

    font-size: 16px;
    line-height: 1.6;

    color: #52605e;

    transition:
        background 0.3s ease;
}


/* JOB ROLE */

.career-table td:first-child {
    font-size: 17px;
    font-weight: 700;

    color: #294f4a;
}


/* LAST ROW */

.career-table tbody tr:last-child td {
    border-bottom: none;
}


/* ===================================
   ROW HOVER
=================================== */

.career-table tbody tr {
    transition:
        background 0.3s ease;
}


.career-table tbody tr:hover {
    background: #f5f9f8;
}


.career-table tbody tr:hover td:first-child {
    color: #2f665e;
}


/* ===================================
   HIGHLIGHT LABEL
=================================== */

.career-highlight {
    display: inline-block;

    margin-left: 8px;

    padding: 4px 9px;

    background: #e8f1ef;

    border-radius: 20px;

    color: #2f665e;

    font-size: 11px;
    font-weight: 600;

    vertical-align: middle;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .career-opportunities-section {
        padding: 60px 20px;
    }


    .career-opportunities-heading {
        margin-bottom: 35px;
    }


    .career-opportunities-heading h2 {
        font-size: 34px;
    }


    .career-opportunities-heading p {
        font-size: 16px;
        line-height: 1.75;
    }


    .career-table th,
    .career-table td {
        padding: 17px 20px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .career-opportunities-section {
        padding: 50px 16px;
    }


    .career-opportunities-heading h2 {
        font-size: 30px;
    }


    .career-opportunities-heading p {
        font-size: 15px;
    }


    .career-table-wrapper {
        border-radius: 10px;
    }


    .career-table {
        min-width: 600px;
    }


    .career-table th,
    .career-table td {
        padding: 15px;
    }

}

/* ===================================
   STRAIGHT ANSWERS SECTION
   WIKPOLT THEME
=================================== */

.straight-answers-section {
    width: 100%;
    padding: 85px 20px;
    background: #f7f6f4;
}


.straight-answers-container {
    max-width: 1050px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.straight-answers-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.straight-answers-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.straight-answers-heading {
    max-width: 850px;
    margin: 0 auto 25px;

    text-align: center;
}


.straight-answers-heading h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   FIRST ANSWER
=================================== */

.straight-answer-intro {
    max-width: 850px;

    margin: 0 auto 45px;

    text-align: center;
}


.straight-answer-intro p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #52605e;
}


/* ===================================
   FAQ LIST
=================================== */

.straight-answers-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 15px;
}


/* ===================================
   FAQ ITEM
=================================== */

.straight-answer-item {
    background: #ffffff;

    border: 1px solid #d8e1df;
    border-radius: 12px;

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.straight-answer-item:hover {
    border-color: #2f665e;

    box-shadow:
        0 10px 28px rgba(33, 75, 69, 0.07);
}


/* ===================================
   FAQ HEADER
=================================== */

.straight-answer-header {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 28px;

    border: none;
    background: transparent;

    cursor: pointer;

    text-align: left;

    font-family: inherit;
}


/* ===================================
   QUESTION
=================================== */

.straight-question {
    font-size: 21px;
    font-weight: 700;

    color: #294f4a;

    text-align: left;
}


/* ===================================
   PLUS / MINUS
=================================== */

.straight-answer-icon {
    width: 36px;
    height: 36px;

    min-width: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f7f5;

    color: #2f665e;

    font-size: 25px;
    font-weight: 400;

    line-height: 1;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.straight-answer-item:hover .straight-answer-icon {
    background: #2f665e;

    color: #ffffff;
}


/* ===================================
   ANSWER CONTENT
=================================== */

.straight-answer-content {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.5s ease,
        opacity 0.35s ease;
}


/* ACTIVE */

.straight-answer-item.active .straight-answer-content {
    max-height: 500px;

    opacity: 1;
}


.straight-answer-item.active {
    border-color: #2f665e;
}


/* ===================================
   ANSWER TEXT
=================================== */

.straight-answer-content p {
    margin: 0;

    padding: 0 28px 26px;

    font-size: 16px;
    line-height: 1.8;

    color: #52605e;

    text-align: left;
}


.straight-answer-content strong {
    color: #294f4a;

    font-weight: 700;
}


/* ===================================
   ACTIVE ICON
=================================== */

.straight-answer-item.active .straight-answer-icon {
    background: #2f665e;

    color: #ffffff;

    transform: rotate(45deg);
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .straight-answers-section {
        padding: 60px 20px;
    }


    .straight-answers-heading h2 {
        font-size: 34px;
    }


    .straight-answer-intro {
        margin-bottom: 35px;
    }


    .straight-answer-intro p {
        font-size: 16px;
        line-height: 1.75;
    }


    .straight-answer-header {
        padding: 20px;
    }


    .straight-question {
        font-size: 18px;
    }


    .straight-answer-content p {
        padding:
            0
            20px
            22px;

        font-size: 15px;
        line-height: 1.75;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .straight-answers-section {
        padding: 50px 16px;
    }


    .straight-answers-heading h2 {
        font-size: 30px;
    }


    .straight-question {
        font-size: 17px;
    }


    .straight-answer-icon {
        width: 32px;
        height: 32px;

        min-width: 32px;

        font-size: 22px;
    }

}

/* ===================================
   TESTIMONIAL SECTION
=================================== */

.testimonials-section {
    width: 100%;
    background: #1a1d23;
    padding: 80px 20px;
    color: #e8e5df;
}


/* ===================================
   CONTAINER
=================================== */

.testimonials-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.testimonials-section .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;

    color: #e6a844;

    margin-bottom: 20px;
}


.testimonials-section .section-tag span {
    width: 20px;
    height: 1px;

    background: #e6a844;
}


/* ===================================
   HEADING
=================================== */

.testimonials-section h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 600;
    line-height: 1.15;

    color: #e8e5df;

    margin: 0 0 16px;
}


/* ===================================
   INTRO
=================================== */

.testimonials-intro {
    

    font-size: 17px;
    line-height: 1.7;

    color: #bcb9b3;

    margin: 0 0 45px;
}


/* ===================================
   TESTIMONIAL WRAPPER
=================================== */

.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
}


/* ===================================
   TESTIMONIAL TRACK
=================================== */

.testimonial-track {
    display: flex;
    gap: 28px;

    overflow-x: auto;

    scroll-behavior: smooth;

    padding-bottom: 10px;

    scrollbar-width: none;
}


.testimonial-track::-webkit-scrollbar {
    display: none;
}


/* ===================================
   TESTIMONIAL CARD
=================================== */

.testimonial-card {
    flex: 0 0 calc(33.333% - 19px);

    min-height: 300px;

    background: #22262e;

    border: 1px solid #30353d;

    border-radius: 14px;

    padding: 34px 36px;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.testimonial-card:hover {
    transform: translateY(-5px);

    border-color: rgba(230, 168, 68, 0.55);

    background: #252a33;
}


/* ===================================
   STARS
=================================== */

.stars {
    color: #e6a844;

    font-size: 19px;

    letter-spacing: 3px;

    margin-bottom: 24px;
}


/* ===================================
   TESTIMONIAL TEXT
=================================== */

.testimonial-text {
    font-size: 18px;

    line-height: 1.7;

    color: #c4c1bc;

    margin: 0;

    flex-grow: 1;
}


/* ===================================
   STUDENT DETAILS
=================================== */

.student-details {
    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid #30353d;
}


.student-details h3 {
    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 600;

    color: #e8e5df;

    margin: 0 0 6px;
}


.student-details p {
    font-size: 15px;

    color: #aaa59e;


    line-height: 1.5;
    text-align: center;
}


/* ===================================
   CONTROLS
=================================== */

.testimonial-controls {
    display: flex;

    gap: 12px;

    margin-top: 28px;
}


/* ===================================
   BUTTON
=================================== */

.testimonial-btn {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid #30353d;

    background: transparent;

    color: #e8e5df;

    font-size: 20px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.testimonial-btn:hover {
    background: #e6a844;

    color: #1a1d23;

    border-color: #e6a844;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .testimonial-card {
        flex: 0 0 calc(50% - 14px);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .testimonials-section {
        padding: 60px 20px;
    }


    .testimonials-section h2 {
        font-size: 34px;
    }


    .testimonials-intro {
        font-size: 16px;

        margin-bottom: 35px;
    }


    .testimonial-track {
        gap: 18px;
    }


    .testimonial-card {
        flex: 0 0 88%;

        min-height: auto;

        padding: 28px 24px;
    }


    .testimonial-text {
        font-size: 16px;
    }


    .stars {
        font-size: 17px;
    }

}

/* ===================================
   READY CTA SECTION
   WIKPOLT THEME
=================================== */

.journey-cta-section {
    width: 100%;
    background: #1a1d23;
    padding: 90px 20px;
    color: #e8e5df;
}


/* ===================================
   CONTAINER
=================================== */

.journey-cta-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}


/* ===================================
   SECTION TAG - CENTER
=================================== */

.journey-cta-section .section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;

    color: #e6a844;

    margin-bottom: 20px;
}


.journey-cta-section .section-tag span {
    width: 20px;
    height: 1px;

    background: #e6a844;
}


/* ===================================
   HEADING
=================================== */

.journey-cta-section h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;

    font-weight: 600;

    color: #e8e5df;

    margin: 0 auto 22px;

    max-width: 850px;
}


/* ===================================
   DESCRIPTION
=================================== */

.journey-cta-text {
    max-width: 850px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;

    color: #bcb9b3;
}


.journey-cta-text strong {
    color: #e8e5df;
    font-weight: 600;
}


/* ===================================
   BUTTONS
=================================== */

.journey-cta-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}


/* ===================================
   BUTTON COMMON
=================================== */

.cta-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 4px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* ===================================
   PRIMARY BUTTON
=================================== */

.cta-primary {
    background: #e6a844;

    color: #1a1d23;

    border: 1px solid #e6a844;
}


.cta-primary:hover {
    background: #f0b85d;

    border-color: #f0b85d;

    transform: translateY(-3px);
}


/* ===================================
   OUTLINE BUTTON
=================================== */

.cta-outline {
    background: transparent;

    color: #e8e5df;

    border: 1px solid #30353d;
}


.cta-outline:hover {
    border-color: #e6a844;

    color: #e6a844;

    background: rgba(230, 168, 68, 0.04);

    transform: translateY(-3px);
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .journey-cta-section {
        padding: 65px 20px;
    }


    .journey-cta-section h2 {
        font-size: 34px;
    }


    .journey-cta-text {
        font-size: 16px;

        line-height: 1.7;
    }


    .journey-cta-buttons {
        flex-direction: column;

        width: 100%;
    }


    .cta-btn {
        width: 100%;

        max-width: 350px;
    }

}
/* ===================================
   COMPLETE HORIZONTAL SCROLL FIX
=================================== */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* All sections */
section,
div {
    max-width: 100%;
}


/* ===================================
   TESTIMONIAL FIX
=================================== */

.testimonials-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-container {
    width: 100%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-track {
    max-width: 100%;
}


/* ===================================
   CTA FIX
=================================== */

.journey-cta-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.journey-cta-container {
    width: 100%;
    max-width: 950px;
}


/* ===================================
   MOBILE FIX
=================================== */

@media (max-width: 768px) {

    .testimonial-card {
        flex: 0 0 88%;
        max-width: 88%;
    }

    .journey-cta-buttons {
        width: 100%;
        max-width: 100%;
    }

    .cta-btn {
        max-width: 100%;
    }
}
