/* =========================================
   Java Course Section
   ========================================= */
p{
    text-align: justify;
}
.main-banner h2, .main-banner p{
    text-align: center;
}
a{
    color: #fa9805;
    text-decoration: none;
}

.java-course-section {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    box-sizing: border-box;
}

.java-course-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}


/* =========================================
   LEFT SIDE - CONTENT
   ========================================= */

.java-course-content {
    width: 100%;
}

.java-course-content h2 {
    margin: 0 0 15px;

    color: #fa9805;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.java-course-content h3 {
    margin: 0 0 20px;

    color:#fa9805;

    /* font-size: 38px; */
    line-height: 1.25;
    font-weight: 700;
}

.java-course-content p {
    margin: 0 0 28px;

    color: #002936;

    font-size: 16px;
    line-height: 1.8;
}

.java-course-content strong {
    color: #001a33;
    font-weight: 700;
}


/* =========================================
   BUTTONS
   ========================================= */

.java-course-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.java-primary-btn,
.java-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}


/* Primary Button */

.java-primary-btn {
    background: #fa9805;
    color: #ffffff;
    border: 2px solid #fa9805;
}

.java-primary-btn:hover {
    background: #001a33;
    border-color: #001a33;
    color: #ffffff;
}


/* Secondary Button */

.java-secondary-btn {
    background: #ffffff;
    color: #001a33;
    border: 2px solid #001a33;
}

.java-secondary-btn:hover {
    background: #001a33;
    color: #ffffff;
}


/* =========================================
   RIGHT SIDE - IMAGE
   ========================================= */

.java-course-image {
    width: 100%;
}

.java-course-image img {
    display: block;
    width: 100%;
    height: 430px;

    object-fit: cover;

    border-radius: 24px;

    background: #dae2eb;

    box-shadow: 0 12px 35px rgba(0, 26, 51, 0.10);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .java-course-section {
        padding: 65px 20px;
    }

    .java-course-container {
        gap: 40px;
    }

    .java-course-content h3 {
        font-size: 30px;
    }

    .java-course-image img {
        height: 360px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .java-course-section {
        padding: 50px 16px;
    }

    .java-course-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    /* CONTENT FIRST */

    .java-course-content {
        width: 100%;
        order: 1;
    }

    /* IMAGE SECOND */

    .java-course-image {
        width: 100%;
        order: 2;
    }

    .java-course-image img {
        width: 100%;
        height: 280px;
        border-radius: 18px;
    }

    .java-course-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .java-course-content h3 {
        font-size: 27px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .java-course-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .java-course-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .java-primary-btn,
    .java-secondary-btn {
        width: 100%;
        box-sizing: border-box;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .java-course-section {
        padding: 40px 14px;
    }

    .java-course-content h3 {
        font-size: 24px;
    }

    .java-course-content p {
        font-size: 14px;
    }

    .java-course-image img {
        height: 250px;
    }
}



/* =========================================
   JAVA COURSE OVERVIEW
   ========================================= */

.java-overview-section {
    width: 100%;
    padding: 80px 20px;
    background: #dae2eb;
    box-sizing: border-box;
}

.java-overview-container {
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADING
   ========================================= */

.java-overview-heading {
    text-align: center;
    margin-bottom: 45px;
}

.java-overview-label {
    display: inline-block;

    padding: 7px 16px;
    margin-bottom: 14px;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.java-overview-heading h2 {
    margin: 0;

    color: #001a33;

    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}


/* =========================================
   MAIN CONTENT BOX
   ========================================= */

.java-overview-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;

    padding: 35px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.07);

    border-left: 5px solid #fa9805;
}


/* =========================================
   JAVA ICON
   ========================================= */

.java-overview-icon {
    flex-shrink: 0;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 16px;

    font-size: 34px;
}


/* =========================================
   TEXT
   ========================================= */

.java-overview-text {
    flex: 1;
}

.java-overview-text p {
    margin: 0 0 18px;

    color: #002936;

    font-size: 16px;
    line-height: 1.8;
}

.java-overview-text p:last-child {
    margin-bottom: 0;
}

.java-overview-text strong {
    color: #001a33;
    font-weight: 700;
}


/* =========================================
   HIGHLIGHTS
   ========================================= */

.java-overview-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 22px;
}

.java-highlight {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow: 0 7px 22px rgba(0, 26, 51, 0.05);

    transition: all 0.3s ease;
}

.java-highlight:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.10);
}

.java-highlight > i {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 12px;

    font-size: 23px;

    transition: all 0.3s ease;
}

.java-highlight:hover > i {
    background: #fa9805;
    color: #ffffff;
}

.java-highlight h3 {
    margin: 0 0 4px;

    color: #001a33;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.java-highlight span {
    display: block;

    color: #002936;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .java-overview-section {
        padding: 65px 20px;
    }

    .java-overview-heading h2 {
        font-size: 32px;
    }

    .java-overview-content {
        padding: 28px;
    }

    .java-overview-highlights {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .java-overview-section {
        padding: 50px 16px;
    }

    .java-overview-heading {
        margin-bottom: 30px;
    }

    .java-overview-label {
        font-size: 11px;
        padding: 6px 13px;
    }

    .java-overview-heading h2 {
        font-size: 28px;
    }

    .java-overview-content {
        flex-direction: column;

        gap: 20px;

        padding: 25px 20px;

        border-left: 4px solid #fa9805;

        border-radius: 16px;
    }

    .java-overview-icon {
        width: 55px;
        height: 55px;

        font-size: 29px;
    }

    .java-overview-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .java-overview-highlights {
        grid-template-columns: 1fr;
        gap: 12px;

        margin-top: 16px;
    }

    .java-highlight {
        padding: 16px;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .java-overview-section {
        padding: 42px 14px;
    }

    .java-overview-heading h2 {
        font-size: 25px;
    }

    .java-overview-content {
        padding: 22px 17px;
    }

    .java-overview-text p {
        font-size: 14px;
    }
}


/* why wellsprin */
/* =========================================
   JAVA WHY CHOOSE US
========================================= */

.java-why-section {
    background: #ffffff;
    padding: 90px 20px;
}

.java-why-container {
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.java-why-heading {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.java-why-heading span {
    display: inline-block;

    padding: 7px 16px;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 14px;
}

.java-why-heading h2 {
    margin: 0 0 15px;

    color: #001a33;

    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.java-why-heading p {
    margin: 0;

    color: #4a5568;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.java-why-layout {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 55px;

    align-items: stretch;
}


/* =========================================
   LEFT INTRO
========================================= */

.java-why-intro {
    background: #fff9f0;
    
    border-radius: 24px;
    border: 1px solid #fa9805;
    padding: 45px 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    overflow: hidden;
}


/* Decorative circle */

.java-why-intro::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    right: -70px;
    bottom: -70px;
}


/* Java Icon */

.java-why-icon-main {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fa9805;
    color: #ffffff;

    border-radius: 18px;

    font-size: 36px;

    margin-bottom: 28px;
}

.java-why-intro h3 {
    margin: 0 0 16px;

    color: #000000;

    font-size: 28px;
    line-height: 1.35;
}

.java-why-intro p {
    margin: 0;

    color: #000000;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   BENEFITS
========================================= */

.java-why-benefits {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* Benefit Item */

.java-why-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 23px;

    background: #f8fafc;

    border: 1px solid #dae2eb;

    border-radius: 16px;

    transition: all 0.3s ease;
}


/* Icon */

.java-why-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 12px;

    font-size: 22px;

    transition: all 0.3s ease;
}


/* Text */

.java-why-item h3 {
    margin: 2px 0 7px;

    color: #001a33;

    font-size: 17px;
    line-height: 1.4;
}

.java-why-item p {
    margin: 0;

    color: #4a5568;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   HOVER
========================================= */

.java-why-item:hover {
    background: #ffffff;

    border-color: #fa9805;

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 26, 51, 0.08);
}

.java-why-item:hover .java-why-icon {
    background: #fa9805;
    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .java-why-section {
        padding: 70px 18px;
    }

    .java-why-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .java-why-intro {
        padding: 35px;
    }

    .java-why-intro h3 {
        font-size: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .java-why-section {
        padding: 55px 15px;
    }

    .java-why-heading {
        margin-bottom: 35px;
    }

    .java-why-heading h2 {
        font-size: 27px;
    }

    .java-why-heading p {
        font-size: 14px;
    }

    .java-why-intro {
        padding: 30px 25px;

        border-radius: 18px;
    }

    .java-why-icon-main {
        width: 55px;
        height: 55px;

        font-size: 30px;

        margin-bottom: 22px;
    }

    .java-why-intro h3 {
        font-size: 23px;
    }

    .java-why-intro p {
        font-size: 14px;
    }

    .java-why-benefits {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .java-why-item {
        padding: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .java-why-heading h2 {
        font-size: 24px;
    }

    .java-why-intro h3 {
        font-size: 21px;
    }

    .java-why-item {
        padding: 17px;
    }

    .java-why-icon {
        width: 42px;
        height: 42px;

        font-size: 20px;
    }

    .java-why-item h3 {
        font-size: 16px;
    }

    .java-why-item p {
        font-size: 13px;
    }

}


/* =========================================
   JAVA LEARNING JOURNEY
========================================= */

.java-learning-section {
    width: 100%;
    background: #dae2eb;
    padding: 100px 20px;
    overflow: hidden;
}

.java-learning-container {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.java-learning-header {
    max-width: 750px;
    margin: 0 auto 65px;
    text-align: center;
}

.java-learning-label {
    display: inline-block;

    padding: 8px 17px;
    margin-bottom: 15px;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.java-learning-header h2 {
    margin: 0 0 15px;

    color: #001a33;

    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;
}

.java-learning-header p {
    margin: 0;

    color: #002936;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   LEARNING PATH
========================================= */

.java-learning-path {
    position: relative;
}


/* Vertical connecting line */

.java-learning-path::before {
    content: "";

    position: absolute;

    left: 31px;
    top: 40px;
    bottom: 40px;

    width: 2px;

    background: #fa9805;
    opacity: 0.35;
}


/* =========================================
   MODULE
========================================= */

.java-learning-module {
    position: relative;

    display: grid;
    grid-template-columns: 64px 1fr;

    gap: 28px;

    margin-bottom: 35px;
}

.java-learning-module:last-child {
    margin-bottom: 0;
}


/* =========================================
   LARGE ICON
========================================= */

.java-learning-icon {
    position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fa9805;
    color: #ffffff;

    border: 7px solid #dae2eb;

    border-radius: 50%;

    font-size: 25px;

    box-shadow: 0 5px 15px rgba(0, 26, 51, 0.12);

    transition: all 0.35s ease;
}

.java-learning-module:hover .java-learning-icon {
    transform: scale(1.12);
    background: #001a33;
}


/* =========================================
   CARD
========================================= */

.java-learning-card {
    background: #ffffff;

    padding: 30px 32px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 26, 51, 0.07);

    border: 1px solid transparent;

    transition: all 0.35s ease;
}

.java-learning-module:hover .java-learning-card {
    border-color: #fa9805;

    transform: translateX(5px);

    box-shadow: 0 16px 35px rgba(0, 26, 51, 0.11);
}


/* =========================================
   CARD HEADER
========================================= */

.java-learning-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 25px;
}

.java-learning-card-header span {
    display: block;

    margin-bottom: 7px;

    color: #fa9805;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.java-learning-card-header h3 {
    margin: 0;

    color: #001a33;

    font-size: 23px;
    line-height: 1.35;
    font-weight: 800;
}

.java-learning-card-header > i {
    flex-shrink: 0;

    color: #dae2eb;

    font-size: 42px;

    transition: all 0.35s ease;
}

.java-learning-module:hover .java-learning-card-header > i {
    color: #fa9805;
    transform: rotate(-8deg);
}


/* =========================================
   TOPIC GRID
========================================= */

.java-topic-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 30px;
    row-gap: 13px;
}

.java-topic-grid div {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    color: #002936;

    font-size: 14px;
    line-height: 1.55;
}

.java-topic-grid div i {
    flex-shrink: 0;

    margin-top: 2px;

    color: #fa9805;

    font-size: 17px;
}


/* =========================================
   CAPSTONE
========================================= */

.java-project-module .java-learning-card {
    background: #001a33;
}

.java-project-module .java-learning-card-header h3 {
    color: #ffffff;
}

.java-project-module .java-learning-card-header span {
    color: #fa9805;
}

.java-project-module .java-learning-card-header > i {
    color: #fa9805;
}

.java-project-description {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.75;

    opacity: 0.9;
}


/* =========================================
   PROJECT PROCESS
========================================= */

.java-project-process {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 23px;
}

.java-project-process span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    background: #002936;
    color: #ffffff;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 600;
}

.java-project-process span i {
    color: #fa9805;
    font-size: 17px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .java-learning-section {
        padding: 75px 20px;
    }

    .java-learning-header {
        margin-bottom: 50px;
    }

    .java-topic-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .java-learning-section {
        padding: 60px 16px;
    }

    .java-learning-header h2 {
        font-size: 30px;
    }

    .java-learning-header p {
        font-size: 15px;
    }

    .java-learning-path::before {
        left: 25px;
        top: 32px;
        bottom: 32px;
    }

    .java-learning-module {
        grid-template-columns: 50px 1fr;

        gap: 15px;

        margin-bottom: 25px;
    }

    .java-learning-icon {
        width: 50px;
        height: 50px;

        border-width: 5px;

        font-size: 20px;
    }

    .java-learning-card {
        padding: 22px 20px;

        border-radius: 15px;
    }

    .java-learning-card-header {
        margin-bottom: 20px;
    }

    .java-learning-card-header h3 {
        font-size: 19px;
    }

    .java-learning-card-header > i {
        font-size: 30px;
    }

    .java-topic-grid {
        gap: 11px;
    }

    .java-topic-grid div {
        font-size: 13.5px;
    }

    .java-project-description {
        font-size: 14px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .java-learning-header h2 {
        font-size: 26px;
    }

    .java-learning-module {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .java-learning-path::before {
        left: 21px;
    }

    .java-learning-icon {
        width: 42px;
        height: 42px;

        border-width: 4px;

        font-size: 17px;
    }

    .java-learning-card {
        padding: 19px 16px;
    }

    .java-learning-card-header h3 {
        font-size: 17px;
    }

    .java-learning-card-header > i {
        display: none;
    }

    .java-topic-grid div {
        font-size: 13px;
    }

    .java-project-process {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .java-project-process span {
        justify-content: center;
    }
}




/* =========================================
   WHO SHOULD JOIN JAVA CLASSES
========================================= */

.java-join-section {
    background: #ffffff;
    padding: 90px 20px;
}

.java-join-container {
    max-width: 1150px;
    margin: 0 auto;
}

.java-join-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */

.java-join-label {
    display: inline-block;
    padding: 8px 16px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.java-join-content h2 {
    color: #001a33;
    font-size: 38px;
    line-height: 1.25;
    margin: 0 0 18px;
    font-weight: 700;
}

.java-join-intro {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 30px;
}

/* LEARNER LIST */

.java-join-list {
    display: flex;
    flex-direction: column;
}

.java-join-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e7ebef;
    transition: all 0.3s ease;
}

.java-join-item:first-child {
    border-top: 1px solid #e7ebef;
}

.java-join-item:hover {
    padding-left: 8px;
}

.java-join-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 50%;
    font-size: 23px;
    transition: all 0.3s ease;
}

.java-join-item:hover .java-join-icon {
    background: #fa9805;
    color: #ffffff;
}

.java-join-item h3 {
    color: #001a33;
    font-size: 17px;
    margin: 0 0 4px;
    font-weight: 700;
}

.java-join-item p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* RIGHT VISUAL */

.java-join-visual-box {
    background: #002936;
    border-radius: 28px;
    padding: 50px 42px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.java-join-visual-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 35px solid rgba(250, 152, 5, 0.12);
    border-radius: 50%;
    top: -90px;
    right: -80px;
}

.java-join-visual-box::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 25px solid rgba(218, 226, 235, 0.08);
    border-radius: 50%;
    bottom: -60px;
    left: -50px;
}

.java-code-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    color: #ffffff;
    border-radius: 20px;
    font-size: 42px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.java-join-visual-box > span {
    color: #fa9805;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.java-join-visual-box h3 {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.3;
    margin: 14px 0 18px;
    position: relative;
    z-index: 1;
}

.java-join-visual-box h3 strong {
    color: #fa9805;
    display: block;
}

.java-join-visual-box > p {
    color: #dae2eb;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
}

/* POINTS */

.java-join-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: relative;
    z-index: 1;
}

.java-join-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
}

.java-join-points i {
    color: #fa9805;
    font-size: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .java-join-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .java-join-content h2 {
        font-size: 32px;
    }

    .java-join-visual-box {
        min-height: auto;
    }
}

@media (max-width: 600px) {

    .java-join-section {
        padding: 65px 18px;
    }

    .java-join-content h2 {
        font-size: 28px;
    }

    .java-join-intro {
        font-size: 15px;
    }

    .java-join-item {
        gap: 14px;
        padding: 16px 0;
    }

    .java-join-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 21px;
    }

    .java-join-item h3 {
        font-size: 16px;
    }

    .java-join-item p {
        font-size: 13px;
    }

    .java-join-visual-box {
        padding: 38px 28px;
        border-radius: 22px;
    }

    .java-code-icon {
        width: 62px;
        height: 62px;
        font-size: 34px;
    }

    .java-join-visual-box h3 {
        font-size: 28px;
    }
}



/* =========================================
   WHAT MAKES OUR JAVA TRAINING DIFFERENT
========================================= */

.java-different-section {
    background:#dae2eb;
    padding: 90px 20px;
}

.java-different-container {
    max-width: 1150px;
    margin: 0 auto;
}

.java-different-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.java-different-label {
    display: inline-block;
    background: #fff3e0;
    color: #fa9805;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.java-different-content h2 {
    color: #001a33;
    font-size: 38px;
    line-height: 1.25;
    margin: 0 0 35px;
    font-weight: 700;
}

/* =========================================
   BENEFIT LIST
========================================= */

.java-different-list {
    display: flex;
    flex-direction: column;
}

.java-different-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e9ee;
    transition: all 0.3s ease;
}

.java-different-item:first-child {
    padding-top: 0;
}

.java-different-item:hover {
    transform: translateX(7px);
}

/* =========================================
   ICON
========================================= */

.java-different-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 14px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.java-different-item:hover .java-different-icon {
    background: #fa9805;
    color: #ffffff;
    transform: scale(1.05);
}

/* =========================================
   TEXT
========================================= */

.java-different-text h3 {
    color: #001a33;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 7px;
    font-weight: 700;
}

.java-different-text p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   RIGHT IMAGE
========================================= */

.java-different-image {
    position: relative;
}

.java-different-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #dae2eb;
    box-shadow: 0 20px 45px rgba(0, 26, 51, 0.12);
}

.java-different-image-wrapper img {
    display: block;
    width: 100%;
    height: 590px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.java-different-image-wrapper:hover img {
    transform: scale(1.04);
}

/* =========================================
   IMAGE BADGE
========================================= */

.java-different-image-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(0, 26, 51, 0.94);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.java-different-image-badge > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fa9805;
    color: #ffffff;
    border-radius: 10px;
    font-size: 22px;
}

.java-different-image-badge strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 3px;
}

.java-different-image-badge span {
    display: block;
    color: #dae2eb;
    font-size: 12px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .java-different-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .java-different-content h2 {
        font-size: 34px;
    }

    .java-different-image {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .java-different-image-wrapper img {
        height: 500px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .java-different-section {
        padding: 65px 18px;
    }

    .java-different-content h2 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .java-different-item {
        gap: 14px;
        padding: 17px 0;
    }

    .java-different-item:hover {
        transform: none;
    }

    .java-different-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 21px;
        border-radius: 12px;
    }

    .java-different-text h3 {
        font-size: 16px;
    }

    .java-different-text p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .java-different-image-wrapper {
        border-radius: 18px;
    }

    .java-different-image-wrapper img {
        height: 400px;
    }

    .java-different-image-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 13px;
    }

    .java-different-image-badge > i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .java-different-image-badge strong {
        font-size: 14px;
    }

    .java-different-image-badge span {
        font-size: 11px;
    }
}

@media (max-width: 400px) {

    .java-different-section {
        padding: 55px 15px;
    }

    .java-different-content h2 {
        font-size: 25px;
    }

    .java-different-item {
        align-items: flex-start;
    }

    .java-different-image-wrapper img {
        height: 350px;
    }
}



/* =========================================
   JAVA COURSE TRUST DETAILS
========================================= */

.java-trust-details {
    background: #ffffff;
    padding: 90px 20px;
}

.java-trust-container {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.java-trust-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.java-trust-label {
    display: inline-block;
    padding: 7px 16px;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 14px;
}

.java-trust-header h2 {
    margin: 0 0 14px;

    color: #001a33;

    font-size: 36px;
    line-height: 1.3;
}

.java-trust-header p {
    margin: 0;

    color: #4a5568;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   MAIN PANEL
========================================= */

.java-trust-panel {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    background:#ffcf7b;

    border: 1px solid #dae2eb;

    border-radius: 22px;

    overflow: hidden;
}


/* =========================================
   COURSE INFORMATION
========================================= */

.java-trust-info {
    padding: 15px 30px;

    background: #ffffff;

    border-right: 1px solid #dae2eb;
}

.java-trust-row {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 25px 5px;

    border-bottom: 1px solid #dae2eb;
}

.java-trust-row:last-child {
    border-bottom: none;
}


/* Icon */

.java-trust-row-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 11px;

    font-size: 22px;
}


/* Text */

.java-trust-row-content span {
    display: block;

    margin-bottom: 5px;

    color: #4a5568;

    font-size: 12px;
    font-weight: 600;
}

.java-trust-row-content strong {
    display: block;

    color: #001a33;

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   SUPPORT SIDE
========================================= */

.java-trust-support {
    padding: 35px;
}

.java-support-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}

.java-support-heading > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #002936;
    color: #ffffff;

    border-radius: 12px;

    font-size: 23px;
}

.java-support-heading h3 {
    margin: 0 0 3px;

    color: #001a33;

    font-size: 21px;
}

.java-support-heading p {
    margin: 0;

    color: #4a5568;

    font-size: 13px;
}


/* =========================================
   SUPPORT LIST
========================================= */

.java-support-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.java-support-item {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #dae2eb;

    border-radius: 13px;

    transition: all 0.3s ease;
}

.java-support-item > i {
    display: block;

    margin-bottom: 12px;

    color: #fa9805;

    font-size: 25px;
}

.java-support-item strong {
    display: block;

    margin-bottom: 6px;

    color: #001a33;

    font-size: 15px;
    line-height: 1.4;
}

.java-support-item p {
    margin: 0;

    color: #4a5568;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   HOVER
========================================= */

.java-support-item:hover {
    border-color: #fa9805;

    transform: translateY(-3px);

    box-shadow: 0 8px 22px rgba(0, 26, 51, 0.06);
}


/* =========================================
   TRUST NOTE
========================================= */

.java-trust-note {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 22px;

    padding: 17px 20px;

    background: #fff3e0;

    border-left: 4px solid #fa9805;

    border-radius: 8px;
}

.java-trust-note > i {
    flex-shrink: 0;

    color: #fa9805;

    font-size: 23px;
}

.java-trust-note p {
    margin: 0;

    color: #4a5568;

    font-size: 13px;
    line-height: 1.6;
}

.java-trust-note strong {
    color: #001a33;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .java-trust-details {
        padding: 70px 18px;
    }

    .java-trust-panel {
        grid-template-columns: 1fr;
    }

    .java-trust-info {
        border-right: none;
        border-bottom: 1px solid #dae2eb;
    }

    .java-support-list {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .java-trust-details {
        padding: 55px 15px;
    }

    .java-trust-header {
        margin-bottom: 35px;
    }

    .java-trust-header h2 {
        font-size: 27px;
    }

    .java-trust-header p {
        font-size: 14px;
    }

    .java-trust-panel {
        border-radius: 16px;
    }

    .java-trust-info {
        padding: 8px 20px;
    }

    .java-trust-row {
        padding: 20px 0;
    }

    .java-trust-support {
        padding: 25px 20px;
    }

    .java-support-list {
        grid-template-columns: 1fr;
    }

    .java-trust-note {
        align-items: flex-start;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .java-trust-header h2 {
        font-size: 24px;
    }

    .java-trust-row-icon {
        width: 42px;
        height: 42px;

        font-size: 20px;
    }

    .java-trust-row-content strong {
        font-size: 14px;
    }

    .java-support-heading h3 {
        font-size: 19px;
    }

    .java-support-item {
        padding: 17px;
    }
}


/* =========================================
   JAVA TOOLS & TECHNOLOGIES
========================================= */

.java-tools-section {
    width: 100%;
    background:#dae2eb;
    padding: 80px 20px;
}

.java-tools-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.java-tools-intro {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.java-tools-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 15px;
    padding: 7px 16px;

    background: #fff3e0;
    color: #fa9805;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.java-tools-label i {
    font-size: 17px;
}

.java-tools-intro h2 {
    margin: 0 0 18px;

    color: #001a33;

    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.java-tools-intro p {
    max-width: 820px;

    margin: 0 auto 12px;

    color: #5f6b76;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   INFO
========================================= */

.java-tools-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 12px;

    color: #001a33;

    font-size: 14px;
    font-weight: 600;
}

.java-tools-info i {
    color: #fa9805;
    font-size: 20px;
}


/* =========================================
   TECHNOLOGY GRID
========================================= */

.java-tools-wall {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-bottom: 55px;
}


/* =========================================
   TOOL CARD
========================================= */

.java-tool-card {
    position: relative;

    min-height: 190px;

    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e1e7ec;

    border-radius: 16px;

    text-align: center;

    box-shadow: 0 5px 18px rgba(0, 26, 51, 0.06);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.java-tool-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #fa9805;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.java-tool-card:hover {
    transform: translateY(-6px);

    border-color: #fa9805;

    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.10);
}

.java-tool-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   TOOL ICON
========================================= */

.java-tool-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e0;

    color: #fa9805;

    border: 1px solid #ffd59b;

    border-radius: 15px;

    font-size: 29px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.java-tool-card:hover .java-tool-icon {
    background: #fa9805;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   TOOL NAME
========================================= */

.java-tool-card h3 {
    margin: 0 0 6px;

    color: #001a33;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================
   TOOL CATEGORY
========================================= */

.java-tool-card > span {
    display: block;

    color: #71808e;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================
   PRACTICAL LEARNING STRIP
========================================= */

.java-tools-practice {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 28px 32px;

    background:white;

    border: 1px solid #ccd7e1;

    border-radius: 16px;
}


/* =========================================
   PRACTICE TITLE
========================================= */

.java-practice-title {
    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 310px;
}

.java-practice-main-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fa9805;

    color: #ffffff;

    border-radius: 12px;

    font-size: 25px;
}

.java-practice-title span {
    display: block;

    margin-bottom: 4px;

    color: #fa9805;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.java-practice-title h3 {
    margin: 0;

    color: #001a33;

    font-size: 21px;

    line-height: 1.4;

    font-weight: 700;
}


/* =========================================
   PRACTICAL POINTS
========================================= */

.java-practice-points {
    flex: 1;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px 25px;
}

.java-practice-point {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #344657;

    font-size: 14px;

    line-height: 1.5;
}

.java-practice-point i {
    width: 21px;
    height: 21px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #fa9805;

    border-radius: 50%;

    font-size: 14px;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .java-tools-wall {
        grid-template-columns: repeat(3, 1fr);
    }

    .java-tools-practice {
        flex-direction: column;

        align-items: flex-start;
    }

    .java-practice-title {
        min-width: 0;
    }

    .java-practice-points {
        width: 100%;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .java-tools-section {
        padding: 65px 20px;
    }

    .java-tools-intro {
        margin-bottom: 40px;
    }

    .java-tools-intro h2 {
        font-size: 31px;
    }

    .java-tools-intro p {
        font-size: 15px;
    }

    .java-tools-wall {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

        margin-bottom: 40px;
    }

    .java-tool-card {
        min-height: 180px;

        padding: 25px 18px;
    }

    .java-tools-practice {
        padding: 25px;
    }

    .java-practice-points {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .java-tools-section {
        padding: 50px 16px;
    }

    .java-tools-label {
        font-size: 11px;

        padding: 6px 13px;
    }

    .java-tools-intro h2 {
        font-size: 26px;

        line-height: 1.35;
    }

    .java-tools-intro p {
        font-size: 14px;

        line-height: 1.75;
    }

    .java-tools-info {
        align-items: flex-start;

        text-align: left;

        font-size: 13px;
    }

    .java-tools-wall {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 35px;
    }

    .java-tool-card {
        min-height: 165px;

        padding: 24px 18px;
    }

    .java-tool-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 15px;

        font-size: 26px;
    }

    .java-tool-card h3 {
        font-size: 18px;
    }

    .java-tool-card > span {
        font-size: 13px;
    }

    .java-tools-practice {
        padding: 22px 20px;

        gap: 22px;

        border-radius: 14px;
    }

    .java-practice-title {
        gap: 12px;
    }

    .java-practice-main-icon {
        width: 46px;
        height: 46px;

        font-size: 22px;
    }

    .java-practice-title h3 {
        font-size: 18px;
    }

    .java-practice-title span {
        font-size: 11px;
    }

    .java-practice-point {
        font-size: 13px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .java-tools-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .java-tools-intro h2 {
        font-size: 24px;
    }

    .java-tools-practice {
        padding: 20px 16px;
    }

    .java-practice-title h3 {
        font-size: 17px;
    }
}




/* ================================
   Java Career Opportunities
================================ */

.java-career-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 20px;
}

.java-career-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */

.java-career-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.java-career-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.java-career-heading h2 {
    margin: 0 0 16px;
    color: #001a33;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.java-career-heading p {
    margin: 0;
    color: #5f6b76;
    font-size: 16px;
    line-height: 1.8;
}

/* Career Grid */

.java-career-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Career Card */

.java-career-card {
    position: relative;
    padding: 28px 24px;
    background:#fcf9f3;
    border: 1px solid #e4e9ee;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 26, 51, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.java-career-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fa9805;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.java-career-card:hover {
    transform: translateY(-6px);
    border-color: #fa9805;
    box-shadow: 0 12px 28px rgba(0, 26, 51, 0.10);
}

.java-career-card:hover::before {
    transform: scaleX(1);
}

/* Icon */

.java-career-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 12px;
    font-size: 25px;
    transition: all 0.3s ease;
}

.java-career-card:hover .java-career-icon {
    background: #fa9805;
    color: #ffffff;
}

.java-career-card h3 {
    margin: 0 0 10px;
    color: #001a33;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.java-career-card p {
    margin: 0;
    color: #66727d;
    font-size: 14px;
    line-height: 1.7;
}


/* ================================
   Tablet
================================ */

@media (max-width: 992px) {

    .java-career-section {
        padding: 65px 20px;
    }

    .java-career-heading h2 {
        font-size: 32px;
    }

    .java-career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* ================================
   Mobile
================================ */

@media (max-width: 576px) {

    .java-career-section {
        padding: 50px 16px;
    }

    .java-career-heading {
        margin-bottom: 35px;
    }

    .java-career-label {
        font-size: 11px;
        padding: 6px 13px;
    }

    .java-career-heading h2 {
        font-size: 26px;
        line-height: 1.35;
    }

    .java-career-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .java-career-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .java-career-card {
        padding: 23px 20px;
    }

    .java-career-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        font-size: 23px;
    }

    .java-career-card h3 {
        font-size: 18px;
    }

    .java-career-card p {
        font-size: 14px;
    }
}


/* =================================
   Java Career CTA Section
================================= */

.java-career-cta {
    width: 100%;
    background: #dae2eb;
    padding: 80px 20px;
}

.java-career-cta-container {
    max-width: 1100px;
    margin: 0 auto;
}

.java-career-cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* Label */

.java-career-cta-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 17px;
    background: #fff3e0;
    color: #fa9805;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Heading */

.java-career-cta-content h2 {
    margin: 0 0 20px;
    color: #001a33;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
}

.java-career-cta-content p {
    margin: 0 auto 15px;
    max-width: 800px;
    color: #40505f;
    font-size: 16px;
    line-height: 1.8;
}

.java-career-cta-content p strong {
    color: #001a33;
}

/* CTA Buttons */

.java-career-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.java-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Enroll Button */

.java-cta-primary {
    background: #fa9805;
    color: #ffffff;
    border: 1px solid #fa9805;
}

.java-cta-primary:hover {
    background: #001a33;
    border-color: #001a33;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Call Button */

.java-cta-secondary {
    background: #ffffff;
    color: #001a33;
    border: 1px solid #001a33;
}

.java-cta-secondary:hover {
    background: #001a33;
    color: #ffffff;
    transform: translateY(-2px);
}

.java-cta-secondary i {
    font-size: 18px;
}

/* WhatsApp Button */

.java-cta-whatsapp {
    background: #001a33;
    color: #ffffff;
    border: 1px solid #001a33;
}

.java-cta-whatsapp:hover {
    background: #fa9805;
    border-color: #fa9805;
    color: #ffffff;
    transform: translateY(-2px);
}

.java-cta-whatsapp i {
    font-size: 19px;
}

/* Divider */

.java-career-cta-divider {
    width: 70px;
    height: 2px;
    margin: 35px auto 20px;
    background: #fa9805;
}

/* Tagline */

.java-career-tagline {
    margin: 0 !important;
    color: #52616f !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.java-career-tagline strong {
    color: #001a33 !important;
}


/* =================================
   Tablet
================================= */

@media (max-width: 768px) {

    .java-career-cta {
        padding: 65px 20px;
    }

    .java-career-cta-content h2 {
        font-size: 32px;
    }

    .java-career-cta-content p {
        font-size: 15px;
    }

    .java-career-cta-buttons {
        gap: 12px;
    }
}


/* =================================
   Mobile
================================= */

@media (max-width: 576px) {

    .java-career-cta {
        padding: 50px 16px;
    }

    .java-career-cta-label {
        font-size: 11px;
        padding: 6px 13px;
    }

    .java-career-cta-content h2 {
        font-size: 27px;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .java-career-cta-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .java-career-cta-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 25px;
    }

    .java-cta-btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
    }

    .java-career-cta-divider {
        margin-top: 30px;
    }

    .java-career-tagline {
        font-size: 13px !important;
    }
}


































/* FAQ Section - White Background with Smooth Animations */
.faq-section {
    background:white;
    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;
    }
}