

/*==========================================*
  AI HERO SECTION
*==========================================*/

.ai-hero {
    padding: 90px 0;
    overflow: hidden;
}

.course-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */

.course-tag {
    display: inline-block;
    padding: 10px 22px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 11px;
}

.ai-content h1 {
    font-size: 55px;
    line-height: 1.2;
    color: whitesmoke;
    margin-bottom: 25px;
}

.ai-content h1 span {
    display: block;
    color: greenyellow;
}

.ai-content p {
    font-size: 18px;
    line-height: 1.9;
    color: white;
    margin-bottom: 40px;
}

/* INFO */

.course-info {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 15px;
    border-radius: 15px;
    box-shadow: 0 12px 30px black;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 1px 1px 10px greenyellow;
}

.info-box i {
    font-size: 26px;
    color: greenyellow;
}

.info-box strong {
    display: block;
    color: greenyellow;
}

.info-box span {
    font-size: 14px;
    color: white;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.demo-btn,
.download-btn {
    padding: 16px 22px;
    border: 2px solid greenyellow;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.demo-btn:hover,
.download-btn:hover {
    background: greenyellow;
    color: black;
}

/* IMAGE */

.ai-image {
    position: relative;
}

.ai-image img {
    width: 100%;
    display: block;
    border-radius: 25px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

/* FLOATING CARDS */

.floating-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

.top-card {
    top: 30px;
    left: -40px;
}

.bottom-card {
    bottom: 40px;
    right: -30px;
}


/*==========================================*
  AI CAREER SECTION
*==========================================*/

.ai-career {
    padding: 0 90px;
    margin-top: 0;
    position: relative;
    clear: both;
}

.ai-career-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* HEADING */

.career-heading {
    text-align: center;
    margin-bottom: 70px;
}

.career-section-tag{
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 25px;
}

.career-heading h1 {
    font-size: 55px;
    color: #fff;
    margin: 20px 0;
}

.career-heading h2 {
    color: white;
    font-size: 25px;
    padding-bottom: 20px;
}

.career-heading h1 span {
    display: block;
    color: greenyellow;
}

.career-heading p {
    max-width: 800px;
    margin: auto;
    color: #d8d8d8;
    line-height: 1.9;
    font-size: 18px;
}

/* CAREER CARDS */

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.career-card {
    /* background: #162338; */
    box-shadow:0 8px 25px black;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border-top: 5px solid greenyellow;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px greenyellow;
}

.career-number {
    font-size: 50px;
    font-weight: bold;
    color: greenyellow;
    margin-bottom: 20px;
}

.career-card h3 {
    color: greenyellow;
    margin-bottom: 20px;
    font-size: 15px;
}

.career-card p {
    color: #d6d6d6;
    line-height: 1.8;
}

.salary-note {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
}

/* SOURCE */

.career-source {
    margin-top: 45px;
    text-align: center;
    color: #cbd5e1;
    font-size: 15px;
}


/*==========================================*
  SECTION 2 : AI ROLE
*==========================================*/

.ai-role-section {
    padding:90px 0;
    position: relative;
    margin-top: 0;
    clear: both;
}

.ai-role-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADING */

.section-title1 {
    text-align: center;
    margin-bottom: 60px;
}

.ai-role-section-tag{
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-title1 h2 {
    font-size: 55px;
    line-height: 1.3;
    color: greenyellow;
    margin: 0;
}

.section-title1 h3 {
    font-size: 55px;
    line-height: 1.3;
    color: white;
    margin: 0;
}

/* LAYOUT */

.ai-role-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LIST */

.role-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-content li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.role-content li i {
    width: 50px;
    height: 50px;
    background: greenyellow;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: 0.4s;
}

.role-content li:hover i {
    background: yellowgreen;
    transform: rotate(360deg);
}

.role-content li span {
    color: #d7d7d7;
    font-size: 18px;
    line-height: 1.8;
}

.role-content strong {
    color: yellowgreen;
}

/* RIGHT MESSAGE */

.role-message {
    /* background: #162338; */
    box-shadow:0 8px 25px black;
    border-left: 5px solid greenyellow;
    padding: 35px;
    border-radius: 20px;
    transition: 0.4s;
}

.role-message:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px greenyellow;
}

.role-message i {
    font-size: 55px;
    color: greenyellow;
    margin-bottom: 20px;
}

.role-message p {
    color: #fff;
    line-height: 1.9;
    font-size: 17px;
}

.role-message strong {
    color: yellowgreen;
}


/*==========================================*
  RESPONSIVE
*==========================================*/

@media (max-width: 1100px) {

    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* TABLET */

@media (max-width: 992px) {

    .course-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .course-info {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .ai-image {
        margin-top: 40px;
    }

    .top-card {
        left: 10px;
    }

    .bottom-card {
        right: 10px;
    }

    .ai-role-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .role-message {
        text-align: center;
    }

}

/* MOBILE */

@media (max-width: 768px) {

    .ai-hero {
        padding: 70px 0;
    }

    .course-container {
        display: flex;
        flex-direction: column;
    }

    .ai-content h1 {
        font-size: 40px;
    }

    .ai-content p {
        font-size: 16px;
    }

    .info-box {
        width: 80%;
        text-align: left;
        /* justify-content: center; */
        /* align-items: center; */
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .ai-career {
        padding: 70px 0;
        margin-top: 0;
    }

    .career-heading h1 {
        font-size: 38px;
    }

    .career-heading p {
        font-size: 16px;
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .career-card {
        padding: 30px;
    }

    .career-number {
        font-size: 42px;
    }

    .ai-role-section {
        padding: 70px 0;
        margin-top: 0;
    }

    .ai-role-section h2{
        font-size: 35px;
    }

    .ai-role-section h3{
        font-size: 35px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .role-content li {
        gap: 15px;
    }

    .role-content li span {
        font-size: 16px;
    }

    .role-message {
        padding: 30px;
    }

    .role-message p {
        font-size: 16px;
    }

}


/* SMALL MOBILE */

@media (max-width: 576px) {

    .ai-content h1 {
        font-size: 32px;
    }

    .course-tag {
        font-size: 11px;
    }

    .floating-card {
        display: none;
    }

    .career-heading h1 {
        font-size: 30px;
    }

    .career-heading h2 {
        font-size: 21px;
    }

    .career-card h3 {
        font-size: 20px;
    }

    .career-number {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .role-content li {
        align-items: flex-start;
        gap: 12px;
    }

    .role-content li i {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .role-content li span {
        font-size: 15px;
    }

    .role-message {
        padding: 25px;
    }

    .role-message i {
        font-size: 42px;
    }

    .role-message p {
        font-size: 15px;
    }

}


/*==========================================
        SECTION 3 : PROMPTING SKILL
===========================================*/

.prompt-skill-section {
    width: 100%;
    padding:100px 0;
    position: relative;
    overflow: hidden;
}


/* Container */

.prompt-skill-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;

    align-items: center;
}

/*==========================================
        LEFT CONTENT
===========================================*/

.prompt-skill-content {
    position: relative;
}

/* Section Tag */

.prompt-section-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Heading */

.prompt-skill-content h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 46px;
    line-height: 1.25;
}

.prompt-skill-content h2 span {
    display: block;
    color: greenyellow;
}

/* Intro Paragraph */

.prompt-intro {
    max-width: 650px;
    color: #d7d7d7;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/*==========================================
        SKILL LIST
===========================================*/

.prompt-skill-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* List Item */

.prompt-skill-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    box-shadow: 0 10px 20px black;
    border-radius: 12px;
    border-left: 3px solid greenyellow;
    transition: 0.3s ease;
}

/* Hover */

.prompt-skill-list li:hover {
    transform: translateX(8px);
    border-left-color: yellowgreen;
    box-shadow:0 8px 25px greenyellow;
}

/* Icon */

.prompt-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: greenyellow;
    color: #000;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s ease;
}

/* Icon Hover */

.prompt-skill-list li:hover .prompt-icon {
    background: yellowgreen;
    transform: rotate(10deg) scale(1.08);
}

/* Text */

.prompt-skill-list strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

/*==========================================
        RIGHT RESULT BOX
===========================================*/

.prompt-result-box {
    /* padding: 45px 35px;
    background: #162338; */
    /* border: 1px solid rgba(173, 255, 47, 0.35); */
    /* text-align: center; */
    box-shadow: 0 15px 40px black;
    transition: 0.4s ease;
}

/* Box Hover */

.prompt-result-box:hover {
    background: none;
    transform: translateY(-8px);
    border-color: greenyellow;
    /* box-shadow:0 20px 45px greenyellow; */
}

.prompt-result-box img{
    width: 100%;
    border-radius: 25px;
}



/*==========================================
        DIVIDER
===========================================*/

.prompt-line {
    width: 70px;
    height: 3px;
    background: greenyellow;
    margin: 30px auto;
}


/*==========================================
        FLOW
===========================================*/

.prompt-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.prompt-flow span {
    color: #000;
    background: greenyellow;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.prompt-flow i {
    color: yellowgreen;
    font-size: 12px;
}


/*==========================================
        TABLET
===========================================*/

@media (max-width: 992px) {

    .prompt-skill-section {
        padding: 80px 0;
    }

    .prompt-skill-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .prompt-skill-content {
        text-align: center;
    }

    .prompt-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .prompt-skill-list {
        text-align: left;
    }

    .prompt-result-box {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
}


/*==========================================
        MOBILE
===========================================*/

@media (max-width: 768px) {

    .prompt-skill-section {
        padding: 70px 0;
    }

    .prompt-skill-container {
        width: 90%;
    }

    .prompt-skill-content h2 {
        font-size: 36px;
    }

    .prompt-intro {
        font-size: 16px;
    }

    .prompt-skill-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .prompt-skill-list li {
        padding: 14px;
    }

    .prompt-result-box {
        padding: 35px 25px;
        box-shadow: none;
    }

    .prompt-result-box h3 {
        font-size: 25px;
    }
}


/*==========================================
        SMALL MOBILE
===========================================*/

@media (max-width: 480px) {

    .prompt-skill-section {
        padding: 60px 0;
    }

    .prompt-section-tag {
        font-size: 12px;

        padding: 8px 16px;
    }

    .prompt-skill-content h2 {
        font-size: 29px;
        line-height: 1.35;
    }

    .prompt-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .prompt-skill-list li {
        gap: 12px;
    }

    .prompt-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 14px;
    }

    .prompt-skill-list strong {
        font-size: 14px;
    }

    .prompt-result-box {
        padding: 30px 20px;
    }

    .prompt-result-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .prompt-result-box h3 {
        font-size: 22px;
    }

    .prompt-result-box p {
        font-size: 14px;
    }

    .prompt-flow {
        gap: 6px;
    }

    .prompt-flow span {
        padding: 7px 10px;
        font-size: 11px;
    }

}

/*==========================================
        SECTION 4 : WHAT YOU WILL MASTER
===========================================*/

/* .ai-master-section {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
} */

/*==========================================
        CONTAINER
===========================================*/

/* .ai-master-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
} */

/*==========================================
        HEADING
===========================================*/

/* .ai-master-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 65px;
} */


/* Tag */

/* .ai-master-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 22px;
} */

/* Heading */

/* .ai-master-heading h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.25;
}

.ai-master-heading h2 span {
    color: greenyellow;
} */

/* Description */

/* .ai-master-heading p {
    margin: 0 auto;
    max-width: 700px;
    color: white;
    font-size: 17px;
    line-height: 1.8;
} */

/*==========================================
        MASTER GRID
===========================================*/

/* .ai-master-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
} */

/*==========================================
        MASTER ITEM
===========================================*/

/* .ai-master-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px; */
    /* border: 1px solid rgba(173, 255, 47, 0.15); */
    /* box-shadow:0 10px 20px black;   
    border-radius: 18px;
    transition: all 0.35s ease;
} */

/* Hover */

/* .ai-master-item:hover {
    transform: translateY(-7px);
    box-shadow:0 18px 35px greenyellow;
} */

/*==========================================
        NUMBER
===========================================*/

/* .ai-master-number {
    min-width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: greenyellow;
    color: #000;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.35s ease;
} */

/* Number Hover */

/* .ai-master-item:hover .ai-master-number {
    background: yellowgreen;
    transform: scale(1.08);
} */

/*==========================================
        CONTENT
===========================================*/

/* .ai-master-content h3 {
    margin: 3px 0 12px;
    color: yellowgreen;
    font-size: 20px;
    line-height: 1.4;
}

.ai-master-content p {
    margin: 0;
    color: #d5dbe5;
    font-size: 15px;
    line-height: 1.8;
} */

/*==========================================
        LAST ITEM
===========================================*/
/* 
.ai-master-wide {
    grid-column: 1 / -1;
    max-width: calc(50% - 11px);
} */

/*==========================================
        TABLET
===========================================*/

/* @media (max-width: 992px) {

    .ai-master-section {
        padding: 85px 0;
    }

    .ai-master-grid {
        grid-template-columns: 1fr;
    }

    .ai-master-wide {
        grid-column: auto;
        max-width: none;
    }

} */

/*==========================================
        MOBILE
===========================================*/

/* @media (max-width: 768px) {

    .ai-master-section {
        padding: 70px 0;
    }

    .ai-master-container {
        width: 90%;
    }

    .ai-master-heading {
        margin-bottom: 45px;
    }

    .ai-master-heading h2 {
        font-size: 36px;
    }

    .ai-master-heading p {
        font-size: 16px;
    }

    .ai-master-item {
        padding: 25px;

        gap: 18px;
    }

    .ai-master-number {
        min-width: 50px;
        height: 50px;

        font-size: 16px;
    }

    .ai-master-content h3 {
        font-size: 18px;
    }

    .ai-master-content p {
        font-size: 15px;
    }

} */


/*==========================================
        SMALL MOBILE
===========================================*/
/* 
@media (max-width: 480px) {

    .ai-master-section {
        padding: 60px 0;
    }

    .ai-master-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .ai-master-heading h2 {
        font-size: 29px;
        line-height: 1.35;
    }

    .ai-master-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .ai-master-grid {
        gap: 16px;
    }

    .ai-master-item {
        padding: 20px;
        gap: 15px;
    }

    .ai-master-number {
        min-width: 43px;
        height: 43px;
        border-radius: 10px;
        font-size: 14px;
    }

    .ai-master-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .ai-master-content p {
        font-size: 14px;
        line-height: 1.7;
    }

} */


/*==========================================
        SECTION 5 : AI PORTFOLIO
===========================================*/

.ai-portfolio-section {
    width: 100%;
    padding:50px 100px;
    position: relative;
    overflow: hidden;
}


/*==========================================
        CONTAINER
===========================================*/

.ai-portfolio-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/*==========================================
        LEFT CONTENT
===========================================*/

.ai-portfolio-content {
    position: relative;
    z-index: 2;
}


/* Tag */

.ai-portfolio-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 25px;
}


/* Heading */

.ai-portfolio-content h2 {
    color: #fff;
    font-size: 46px;
    line-height: 1.25;
    margin: 0 0 25px;
}


.ai-portfolio-content h2 span {
    display: block;
    color: greenyellow;
}


/* Introduction */

.ai-portfolio-intro {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 35px;
}


/*==========================================
        BUTTON
===========================================*/
/* 
.ai-portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: yellowgreen;
    color: #000;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}


.ai-portfolio-btn i {
    transition: transform 0.35s ease;
}


.ai-portfolio-btn:hover {
    background: greenyellow;
    transform: translateY(-1px);
    box-shadow:0 10px 45px greenyellow;
}


.ai-portfolio-btn:hover i {
    transform: translateX(5px);
} */


/*==========================================
        PORTFOLIO LIST
===========================================*/

.ai-portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* Individual Item */

.ai-portfolio-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border-left: 4px solid greenyellow;
    box-shadow:0 10px 20px black;
    border-radius: 12px;
    transition: all 0.35s ease;
}


/* Hover */

.ai-portfolio-item:hover {
    transform: translateX(8px);
    border-left-color: yellowgreen;
    box-shadow:0 12px 25px greenyellow;
}


/* Number */

.ai-portfolio-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: greenyellow;
    color: #000;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}


/* Text */

.ai-portfolio-item p {
    margin: 0;
    color: WHITE;
    font-size: 16px;
    line-height: 1.6;
}


/*==========================================
        TABLET
===========================================*/

@media (max-width: 992px) {

    .ai-portfolio-section {
        padding: 85px 0;
    }

    .ai-portfolio-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ai-portfolio-content {
        text-align: center;
    }

    .ai-portfolio-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .ai-portfolio-list {
        max-width: 750px;
        width: 100%;
        margin: auto;
    }

}


/*==========================================
        MOBILE
===========================================*/

@media (max-width: 768px) {

    .ai-portfolio-section {
        padding: 70px 0;
    }

    .ai-portfolio-content h2 {
        font-size: 36px;
    }

    .ai-portfolio-intro {
        font-size: 16px;
        line-height: 1.8;
    }

    .ai-portfolio-item {
        padding: 16px 18px;
        gap: 15px;
    }

    .ai-portfolio-item p {
        font-size: 15px;
    }

}


/*==========================================
        SMALL MOBILE
===========================================*/

@media (max-width: 480px) {

    .ai-portfolio-section {
        padding: 60px 0;
    }

    .ai-portfolio-container {
        width: 90%;
        gap: 40px;
    }

    .ai-portfolio-tag {
        font-size: 12px;
        padding: 8px 16px;
    }

    .ai-portfolio-content h2 {
        font-size: 29px;
        line-height: 1.35;
    }

    .ai-portfolio-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .ai-portfolio-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
    }

    .ai-portfolio-item {
        padding: 15px;
        gap: 12px;
    }

    .ai-portfolio-number {
        min-width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .ai-portfolio-item p {
        font-size: 14px;
    }

}

/*========================================
    SECTION 6 : WHERE THIS SKILL CAN HELP
=========================================*/

.skill-career-section {
    width: 100%;
    padding:90px 90px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/*========================================
    CONTAINER
=========================================*/

.skill-career-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    box-sizing: border-box;
}

/*========================================
    HEADING
=========================================*/

.skill-career-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.skill-career-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    margin-bottom: 20px;
}

.skill-career-heading h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
}

.skill-career-heading h2 span {
    color: greenyellow;
}

.skill-career-heading p {
    margin: 0 auto;
    color: white;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}

/*========================================
    MAIN AREA
=========================================*/

.skill-career-main {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
    align-items: start;
}

/*========================================
    INTRODUCTION
=========================================*/

.skill-career-intro {
    position: relative;
    padding-left: 28px;
    margin-top: 10px;
}

.intro-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    min-height: 150px;
    background: linear-gradient(
        to bottom,
        greenyellow,
        yellowgreen
    );
    border-radius: 10px;
}

.skill-career-intro h3 {
    color: greenyellow;
    font-size: 30px;
    line-height: 1.3;
    margin: 0 0 20px;
}

.skill-career-intro p {
    color: white;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    max-width: 350px;
}

/*========================================
    CAREER TIMELINE
=========================================*/

.career-timeline {
    position: relative;
    padding-left: 55px;
}

/* Vertical line */

.career-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        greenyellow,
        yellowgreen
    );
    opacity: 0.6;
}


/*========================================
    TIMELINE ITEM
=========================================*/

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 55px;
    margin-bottom: 20px;
    padding: 8px 0;
    transition: 0.35s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Number Circle */

.timeline-number {
    position: absolute;
    left: -55px;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #2a2d32;
    border: 2px solid greenyellow;
    color: greenyellow;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    transition: 0.35s ease;
}

/* Career text */

.timeline-text {
    color: white;
    font-size: 17px;
    line-height: 1.5;
    transition: 0.35s ease;
}

/* Hover */

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-item:hover .timeline-number {
    background: greenyellow;
    color: #000;
    transform: scale(1.15);
    box-shadow:0 0 20px rgba(173, 255, 47, 0.35);
}

.timeline-item:hover .timeline-text {
    color: yellowgreen;
}

/*========================================
    DISCLAIMER
=========================================*/

.skill-career-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    padding: 28px 30px;
    /* background: rgba(22, 35, 56, 0.65);
    border-top: 1px solid rgba(173, 255, 47, 0.25);
    border-bottom: 1px solid rgba(173, 255, 47, 0.25); */
    border-radius: 15px;
    box-sizing: border-box;
    box-shadow:0 10px 20px black;
}

.disclaimer-icon {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: greenyellow;
    color: #000;
    font-size: 19px;
}

.skill-career-disclaimer h4 {
    color: greenyellow;
    margin: 0 0 8px;
}

.skill-career-disclaimer p {
    color: white;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/*========================================
    TABLET
=========================================*/

@media (max-width: 900px) {

    .skill-career-main {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .skill-career-intro {
        text-align: center;
        padding-left: 0;
        max-width: 650px;
        margin: 0 auto;
    }

    .intro-line {
        position: relative;
        width: 70px;
        height: 4px;
        min-height: 0;
        margin: 0 auto 25px;
        background: linear-gradient(
            to right,
            greenyellow,
            yellowgreen
        );
    }

    .skill-career-intro p {
        max-width: 650px;
        margin: auto;
    }

    .career-timeline {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

}

/*========================================
    MOBILE TABLET
=========================================*/

@media (max-width: 768px) {

    .skill-career-section {
        padding: 80px 0;
    }

    .skill-career-heading {
        margin-bottom: 55px;
    }

    .skill-career-heading h2 {
        font-size: 40px;
    }

    .skill-career-heading p {
        font-size: 16px;
    }

    .skill-career-intro h3 {
        font-size: 27px;
    }

    .timeline-text {
        font-size: 16px;
    }

    .skill-career-disclaimer {
        margin-top: 60px;
        padding: 22px;
    }

}

/*========================================
    MOBILE
=========================================*/

@media (max-width: 500px) {

    .skill-career-section {
        padding: 65px 0;
    }

    .skill-career-container {
        width: 88%;
    }

    .skill-career-label {
        font-size: 10px;
        padding: 8px 15px;
    }

    .skill-career-heading h2 {
        font-size: 30px;
        line-height: 1.35;
    }

    .skill-career-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .skill-career-intro h3 {
        font-size: 23px;
    }

    .skill-career-intro p {
        font-size: 14px;
        line-height: 1.8;
    }

    .career-timeline {
        padding-left: 45px;
    }

    .career-timeline::before {
        left: 15px;
    }

    .timeline-number {
        left: -45px;
        width: 32px;
        height: 32px;
        font-size: 9px;
    }

    .timeline-item {
        min-height: 48px;
        margin-bottom: 15px;
    }

    .timeline-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .timeline-item:hover {
        transform: translateX(5px);
    }

    .skill-career-disclaimer {
        gap: 12px;
        margin-top: 45px;
        padding: 18px;
    }

    .disclaimer-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .skill-career-disclaimer h4 {
        font-size: 16px;
    }

    .skill-career-disclaimer p {
        font-size: 12px;
        line-height: 1.7;
    }

}

/*========================================
        SECTION 7 : EMPLOYER INSIGHT
=========================================*/

.employer-insight-section {
    width: 100%;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/*========================================
        CONTAINER
=========================================*/

.employer-insight-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    box-sizing: border-box;
}

/*========================================
        MAIN CONTENT
=========================================*/

.employer-insight-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 90px;
    align-items: center;
}

/*========================================
        LEFT QUOTE AREA
=========================================*/

.employer-quote-area {
    position: relative;
    padding-left: 10px;
}

.employer-label {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    /* letter-spacing: 1px; */
    margin-bottom: 25px;
}

/* Quote Icon */

.quote-mark {
    position: absolute;
    right: 20px;
    top: 5px;
    font-size: 70px;
    color: rgb(76, 109, 26);
    pointer-events: none;
}

/* Heading */

.employer-quote-area h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2;
    margin: 0 0 35px;
    font-weight: 700;
}

.employer-quote-area h2 span {
    display: block;
    color: greenyellow;
}

/* Quote */

.employer-quote-area blockquote {
    margin: 0;
    padding-left: 25px;
    border-left: 4px solid greenyellow;
    color: #f1f5f9;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.6;
    max-width: 650px;
}

/*========================================
        RIGHT INFORMATION
=========================================*/

.employer-info {
    position: relative;
    padding: 30px 0 30px 30px;
}

.employer-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        greenyellow,
        yellowgreen
    );
    border-radius: 10px;
}

/* Paragraph */

.employer-info p {
    margin: 0;
    color: #d7d7d7;
    font-size: 18px;
    line-height: 2;
}

.employer-info p strong {
    color: greenyellow;
    font-size: 42px;
    font-weight: 800;
    display: inline-block;
    line-height: 1;
}

/*========================================
        SOURCE
=========================================*/

.source-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: yellowgreen;
    font-size: 14px;
    font-weight: 600;
}

.source-label i {
    color: greenyellow;
    font-size: 18px;
}

/*========================================
        HOVER EFFECT
=========================================*/

.employer-quote-area blockquote {
    transition: 0.4s ease;
}

.employer-quote-area blockquote:hover {
    padding-left: 35px;
    color: greenyellow;
}

.employer-info {
    transition: 0.4s ease;
}

.employer-info:hover {
    transform: translateX(8px);
}

/*========================================
        TABLET
=========================================*/

@media (max-width: 900px) {

    .employer-insight-section {
        padding: 85px 0;
    }

    .employer-insight-content {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
    }

    .employer-quote-area {
        padding-left: 0;
    }

    .employer-quote-area h2 {
        font-size: 42px;
    }

    .employer-quote-area h2 span {
        display: inline;
    }

    .employer-quote-area blockquote {
        text-align: left;
        margin: 0 auto;
        max-width: 650px;
    }

    .employer-info {
        text-align: left;
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

}

/*========================================
        MOBILE
=========================================*/

@media (max-width: 600px) {

    .employer-insight-section {
        padding: 70px 0;
    }

    .employer-insight-container {
        width: 88%;
    }

    .employer-label {
        font-size: 10px;
        padding: 8px 16px;
    }

    .quote-mark {
        font-size: 50px;
        right: 0;
    }

    .employer-quote-area h2 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .employer-quote-area blockquote {
        font-size: 20px;
        line-height: 1.6;
        padding-left: 18px;
    }

    .employer-info {
        padding: 25px 0 25px 22px;
    }

    .employer-info p {
        font-size: 15px;
        line-height: 1.8;
    }

    .employer-info p strong {
        font-size: 34px;
    }

    .source-label {
        font-size: 12px;
        margin-top: 22px;
    }

}

/*========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 400px) {

    .employer-quote-area h2 {
        font-size: 28px;
    }

    .employer-quote-area blockquote {
        font-size: 18px;
    }

    .employer-info p {
        font-size: 14px;
    }

}

/* ==========================================
   SECTION 8 : WHY NXTGENBUDDY
=========================================== */

.why-nxtgen {
    padding:0px 90px;
    position: relative;
    overflow: hidden;
}

/* Background Glow */

.why-nxtgen::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: greenyellow;
    opacity: 0.04;
    border-radius: 50%;
    top: -120px;
    left: -120px;
    filter: blur(80px);
}

.why-nxtgen::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: yellowgreen;
    opacity: 0.04;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    filter: blur(80px);
}

/* Container */

.why-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ==========================================
   HEADING
=========================================== */

.why-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.why-tag {
    display: inline-block;
    padding: 9px 22px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}


.why-heading h2 {
    color: greenyellow;
    font-size: 48px;
    line-height: 1.3;
    margin: 0 0 20px;
}



/* ==========================================
   FEATURE LIST
=========================================== */

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 70px;
}


/* Feature */

.why-feature {
    display: flex;
    gap: 22px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    position: relative;
    transition: 0.4s ease;
    animation: whyFade 0.8s ease both;}


/* Green Line */

.why-feature::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: greenyellow;
    transition: 0.4s ease;
}


.why-feature:hover::before {
    width: 100%;
}


/* Number */

.feature-number {
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid greenyellow;
    color: greenyellow;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    transition: 0.4s ease;
}


.why-feature:hover .feature-number {
    background: greenyellow;
    color: #000;
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 0 25px rgba(173,255,47,0.35);
}


/* Content */

.feature-content h3 {
    color: yellowgreen;
    font-size: 21px;
    margin: 0 0 10px;
    line-height: 1.4;
    transition: 0.3s ease;
}


.why-feature:hover .feature-content h3 {
    color: greenyellow;
}


.feature-content p {
    color: white;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    max-width: 450px;}


/* ==========================================
   ANIMATION
=========================================== */

@keyframes whyFade {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Staggered Animation */

.why-feature:nth-child(1) {
    animation-delay: 0.1s;
}

.why-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.why-feature:nth-child(3) {
    animation-delay: 0.3s;
}

.why-feature:nth-child(4) {
    animation-delay: 0.4s;
}

.why-feature:nth-child(5) {
    animation-delay: 0.5s;
}

.why-feature:nth-child(6) {
    animation-delay: 0.6s;
}

.why-feature:nth-child(7) {
    animation-delay: 0.7s;
}


/* ==========================================
   TABLET
=========================================== */

@media (max-width: 992px) {

    .why-nxtgen {
        padding: 90px 0;
    }

    .why-heading {
        margin-bottom: 50px;
    }

    .why-heading h2 {
        font-size: 40px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .why-feature {
        padding: 25px 0;
    }

}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 768px) {

    .why-nxtgen {
        padding: 70px 0;
    }

    .why-container {
        width: 88%;
    }

    .why-heading h2 {
        font-size: 34px;
    }

    .why-heading p {
        font-size: 16px;
    }

    .why-feature {
        gap: 16px;
        padding: 23px 0;
    }

    .feature-number {
        min-width: 48px;
        width: 48px;
        height: 48px;

        font-size: 13px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

}


/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 480px) {

    .why-nxtgen {
        padding: 60px 0;
    }

    .why-heading {
        margin-bottom: 35px;
    }

    .why-tag {
        font-size: 12px;
        padding: 8px 17px;
    }

    .why-heading h2 {
        font-size: 28px;
    }

    .why-heading p {
        font-size: 14px;
    }

    .why-feature {
        gap: 13px;
        padding: 20px 0;
    }

    .feature-number {
        min-width: 42px;
        width: 42px;
        height: 42px;

        font-size: 11px;
    }

    .feature-content h3 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
        line-height: 1.7;
    }

}


/* =========================================================
   NXTGENBUDDY — WHO CAN JOIN
   RADIAL / FLOATING TYPOGRAPHY DESIGN
========================================================= */

/* .ng-radial-section {
    --lime: #adff2f;
    --lime-soft: rgba(173,255,47,.18);
    --white: #ffffff;
    --muted: #9da59b;
    --line: rgba(255,255,255,.09);

    width: 100%;
    min-height: 900px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
} */

/* =========================================================
   BACKGROUND
========================================================= */

/* .ng-radial-section::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
    border-radius: 50%; */
    /* background:
        radial-gradient(
            circle,
            rgba(173,255,47,.08) 0%,
            rgba(173,255,47,.035) 25%,
            transparent 68%
        ); */

    /* pointer-events: none;
}

.ng-radial-section::after {
    content: "";
    position: absolute;
    inset: 0; */

    /* background:
        radial-gradient(
            circle at 10% 20%,
            rgba(173,255,47,.025),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(173,255,47,.02),
            transparent 25%
        ); */

    /* pointer-events: none;
} */

/* =========================================================
   MAIN WRAPPER
========================================================= */

/* .ng-radial-wrap {
    width: 90%;
    max-width: 1350px;
    margin: auto;
    position: relative;
    z-index: 5;
} */

/* =========================================================
   SECTION LABEL
========================================================= */

/* .ng-radial-label {
    display:inline-block;
    padding:10px 22px;
    background-color: greenyellow;
    color:black;
    border-radius:30px;
    font-size: 11px;
    font-weight:600;
    margin-bottom:25px;
}

.ng-radial-label::before {
    content: "";
    width: 35px;
    height: 2px;
    background: greenyellow;
} */

/* =========================================================
   ORBIT AREA
========================================================= */

/* .ng-orbit-area {
    width: 100%;
    height: 720px;
    margin-top: 25px;
    position: relative;
} */

/* =========================================================
   ORBIT RINGS
========================================================= */
/* 
.ng-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.ng-orbit-one {
    width: 430px;
    height: 430px;
    border:1px solid greenyellow;
}

.ng-orbit-two {
    width: 570px;
    height: 570px;
    border:1px dashed greenyellow;
}

.ng-orbit-three {
    width: 710px;
    height: 710px;
    border:1px solid rgb(75, 109, 24);
} */

/* =========================================================
   CENTER
========================================================= */
/* 
.ng-radial-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
    width: 350px;
    text-align: center;
    z-index: 10;
}

.ng-center-kicker {
    display: block;
    margin-bottom: 22px;
    color: greenyellow;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.ng-radial-center h2 {
    margin: 0;
    font-size:clamp(52px, 6vw, 78px);
    line-height: .88;
    letter-spacing: -5px;
    font-weight: 600;
    color:whitesmoke;
}

.ng-radial-center h2 span {
    display: block;
    color: greenyellow;
}

.ng-radial-center p {
    max-width: 230px;
    margin: 28px auto 0;
    color: white;
    font-size: 16px;
    line-height: 1.8;
} */

/* =========================================================
   FLOATING ITEMS
========================================================= */
/* 
.ng-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 13px;
    color:white;
    z-index: 15;
    white-space: nowrap;
    transition:
        color .35s ease,
        transform .35s ease;
}

.ng-float-number {
    position: absolute;
    top: -18px;
    left: 3px;
    color: yellowgreen;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ng-float i {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border:2px solid greenyellow;
    color: greenyellow; */
    /* background:
        rgba(173,255,47,.035); */
    /* font-size: 16px;
    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}

.ng-float-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.2px;
} */

/* =========================================================
   HOVER
========================================================= */

/* .ng-float:hover {
    color: var(--lime);
    transform:
        translateY(-5px)
        scale(1.04);
}

.ng-float:hover i {
    background: var(--lime);
    color: #080a08;
    transform:
        rotate(-8deg)
        scale(1.08);
} */

/* =========================================================
   CONNECTOR DOT
========================================================= */

/* .ng-float::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow:
        0 0 12px
        rgba(173,255,47,.8);
} */

/* =========================================================
   FLOATING POSITIONS
========================================================= */


/* LEFT TOP */
/* 
.ng-float-1 {
    left: 9%;
    top: 15%;
    animation:
        ngFloatA 6s ease-in-out infinite;
}

.ng-float-1::after {
    right: -110px;
} */

/* LEFT MID */

/* .ng-float-2 {
    left: 3%;
    top: 38%;
    animation:
        ngFloatB 7s ease-in-out infinite;
}

.ng-float-2::after {
    right: -125px;
} */

/* LEFT LOWER */
/* 
.ng-float-3 {
    left: 6%;
    bottom: 30%;
    animation:
        ngFloatC 6.5s ease-in-out infinite;
}

.ng-float-3::after {
    right: -105px;
} */

/* LEFT BOTTOM */

/* .ng-float-4 {
    left: 12%;
    bottom: 9%;
    animation:
        ngFloatA 7s ease-in-out infinite;
}

.ng-float-4::after {
    right: -100px;
} */

/* RIGHT TOP */

/* .ng-float-5 {
    right: 8%;
    top: 15%;
    animation:
        ngFloatB 6.5s ease-in-out infinite;
}

.ng-float-5::after {
    left: -110px;
} */

/* RIGHT MID */

/* .ng-float-6 {
    right: 0%;
    top: 38%;
    animation:
        ngFloatC 7s ease-in-out infinite;
}

.ng-float-6::after {
    left: -125px;
} */

/* RIGHT LOWER */

/* .ng-float-7 {
    right: 5%;
    bottom: 30%;
    animation:
        ngFloatA 6s ease-in-out infinite;
}

.ng-float-7::after {
    left: -105px;
} */

/* RIGHT BOTTOM */

/* .ng-float-8 {
    right: 14%;
    bottom: 12%;
    animation:
        ngFloatB 7s ease-in-out infinite;
}

.ng-float-8::after {
    left: -100px;
} */

/* BOTTOM CENTER */

/* .ng-float-9 {
    left: 50%;
    bottom: -100px;
    transform:
        translateX(-50%);
    animation:
        ngFloatC 6s ease-in-out infinite;
}

.ng-float-9::after {
    display: none;
}

.ng-float-9 i {
    background: var(--lime);
    color: #080a08;
} */

/* =========================================================
   FLOAT ANIMATIONS
========================================================= */

/* @keyframes ngFloatA {
    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -10px;
    }

}

@keyframes ngFloatB {
    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: 8px;
    }

} */

/* @keyframes ngFloatC {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -7px;
    }

} */


/* =========================================================
   LARGE TABLET
========================================================= */
/* 
@media (max-width: 1100px) {

    .ng-orbit-area {
        height: 700px;
    }

    .ng-orbit-three {
        width: 650px;
        height: 650px;
    }

    .ng-orbit-two {
        width: 520px;
        height: 520px;
    }

    .ng-orbit-one {
        width: 390px;
        height: 390px;
    }

    .ng-float-1 {
        left: 2%;
    }

    .ng-float-2 {
        left: 1%;
    }

    .ng-float-3 {
        left: 3%;
    }

    .ng-float-4 {
        left: 7%;
    }

    .ng-float-5 {
        right: 2%;
    }

    .ng-float-6 {
        right: 1%;
    }

    .ng-float-7 {
        right: 3%;
    }

    .ng-float-8 {
        right: 7%;
    }

} */

/* =========================================================
   TABLET
========================================================= */
/* 
@media (max-width: 850px) {

    .ng-radial-section {
        min-height: auto;
        padding:80px 0 100px;
    }

    .ng-orbit-area {
        height: auto;
        padding-top: 10px;
    }

    .ng-orbit {
        width: 310px;
        height: 310px;
        border:2px solid greenyellow;
        position: absolute;
        left: 50%;
        top: 17%; */
        /* transform:translate(-50%, -50%);
        border-radius: 50%;
        pointer-events: none; */
        /* box-shadow: 0 0px 20px greenyellow;
    }

    .ng-radial-center {
        position: relative;
        left: auto;
        top: -20px;
        transform: none;
        width: 100%;
        margin:80px auto 70px;
    }

    .ng-radial-center h2 {
        font-size: 64px;
    }

    .ng-float {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        min-height: 65px;
        margin-bottom: 4px;
        padding:8px 5px;
        border-bottom:
            1px solid
            rgba(255,255,255,.07);
        animation: none;
    }

    .ng-float::after {
        display: none;
    }

    .ng-float-number {
        position: static;
        min-width: 25px;
    }

    .ng-float i {
        width: 40px;
        height: 40px;
    }

    .ng-float:hover {
        transform:translateX(7px);
    }

    .ng-float-9 {
        transform: none;
    }

} */

/* =========================================================
   MOBILE
========================================================= */
/* 
@media (max-width: 600px) {

    .ng-radial-section {
        padding:65px 0 70px;
    }

    .ng-radial-wrap {
        width: 88%;
    }

    .ng-radial-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .ng-radial-center {
        margin:65px auto 50px;
    }

    .ng-center-kicker {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .ng-radial-center h2 {
        font-size: 49px;
        letter-spacing: -3px;
    }

    .ng-radial-center p {
        font-size: 12px;
        max-width: 200px;
    }

    .ng-float {
        min-height: 60px;
        gap: 11px;
    }

    .ng-float-text {
        font-size: 13px;
    }

    .ng-float i {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

} */

/* =========================================================
   SMALL MOBILE
========================================================= */
/* 
@media (max-width: 380px) {

    .ng-radial-center h2 {
        font-size: 42px;
    }

    .ng-float-text {
        font-size: 12px;
    }

} */

/*========================================
    SECTION 7 : YOUR LEARNING JOURNEY
=========================================*/

.learning-journey-section {
    width: 100%;
    padding:90px 90px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}


/*========================================
    CONTAINER
=========================================*/

.learning-journey-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    box-sizing: border-box;
}


/*========================================
    HEADING
=========================================*/

.learning-journey-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}


.learning-journey-tag {
    display: inline-block;
    padding: 9px 20px;
    background: greenyellow;
    color: #000;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
}


.learning-journey-heading h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.2;
}


.learning-journey-heading h2 span {
    color: greenyellow;
}


.learning-journey-heading p {
    margin: 0 auto;
    max-width: 700px;
    color: white;
    font-size: 17px;
    line-height: 1.8;
}


/*========================================
    JOURNEY FLOW
=========================================*/

.journey-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

/*========================================
    JOURNEY STEP
=========================================*/

.journey-step {
    flex: 1;
    min-width: 0;
    text-align: center;
    position: relative;
    transition: transform 0.35s ease;
}

.journey-step:hover {
    transform: translateY(-8px);
}

/*========================================
    NUMBER
=========================================*/

.journey-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #162338;
    border: 3px solid greenyellow;
    color: greenyellow;
    font-size: 17px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow:0 0 0 8px rgba(160, 204, 94, 0.3);
    transition: 0.4s ease;
}

.journey-step:hover .journey-number {
    background: greenyellow;
    color: #000;
    transform: scale(1.1);
    box-shadow:
        0 0 25px rgba(173, 255, 47, 0.35);
}

/*========================================
    CONTENT
=========================================*/

.journey-content {
    padding: 0 12px;
}

.journey-content h3 {
    margin: 0 0 12px;
    color: greenyellow;
    font-size: 19px;
    letter-spacing: 0.5px;
}

.journey-content p {
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.8;
}

/*========================================
    CONNECTOR
=========================================*/

.journey-connector {
    width: 55px;
    height: 2px;
    margin-top: 32px;
    flex-shrink: 0;
    background: linear-gradient(
        to right,
        greenyellow,
        yellowgreen
    );
    opacity: 0.7;
    position: relative;
}

/* Small connector dot */

.journey-connector::after {
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: yellowgreen;
    border-radius: 50%;
}

/*========================================
    TABLET
=========================================*/

@media (max-width: 1050px) {

    .learning-journey-section {
        padding: 90px 0;
    }

    .journey-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }

    .journey-connector {
        display: none;
    }

    .journey-step {
        padding: 20px;
    }

}

/*========================================
    MOBILE
=========================================*/

@media (max-width: 650px) {

    .learning-journey-section {
        padding: 70px 0;
    }

    .learning-journey-container {
        width: 88%;
    }

    .learning-journey-heading {
        margin-bottom: 55px;
    }

    .learning-journey-tag {
        font-size: 10px;
        padding: 8px 16px;
    }

    .learning-journey-heading h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .learning-journey-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Vertical Journey */

    .journey-flow {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .journey-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        padding: 0;
        min-height: 105px;
    }

    .journey-number {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        margin: 0 20px 0 0;
        font-size: 14px;
    }

    .journey-content {
        padding: 5px 0 0;

    }

    .journey-content h3 {
        font-size: 17px;
        margin-bottom: 7px;
    }

    .journey-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Vertical connector */

    .journey-connector {
        display: block;
        width: 2px;
        height: 35px;
        margin: -1px 0 -1px 25px;
        background: linear-gradient(
            to bottom,
            greenyellow,
            yellowgreen
        );
    }

    .journey-connector::after {
        display: none;
    }

}

/*========================================
    SMALL MOBILE
=========================================*/

@media (max-width: 400px) {

    .learning-journey-heading h2 {
        font-size: 28px;
    }


    .journey-step {
        min-height: 100px;
    }


    .journey-number {
        width: 46px;
        height: 46px;
        margin-right: 16px;
        font-size: 12px;
    }


    .journey-content h3 {
        font-size: 15px;
    }


    .journey-content p {
        font-size: 13px;
    }


    .journey-connector {
        height: 30px;
        margin-left: 22px;
    }

}


/* .final-cta .final-cta-container p{
    font-size: 50px;
    font-weight: 700;
} */

