/* ===================================
   WIKPOLT FEATURES SECTION
=================================== */

.wikpolt-features {
    width: 100%;
    padding: 80px 20px;
    background: #f7f9f8;
}


/* ===================================
   MAIN CONTAINER
=================================== */

.wikpolt-features-main {
    max-width: 1400px;
    margin: 0 auto;
}


/* ===================================
   INTRO
=================================== */

.wikpolt-features-intro {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}


.wikpolt-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 16px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f7d4a;
}


.wikpolt-tag span {
    width: 28px;
    height: 2px;
    background: #2f7d4a;
}


/* ===================================
   HEADING
=================================== */

.wikpolt-features-intro h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;

    color: #294f4a;
}


/* ===================================
   DESCRIPTION
=================================== */

.wikpolt-features-intro p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}


.wikpolt-features-intro a {
    color: #2f7d4a;

    font-weight: 600;

    text-decoration: none;
}


.wikpolt-features-intro a:hover {
    text-decoration: underline;
}


/* ===================================
   FEATURES CONTAINER
=================================== */

.wikpolt-features-container {

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    border: 1px solid #d9e5df;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

}


/* ===================================
   FEATURE ITEM
=================================== */

.wikpolt-feature {

    min-height: 150px;

    padding: 28px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-right: 1px solid #d9e5df;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.wikpolt-feature:last-child {
    border-right: none;
}


.wikpolt-feature:hover {
    background: #f1f8f4;
}


/* ===================================
   ICON
=================================== */

.feature-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    color: #2f7d4a;

}


.feature-icon svg {

    width: 30px;
    height: 30px;

}


/* ===================================
   FEATURE TEXT
=================================== */

.wikpolt-feature h3 {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.4;

    color: #294f4a;

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 1100px) {

    .wikpolt-features-container {
        grid-template-columns: repeat(4, 1fr);
    }


    .wikpolt-feature {
        border-bottom: 1px solid #d9e5df;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .wikpolt-features {
        padding: 60px 20px;
    }


    .wikpolt-features-container {
        grid-template-columns: repeat(2, 1fr);
    }


    .wikpolt-feature {
        min-height: 140px;
    }


    .wikpolt-features-intro p {
        font-size: 16px;
    }

}


@media (max-width: 480px) {

    .wikpolt-features {
        padding: 50px 16px;
    }


    .wikpolt-features-container {
        grid-template-columns: 1fr;
    }


    .wikpolt-feature {

        min-height: 100px;

        flex-direction: row;

        justify-content: flex-start;

        text-align: left;

        gap: 15px;

        border-right: none;

    }


    .feature-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }


}

/* ===================================
   COURSE SNAPSHOT SECTION
=================================== */

.course-snapshot {

    width: 100%;

    padding: 15px 20px;

    background: #f7f9f8;

}


/* ===================================
   CONTAINER
=================================== */

.course-snapshot-container {

    max-width: 1220px;

    margin: 0 auto;

}


/* ===================================
   HEADER
=================================== */

.course-snapshot-header {

    max-width: 850px;

    margin-bottom: 50px;

}


/* ===================================
   TAG
=================================== */

.course-snapshot-tag {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.5px;

    color: #2f7d4a;

}


.course-snapshot-tag span {

    width: 30px;

    height: 2px;

    background: #2f7d4a;

}


/* ===================================
   HEADING
=================================== */

.course-snapshot-header h2 {

    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 700;

    line-height: 1.2;

    color: #294f4a;

}


/* ===================================
   DESCRIPTION
=================================== */

.course-snapshot-header p {

    margin: 0;

    font-size: 17px;

    line-height: 1.8;

  

}


/* ===================================
   GRID
=================================== */

.course-snapshot-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


/* ===================================
   CARD
=================================== */

.snapshot-card {

    background: #ffffff;

    border: 1px solid #d9e5df;

    border-radius: 12px;

    padding: 30px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.snapshot-card:hover {

    transform: translateY(-5px);

    border-color: #82b99a;

    box-shadow:
        0 15px 35px
        rgba(47, 125, 74, 0.10);

}


/* ===================================
   ICON
=================================== */

.snapshot-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #edf7f0;

    color: #2f7d4a;

}


.snapshot-icon svg {

    width: 25px;

    height: 25px;

}


/* ===================================
   CARD HEADING
=================================== */

.snapshot-card h3 {

    margin: 0 0 12px;

    font-size: 20px;

    font-weight: 700;

    color: #294f4a;

}


/* ===================================
   CARD TEXT
=================================== */

.snapshot-card p {

    margin: 0;

    font-size: 15.5px;

    line-height: 1.7;

}


/* ===================================
   FEES CARD
=================================== */

.snapshot-fees {

    background: #f1f8f4;

    border-color: #b9d8c4;

}


/* ===================================
   COURSE FEES BUTTON
=================================== */

.course-fees-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;

    padding: 11px 18px;

    background: #2f7d4a;

    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.course-fees-btn:hover {

    background: #25683d;

    transform: translateY(-2px);

}


.course-fees-btn span {

    font-size: 18px;

    line-height: 1;

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .course-snapshot-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .course-snapshot {

        padding: 60px 16px;

    }


    .course-snapshot-header {

        margin-bottom: 35px;

    }


    .course-snapshot-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .snapshot-card {

        padding: 25px;

    }


    .course-snapshot-header p {

        font-size: 16px;

    }

}

/* ===================================
   CURRICULUM SECTION
=================================== */

.curriculum-section {
    width: 100%;
    padding: 90px 20px;
    background: #f7f8f7;
}


/* ===================================
   CONTAINER
=================================== */

.curriculum-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   HEADER
=================================== */

.curriculum-header {
    max-width: 850px;
    margin-bottom: 50px;
}


/* ===================================
   SECTION TAG
=================================== */

.curriculum-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #2f665e;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 0.5px;
}


.curriculum-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.curriculum-header h2 {
    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 52px);

    font-weight: 700;

    line-height: 1.2;

    color: #294f4a;
}


/* ===================================
   INTRO TEXT
=================================== */

.curriculum-intro {
    margin: 0 0 14px;

    font-size: 17px;

    line-height: 1.8;

}


/* ===================================
   CURRICULUM GRID
=================================== */

.curriculum-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* ===================================
   CURRICULUM CARD
=================================== */

.curriculum-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dbe5e2;

    border-radius: 16px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.curriculum-card:hover {
    transform: translateY(-8px);

    border-color: #79a99f;

    box-shadow:
        0 20px 45px rgba(47, 102, 94, 0.12);
}


/* ===================================
   IMAGE
=================================== */

.curriculum-image {
    position: relative;

    width: 100%;

    height: 230px;

    overflow: hidden;
}


.curriculum-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(29, 71, 64, 0.25),
            transparent 55%
        );
}


.curriculum-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.curriculum-card:hover .curriculum-image img {
    transform: scale(1.06);
}


/* ===================================
   NUMBER
=================================== */

.curriculum-number {
    position: absolute;

    top: 18px;

    right: 18px;

    z-index: 2;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #2f665e;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ===================================
   CARD CONTENT
=================================== */

.curriculum-content {
    padding: 28px;
}


/* ===================================
   ICON
=================================== */

.curriculum-icon {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: #e8f2ef;

    color: #2f665e;
}


.curriculum-icon svg {
    width: 24px;

    height: 24px;
}


/* ===================================
   CARD HEADING
=================================== */

.curriculum-content h3 {
    margin: 0 0 14px;

    font-size: 22px;

    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   CARD TEXT
=================================== */

.curriculum-content p {
    margin: 0;

    font-size: 16px;

    line-height: 1.75;
}


/* ===================================
   BOTTOM CONTENT
=================================== */

.curriculum-bottom {
    max-width: 950px;

    margin-top: 50px;
}


.curriculum-line {
    width: 50px;

    height: 3px;

    margin-bottom: 20px;

    background: #2f665e;

    border-radius: 10px;
}


.curriculum-bottom p {
    margin: 0;

    font-size: 17px;

    line-height: 1.8;

  
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 650px) {

    .curriculum-section {
        padding: 65px 16px;
    }


    .curriculum-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .curriculum-header {
        margin-bottom: 35px;
    }


    .curriculum-header h2 {
        font-size: 34px;
    }


    .curriculum-intro {
        font-size: 16px;
    }


    .curriculum-image {
        height: 220px;
    }


    .curriculum-content {
        padding: 24px;
    }


    .curriculum-bottom {
        margin-top: 35px;
    }


    .curriculum-bottom p {
        font-size: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .curriculum-section {
        padding: 55px 16px;
    }


    .curriculum-header h2 {
        font-size: 30px;
    }


    .curriculum-image {
        height: 200px;
    }


    .curriculum-number {
        width: 42px;

        height: 42px;

        font-size: 13px;
    }

}

/* ===================================
   CAREER SUPPORT SECTION
=================================== */

.career-support-section {
    width: 100%;
    padding: 10px 20px;
  
}


/* ===================================
   CONTAINER
=================================== */

.career-support-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   HEADER
=================================== */

.career-support-header {
    max-width: 900px;
    margin-bottom: 45px;
}


/* ===================================
   SECTION TAG
=================================== */

.career-support-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #2f665e;
}


.career-support-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.career-support-header h2 {
    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.2;

    color: #294f4a;
}


/* ===================================
   INTRO
=================================== */

.career-support-header p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}


/* ===================================
   IMAGE
=================================== */

.career-support-image {
    width: 100%;
    margin-bottom: 55px;

    overflow: hidden;
    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(47, 102, 94, 0.12);
}


.career-support-image img {
    width: 100%;
    height: 300px;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.career-support-image:hover img {
    transform: scale(1.02);
}


/* ===================================
   THREE POINTS
=================================== */

.career-support-points {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* ===================================
   SINGLE POINT
=================================== */

.career-point {
    position: relative;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dce5e2;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.career-point:hover {
    transform: translateY(-6px);

    border-color: #7fa89f;

    box-shadow:
        0 18px 40px rgba(47, 102, 94, 0.10);
}


/* ===================================
   NUMBER
=================================== */

.career-point-number {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #e8f2ef;

    color: #2f665e;

    font-size: 16px;
    font-weight: 700;
}


/* ===================================
   HEADING
=================================== */

.career-point h3 {
    margin: 0 0 20px;

    font-size: 24px;
    font-weight: 700;

    color: #294f4a;
}


/* ===================================
   LIST
=================================== */

.career-point ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.career-point li {
    position: relative;

    padding-left: 22px;

    margin-bottom: 12px;

    font-size: 17px;
    line-height: 1.6;
}


/* GREEN CHECK */

.career-point li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #2f665e;

    font-weight: 700;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .career-support-points {
        grid-template-columns: repeat(2, 1fr);
    }


    .career-point:last-child {
        grid-column: span 2;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .career-support-section {
        padding: 65px 20px;
    }


    .career-support-header h2 {
        font-size: 36px;
    }


    .career-support-header p {
        font-size: 16px;
    }


    .career-support-image {
        margin-bottom: 40px;
    }


    .career-support-image img {
        height: 350px;
    }


    .career-support-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .career-point:last-child {
        grid-column: auto;
    }


    .career-point {
        padding: 26px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .career-support-section {
        padding: 55px 16px;
    }


    .career-support-header h2 {
        font-size: 30px;
    }


    .career-support-image img {
        height: 260px;
    }


    .career-point h3 {
        font-size: 21px;
    }


    .career-point li {
        font-size: 14px;
    }

}
/* ===================================
   CAREER SUPPORT IMAGE
=================================== */

.career-support-image {
    width: 100%;
    margin-bottom: 55px;

    overflow: hidden;
    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(6, 78, 59, 0.12);
}


.career-support-image img {
    width: 100%;
    height: 300px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


/* Hover */

.career-support-image:hover img {
    transform: scale(1.02);
}


/* ===================================
   TABLET VIEW
=================================== */

@media (max-width: 768px) {

    .career-support-section {
        padding: 65px 20px;
    }


    .career-support-header h2 {
        font-size: 36px;
    }


    .career-support-header p {
        font-size: 16px;
    }


    .career-support-image {
        margin-bottom: 40px;
    }


    /* Full image visible */

    .career-support-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
        object-position: center;
    }


    .career-support-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .career-point:last-child {
        grid-column: auto;
    }


    .career-point {
        padding: 26px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .career-support-section {
        padding: 55px 16px;
    }


    .career-support-header h2 {
        font-size: 30px;
        line-height: 1.3;
    }


    .career-support-header p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* IMAGE */

    .career-support-image {
        width: 100%;
        margin-bottom: 30px;

        border-radius: 12px;
    }


    .career-support-image img {
        width: 100%;

        /* Important: Full image visible */
        height: auto;

        display: block;

        object-fit: contain;
        object-position: center;

        transform: none;
    }


    /* Disable hover zoom effect on mobile */

    .career-support-image:hover img {
        transform: none;
    }


    .career-point h3 {
        font-size: 21px;
    }


    .career-point li {
        font-size: 14px;
    }

}

/* ===================================
   PLACEMENT SUPPORT NOTICE
=================================== */

.placement-notice {
    width: 100%;
    padding: 50px 20px;
    background: #f7faf9;
}

.placement-notice-container {
    max-width: 1220px;
    margin: 0 auto;

    background: #163d63;

    border-radius: 18px;

    padding: 32px 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    box-shadow: 0 15px 40px rgba(22, 61, 99, 0.12);
}


/* ===================================
   LEFT CONTENT
=================================== */

.placement-notice-text {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    max-width: 720px;
}

.placement-notice-text p {
    margin: 0;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.6;

    color: #ffffff;
}


/* ===================================
   INFO ICON
=================================== */

.notice-icon {
    flex-shrink: 0;

    width: 26px;
    height: 26px;

    border-radius: 50%;

    background: #0aa5a5;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;

    margin-top: 2px;
}


/* ===================================
   BUTTON
=================================== */

.placement-notice-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 17px 28px;

    background: #0aa5a5;

    color: #ffffff;

    border-radius: 50px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.placement-notice-btn span {
    font-size: 20px;

    transition: transform 0.3s ease;
}


/* HOVER */

.placement-notice-btn:hover {
    background: #078989;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(10, 165, 165, 0.25);
}

.placement-notice-btn:hover span {
    transform: translateX(4px);
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .placement-notice-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .placement-notice {
        padding: 35px 16px;
    }

    .placement-notice-container {
        padding: 25px 22px;

        border-radius: 14px;
    }

    .placement-notice-text p {
        font-size: 16px;
    }

    .placement-notice-btn {
        width: 100%;

        padding: 15px 20px;

        font-size: 15px;
    }

}

/* ===================================
   SUCCESS STORIES SECTION
=================================== */

.success-stories-section {
    width: 100%;
    padding: 85px 20px;
   
}


/* ===================================
   CONTAINER
=================================== */

.success-stories-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.success-stories-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #294f4a;
}

.success-stories-tag span {
    width: 30px;
    height: 2px;

    background:#294f4a;
}


/* ===================================
   HEADING
=================================== */

.success-stories-section h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;

    color: #163d63;
}


/* ===================================
   INTRO
=================================== */

.success-stories-intro {
    max-width: 800px;

    margin: 0 0 45px;

    font-size: 17px;
    line-height: 1.8;
}


/* ===================================
   SUCCESS STORIES GRID
=================================== */

.success-stories-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* ===================================
   SUCCESS STORY CARD
=================================== */

.success-story-card {
    background: #ffffff;

    border: 1px solid #d9e8e7;

    border-radius: 14px;

    padding: 32px 28px;

    min-height: 220px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.success-story-card:hover {
    transform: translateY(-6px);

    border-color: #294f4a;

    box-shadow:
        0 15px 35px rgba(10, 165, 165, 0.12);
}


/* ===================================
   ICON
=================================== */

.story-icon {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: #294f4a;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 22px;
}


/* ===================================
   CARD HEADING
=================================== */

.success-story-card h3 {
    margin: 0 0 12px;

    font-size: 20px;
    font-weight: 700;

    color: #163d63;
}


/* ===================================
   CARD TEXT
=================================== */

.success-story-card p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .success-stories-section {
        padding: 60px 16px;
    }

    .success-stories-grid {
        grid-template-columns: 1fr;
    }

    .success-stories-section h2 {
        font-size: 34px;
    }

    .success-stories-intro {
        font-size: 16px;
    }

    .success-story-card {
        min-height: auto;
        padding: 28px 24px;
    }

}

/* ===================================
   WHY WIKPOLT SECTION
=================================== */

.why-wikpolt-section {
    width: 100%;
    padding: 90px 20px;
    background: #f4f8f7;
}


/* ===================================
   CONTAINER
=================================== */

.why-wikpolt-container {
    max-width: 1220px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: center;
}


/* ===================================
   LEFT CONTENT
=================================== */

.why-wikpolt-content {
    max-width: 580px;
}


/* ===================================
   SECTION TAG
=================================== */

.why-wikpolt-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: #2f665e;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.why-wikpolt-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.why-wikpolt-content h2 {
    margin: 0 0 24px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.2;

    color: #294f4a;
}


/* ===================================
   DESCRIPTION
=================================== */

.why-wikpolt-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

  
}


/* ===================================
   RIGHT POINTS
=================================== */

.why-wikpolt-points {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* ===================================
   INDIVIDUAL POINT
=================================== */

.why-wikpolt-point {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #d8e1df;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.why-wikpolt-point:hover {
    transform: translateX(6px);

    border-color: #2f665e;

    box-shadow:
        0 12px 30px rgba(47, 102, 94, 0.12);
}


/* ===================================
   NUMBER
=================================== */

.why-point-number {
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: #2f665e;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
}


/* ===================================
   POINT CONTENT
=================================== */

.why-point-content h3 {
    margin: 0 0 8px;

    font-size: 19px;
    font-weight: 700;

    color: #294f4a;
}


.why-point-content p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .why-wikpolt-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .why-wikpolt-content {
        max-width: 750px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .why-wikpolt-section {
        padding: 60px 16px;
    }

    .why-wikpolt-container {
        gap: 35px;
    }

    .why-wikpolt-content h2 {
        font-size: 34px;
    }

    .why-wikpolt-content p {
        font-size: 16px;
    }

    .why-wikpolt-point {
        padding: 20px;
        gap: 15px;
    }

    .why-point-number {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }

    .why-point-content h3 {
        font-size: 17px;
    }

}

/* ===================================
   EXPERT MENTORS SECTION
=================================== */

.expert-mentors-section {
    width: 100%;
    padding: 10px 20px;
    background: #f4f8f7;
}


/* ===================================
   CONTAINER
=================================== */

.expert-mentors-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   TOP CONTENT
=================================== */

.expert-mentors-content {
    max-width: 850px;
    margin-bottom: 45px;
}


/* ===================================
   SECTION TAG
=================================== */

.expert-mentors-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;

    color: #2f665e;
}


.expert-mentors-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.expert-mentors-content h2 {
    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;

    color: #294f4a;
}


/* ===================================
   PARAGRAPH
=================================== */

.expert-mentors-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;
}


/* ===================================
   IMAGE SECTION
=================================== */

.expert-mentors-image {
    width: 100%;
    margin-bottom: 40px;
}


.expert-mentors-image img {
    width: 100%;
    height: 270px;

    display: block;

    object-fit: cover;

    border-radius: 16px;

    border: 1px solid #d8e1df;

    box-shadow:
        0 20px 50px rgba(47, 102, 94, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.expert-mentors-image img:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(47, 102, 94, 0.18);
}


/* ===================================
   THREE POINTS
=================================== */

.expert-mentors-points {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* ===================================
   POINT CARD
=================================== */

.mentor-point {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 28px 24px;

    background: #ffffff;

    border: 1px solid #d8e1df;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.mentor-point:hover {
    transform: translateY(-6px);

    border-color: #2f665e;

    box-shadow:
        0 15px 35px rgba(47, 102, 94, 0.10);
}


/* ===================================
   NUMBER
=================================== */

.mentor-number {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: #2f665e;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;
}


/* ===================================
   POINT CONTENT
=================================== */

.mentor-point-content h3 {
    margin: 0 0 8px;

    font-size: 19px;
    font-weight: 700;

    color: #294f4a;
}


.mentor-point-content p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .expert-mentors-image img {
        height: 400px;
    }


    .expert-mentors-points {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .expert-mentors-section {
        padding: 60px 16px;
    }


    .expert-mentors-content {
        margin-bottom: 30px;
    }


    .expert-mentors-content h2 {
        font-size: 34px;
    }


    .expert-mentors-content p {
        font-size: 16px;
        line-height: 1.75;
    }


    .expert-mentors-image {
        margin-bottom: 30px;
    }


    .expert-mentors-image img {
        height: 280px;

        border-radius: 12px;
    }


    .expert-mentors-points {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .mentor-point {
        padding: 22px 20px;
    }


    .mentor-point-content h3 {
        font-size: 18px;
    }

}

/* ===================================
   IMAGE SECTION
=================================== */

.expert-mentors-image {
    width: 100%;
    margin-bottom: 40px;
}

.expert-mentors-image img {
    width: 100%;
    height: 270px;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 16px;

    border: 1px solid #d8e1df;

    box-shadow:
        0 20px 50px rgba(6, 78, 59, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.expert-mentors-image img:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(6, 78, 59, 0.18);
}


/* ===================================
   TABLET VIEW
=================================== */

@media (max-width: 900px) {

    .expert-mentors-image img {
        width: 100%;
        height: auto;

        /* Full image visible */
        object-fit: contain;

        border-radius: 14px;
    }

    .expert-mentors-points {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===================================
   MOBILE VIEW
=================================== */

@media (max-width: 600px) {

    .expert-mentors-section {
        padding: 60px 16px;
    }


    .expert-mentors-content {
        margin-bottom: 30px;
    }


    .expert-mentors-content h2 {
        font-size: 34px;
        line-height: 1.3;
    }


    .expert-mentors-content p {
        font-size: 16px;
        line-height: 1.75;
    }


    /* IMAGE CONTAINER */

    .expert-mentors-image {
        width: 100%;
        margin-bottom: 30px;

        overflow: hidden;
    }


    /* IMAGE */

    .expert-mentors-image img {
        width: 100%;

        /* Important:
           Image full content will be visible */
        height: auto;

        display: block;

        object-fit: contain;
        object-position: center;

        border-radius: 12px;

        border: 1px solid #d8e1df;

        transform: none;
    }


    /* Disable hover movement on mobile */

    .expert-mentors-image img:hover {
        transform: none;

        box-shadow:
            0 15px 35px rgba(6, 78, 59, 0.12);
    }


    /* POINTS */

    .expert-mentors-points {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .mentor-point {
        padding: 22px 20px;
    }


    .mentor-point-content h3 {
        font-size: 18px;
    }

}
/* ===================================
   HANDS-ON TOOLS SECTION
=================================== */

.tools-section {
    width: 100%;
    padding: 25px 20px;
   
}


/* ===================================
   CONTAINER
=================================== */

.tools-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.tools-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #2f665e;
}


.tools-tag span {
    width: 30px;
    height: 2px;

    background: #2f665e;
}


/* ===================================
   HEADING
=================================== */

.tools-section h2 {
    max-width: 750px;

    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;

    color: #294f4a;
}


/* ===================================
   INTRO
=================================== */

.tools-intro {
    max-width: 850px;

    margin: 0 0 45px;

    font-size: 17px;
    line-height: 1.75;


}


/* ===================================
   TOOLS GRID
=================================== */

.tools-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}


/* ===================================
   TOOL CARD
=================================== */

.tool-card {
    min-height: 210px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #d8e1df;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.tool-card:hover {
    transform: translateY(-6px);

    border-color: #2f665e;

    box-shadow:
        0 18px 40px rgba(47, 102, 94, 0.12);
}


/* ===================================
   TOOL ICON
=================================== */

.tool-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2f665e;

    color: #ffffff;

    border-radius: 14px;

    font-size: 25px;
    font-weight: 700;
}


/* GOOGLE ADS ICON */

.google-ads-icon {
    font-size: 28px;

    font-weight: 700;
}


/* ===================================
   CARD HEADING
=================================== */

.tool-card h3 {
    margin: 0 0 10px;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.4;

    color: #294f4a;
}


/* ===================================
   CARD TEXT
=================================== */

.tool-card p {
    margin: 0;

    font-size: 17px;
    line-height: 1.55;
}


/* ===================================
   LARGE TABLET
=================================== */

@media (max-width: 1100px) {

    .tools-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 850px) {

    .tools-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .tools-section {
        padding: 60px 16px;
    }


    .tools-section h2 {
        font-size: 34px;
    }


    .tools-intro {
        font-size: 16px;

        margin-bottom: 30px;
    }


    .tools-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .tool-card {
        min-height: auto;

        padding: 24px;
    }

}

/* ===================================
   WIKPOLT CURRICULUM SECTION
=================================== */

.curriculum-section {
    width: 100%;
    padding: 25px 20px;
    background: #f7f9f8;
}


/* ===================================
   CONTAINER
=================================== */

.curriculum-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.curriculum-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #2f8f6b;
}

.curriculum-tag span {
    width: 30px;
    height: 2px;

    background: #2f8f6b;
}


/* ===================================
   HEADING
=================================== */

.curriculum-section h2 {
    max-width: 850px;

    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 40px;
    font-weight: 700;

    line-height: 1.18;

    color: #234b3d;
}


/* ===================================
   INTRO
=================================== */

.curriculum-intro {
    max-width: 760px;

    margin: 0 0 45px;

    font-size: 17px;
    line-height: 1.7;

    
}


/* ===================================
   ACCORDION
=================================== */

.curriculum-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ===================================
   ACCORDION ITEM
=================================== */

.curriculum-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dbe7e1;

    border-radius: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.curriculum-item:hover {
    border-color: #9acdb7;

    box-shadow:
        0 8px 25px rgba(47, 143, 107, 0.08);
}


/* ===================================
   ACTIVE ITEM
=================================== */

.curriculum-item.active {
    border-color: #72b99b;

    box-shadow:
        0 10px 30px rgba(47, 143, 107, 0.10);
}


/* ===================================
   QUESTION BUTTON
=================================== */

.curriculum-question {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 22px 24px;

    border: none;

    background: transparent;

    text-align: left;

    cursor: pointer;

    font-family: inherit;
}


/* ===================================
   MODULE NUMBER
=================================== */

.module-number {
    min-width: 38px;

    font-size: 15px;
    font-weight: 700;

    color: #2f8f6b;
}


/* ===================================
   MODULE TITLE
=================================== */

.module-title {
    flex: 1;

    font-size: 17px;
    font-weight: 600;

    color: #234b3d;
}


/* ===================================
   PLUS / MINUS ICON
=================================== */

.accordion-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 25px;
    font-weight: 400;

    line-height: 1;

    color: #2f8f6b;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.curriculum-item.active .accordion-icon {
    background: #2f8f6b;

    color: #ffffff;
}


/* ===================================
   ANSWER
=================================== */

.curriculum-answer {
    display: none;

    padding:
        0
        30px
        24px
        82px;

    
}


.curriculum-item.active .curriculum-answer {
    display: block;
}


/* ===================================
   ANSWER PARAGRAPH
=================================== */

.curriculum-answer p {
    margin: 0 0 10px;

    font-size: 16px;

    line-height: 1.7;

  
}


.curriculum-answer p:last-child {
    margin-bottom: 0;
}


/* ===================================
   STRONG TEXT
=================================== */

.curriculum-answer strong {
    color: #234b3d;

    font-weight: 700;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .curriculum-section {
        padding: 65px 20px;
    }


    .curriculum-question {
        padding: 20px;
        gap: 14px;
    }


    .module-title {
        font-size: 16px;
    }


    .curriculum-answer {
        padding:
            0
            20px
            22px
            20px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 480px) {

    .curriculum-section {
        padding: 55px 16px;
    }


    .curriculum-section h2 {
        font-size: 30px;
    }


    .curriculum-intro {
        font-size: 16px;

        margin-bottom: 30px;
    }


    .curriculum-question {
        padding: 18px 16px;

        gap: 12px;
    }


    .module-number {
        min-width: 30px;

        font-size: 14px;
    }


    .module-title {
        font-size: 15px;

        line-height: 1.5;
    }


    .accordion-icon {
        width: 26px;
        height: 26px;

        font-size: 21px;
    }


    .curriculum-answer {
        padding:
            0
            16px
            20px;
    }


    .curriculum-answer p {
        font-size: 15px;
    }

}

/* ===================================
   PRACTICAL PROJECTS SECTION
=================================== */

.practical-projects-section {
    width: 100%;
    padding: 25px 20px;
   
}


/* CONTAINER */

.practical-projects-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* SECTION TAG */

.projects-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #2f8f6b;
}

.projects-tag span {
    width: 30px;
    height: 2px;
    background: #2f8f6b;
}


/* HEADING */

.practical-projects-section h2 {
    max-width: 850px;
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.18;

    color: #234b3d;
}


/* INTRO */

.projects-intro {
    max-width: 750px;
    margin: 0 0 45px;

    font-size: 17px;
    line-height: 1.7;

  
}


/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* CARD */

.project-card {
    padding: 30px;

    background: #ffffff;
    border: 1px solid #d8e5df;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);

    border-color: #8bc8ad;

    box-shadow:
        0 15px 35px
        rgba(47, 143, 107, 0.12);
}


/* CARD HEADING */

.project-card h3 {
    margin: 0 0 12px;

    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;

    color: #234b3d;
}


/* CARD PARAGRAPH */

.project-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.65;

   
}


/* NOTE */

.projects-note {
    margin-top: 35px;
    padding: 20px 24px;

    background: #eef7f2;

    border-left: 4px solid #2f8f6b;
    border-radius: 8px;
}

.projects-note p {
    margin: 0;

    font-size: 17px;
    line-height: 1.65;

    
}


/* TABLET */

@media (max-width: 900px) {

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .practical-projects-section {
        padding: 60px 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-card {
        padding: 25px;
    }

    .projects-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .project-card h3 {
        font-size: 19px;
    }

}

/* ===================================
   WHO SHOULD JOIN SECTION
=================================== */

.who-should-join-section {
    width: 100%;
    padding: 85px 20px;
    background: #f7f9f8;
}

.who-should-join-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.who-should-join-section .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #2f8f72;
}

.who-should-join-section .section-tag span {
    width: 30px;
    height: 2px;
    background: #2f8f72;
}


/* ===================================
   HEADING
=================================== */

.who-should-join-section h2 {
    margin: 0 0 45px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;

    color: #244f45;
}


/* ===================================
   TWO COLUMN GRID
=================================== */

.join-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 55px;
}

.join-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* ===================================
   JOIN ITEM
=================================== */

.join-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding-bottom: 28px;

    border-bottom: 1px solid #d9e5e0;
}

.join-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}


/* ===================================
   TICK ICON
=================================== */

.tick-icon {
    flex-shrink: 0;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    border-radius: 50%;

    background: #2f8f72;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}


/* ===================================
   CONTENT
=================================== */

.join-item h3 {
    margin: 0 0 8px;

    font-size: 20px;
    font-weight: 700;

    color: #244f45;
}

.join-item p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .join-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .who-should-join-section {
        padding: 60px 20px;
    }

    .who-should-join-section h2 {
        margin-bottom: 35px;
    }

    .join-column {
        gap: 25px;
    }

    .join-item h3 {
        font-size: 18px;
    }

    .join-item p {
        font-size: 15px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .who-should-join-section {
        padding: 50px 16px;
    }

    .tick-icon {
        width: 26px;
        height: 26px;

        font-size: 14px;
    }

}

/* ===================================
   LEARN FROM ANYWHERE SECTION
=================================== */

.learn-anywhere-section {
    width: 100%;
    padding: 85px 20px;
   
}


/* ===================================
   CONTAINER
=================================== */

.learn-anywhere-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.learn-anywhere-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #2f8f6b;
}

.learn-anywhere-tag span {
    width: 30px;
    height: 2px;

    background: #2f8f6b;
}


/* ===================================
   HEADING
=================================== */

.learn-anywhere-section h2 {
    max-width: 850px;

    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.18;

    color: #234b3d;
}


/* ===================================
   INTRO
=================================== */

.learn-anywhere-intro {
    max-width: 850px;

    margin: 0 0 45px;

    font-size: 17px;
    line-height: 1.75;

}


/* ===================================
   GRID
=================================== */

.learning-mode-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}


/* ===================================
   CARD
=================================== */

.learning-mode-card {
    padding: 32px;

    background: #ffffff;

    border: 1px solid #d8e5df;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.learning-mode-card:hover {
    transform: translateY(-5px);

    border-color: #8bc8ad;

    box-shadow:
        0 15px 35px
        rgba(47, 143, 107, 0.12);
}


/* ===================================
   CARD HEADING
=================================== */

.learning-mode-card h3 {
    margin: 0 0 12px;

    font-size: 22px;
    font-weight: 700;

    color: #234b3d;
}


/* ===================================
   CARD TEXT
=================================== */

.learning-mode-card p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;
}


/* ===================================
   INFORMATION NOTE
=================================== */

.learn-anywhere-note {
    margin-top: 35px;

    padding: 20px 24px;

    background: #eef7f2;

    border-left: 4px solid #2f8f6b;

    border-radius: 8px;
}


.learn-anywhere-note p {
    margin: 0;

    font-size: 17px;
    line-height: 1.65;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .learn-anywhere-section {
        padding: 65px 20px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .learn-anywhere-section {
        padding: 60px 16px;
    }


    .learning-mode-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .learning-mode-card {
        padding: 25px;
    }


    .learn-anywhere-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }


    .learning-mode-card h3 {
        font-size: 20px;
    }


    .learn-anywhere-note {
        margin-top: 25px;
        padding: 18px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .learn-anywhere-section h2 {
        font-size: 30px;
    }

}
/* ===================================
   FREE VS STRUCTURED TRAINING
=================================== */

.free-training-section {
    width: 100%;
    padding: 85px 20px;
    background: #f7f9f8;
}


/* ===================================
   CONTAINER
=================================== */

.free-training-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.free-training-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #2f8f6b;
}

.free-training-tag span {
    width: 30px;
    height: 2px;

    background: #2f8f6b;
}


/* ===================================
   MAIN HEADING
=================================== */

.free-training-section h2 {
    max-width: 850px;

    margin: 0 0 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;

    color: #234b3d;
}


/* ===================================
   INTRO CONTENT
=================================== */

.free-training-intro {
    max-width: 900px;
}

.free-training-intro p {
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.8;
}

.free-training-intro p:last-child {
    margin-bottom: 0;
}


/* ===================================
   COMPARISON TITLE
=================================== */

.comparison-title {
    margin: 50px 0 25px;

    font-size: 24px;
    font-weight: 700;

    color: #234b3d;
}


/* ===================================
   COMPARISON GRID
=================================== */

.training-comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}


/* ===================================
   COMPARISON CARD
=================================== */

.training-comparison-card {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #d8e5df;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.training-comparison-card:hover {
    transform: translateY(-5px);

    border-color: #8bc8ad;

    box-shadow:
        0 15px 35px
        rgba(47, 143, 107, 0.12);
}


/* ===================================
   LABEL
=================================== */

.comparison-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 14px;

    background: #e8f4ee;

    border-radius: 5px;

    font-size: 17px;
    font-weight: 700;

    color: #2f8f6b;
}


/* ===================================
   CARD TEXT
=================================== */

.training-comparison-card p {
    margin: 0;

    font-size: 17px;
    line-height: 1.75;

}


/* ===================================
   FREE CONTENT CARD
=================================== */

.free-content-card {
    border-top: 3px solid #9bbdb0;
}


/* ===================================
   STRUCTURED TRAINING CARD
=================================== */

.structured-training-card {
    border-top: 3px solid #2f8f6b;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .free-training-section {
        padding: 65px 20px;
    }

    .training-comparison-grid {
        gap: 18px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .free-training-section {
        padding: 60px 16px;
    }

    .training-comparison-grid {
        grid-template-columns: 1fr;
    }

    .free-training-intro p {
        font-size: 16px;
        line-height: 1.75;
    }

    .comparison-title {
        margin-top: 40px;
        font-size: 21px;
    }

    .training-comparison-card {
        padding: 25px;
    }

    .training-comparison-card p {
        font-size: 16px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .free-training-section h2 {
        font-size: 30px;
    }

}

/* ===================================
   COURSE FEES SECTION
=================================== */

.course-fees-section {
    width: 100%;
    padding: 15px 20px;
  
}


/* CONTAINER */

.course-fees-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* SECTION TAG */

.course-fees-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #2f8f6b;
}

.course-fees-tag span {
    width: 30px;
    height: 2px;
    background: #2f8f6b;
}


/* HEADING */

.course-fees-section h2 {
    max-width: 850px;
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;

    color: #234b3d;
}


/* INTRO */

.course-fees-intro {
    max-width: 850px;
    margin: 0 0 40px;

    font-size: 17px;
    line-height: 1.75;

  
}


/* ===================================
   POINTS GRID
=================================== */

.fee-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 0;

    max-width: 1000px;
}


/* POINT */

.fee-point {
    position: relative;

    padding: 18px 0 18px 24px;

    font-size: 17px;
    font-weight: 600;

    color: #234b3d;

    border-bottom: 1px solid #d8e5df;
}


/* GREEN BULLET */

.fee-point::before {
    content: "";

    position: absolute;

    left: 0;
    top: 26px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #2f8f6b;
}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .course-fees-section {
        padding: 60px 20px;
    }

    .fee-points {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

}


@media (max-width: 480px) {

    .course-fees-section {
        padding: 50px 16px;
    }

    .course-fees-section h2 {
        font-size: 30px;
    }

    .course-fees-intro {
        font-size: 16px;
    }

    .fee-point {
        font-size: 16px;
    }

}

/* ===================================
   CAREER OPPORTUNITIES SECTION
=================================== */

.career-opportunities-section {
    width: 100%;
    padding: 85px 20px;
    background: #f7f9f8;
}


/* ===================================
   CONTAINER
=================================== */

.career-opportunities-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.career-opportunities-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #2f8f6b;
}

.career-opportunities-tag span {
    width: 30px;
    height: 2px;

    background: #2f8f6b;
}


/* ===================================
   HEADING
=================================== */

.career-opportunities-section h2 {
    margin: 0 0 40px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;

    color: #234b3d;
}


/* ===================================
   TABLE WRAPPER
=================================== */

.career-table-wrapper {
    width: 100%;
    overflow-x: auto;

    background: #ffffff;

    border: 1px solid #d8e5df;
    border-radius: 12px;
}


/* ===================================
   TABLE
=================================== */

.career-table {
    width: 100%;
    min-width: 700px;

    border-collapse: collapse;
}


/* ===================================
   TABLE HEADER
=================================== */

.career-table thead {
    background: #2f8f6b;
}

.career-table th {
    padding: 20px 25px;

    text-align: left;

    font-size: 16px;
    font-weight: 700;

    color: #ffffff;
}


/* ===================================
   TABLE DATA
=================================== */

.career-table td {
    padding: 20px 25px;

    font-size: 16px;
    line-height: 1.65;

    color: #5d6b66;

    border-bottom: 1px solid #e2ebe6;
}


/* LAST ROW */

.career-table tbody tr:last-child td {
    border-bottom: none;
}


/* ===================================
   ROLE COLUMN
=================================== */

.career-table td:first-child {
    width: 35%;

    color: #234b3d;
}


/* ===================================
   ROW HOVER
=================================== */

.career-table tbody tr {
    transition: background 0.3s ease;
}

.career-table tbody tr:hover {
    background: #f1f8f4;
}


/* ===================================
   NOTE
=================================== */

.career-opportunities-note {
    margin: 25px 0 0;

    padding: 18px 22px;

    font-size: 17px;
    line-height: 1.7;


    background: #eef7f2;

    border-left: 4px solid #2f8f6b;

    border-radius: 6px;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .career-opportunities-section {
        padding: 65px 20px;
    }

    .career-opportunities-section h2 {
        margin-bottom: 30px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .career-opportunities-section {
        padding: 60px 16px;
    }

    .career-table-wrapper {
        border-radius: 8px;
    }

    .career-table th,
    .career-table td {
        padding: 16px 18px;
    }

    .career-opportunities-note {
        padding: 16px;
        font-size: 14px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .career-opportunities-section h2 {
        font-size: 30px;
    }

}

/* ===================================
   LOCAL ADVANTAGE SECTION
=================================== */

.local-advantage-section {
    width: 100%;
    padding: 15px 20px;
  
}


/* ===================================
   CONTAINER
=================================== */

.local-advantage-container {
    max-width: 1220px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 70px;

    align-items: start;
}


/* ===================================
   LEFT CONTENT
=================================== */

.local-advantage-content {
    max-width: 750px;
}


/* ===================================
   SECTION TAG
=================================== */

.local-advantage-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #2f8f6b;
}


.local-advantage-tag span {
    width: 30px;
    height: 2px;

    background: #2f8f6b;
}


/* ===================================
   HEADING
=================================== */

.local-advantage-content h2 {
    margin: 0 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.2;

    color: #234b3d;
}


/* ===================================
   PARAGRAPH
=================================== */

.local-advantage-content p {
    margin: 0 0 20px;

    font-size: 17px;
    line-height: 1.8;
}


/* ===================================
   LOCATION POINTS
=================================== */

.local-location-points {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}


.local-location-points span {
    padding: 9px 15px;

    border: 1px solid #cfe2d8;

    border-radius: 30px;

    background: #ffffff;

    font-size: 14px;
    font-weight: 600;

    color: #2f8f6b;
}


/* ===================================
   RIGHT CONTACT BOX
=================================== */

.wikpolt-location-box {
    padding: 38px 35px;

    background: #234b3d;

    border-radius: 16px;

    box-shadow:
        0 20px 45px
        rgba(35, 75, 61, 0.15);
}


/* ===================================
   BOX TAG
=================================== */

.location-box-tag {
    display: inline-block;

    margin-bottom: 15px;

    padding: 7px 12px;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #a8dbc5;
}


/* ===================================
   BOX HEADING
=================================== */

.wikpolt-location-box h3 {
    margin: 0 0 35px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.3;

    color: #ffffff;
}


/* ===================================
   CONTACT DETAILS
=================================== */

.location-contact-details {
    display: flex;
    flex-direction: column;

    gap: 25px;
}


/* ===================================
   CONTACT ITEM
=================================== */

.location-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;
}


/* ===================================
   CONTACT SYMBOL
=================================== */

.contact-symbol {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2f8f6b;

    font-size: 17px;
}


/* ===================================
   CONTACT HEADING
=================================== */

.location-contact-item h4 {
    margin: 0 0 6px;

    font-size: 15px;
    font-weight: 700;

    color: #ffffff;
}


/* ===================================
   CONTACT TEXT
=================================== */

.location-contact-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #c9ddd4;
}


/* ===================================
   CONTACT LINKS
=================================== */

.location-contact-item a {
    font-size: 15px;

    color: #c9ddd4;

    text-decoration: none;

    transition: color 0.3s ease;
}


.location-contact-item a:hover {
    color: #ffffff;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .local-advantage-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .local-advantage-content {
        max-width: 850px;
    }


    .wikpolt-location-box {
        max-width: 650px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .local-advantage-section {
        padding: 60px 16px;
    }


    .local-advantage-content p {
        font-size: 16px;
    }


    .wikpolt-location-box {
        padding: 30px 24px;
    }


    .wikpolt-location-box h3 {
        font-size: 25px;
    }


    .local-location-points {
        margin-top: 25px;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .local-advantage-content h2 {
        font-size: 30px;
    }


    .local-location-points span {
        font-size: 13px;
        padding: 8px 12px;
    }

}

/* ===================================
   COURSE CHECKLIST SECTION
=================================== */

.course-checklist-section {
    width: 100%;
    padding: 85px 20px;
    background: #f7f9f8;
}


/* ===================================
   CONTAINER
=================================== */

.course-checklist-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.course-checklist-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #2f8f6b;
}

.course-checklist-tag span {
    width: 30px;
    height: 2px;

    background: #2f8f6b;
}


/* ===================================
   HEADING
=================================== */

.course-checklist-section h2 {
    max-width: 900px;
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;

    color: #234b3d;
}


/* ===================================
   INTRO
=================================== */

.course-checklist-intro {
    max-width: 850px;
    margin: 0 0 50px;

    font-size: 17px;
    line-height: 1.75;


}


/* ===================================
   CHECKLIST GRID
=================================== */

.course-checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 0 40px;
}


/* ===================================
   CHECKLIST ITEM
=================================== */

.checklist-item {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 25px 0;

    border-top: 1px solid #d8e5df;
}


/* ===================================
   NUMBER
=================================== */

.check-number {
    flex-shrink: 0;

    font-size: 14px;
    font-weight: 700;

    color: #2f8f6b;

    padding-top: 4px;
}


/* ===================================
   ITEM HEADING
=================================== */

.checklist-item h3 {
    margin: 0 0 8px;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;

    color: #234b3d;
}


/* ===================================
   ITEM TEXT
=================================== */

.checklist-item p {
    margin: 0;

    font-size: 17px;
    line-height: 1.65;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 900px) {

    .course-checklist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 30px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .course-checklist-section {
        padding: 60px 16px;
    }

    .course-checklist-grid {
        grid-template-columns: 1fr;
    }

    .course-checklist-intro {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .checklist-item {
        padding: 20px 0;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .course-checklist-section h2 {
        font-size: 30px;
    }

    .checklist-item h3 {
        font-size: 17px;
    }

    .checklist-item p {
        font-size: 15px;
    }

}

/* ===================================
   COURSE ENQUIRY SECTION
=================================== */

.course-enquiry-section {
    width: 100%;
    padding: 90px 20px;
    background: #f7f6f4;
}


/* ===================================
   CONTAINER
=================================== */

.course-enquiry-container {
    max-width: 1420px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;
    align-items: center;
}


/* ===================================
   LEFT CONTENT
=================================== */

.course-contact-content {
    max-width: 650px;
}


/* ===================================
   SECTION TAG
=================================== */

.course-section-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #0aa5a5;
}


.course-section-tag span {
    width: 28px;
    height: 2px;

    background: #0aa5a5;
}


/* ===================================
   HEADING
=================================== */

.course-contact-content h2 {
    margin: 0 0 24px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;

    line-height: 1.18;

    color: #163d63;
}


/* ===================================
   INTRO
=================================== */

.course-contact-content > p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;

    color: #596775;
}


/* ===================================
   CONTACT LIST
=================================== */

.course-contact-list {
    margin-top: 38px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}


/* ===================================
   CONTACT ITEM
=================================== */

.course-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;
}


/* ===================================
   ICON
=================================== */

.course-contact-icon {
    width: 22px;

    flex-shrink: 0;

    font-size: 17px;

    color: #0aa5a5;

    line-height: 1.6;
}


/* ===================================
   CONTACT TEXT
=================================== */

.course-contact-item p,
.course-contact-item a {
    margin: 0;

    font-size: 16px;
    line-height: 1.6;

    color: #163d63;

    text-decoration: none;
}


.course-contact-item a:hover {
    color: #0aa5a5;
}


/* ===================================
   FORM WRAPPER
=================================== */

.course-form-wrapper {
    width: 100%;
}


/* ===================================
   FORM
=================================== */

.course-enquiry-form {
    width: 100%;

    box-sizing: border-box;

    padding: 38px;

    background: #ffffff;

    border: 1px solid #d9e1df;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(22, 61, 99, 0.10);

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* ===================================
   FORM GROUP
=================================== */

.course-form-group {
    display: flex;
    flex-direction: column;
}


.course-full-width {
    grid-column: 1 / -1;
}


/* ===================================
   LABEL
=================================== */

.course-form-group label {
    margin-bottom: 9px;

    font-size: 16px;
    font-weight: 600;

    color: #163d63;
}


/* ===================================
   INPUTS
=================================== */

.course-form-group input,
.course-form-group select,
.course-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 15px 17px;

    font-family: inherit;
    font-size: 16px;

    color: #163d63;

    background: #ffffff;

    border: 1px solid #ccd8d6;

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* ===================================
   INPUT HEIGHT
=================================== */

.course-form-group input,
.course-form-group select {
    height: 56px;
}


/* ===================================
   SELECT
=================================== */

.course-form-group select {
    cursor: pointer;
}


/* ===================================
   TEXTAREA
=================================== */

.course-form-group textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.6;
}


.course-form-group textarea::placeholder {
    color: #8b9795;
}


/* ===================================
   FOCUS
=================================== */

.course-form-group input:focus,
.course-form-group select:focus,
.course-form-group textarea:focus {
    border-color: #0aa5a5;

    box-shadow:
        0 0 0 3px rgba(10, 165, 165, 0.12);
}


/* ===================================
   PRIVACY TEXT
=================================== */

.course-form-privacy {
    grid-column: 1 / -1;

    margin: 0;

    font-size: 13px;
    line-height: 1.6;

    color: #74807f;
}


/* ===================================
   SUBMIT BUTTON
=================================== */

.course-submit-btn {
    grid-column: 1 / -1;

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 50px;

    background: #163d63;

    color: #ffffff;

    font-family: inherit;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* ===================================
   BUTTON HOVER
=================================== */

.course-submit-btn:hover {
    background: #0aa5a5;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(10, 165, 165, 0.22);
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .course-enquiry-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .course-contact-content {
        max-width: 750px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .course-enquiry-section {
        padding: 65px 20px;
    }


    .course-enquiry-form {
        grid-template-columns: 1fr;

        padding: 28px;
    }


    .course-full-width,
    .course-form-privacy,
    .course-submit-btn {
        grid-column: auto;
    }

}


/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .course-enquiry-section {
        padding: 55px 16px;
    }


    .course-enquiry-form {
        padding: 22px 18px;

        border-radius: 16px;
    }


    .course-contact-content h2 {
        font-size: 30px;
    }


    .course-contact-content > p {
        font-size: 16px;
    }

}