
a {
    color:#fa9805;
    text-decoration:none;
}

/* =========================================
   ONLINE IT COURSE HERO
========================================= */

.online-course-hero {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.online-course-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 0.85fr;
    align-items: stretch;
}


/* =========================================
   LEFT CONTENT
========================================= */

.online-course-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 60px 70px 0;

    position: relative;
    z-index: 2;
}


/* =========================================
   COURSE LABEL
========================================= */

.online-course-label {
    display: inline-block;

    width: fit-content;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}


/* =========================================
   HEADING
========================================= */

.online-course-content h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
    font-weight: 800;

    color: #111827;

    margin: 0 0 28px;
}


/* =========================================
   PARAGRAPHS
========================================= */

.online-course-content p {
    max-width: 680px;

    color:#555555;

    font-size: 18px;
    line-height: 1.8;

    margin: 0 0 22px;

    text-align: justify;
}


/* Strong Text */

.online-course-content p strong {
    color: #374151;
}


/* Links */



.online-course-content p a:hover {
    text-decoration: underline;
}


/* =========================================
   BUTTONS
========================================= */

.online-course-buttons {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 18px;
}


.online-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;

    padding: 0 32px;

    border-radius: 7px;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* =========================================
   PRIMARY BUTTON
========================================= */

.primary-btn {
    background: #fa9805;
    color: #ffffff;

    border: 2px solid #fa9805;
}

.primary-btn:hover {
    background: #e88900;
    border-color: #e88900;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   SECONDARY BUTTON
========================================= */

.secondary-btn {
    background: #ffffff;
    color: #fa9805;

    border: 2px solid #fa9805;
}

.secondary-btn:hover {
    background: #fa9805;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   RIGHT IMAGE
========================================= */

.online-course-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: stretch;
    justify-content: center;

    overflow: hidden;
}


/* =========================================
   CURVED LEFT EDGE
========================================= */

.online-course-visual::before {
    content: "";

    position: absolute;

    left: -100px;
    top: -10%;

    width: 180px;
    height: 120%;

    background: #ffffff;

    border-radius: 50%;

    z-index: 2;
}


/* =========================================
   IMAGE
========================================= */

.online-course-image {
    width: 100%;
    height: 100%;

    min-height: 650px;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================
   TABLET
   769px - 1100px
========================================= */

@media (max-width: 1100px) {

    .online-course-container {
        grid-template-columns: 1fr 0.8fr;

        min-height: 600px;
    }


    /* Content */

    .online-course-content {
        padding: 55px 35px 55px 0;
    }


    /* Label */

    .online-course-label {
        margin-bottom: 16px;
        padding: 7px 14px;

        font-size: 12px;
        letter-spacing: 0.7px;

        border-radius: 25px;
    }


    /* Heading */

    .online-course-content h1 {
        font-size: 48px;

        line-height: 1.08;

        margin-bottom: 24px;
    }


    /* Paragraph */

    .online-course-content p {
        font-size: 16px;

        line-height: 1.7;

        text-align: justify;

        margin-bottom: 20px;
    }


    /* Buttons */

    .online-course-buttons {
        flex-wrap: wrap;

        gap: 14px;

        margin-top: 12px;
    }


    .online-btn {
        min-height: 52px;

        padding: 0 24px;

        font-size: 15px;
    }


    /* Image */

    .online-course-visual {
        min-height: 600px;
    }

    .online-course-image {
        min-height: 600px;
    }


    /* Curved Edge */

    .online-course-visual::before {
        left: -90px;

        width: 160px;
    }
}


/* =========================================
   TABLET / SMALL SCREEN
   769px - 900px
========================================= */

@media (max-width: 900px) {

    .online-course-container {
        grid-template-columns: 1fr 0.75fr;
    }


    .online-course-content {
        padding-right: 25px;
    }


    .online-course-content h1 {
        font-size: 42px;
    }


    .online-course-content p {
        font-size: 15px;

        line-height: 1.65;
    }


    .online-course-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .online-btn {
        width: auto;

        min-height: 50px;
    }
}


/* =========================================
   MOBILE
   481px - 768px
========================================= */

@media (max-width: 768px) {

    .online-course-container {
        width: 100%;

        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    /* =====================================
       CONTENT
    ===================================== */

    .online-course-content {
        padding: 55px 25px 40px;

        width: 100%;

        box-sizing: border-box;
    }


    /* =====================================
       LABEL
    ===================================== */

    .online-course-label {
        display: inline-block;

        width: fit-content;

        margin-bottom: 15px;

        padding: 7px 13px;

        background: #fff3e0;
        color: #fa9805;

        font-size: 12px;

        font-weight: 700;

        letter-spacing: 0.6px;

        border-radius: 25px;
    }


    /* =====================================
       HEADING
    ===================================== */

    .online-course-content h1 {
        font-size: 42px;

        line-height: 1.1;

        margin-bottom: 22px;
    }


    /* =====================================
       PARAGRAPH
    ===================================== */

    .online-course-content p {
        max-width: 100%;

        font-size: 16px;

        line-height: 1.7;

        text-align: justify;

        margin-bottom: 20px;
    }


    /* =====================================
       BUTTONS
    ===================================== */

    .online-course-buttons {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-top: 15px;
    }


    .online-btn {
        width: 100%;

        min-height: 52px;

        padding: 0 20px;

        box-sizing: border-box;

        font-size: 15px;
    }


    /* =====================================
       RIGHT IMAGE
    ===================================== */

    .online-course-visual {
        width: 100%;

        min-height: 420px;

        height: 420px;
    }


    .online-course-image {
        width: 100%;

        height: 420px;

        min-height: 420px;

        object-fit: cover;

        object-position: center;
    }


    /* Remove curved effect on mobile */

    .online-course-visual::before {
        display: none;
    }
}


/* =========================================
   SMALL MOBILE
   320px - 480px
========================================= */

@media (max-width: 480px) {

    /* =====================================
       CONTENT
    ===================================== */

    .online-course-content {
        padding: 45px 20px 35px;
    }


    /* =====================================
       LABEL
    ===================================== */

    .online-course-label {
        display: inline-block;

        width: fit-content;

        margin-bottom: 14px;

        padding: 6px 12px;

        font-size: 11px;

        font-weight: 700;

        letter-spacing: 0.5px;

        border-radius: 22px;
    }


    /* =====================================
       HEADING
    ===================================== */

    .online-course-content h1 {
        font-size: 36px;

        line-height: 1.1;

        margin-bottom: 20px;
    }


    /* =====================================
       PARAGRAPH
    ===================================== */

    .online-course-content p {
        font-size: 15px;

        line-height: 1.7;

        text-align: justify;

        margin-bottom: 18px;
    }


    /* =====================================
       BUTTONS
    ===================================== */

    .online-course-buttons {
        gap: 10px;

        margin-top: 12px;
    }


    .online-btn {
        min-height: 50px;

        padding: 0 16px;

        font-size: 14px;
    }


    /* =====================================
       IMAGE
    ===================================== */

    .online-course-visual {
        min-height: 350px;

        height: 350px;
    }


    .online-course-image {
        height: 350px;

        min-height: 350px;

        object-fit: cover;
    }
}


/* =========================================
   EXTRA SMALL MOBILE
   Below 360px
========================================= */

@media (max-width: 360px) {

    .online-course-content {
        padding: 40px 16px 30px;
    }


    .online-course-label {
        padding: 6px 10px;

        font-size: 10px;

        letter-spacing: 0.4px;
    }


    .online-course-content h1 {
        font-size: 32px;
    }


    .online-course-content p {
        font-size: 14px;

        line-height: 1.65;

        text-align: justify;
    }


    .online-btn {
        min-height: 48px;

        font-size: 13px;
    }


    .online-course-visual {
        height: 320px;

        min-height: 320px;
    }


    .online-course-image {
        height: 320px;

        min-height: 320px;
    }
}



/* =========================================
   ONLINE IT COURSES SECTION
========================================= */

.online-courses-section {
    width: 100%;
    padding: 90px 0;
    background:#dae2eb;
}

.online-courses-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.online-courses-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.online-courses-tag {
 display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: #fff3e0;
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 30px;
}

.online-courses-heading h2 {
    margin: 0 0 16px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}

.online-courses-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;

    color: #666666;
}


/* =========================================
   COURSE GRID
========================================= */

.online-courses-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   COURSE CARD
========================================= */

.online-course-card {
    position: relative;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e8edf2;
    border-radius: 14px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.online-course-card:hover {
    transform: translateY(-7px);

    border-color: #fa9805;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


/* =========================================
   CARD TOP
========================================= */

.online-course-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.online-course-number {
    font-size: 13px;
    font-weight: 800;

    color: #999999;
}

.online-course-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff3df;

    font-size: 27px;

    transition: transform 0.3s ease;
}

.online-course-card:hover .online-course-icon {
    transform: scale(1.08);
}


/* =========================================
   COURSE TITLE
========================================= */

.online-course-card h3 {
    margin: 0 0 14px;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;

    color: #111111;
}


/* =========================================
   COURSE DESCRIPTION
========================================= */

.online-course-card > p {
    margin: 0 0 22px;

    font-size: 15px;
    line-height: 1.7;
     text-align: justify;
    color: #666666;
}


/* =========================================
   COURSE INFORMATION
========================================= */

.online-course-info {
    margin-bottom: 17px;

    font-size: 14px;
    line-height: 1.65;

    color: #666666;
}

.online-course-info strong {
    display: inline;

    color: #222222;
    font-weight: 700;
}

.online-course-info span {
    color: #666666;
}


/* =========================================
   COURSE LINK
========================================= */

.online-course-link {
    margin-top: auto;
    padding-top: 18px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    color: #fa9805;

    border-top: 1px solid #eeeeee;

    transition: gap 0.3s ease, color 0.3s ease;

    width: 100%;
}

.online-course-link span {
    font-size: 20px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.online-course-link:hover {
    color: #111111;
}

.online-course-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .online-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .online-courses-section {
        padding: 70px 0;
    }

    .online-courses-container {
        width: 90%;
    }

    .online-courses-heading {
        margin-bottom: 40px;
    }

    .online-courses-heading h2 {
        font-size: 36px;
    }

    .online-courses-heading p {
        font-size: 16px;
    }

    .online-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .online-course-card {
        padding: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .online-courses-section {
        padding: 55px 0;
    }

    .online-courses-container {
        width: 90%;
    }

    .online-courses-heading {
        margin-bottom: 32px;
    }

    .online-courses-tag {
        font-size: 12px;
    }

    .online-courses-heading h2 {
        font-size: 30px;
    }

    .online-courses-heading p {
        font-size: 15px;
        line-height: 1.65;
    }

    .online-courses-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .online-course-card {
        padding: 24px;
    }

    .online-course-card h3 {
        font-size: 21px;
    }

    .online-course-card > p {
        font-size: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .online-courses-heading h2 {
        font-size: 27px;
    }

    .online-course-card {
        padding: 21px;
    }

    .online-course-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

}


/* =========================================
   WHY CHOOSE ONLINE IT COURSES
========================================= */

.why-online-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

.why-online-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.why-online-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}


/* =========================================
   LABEL
========================================= */

.why-online-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}


/* =========================================
   HEADING
========================================= */

.why-online-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}


/* =========================================
   INTRODUCTION
========================================= */

.why-online-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #666666;

    text-align: justify;
    text-align-last: center;
}

.why-online-heading strong {
    color: #222222;
}


/* =========================================
   BENEFITS GRID
========================================= */

.why-online-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.why-online-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 30px;

    background: #fffcf8;

    border: 1px solid #fa9805;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-online-card:hover {
    transform: translateY(-6px);

    border-color: #fa9805;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}


/* =========================================
   ICON
========================================= */

.why-online-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;

    border-radius: 12px;

    font-size: 26px;
}


/* =========================================
   CARD CONTENT
========================================= */

.why-online-content {
    flex: 1;
}

.why-online-content h3 {
    margin: 0 0 10px;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;

    color: #111111;
}

.why-online-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #666666;

    text-align: justify;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .why-online-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .why-online-section {
        padding: 70px 0;
    }

    .why-online-container {
        width: 90%;
    }

    .why-online-heading {
        margin-bottom: 40px;
    }

    .why-online-heading h2 {
        font-size: 36px;
    }

    .why-online-heading p {
        font-size: 16px;
    }

    .why-online-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .why-online-card {
        padding: 24px;
        gap: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .why-online-section {
        padding: 55px 0;
    }

    .why-online-container {
        width: 90%;
    }

    .why-online-heading {
        margin-bottom: 32px;
    }

    .why-online-label {
        margin-bottom: 15px;
        padding: 7px 14px;

        font-size: 12px;
    }

    .why-online-heading h2 {
        font-size: 30px;
    }

    .why-online-heading p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
        text-align-last: left;
    }

    .why-online-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-online-card {
        padding: 22px;
    }

    .why-online-content h3 {
        font-size: 19px;
    }

    .why-online-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .why-online-heading h2 {
        font-size: 27px;
    }

    .why-online-card {
        padding: 20px;
        gap: 14px;
    }

    .why-online-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;

        font-size: 22px;
    }

}



/* =========================================
   ONLINE SOFTWARE COURSES
========================================= */

.software-courses-section {
    width: 100%;
    padding: 90px 0;

    /* Updated Background */
    background: #dae2eb;

    overflow: hidden;
}

.software-courses-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   CONTENT
========================================= */

.software-courses-content {
    max-width: 760px;
}

.software-courses-heading {
    margin-bottom: 25px;
}


/* =========================================
   LABEL
========================================= */

.software-courses-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}


/* =========================================
   HEADING
========================================= */

.software-courses-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}


/* =========================================
   PARAGRAPHS
========================================= */

.software-courses-heading p,
.software-courses-description p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.8;

    color: #555555;

    text-align: justify;
}

.software-courses-heading strong {
    color: #222222;
}


/* =========================================
   COURSE LIST
========================================= */

.software-courses-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px 25px;

    margin: 25px 0 25px;
}


/* =========================================
   COURSE ITEM
========================================= */

.software-course-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.software-course-item:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.software-course-item span {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3e0;
    color: #fa9805;

    font-size: 14px;
    font-weight: 800;
}

.software-course-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.4;

    color: #222222;
}


/* =========================================
   FINAL DESCRIPTION
========================================= */

.software-courses-description {
    margin-top: 10px;
}

.software-courses-description p {
    margin-bottom: 0;
}


/* =========================================
   VISUAL AREA
========================================= */

.software-courses-visual {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   VISUAL CARD
========================================= */

.software-visual-card {
    width: 360px;
    min-height: 350px;

    padding: 45px 35px;

    background: #ffffff;

    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}


/* =========================================
   VISUAL ICON
========================================= */

.software-visual-icon {
    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #fff3e0;

    font-size: 40px;
}


/* =========================================
   VISUAL TITLE
========================================= */

.software-visual-card h3 {
    margin: 0;

    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;

    color: #111111;
}


/* =========================================
   LINE
========================================= */

.software-visual-line {
    width: 55px;
    height: 3px;

    margin: 20px 0;

    background: #fa9805;

    border-radius: 5px;
}


/* =========================================
   VISUAL POINTS
========================================= */

.software-visual-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 10px;
}

.software-visual-points span {
    padding: 8px 13px;

    background: #f5f5f5;

    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;

    color: #555555;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .software-courses-section {
        padding: 70px 0;
    }

    .software-courses-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .software-courses-content {
        max-width: 850px;
        margin: 0 auto;
    }

    .software-courses-visual {
        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .software-courses-section {
        padding: 55px 0;
    }

    .software-courses-container {
        width: 90%;
        gap: 35px;
    }

    .software-courses-label {
        margin-bottom: 15px;
        padding: 7px 14px;

        font-size: 12px;
    }

    .software-courses-heading h2 {
        font-size: 30px;
    }

    .software-courses-heading p,
    .software-courses-description p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
    }

    .software-courses-list {
        grid-template-columns: 1fr;
        gap: 10px;

        margin: 22px 0;
    }

    .software-course-item {
        padding: 13px 14px;
    }

    .software-course-item p {
        font-size: 14px;
    }

    .software-courses-visual {
        min-height: 320px;
    }

    .software-visual-card {
        width: 100%;
        max-width: 320px;

        min-height: 290px;

        padding: 35px 25px;
    }

    .software-visual-icon {
        width: 70px;
        height: 70px;

        font-size: 32px;
    }

    .software-visual-card h3 {
        font-size: 22px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .software-courses-heading h2 {
        font-size: 27px;
    }

    .software-visual-card {
        max-width: 290px;
    }

}



/* =========================================
   ONLINE TECHNICAL COURSES
========================================= */

.technical-courses-section {
    width: 100%;
    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}

.technical-courses-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   CONTENT
========================================= */

.technical-courses-content {
    max-width: 760px;
}

.technical-courses-heading {
    margin-bottom: 25px;
}


/* =========================================
   LABEL
========================================= */

.technical-courses-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}


/* =========================================
   HEADING
========================================= */

.technical-courses-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}


/* =========================================
   PARAGRAPHS
========================================= */

.technical-courses-heading p,
.technical-courses-description p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.8;

    color: #555555;

    text-align: justify;
}

.technical-courses-heading strong {
    color: #222222;
}


/* =========================================
   COURSE LIST
========================================= */

.technical-courses-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px 25px;

    margin: 25px 0 25px;
}


/* =========================================
   COURSE ITEM
========================================= */

.technical-course-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    background:#dae2eb;

    border-radius: 8px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.technical-course-item:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.technical-course-item span {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3e0;
    color: #fa9805;

    font-size: 14px;
    font-weight: 800;
}

.technical-course-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.4;

    color: #222222;
}


/* =========================================
   FINAL DESCRIPTION
========================================= */

.technical-courses-description {
    margin-top: 10px;
}

.technical-courses-description p {
    margin-bottom: 0;
}


/* =========================================
   VISUAL AREA
========================================= */

.technical-courses-visual {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   VISUAL CARD
========================================= */

.technical-visual-card {
    width: 360px;
    min-height: 350px;

    padding: 45px 35px;

    background: #dae2eb;

    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}


/* =========================================
   VISUAL ICON
========================================= */

.technical-visual-icon {
    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #fff3e0;

    font-size: 40px;
}


/* =========================================
   VISUAL TITLE
========================================= */

.technical-visual-card h3 {
    margin: 0;

    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;

    color: #111111;
}


/* =========================================
   LINE
========================================= */

.technical-visual-line {
    width: 55px;
    height: 3px;

    margin: 20px 0;

    background: #fa9805;

    border-radius: 5px;
}


/* =========================================
   VISUAL POINTS
========================================= */

.technical-visual-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 10px;
}

.technical-visual-points span {
    padding: 8px 13px;

    background: #f5f5f5;

    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;

    color: #555555;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .technical-courses-section {
        padding: 70px 0;
    }

    .technical-courses-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .technical-courses-content {
        max-width: 850px;
        margin: 0 auto;
    }

    .technical-courses-visual {
        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .technical-courses-section {
        padding: 55px 0;
    }

    .technical-courses-container {
        width: 90%;
        gap: 35px;
    }

    .technical-courses-label {
        margin-bottom: 15px;
        padding: 7px 14px;

        font-size: 12px;
    }

    .technical-courses-heading h2 {
        font-size: 30px;
    }

    .technical-courses-heading p,
    .technical-courses-description p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
    }

    .technical-courses-list {
        grid-template-columns: 1fr;
        gap: 10px;

        margin: 22px 0;
    }

    .technical-course-item {
        padding: 13px 14px;
    }

    .technical-course-item p {
        font-size: 14px;
    }

    .technical-courses-visual {
        min-height: 320px;
    }

    .technical-visual-card {
        width: 100%;
        max-width: 320px;

        min-height: 290px;

        padding: 35px 25px;
    }

    .technical-visual-icon {
        width: 70px;
        height: 70px;

        font-size: 32px;
    }

    .technical-visual-card h3 {
        font-size: 22px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .technical-courses-heading h2 {
        font-size: 27px;
    }

    .technical-visual-card {
        max-width: 290px;
    }

}



/* =========================================
   ONLINE IT TRAINING
========================================= */

.it-training-section {
    width: 100%;
    padding: 90px 0;

    background: #dae2eb;

    overflow: hidden;
}

.it-training-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.it-training-header {
    max-width: 900px;
    margin: 0 auto 45px;

    text-align: center;
}

.it-training-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}

.it-training-header h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}

.it-training-header p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #555555;

    text-align: justify;
    text-align-last: center;
}

.it-training-header strong {
    color: #222222;
}


/* =========================================
   LEARNING PROCESS
========================================= */

.it-training-process {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin: 0 auto 45px;

    padding: 35px 30px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


/* =========================================
   TRAINING STEP
========================================= */

.it-training-step {
    width: 190px;
    min-height: 135px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px 15px;

    background: #fffbf6;

    border: 1px solid #fa9805;

    border-radius: 14px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.it-training-step:hover {
    transform: translateY(-5px);

    border-color: #fa9805;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================
   STEP NUMBER
========================================= */

.it-training-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 15px;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;
}


/* =========================================
   STEP TITLE
========================================= */

.it-training-step h3 {
    margin: 0;

    color: #222222;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================
   ARROW
========================================= */

.it-training-arrow {
    color: #fa9805;

    font-size: 28px;
    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.it-training-description {
    max-width: 1000px;

    margin: 0 auto;

    padding: 0 20px;

    text-align: center;
}

.it-training-description p {
    margin: 0 0 18px;

    color: #555555;

    font-size: 17px;
    line-height: 1.8;

    text-align: justify;
}

.it-training-description p:last-child {
    margin-bottom: 0;
}

.it-training-description strong {
    color: #222222;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .it-training-section {
        padding: 70px 0;
    }

    .it-training-header {
        margin-bottom: 35px;
    }

    .it-training-process {
        gap: 12px;

        padding: 25px 15px;
    }

    .it-training-step {
        width: 160px;
        min-height: 120px;
    }

    .it-training-arrow {
        font-size: 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .it-training-section {
        padding: 55px 0;
    }

    .it-training-container {
        width: 90%;
    }

    .it-training-header {
        margin-bottom: 30px;
    }

    .it-training-label {
        margin-bottom: 15px;
        padding: 7px 14px;

        font-size: 12px;
    }

    .it-training-header h2 {
        font-size: 30px;
    }

    .it-training-header p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
        text-align-last: left;
    }


    /* Process becomes vertical */

    .it-training-process {
        flex-direction: column;

        gap: 10px;

        margin-bottom: 30px;

        padding: 25px 20px;
    }

    .it-training-step {
        width: 100%;
        max-width: 300px;

        min-height: auto;

        padding: 18px 15px;
    }

    .it-training-number {
        width: 42px;
        height: 42px;

        margin-bottom: 10px;
    }

    .it-training-step h3 {
        font-size: 18px;
    }

    .it-training-arrow {
        transform: rotate(90deg);

        font-size: 20px;
    }


    /* Description */

    .it-training-description {
        padding: 0;
    }

    .it-training-description p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .it-training-header h2 {
        font-size: 27px;
    }

    .it-training-process {
        padding: 20px 15px;
    }

    .it-training-step {
        max-width: 270px;
    }

}



/* =========================================
   LEARN THROUGH PRACTICAL PROJECTS
========================================= */

.practical-projects-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.practical-projects-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.practical-projects-heading {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.practical-projects-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}

.practical-projects-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}

.practical-projects-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
    color: #555555;

    text-align: justify;
    text-align-last: center;
}


/* =========================================
   CONTENT
========================================= */

.practical-projects-content {
    max-width: 1100px;
    margin: 0 auto;
}

.practical-projects-intro {
    margin-bottom: 25px;
}

.practical-projects-intro p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
    color: #555555;

    text-align: justify;
}


/* =========================================
   PROJECT GRID
========================================= */

.practical-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin: 0 0 35px;
}

.practical-project-item {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 95px;
    padding: 22px 20px;

    background: #dae2eb;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.practical-project-item:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.practical-project-item span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    margin-right: 15px;

    background: #ffffff;
    color: #fa9805;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}

.practical-project-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;

    color: #222222;
}


/* =========================================
   BOTTOM CONTENT
========================================= */

.practical-projects-bottom {
    padding: 25px 30px;

    background: #fff3e0;

    border-left: 4px solid #fa9805;
    border-radius: 10px;
}

.practical-projects-bottom p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #555555;

    text-align: justify;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .practical-projects-section {
        padding: 70px 0;
    }

    .practical-projects-heading {
        margin-bottom: 35px;
    }

    .practical-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .practical-projects-section {
        padding: 55px 0;
    }

    .practical-projects-container {
        width: 90%;
    }

    .practical-projects-heading {
        margin-bottom: 30px;
    }

    .practical-projects-label {
        margin-bottom: 15px;
        padding: 7px 14px;
        font-size: 12px;
    }

    .practical-projects-heading h2 {
        font-size: 30px;
    }

    .practical-projects-heading p,
    .practical-projects-intro p,
    .practical-projects-bottom p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
    }

    .practical-projects-heading p {
        text-align-last: left;
    }

    .practical-projects-grid {
        grid-template-columns: 1fr;
        gap: 12px;

        margin-bottom: 25px;
    }

    .practical-project-item {
        min-height: 80px;
        padding: 17px 16px;
    }

    .practical-project-item span {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;

        margin-right: 13px;
    }

    .practical-project-item p {
        font-size: 14px;
    }

    .practical-projects-bottom {
        padding: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .practical-projects-heading h2 {
        font-size: 27px;
    }

    .practical-project-item {
        padding: 15px;
    }

    .practical-project-item p {
        font-size: 13px;
    }

}


/* =========================================
   WHO CAN JOIN ONLINE IT COURSES
========================================= */

.online-join-section {
    width: 100%;
    padding: 90px 0;
    background: #dae2eb;
    overflow: hidden;
}

.online-join-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.online-join-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.online-join-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}

.online-join-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}

.online-join-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
    color: #555555;

    text-align: center;
}


/* =========================================
   CARDS GRID
========================================= */

.online-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    max-width: 1150px;
    margin: 0 auto 40px;
}


/* =========================================
   CARD
========================================= */

.online-join-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    min-height: 190px;
    padding: 30px 25px;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.online-join-card::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    right: -25px;
    bottom: -25px;

    background: #fff3e0;

    border-radius: 50%;

    transition: transform 0.4s ease;
}

.online-join-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.online-join-card:hover::after {
    transform: scale(2);
}


/* =========================================
   ICON
========================================= */

.online-join-icon {
    position: relative;
    z-index: 2;

    width: 65px;
    height: 65px;

    flex: 0 0 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 18px;

    background: #fff3e0;

    border-radius: 18px;

    font-size: 31px;

    transition:
        transform 0.4s ease,
        border-radius 0.4s ease;
}

.online-join-card:hover .online-join-icon {
    transform: translateY(-8px) rotate(-5deg);

    border-radius: 50%;
}


/* =========================================
   CARD CONTENT
========================================= */

.online-join-card-content {
    position: relative;
    z-index: 2;
}

.online-join-card-content h3 {
    margin: 3px 0 10px;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;

    color: #111111;
}

.online-join-card-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #555555;

    text-align: justify;
}


/* =========================================
   NOTE
========================================= */

.online-join-note {
    max-width: 900px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.online-join-note-icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 800;
}

.online-join-note p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #555555;

    text-align: justify;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .online-join-section {
        padding: 70px 0;
    }

    .online-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .online-join-section {
        padding: 55px 0;
    }

    .online-join-container {
        width: 90%;
    }

    .online-join-heading {
        margin-bottom: 35px;
    }

    .online-join-label {
        margin-bottom: 15px;
        padding: 7px 14px;
        font-size: 12px;
    }

    .online-join-heading h2 {
        font-size: 30px;
    }

    .online-join-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .online-join-grid {
        grid-template-columns: 1fr;
        gap: 15px;

        margin-bottom: 25px;
    }

    .online-join-card {
        min-height: auto;
        padding: 23px 20px;
    }

    .online-join-icon {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;

        margin-right: 15px;

        font-size: 27px;
    }

    .online-join-card-content h3 {
        font-size: 19px;
    }

    .online-join-card-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .online-join-note {
        padding: 18px;

        align-items: flex-start;
    }

    .online-join-note p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .online-join-heading h2 {
        font-size: 27px;
    }

    .online-join-card {
        padding: 20px 16px;
    }

    .online-join-icon {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;

        margin-right: 12px;

        font-size: 24px;
    }

    .online-join-card-content h3 {
        font-size: 18px;
    }

}


/* =========================================
   WHAT WILL YOU GET FROM THE COURSE
========================================= */

.course-benefits-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.course-benefits-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.course-benefits-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.course-benefits-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}

.course-benefits-header h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}

.course-benefits-header p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

    color: #555555;

    text-align: center;
}


/* =========================================
   BENEFITS WRAPPER
========================================= */

.course-benefits-wrapper {
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   BENEFITS GRID
========================================= */

.course-benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-bottom: 35px;
}


/* =========================================
   BENEFIT ITEM
========================================= */

.course-benefit-item {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 82px;
    padding: 18px 20px;

    background: #dae2eb;

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.course-benefit-item::before {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    top: 15px;
    right: 18px;

    background: #fa9805;

    border-radius: 50%;

    opacity: 0.5;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.course-benefit-item:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.course-benefit-item:hover::before {
    transform: scale(4);
    opacity: 0.15;
}


/* =========================================
   ICON
========================================= */

.course-benefit-icon {
    position: relative;
    z-index: 2;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 15px;

    background: #ffffff;
    color: #fa9805;

    border: 2px solid #fa9805;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.course-benefit-item:hover .course-benefit-icon {
    transform: rotate(360deg) scale(1.08);

    background: #fff3e0;
}


/* =========================================
   BENEFIT TEXT
========================================= */

.course-benefit-item p {
    position: relative;
    z-index: 2;

    margin: 0;

    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;

    color: #222222;
}


/* =========================================
   NOTE
========================================= */

.course-benefits-note {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 23px 28px;

    background: #fff3e0;

    border-radius: 14px;

    border-left: 4px solid #fa9805;
}

.course-benefits-note-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #fa9805;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 800;

    animation: courseNotePulse 2s infinite;
}

.course-benefits-note p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #555555;

    text-align: justify;
}


/* =========================================
   ICON ANIMATION
========================================= */

@keyframes courseNotePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .course-benefits-section {
        padding: 70px 0;
    }

    .course-benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .course-benefits-section {
        padding: 55px 0;
    }

    .course-benefits-container {
        width: 90%;
    }

    .course-benefits-header {
        margin-bottom: 35px;
    }

    .course-benefits-label {
        margin-bottom: 15px;
        padding: 7px 14px;

        font-size: 12px;
    }

    .course-benefits-header h2 {
        font-size: 30px;
    }

    .course-benefits-header p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
        text-align-last: left;
    }


    /* Benefits */

    .course-benefits-list {
        grid-template-columns: 1fr;
        gap: 12px;

        margin-bottom: 25px;
    }

    .course-benefit-item {
        min-height: 75px;

        padding: 16px;
    }

    .course-benefit-icon {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        margin-right: 13px;

        font-size: 15px;
    }

    .course-benefit-item p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* Note */

    .course-benefits-note {
        align-items: flex-start;

        padding: 19px;
    }

    .course-benefits-note-icon {
        width: 34px;
        height: 34px;

        flex: 0 0 34px;
    }

    .course-benefits-note p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .course-benefits-header h2 {
        font-size: 27px;
    }

    .course-benefit-item {
        padding: 14px;
    }

    .course-benefit-item p {
        font-size: 13px;
    }

}



/* =========================================
   ONLINE CERTIFICATION COURSES
========================================= */

.online-certification-section {
    width: 100%;
    padding: 90px 0;
    background: #dae2eb;
    overflow: hidden;
}

.online-certification-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;
    gap: 75px;
}


/* =========================================
   LEFT IMAGE
========================================= */

.online-certification-image {
    position: relative;

    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-radius: 22px;
}

.online-certification-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -55px;
    left: -55px;

    background: #fff3e0;

    border-radius: 50%;

    animation: certificationFloat 5s ease-in-out infinite;
}

.online-certification-image::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -40px;
    bottom: -40px;

    background: #ffffff;

    border-radius: 50%;

    animation: certificationFloat 4s ease-in-out infinite reverse;
}

.online-certification-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 430px;

    display: block;

    object-fit: cover;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.online-certification-image:hover img {
    transform: scale(1.03);

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
}


/* =========================================
   IMAGE ANIMATION
========================================= */

@keyframes certificationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================
   RIGHT CONTENT
========================================= */

.online-certification-content {
    max-width: 760px;
}

.online-certification-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}

.online-certification-content h2 {
    margin: 0 0 22px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}

.online-certification-content p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.8;

    color: #555555;

    text-align: justify;
}

.online-certification-content p:last-child {
    margin-bottom: 0;
}

.online-certification-content strong {
    color: #222222;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .online-certification-section {
        padding: 70px 0;
    }

    .online-certification-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .online-certification-image {
        min-height: 380px;
        max-width: 800px;
        margin: 0 auto;
    }

    .online-certification-image img {
        height: 380px;
    }

    .online-certification-content {
        max-width: 850px;
        margin: 0 auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .online-certification-section {
        padding: 55px 0;
    }

    .online-certification-container {
        width: 90%;
        gap: 35px;
    }

    .online-certification-image {
        min-height: 280px;
        border-radius: 18px;
    }

    .online-certification-image img {
        height: 280px;
        border-radius: 18px;
    }

    .online-certification-image::before {
        width: 120px;
        height: 120px;
    }

    .online-certification-image::after {
        width: 90px;
        height: 90px;
    }

    .online-certification-label {
        margin-bottom: 15px;
        padding: 7px 14px;

        font-size: 12px;
    }

    .online-certification-content h2 {
        font-size: 30px;
    }

    .online-certification-content p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .online-certification-content h2 {
        font-size: 27px;
    }

    .online-certification-image {
        min-height: 240px;
    }

    .online-certification-image img {
        height: 240px;
    }

}



/* =========================================
   CAREER & PLACEMENT SUPPORT
========================================= */

.career-support-section {
    width: 100%;
    padding: 90px 0;
    background:#ffffff;
    overflow: hidden;
}

.career-support-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;
    gap: 70px;
}


/* =========================================
   CONTENT
========================================= */

.career-support-content {
    max-width: 760px;
}

.career-support-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 16px;

    background: #fff3e0;
    color: #fa9805;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    border-radius: 30px;
}

.career-support-content h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    font-weight: 800;

    color: #111111;
}

.career-support-content > p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.8;

    color: #555555;

    text-align: justify;
}


/* =========================================
   SUPPORT LIST
========================================= */

.career-support-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 13px 18px;

    margin-top: 25px;
}

.career-support-item {
    display: flex;
    align-items: center;

    padding: 13px 15px;
    border: 1px solid #fa9805;
    background:#fff6ec;

    border-radius: 10px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.career-support-item:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}


/* =========================================
   SMALL ICONS
========================================= */

.career-support-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    background: #fff3e0;

    border-radius: 12px;

    font-size: 20px;

    transition:
        transform 0.4s ease,
        border-radius 0.4s ease;
}

.career-support-item:hover .career-support-icon {
    transform: translateY(-5px) rotate(5deg);
    border-radius: 50%;
}

.career-support-item p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;

    color: #222222;
}


/* =========================================
   RIGHT CAREER VISUAL
========================================= */

.career-support-visual {
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.career-orbit {
    position: relative;

    width: 400px;
    height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   ORBIT CIRCLE
========================================= */

.career-orbit::before {
    content: "";

    position: absolute;

    width: 290px;
    height: 290px;

    border: 2px dashed #fa9805;

    border-radius: 50%;

    opacity: 0.35;

    animation: careerRotate 18s linear infinite;
}

.career-orbit::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border: 1px solid #ffffff;

    border-radius: 50%;
}


/* =========================================
   MAIN CAREER LOGO
========================================= */

.career-main-logo {
    position: relative;
    z-index: 5;

    width: 175px;
    height: 175px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

    text-align: center;

    animation: careerMainFloat 4s ease-in-out infinite;
}

.career-main-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    background: #fff3e0;

    border-radius: 50%;

    font-size: 27px;
}

.career-main-logo span {
    font-size: 14px;
    font-weight: 600;

    color: #555555;
}

.career-main-logo strong {
    color: #fa9805;

    font-size: 22px;
    font-weight: 800;
}


/* =========================================
   FLOATING LOGOS
========================================= */

.career-orbit-icon {
    position: absolute;
    z-index: 6;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:#fff0da;

    border-radius: 16px;

    font-size: 25px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);

    animation: careerIconFloat 3s ease-in-out infinite;
}

.career-icon-one {
    top: 35px;
    left: 65px;
}

.career-icon-two {
    top: 70px;
    right: 35px;

    animation-delay: 0.6s;
}

.career-icon-three {
    right: 35px;
    bottom: 65px;

    animation-delay: 1.2s;
}

.career-icon-four {
    bottom: 30px;
    left: 65px;

    animation-delay: 1.8s;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes careerRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes careerMainFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes careerIconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.career-support-bottom {
    grid-column: 1 / -1;

    max-width: 1100px;

    margin: 5px auto 0;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 22px 28px;

    background:#dae2eb;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.career-bottom-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 800;
}

.career-support-bottom p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #555555;

    text-align: justify;
}

.career-support-bottom strong {
    color: #222222;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .career-support-section {
        padding: 70px 0;
    }

    .career-support-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .career-support-content {
        max-width: 850px;
        margin: 0 auto;
    }

    .career-support-visual {
        min-height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .career-support-section {
        padding: 55px 0;
    }

    .career-support-container {
        width: 90%;
        gap: 35px;
    }

    .career-support-label {
        margin-bottom: 15px;
        padding: 7px 14px;

        font-size: 12px;
    }

    .career-support-content h2 {
        font-size: 30px;
    }

    .career-support-content > p {
        font-size: 15px;
        line-height: 1.7;

        text-align: justify;
    }

    .career-support-list {
        grid-template-columns: 1fr;
        gap: 10px;

        margin-top: 22px;
    }

    .career-support-item {
        padding: 12px 14px;
    }

    .career-support-icon {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        font-size: 18px;
    }

    .career-support-item p {
        font-size: 14px;
    }


    /* Career visual */

    .career-support-visual {
        min-height: 340px;
    }

    .career-orbit {
        width: 320px;
        height: 320px;
    }

    .career-orbit::before {
        width: 235px;
        height: 235px;
    }

    .career-orbit::after {
        width: 175px;
        height: 175px;
    }

    .career-main-logo {
        width: 135px;
        height: 135px;
    }

    .career-main-icon {
        width: 45px;
        height: 45px;

        font-size: 23px;
    }

    .career-main-logo strong {
        font-size: 18px;
    }

    .career-orbit-icon {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }

    .career-icon-one {
        top: 25px;
        left: 40px;
    }

    .career-icon-two {
        top: 55px;
        right: 25px;
    }

    .career-icon-three {
        right: 25px;
        bottom: 45px;
    }

    .career-icon-four {
        bottom: 20px;
        left: 40px;
    }


    /* Bottom */

    .career-support-bottom {
        padding: 18px;

        align-items: flex-start;
    }

    .career-support-bottom p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .career-support-content h2 {
        font-size: 27px;
    }

    .career-orbit {
        width: 285px;
        height: 285px;
    }

    .career-orbit::before {
        width: 210px;
        height: 210px;
    }

    .career-main-logo {
        width: 120px;
        height: 120px;
    }

    .career-orbit-icon {
        width: 43px;
        height: 43px;

        font-size: 19px;
    }

}



.course-choice-section {
    width: 100%;
    padding: 90px 0;
    background: #dae2eb;
    overflow: hidden;
}

.course-choice-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= HEADER ================= */

.course-choice-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.course-choice-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: #fff3e0;
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 30px;
}

.course-choice-header h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    font-weight: 800;
    color: #111;
}

.course-choice-header p {
    margin: 6px 0;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* ================= TABLE ================= */

.course-choice-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Header */

.course-choice-table-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #111;
    color: #ffffff;
}

.course-choice-table-head div {
    padding: 22px 30px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.course-choice-table-head div:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* Rows */

.course-choice-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #eeeeee;
    transition: 0.3s ease;
}

.course-choice-row:last-child {
    border-bottom: none;
}

.course-choice-row > div {
    min-height: 78px;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.course-choice-row > div:last-child {
    border-left: 1px solid #eeeeee;
    color: #fa9805;
    font-weight: 700;
}

.course-choice-row:hover {
    background: #fffaf3;
    transform: translateX(5px);
}

/* ================= ICONS ================= */

.choice-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff3e0;
    border-radius: 14px;
    font-size: 21px;
    transition: 0.4s ease;
}

.course-choice-row:hover .choice-icon {
    transform: rotate(-8deg) scale(1.12);
}

/* ================= ADVISOR ================= */

.course-choice-advisor {
    max-width: 900px;
    margin: 35px auto 0;
    padding: 22px 30px;
    background: #ffffff;
    border-left: 5px solid #fa9805;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.course-choice-advisor p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-weight: 600;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .course-choice-section {
        padding: 75px 0;
    }

    .course-choice-header {
        margin-bottom: 40px;
    }

    .course-choice-table-head div,
    .course-choice-row > div {
        padding-left: 22px;
        padding-right: 22px;
    }

    .course-choice-row > div {
        min-height: 72px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .course-choice-section {
        padding: 60px 0;
    }

    .course-choice-header {
        margin-bottom: 30px;
    }

    .course-choice-header h2 {
        font-size: 32px;
    }

    .course-choice-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .course-choice-table {
        border-radius: 18px;
    }

    .course-choice-table-head {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .course-choice-table-head div {
        padding: 17px 15px;
        font-size: 14px;
    }

    .course-choice-row {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .course-choice-row > div {
        min-height: 70px;
        padding: 14px 15px;
        font-size: 14px;
    }

    .course-choice-row > div:last-child {
        border-left: 1px solid #eeeeee;
    }

    .choice-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        margin-right: 10px;
        border-radius: 11px;
        font-size: 17px;
    }

    .course-choice-advisor {
        margin-top: 25px;
        padding: 18px 20px;
    }

    .course-choice-advisor p {
        font-size: 14px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 380px) {

    .course-choice-header h2 {
        font-size: 29px;
    }

    .course-choice-table-head div {
        padding: 15px 11px;
        font-size: 13px;
    }

    .course-choice-row > div {
        padding: 12px 10px;
        font-size: 13px;
    }

    .choice-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        margin-right: 7px;
        font-size: 15px;
    }
}



/* ================================
   START LEARNING ONLINE
================================ */

.start-learning-section {
    width: 100%;
    padding: 95px 0;
    background: #dae2eb;
    overflow: hidden;
}

.start-learning-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

/* ================================
   CONTENT
================================ */

.start-learning-content {
    max-width: 720px;
}

.start-learning-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: #fff3e0;
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 30px;
}

.start-learning-content h2 {
    margin: 0 0 22px;
    color: #111;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 800;
}

.start-learning-content p {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.85;
    text-align: justify;
}

.start-learning-content strong {
    color: #111;
    font-weight: 700;
}

/* ================================
   BUTTONS
================================ */

.start-learning-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}

.start-learning-btn {
    min-height: 52px;
    padding: 14px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 10px;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: all 0.35s ease;
}

.start-learning-btn span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* Primary */

.primary-btn {
    background: #fa9805;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(250, 152, 5, 0.22);
}

.primary-btn:hover {
    background: #111;
    color: #ffffff;
    transform: translateY(-3px);
}

.primary-btn:hover span {
    transform: translateX(5px);
}

/* Secondary */

.secondary-btn {
    background: #ffffff;
    color: #111;
    border: 1px solid #e5e5e5;
}

.secondary-btn:hover {
    background: #111;
    color: #ffffff;
    transform: translateY(-3px);
}

.secondary-btn:hover span {
    transform: translate(3px, -3px);
}

/* ================================
   VISUAL
================================ */

.start-learning-visual {
    position: relative;

    width: 420px;
    height: 420px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit */

.learning-orbit {
    position: absolute;
    border: 2px dashed rgba(250, 152, 5, 0.35);
    border-radius: 50%;
}

.orbit-one {
    width: 300px;
    height: 300px;
    animation: orbitRotate 18s linear infinite;
}

.orbit-two {
    width: 390px;
    height: 390px;
    border-color: rgba(17, 17, 17, 0.12);
    animation: orbitRotateReverse 25s linear infinite;
}

/* Center */

.learning-center {
    position: relative;
    z-index: 5;

    width: 145px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 50%;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 0 0 15px rgba(255, 255, 255, 0.45);

    animation: centerPulse 3s ease-in-out infinite;
}

.learning-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;
    border-radius: 28px;

    font-size: 42px;

    animation: iconFloat 3s ease-in-out infinite;
}

/* ================================
   FLOATING ICONS
================================ */

.learning-float-icon {
    position: absolute;
    z-index: 6;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 17px;

    font-size: 25px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);

    animation: floatIcon 4s ease-in-out infinite;
}

.icon-one {
    top: 35px;
    left: 55px;
    animation-delay: 0s;
}

.icon-two {
    top: 70px;
    right: 35px;
    animation-delay: 0.8s;
}

.icon-three {
    bottom: 55px;
    left: 35px;
    animation-delay: 1.5s;
}

.icon-four {
    right: 60px;
    bottom: 35px;
    animation-delay: 2.2s;
}

/* ================================
   ANIMATIONS
================================ */

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes centerPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .start-learning-section {
        padding: 75px 0;
    }

    .start-learning-container {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
    }

    .start-learning-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .start-learning-content p {
        text-align: center;
    }

    .start-learning-buttons {
        justify-content: center;
    }

    .start-learning-visual {
        width: 380px;
        height: 380px;
    }

    .orbit-one {
        width: 270px;
        height: 270px;
    }

    .orbit-two {
        width: 350px;
        height: 350px;
    }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .start-learning-section {
        padding: 60px 0;
    }

    .start-learning-container {
        width: 92%;
        gap: 45px;
    }

    .start-learning-content h2 {
        font-size: 32px;
    }

    .start-learning-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .start-learning-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .start-learning-btn {
        width: 100%;
    }

    .start-learning-visual {
        width: 300px;
        height: 300px;
    }

    .orbit-one {
        width: 205px;
        height: 205px;
    }

    .orbit-two {
        width: 275px;
        height: 275px;
    }

    .learning-center {
        width: 105px;
        height: 105px;
    }

    .learning-icon {
        width: 65px;
        height: 65px;
        border-radius: 20px;
        font-size: 30px;
    }

    .learning-float-icon {
        width: 45px;
        height: 45px;
        border-radius: 13px;
        font-size: 20px;
    }

    .icon-one {
        top: 20px;
        left: 25px;
    }

    .icon-two {
        top: 45px;
        right: 15px;
    }

    .icon-three {
        bottom: 35px;
        left: 15px;
    }

    .icon-four {
        right: 25px;
        bottom: 20px;
    }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .start-learning-content h2 {
        font-size: 29px;
    }

    .start-learning-visual {
        width: 270px;
        height: 270px;
    }

    .orbit-one {
        width: 185px;
        height: 185px;
    }

    .orbit-two {
        width: 245px;
        height: 245px;
    }

    .learning-center {
        width: 95px;
        height: 95px;
    }

    .learning-icon {
        width: 58px;
        height: 58px;
        font-size: 27px;
    }
}


/* FAQ Section - White Background with Smooth Animations */
.faq-section {
    background: #ffffff;
    padding: 40px 60px;
    position: relative;
}

.faq-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a0e27;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fa9805;
    border-radius: 2px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background:#dae2eb;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fa9805;
}

.faq-item.active {
    border-color: #fa9805;
    box-shadow: 0 4px 20px rgba(250, 152, 5, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #0a0e27;
    text-align: left;
    transition: all 0.3s ease;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #fa9805;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #fa9805;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    font-style: normal;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
}
 .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;

    transition:
        max-height 0.45s ease,
        opacity 0.3s ease;

 }
.faq-item.active .faq-answer {
    opacity: 1;
}


/* .faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
} */

.faq-answer-inner {
    padding: 0 25px 0 25px;
    transform: translateY(-10px);
    transition: transform 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
    padding: 0 25px 25px 25px;
    transform: translateY(0);
}

.faq-answer-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    animation: fadeInContent 0.5s ease;
}

.faq-answer-inner strong {
    color: #0a0e27;
    font-weight: 700;
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Devices */
@media screen and (max-width: 992px) {
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer-inner p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        gap: 12px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 18px 18px 18px;
    }
    
    .faq-answer-inner p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 15px;
        gap: 10px;
    }
    
    .faq-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-inner p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .faq-question {
        font-size: 13px;
        padding: 12px 12px;
    }
    
    .faq-icon {
        font-size: 16px;
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    
    .faq-item.active .faq-answer-inner {
        padding: 0 12px 12px 12px;
    }
    
    .faq-answer-inner p {
        font-size: 12px;
        line-height: 1.6;
    }
}