/* ==========================================
   WIKPOLT COURSE STATISTICS SECTION
========================================== */

.wkp-course-stats-area {
    width: 100%;
    padding: 70px 20px;

    background: #064e3b;
}


/* ==========================================
   MAIN WRAPPER
========================================== */

.wkp-course-stats-wrapper {
    width: 100%;
    max-width: 1220px;

    margin: 0 auto;
}


/* ==========================================
   TOP HIGHLIGHTS
========================================== */

.wkp-course-highlights {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 55px;

    margin-bottom: 35px;
}


.wkp-course-highlight-item {
    position: relative;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.85);

    text-align: center;
}


/* small accent */

.wkp-course-highlight-item::before {
    content: "";

    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 10px;

    border-radius: 50%;

    background: #0aa5a5;

    vertical-align: middle;
}


/* ==========================================
   MAIN STATS CONTENT
========================================== */

.wkp-course-stats-content {
    display: grid;

    grid-template-columns: 1fr 360px;

    align-items: center;

    gap: 50px;
}


/* ==========================================
   STATISTICS BOX
========================================== */

.wkp-course-statistics {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.15);
}


/* ==========================================
   INDIVIDUAL STAT
========================================== */

.wkp-course-stat {
    padding: 38px 20px;

    text-align: center;

    border-right: 1px solid #d9e4e0;
}


.wkp-course-stat:last-child {
    border-right: none;
}


/* ==========================================
   STAT NUMBER
========================================== */

.wkp-course-stat h3 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 54px);

    font-weight: 700;

    line-height: 1;

    color: #064e3b;
}


/* ==========================================
   STAT LABEL
========================================== */

.wkp-course-stat p {
    margin: 0;

    font-size: 15px;

    line-height: 1.6;

    color: #43534e;
}


/* ==========================================
   DESCRIPTION
========================================== */

.wkp-course-stats-text {
    padding: 5px 0;
}


.wkp-course-stats-text p {
    margin: 0;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.8;

    letter-spacing: 0.2px;

    color: rgba(255, 255, 255, 0.88);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .wkp-course-stats-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .wkp-course-stats-text {
        max-width: 750px;

        margin: 0 auto;

        text-align: center;
    }


    .wkp-course-highlights {
        gap: 35px;
    }

}


/* ==========================================
   TABLET - SMALL
========================================== */

@media (max-width: 850px) {

    .wkp-course-stats-area {
        padding: 60px 20px;
    }


    .wkp-course-highlights {
        flex-wrap: wrap;

        gap: 20px 35px;

        margin-bottom: 30px;
    }


    .wkp-course-statistics {
        grid-template-columns: repeat(2, 1fr);
    }


    .wkp-course-stat {
        border-right: 1px solid #d9e4e0;

        border-bottom: 1px solid #d9e4e0;
    }


    .wkp-course-stat:nth-child(2) {
        border-right: none;
    }


    .wkp-course-stat:nth-child(3),
    .wkp-course-stat:nth-child(4) {
        border-bottom: none;
    }


    .wkp-course-stat:nth-child(4) {
        border-right: none;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .wkp-course-stats-area {
        padding: 55px 16px;
    }


    /* HIGHLIGHTS */

    .wkp-course-highlights {
        flex-direction: column;

        align-items: center;

        gap: 13px;

        margin-bottom: 25px;
    }


    .wkp-course-highlight-item {
        font-size: 15px;

        text-align: center;
    }


    /* STATS */

    .wkp-course-statistics {
        border-radius: 16px;
    }


    .wkp-course-stat {
        padding: 30px 12px;
    }


    .wkp-course-stat h3 {
        font-size: 38px;
    }


    .wkp-course-stat p {
        font-size: 14px;

        line-height: 1.5;
    }


    /* DESCRIPTION */

    .wkp-course-stats-content {
        gap: 28px;
    }


    .wkp-course-stats-text p {
        font-size: 15px;

        line-height: 1.75;

        text-align: center;
    }

}


/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media (max-width: 380px) {

    .wkp-course-stat h3 {
        font-size: 32px;
    }


    .wkp-course-stat p {
        font-size: 13px;
    }


    .wkp-course-stat {
        padding: 25px 8px;
    }

}
/* ===================================
   POPULAR COURSES SECTION
=================================== */

.wikpolt-popular-courses {
    width: 100%;
    padding: 35px 20px;

}


/* ===================================
   CONTAINER
=================================== */

.wikpolt-courses-container {
    max-width: 1400px;
    margin: 0 auto;
}


/* ===================================
   HEADER
=================================== */

.wikpolt-courses-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 45px;
}


/* ===================================
   TAG
=================================== */

.wikpolt-course-tag {
    display: inline-block;

    margin-bottom: 14px;

    color:  #294f4a;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* ===================================
   HEADING
=================================== */

.wikpolt-courses-heading h2 {
    max-width: 750px;

    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.2;

    color:  #294f4a;
}


/* ===================================
   VIEW ALL BUTTON
=================================== */

.wikpolt-view-courses {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    border: 2px solid #294f4a;
    border-radius: 50px;

    color:  #294f4a;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}


.wikpolt-view-courses:hover {
    background:  #294f4a;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ===================================
   COURSES GRID
=================================== */

.wikpolt-courses-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 26px;
}


/* ===================================
   COURSE CARD
=================================== */

.wikpolt-course-card {
    background: #ffffff;

    border: 1px solid #d8e5e5;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.wikpolt-course-card:hover {
    transform: translateY(-8px);

    border-color:  #294f4a;

    box-shadow:
        0 18px 45px rgba(22, 61, 99, 0.12);
}


/* ===================================
   IMAGE
=================================== */

.wikpolt-course-image {
    width: 100%;
    height: 190px;

    overflow: hidden;
}


.wikpolt-course-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.wikpolt-course-card:hover
.wikpolt-course-image img {
    transform: scale(1.06);
}


/* ===================================
   COURSE CONTENT
=================================== */

.wikpolt-course-content {
    padding: 25px;
}


/* ===================================
   COURSE TITLE
=================================== */

.wikpolt-course-content h3 {
    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    font-weight: 700;

    line-height: 1.3;

    color:  #294f4a;
}


/* ===================================
   COURSE DESCRIPTION
=================================== */

.wikpolt-course-content p {
    margin: 0 0 22px;

    font-size: 16px;
    line-height: 1.7;
}


/* ===================================
   VIEW DETAILS LINK
=================================== */

.wikpolt-course-content a {
    display: inline-flex;

    color:  #294f4a;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.wikpolt-course-content a:hover {
    color: #163d63;

    transform: translateX(5px);
}


/* ===================================
   LARGE TABLET
=================================== */

@media (max-width: 1200px) {

    .wikpolt-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .wikpolt-popular-courses {
        padding: 65px 20px;
    }


    .wikpolt-courses-header {
        align-items: flex-start;
        flex-direction: column;

        margin-bottom: 35px;
    }


    .wikpolt-courses-heading h2 {
        font-size: 38px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .wikpolt-popular-courses {
        padding: 55px 16px;
    }


    .wikpolt-courses-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .wikpolt-courses-heading h2 {
        font-size: 30px;
    }


    .wikpolt-course-image {
        height: 210px;
    }


    .wikpolt-course-content {
        padding: 22px;
    }


    .wikpolt-course-content h3 {
        font-size: 21px;
    }


    .wikpolt-view-courses {
        width: 100%;
    }

}

/* ===================================
   COURSE CATEGORIES SECTION
=================================== */

.course-categories {
    width: 100%;
    padding: 75px 20px;
    background: #f7f9f9;
}


/* ===================================
   CONTAINER
=================================== */

.course-categories-container {
    max-width: 1400px;
    margin: 0 auto;
}


/* ===================================
   HEADING
=================================== */

.course-categories h2 {
    margin: 0 0 28px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;

    line-height: 1.3;

    color: #064e3b;
}


/* ===================================
   CATEGORY GRID
=================================== */

.category-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}


/* ===================================
   CATEGORY ITEM
=================================== */

.category-item {
    min-height: 185px;

    padding: 28px 15px;

    background: #ffffff;

    border: 1px solid #d8e5e5;
    border-radius: 16px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* ===================================
   HOVER
=================================== */

.category-item:hover {
    transform: translateY(-6px);

    border-color: #064e3b;

    box-shadow:
        0 15px 35px rgba(10, 165, 165, 0.12);
}


/* ===================================
   ICON BOX
=================================== */

.category-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e8f6f5;

    border-radius: 16px;

    font-size: 26px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* ===================================
   ICON HOVER
=================================== */

.category-item:hover .category-icon {
    background: #064e3b;

    transform: scale(1.08);
}


/* ===================================
   CATEGORY TEXT
=================================== */

.category-item span {
    font-size: 16px;

    font-weight: 600;

    line-height: 1.55;

    color: #064e3b;

    transition: color 0.3s ease;
}


.category-item:hover span {
    color: #064e3b;
}


/* ===================================
   LARGE TABLET
=================================== */

@media (max-width: 1200px) {

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .course-categories {
        padding: 60px 20px;
    }


    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }


    .course-categories h2 {
        margin-bottom: 24px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 480px) {

    .course-categories {
        padding: 50px 16px;
    }


    .category-grid {
        grid-template-columns: 1fr;
    }


    .category-item {
        min-height: 150px;
    }

}

/* ===================================
   IT COURSE GUIDE
=================================== */

.it-course-guide {
    width: 100%;
    padding: 85px 20px;
    background: #f7f9f9;
}


/* ===================================
   CONTAINER
=================================== */

.it-course-guide-container {
    max-width: 1250px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.it-course-guide-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #064e3b;
}


.it-course-guide-tag span {
    width: 32px;
    height: 2px;

    background: #064e3b;
}


/* ===================================
   HEADING
=================================== */

.it-course-guide h2 {
    max-width: 900px;

    margin: 0 0 20px;

    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;

    line-height: 1.25;

    color: #064e3b;
}


/* ===================================
   INTRO TEXT
=================================== */

.it-course-guide-intro {
    max-width: 900px;

    margin: 0 0 40px;

    font-size: 17px;
    line-height: 1.8;

  
}


/* ===================================
   TABLE WRAPPER
=================================== */

.course-table-wrapper {
    width: 100%;

    overflow-x: auto;

    border: 1px solid #d6e3df;
    border-radius: 14px;

    background: #ffffff;
}


/* ===================================
   TABLE
=================================== */

.course-guide-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 850px;
}


/* ===================================
   TABLE HEADER
=================================== */

.course-guide-table thead {
    background: #064e3b;
}


.course-guide-table th {
    padding: 20px 24px;

    text-align: left;

    font-size: 16px;
    font-weight: 600;

    color: #ffffff;
}


/* ===================================
   TABLE BODY
=================================== */

.course-guide-table td {
    padding: 22px 24px;

    font-size: 16px;
    line-height: 1.6;

  

    border-bottom: 1px solid #e2e8e5;
}


.course-guide-table tbody tr:last-child td {
    border-bottom: none;
}


/* ===================================
   COURSE NAME
=================================== */

.course-guide-table td strong {
    color: #064e3b;

    font-size: 16px;
    font-weight: 700;
}


/* ===================================
   ROW HOVER
=================================== */

.course-guide-table tbody tr {
    transition: background 0.3s ease;
}


.course-guide-table tbody tr:hover {
    background: #f1f8f6;
}


/* ===================================
   BOTTOM TEXT
=================================== */

.it-course-guide-bottom {
    max-width: 1000px;

    margin: 30px 0 0;

    font-size: 17px;
    line-height: 1.8;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .it-course-guide {
        padding: 60px 20px;
    }


    .it-course-guide h2 {
        font-size: 32px;
    }


    .it-course-guide-intro,
    .it-course-guide-bottom {
        font-size: 16px;
    }


    .course-guide-table th,
    .course-guide-table td {
        padding: 18px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 480px) {

    .it-course-guide {
        padding: 50px 16px;
    }


    .it-course-guide h2 {
        font-size: 28px;
    }

}

/* ==========================================
   WIKPOLT TRAINING SECTION
========================================== */

.wikpolt-training-section {
    width: 100%;
    overflow: hidden;
}


/* ==========================================
   TOP BENEFITS SECTION
========================================== */

.wikpolt-benefits {
    padding: 25px 40px 95px;
   
}


/* ==========================================
   HEADING
========================================== */

.wikpolt-section-heading {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.wikpolt-section-heading span {
    display: block;
    margin-bottom: 12px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #064e3b;
}


.wikpolt-section-heading h2 {
    margin: 0;

    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;

    color: #064e3b;
}


.wikpolt-section-heading p {
    max-width: 850px;

    margin: 22px auto 0;

    font-size: 18px;
    line-height: 1.7;
}


/* ==========================================
   BENEFIT GRID
========================================== */

.wikpolt-benefit-grid {
    max-width: 1450px;

    margin: 40px auto 0;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 20px;
}


/* ==========================================
   BENEFIT ITEM
========================================== */

.wikpolt-benefit-item {
    min-height: 90px;

    padding: 30px 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #d7e5df;

    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.wikpolt-benefit-item:hover {
    transform: translateY(-7px);

    border-color: #064e3b;

    box-shadow:
        0 15px 35px rgba(6, 78, 59, 0.12);
}


/* ==========================================
   ICON
========================================== */

.benefit-icon {
    margin-bottom: 18px;

    font-size: 30px;

    line-height: 1;
}


/* ==========================================
   BENEFIT TITLE
========================================== */

.wikpolt-benefit-item h3 {
    margin: 0;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.55;

    color: #064e3b;
}


/* ==========================================
   STATS SECTION
========================================== */

.wikpolt-stats-section {
    width: 100%;

    padding: 65px 40px;

    background: #064e3b;
}


/* ==========================================
   STATS CONTAINER
========================================== */

.wikpolt-stats-container {
    max-width: 1450px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.6fr repeat(4, 1fr);

    gap: 45px;

    align-items: center;
}


/* ==========================================
   STATS TITLE
========================================== */

.wikpolt-stats-title h2 {
    margin: 0;

    font-size: clamp(28px, 2.5vw, 40px);

    font-weight: 700;

    line-height: 1.35;

    color: #ffffff;
}


/* ==========================================
   INDIVIDUAL STAT
========================================== */

.wikpolt-stat {
    text-align: center;
}


.wikpolt-stat h3 {
    margin: 0 0 10px;

    font-size: clamp(36px, 3vw, 48px);

    font-weight: 700;

    color: #ffffff;
}


.wikpolt-stat h3 span {
    color: #b7e4d5;
}


.wikpolt-stat p {
    margin: 0;

    font-size: 15px;

    line-height: 1.5;

    color: #cce5dc;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .wikpolt-benefit-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .wikpolt-stats-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }


    .wikpolt-stats-title {
        grid-column: span 2;

        text-align: center;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .wikpolt-benefits {
        padding: 60px 20px;
    }


    .wikpolt-section-heading h2 {
        font-size: 32px;
    }


    .wikpolt-section-heading p {
        font-size: 16px;
    }


    .wikpolt-benefit-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;
    }


    .wikpolt-benefit-item {
        min-height: 150px;

        padding: 25px 15px;
    }


    .wikpolt-stats-section {
        padding: 55px 20px;
    }


    .wikpolt-stats-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 20px;
    }


    .wikpolt-stats-title {
        grid-column: span 2;
    }


    .wikpolt-stats-title h2 {
        text-align: center;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .wikpolt-benefit-grid {
        grid-template-columns: 1fr;
    }


    .wikpolt-section-heading h2 {
        font-size: 28px;
    }


    .wikpolt-stats-container {
        grid-template-columns: 1fr;
    }


    .wikpolt-stats-title {
        grid-column: span 1;
    }

}


/* ===================================
   HIRING PARTNERS SECTION
=================================== */

.hiring-partners-section {
    width: 100%;
    padding: 80px 20px;
    background: #f5f6f8;
    overflow: hidden;
    box-sizing: border-box;
}

.hiring-partners-section *,
.hiring-partners-section *::before,
.hiring-partners-section *::after {
    box-sizing: border-box;
}


/* ===================================
   CONTAINER
=================================== */

.hiring-partners-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   HEADING
=================================== */

.hiring-partners-heading {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.hiring-partners-heading h2 {
    margin: 0 0 18px;

    color: #243b3b;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
}

.hiring-partners-heading p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}


/* ===================================
   PARTNERS GRID
=================================== */

.partners-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 24px;
}


/* ===================================
   PARTNER CARD
=================================== */

.partner-card {
    width: 100%;
    min-height: 152px;

    padding: 25px 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dfe6e5;
    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* ===================================
   HOVER
=================================== */

.partner-card:hover {
    transform: translateY(-5px);

    border-color: #2c9b86;

    box-shadow:
        0 12px 30px rgba(36, 59, 59, 0.10);
}


/* ===================================
   LOGO
=================================== */

.partner-card img {
    width: 100%;
    max-width: 150px;

    height: 58px;

    object-fit: contain;

    display: block;

    margin: 0 auto 15px;
}


/* ===================================
   PARTNER NAME
=================================== */

.partner-card h3 {
    margin: 0;

    color: #5f6d77;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.4;
}


/* ===================================
   LARGE TABLET
=================================== */

@media (max-width: 1100px) {

    .partners-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* ===================================
   TABLET
=================================== */

@media (max-width: 768px) {

    .hiring-partners-section {
        padding: 60px 20px;
    }

    .hiring-partners-heading {
        margin-bottom: 40px;
    }

    .hiring-partners-heading h2 {
        font-size: 34px;
    }

    .hiring-partners-heading p {
        font-size: 16px;
        line-height: 1.65;
    }


    .partners-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }


    .partner-card {
        min-height: 140px;
        padding: 20px 15px;
    }


    .partner-card img {
        max-width: 125px;
        height: 50px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 480px) {

    .hiring-partners-section {
        padding: 50px 15px;
    }


    .hiring-partners-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }


    .hiring-partners-heading p {
        font-size: 15px;
    }


    .partners-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .partner-card {
        min-height: 120px;

        padding: 15px 10px;

        border-radius: 10px;
    }


    .partner-card img {
        max-width: 105px;
        height: 42px;

        margin-bottom: 10px;
    }


    .partner-card h3 {
        font-size: 13px;
    }

}

/* ===================================
   TESTIMONIAL SECTION
=================================== */

.testimonials-section {
    width: 100%;
    background: #1a1d23;
    padding: 80px 20px;
    color: #e8e5df;
}

.testimonials-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ===================================
   SECTION TAG
=================================== */

.testimonials-section .section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #e6a844;
    margin-bottom: 20px;
}

.testimonials-section .section-tag span {
    width: 20px;
    height: 1px;
    background: #e6a844;
}


/* ===================================
   HEADING
=================================== */

.testimonials-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    color: #e8e5df;
    margin: 0 0 16px;
}


/* ===================================
   INTRO
=================================== */

.testimonials-intro {
    max-width: 750px;
    font-size: 17px;
    line-height: 1.7;
    color: #bcb9b3;
    margin: 0 0 45px;
}


/* ===================================
   TESTIMONIAL WRAPPER
=================================== */

.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
}


/* ===================================
   TESTIMONIAL TRACK
=================================== */

.testimonial-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}


/* ===================================
   TESTIMONIAL CARD
=================================== */

.testimonial-card {
    position: relative;
    flex: 0 0 calc(33.333% - 19px);
    min-height: 300px;

    background: #22262e;
    border: 1px solid #30353d;
    border-radius: 14px;

    padding: 34px 36px;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 168, 68, 0.55);
    background: #252a33;
}


/* ===================================
   GOOGLE ICON - TOP RIGHT
=================================== */

.google-icon {
    position: absolute;
    top: 22px;
    right: 24px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #ffffff;

    opacity: 0.9;
}


/* ===================================
   TESTIMONIAL TEXT
=================================== */

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #c4c1bc;

    margin: 0 0 30px;
    padding-right: 35px;

    flex-grow: 1;
}


/* ===================================
   STUDENT DETAILS
=================================== */

.student-details {
    margin-top: auto;
}

.student-details h3 {
    font-size: 19px;
    font-weight: 600;
    color: #e8e5df;

    margin: 0 0 6px;
}

.student-details p {
    font-size: 15px;
    line-height: 1.5;
    color: #aaa7a1;

    margin: 0 0 10px;
}


/* ===================================
   STARS - BELOW NAME
=================================== */

.stars {
    color: #e6a844;
    font-size: 17px;
    letter-spacing: 2px;
    line-height: 1;
}


/* ===================================
   SLIDER CONTROLS
=================================== */

.testimonial-controls {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 1px solid #3a4049;

    background: transparent;
    color: #e8e5df;

    font-size: 20px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: #e6a844;
    color: #1a1d23;
    border-color: #e6a844;
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .testimonial-card {
        flex: 0 0 calc(50% - 14px);
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 600px) {

    .testimonials-section {
        padding: 60px 16px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: 280px;

        padding: 28px 24px;
    }

    .testimonial-text {
        font-size: 16px;
        padding-right: 25px;
    }

    .google-icon {
        top: 18px;
        right: 18px;
    }

    .student-details h3 {
        font-size: 18px;
    }

    .testimonials-intro {
        font-size: 16px;
    }

}
/* ==========================================
   CAREER SUPPORT SECTION
========================================== */

.career-support-section {
    width: 100%;
    padding: 85px 40px;
    background: #f6faf8;
}


/* ==========================================
   CONTAINER
========================================== */

.career-support-container {
    max-width: 1220px;
    margin: 0 auto;
}


/* ==========================================
   HEADING
========================================== */

.career-support-heading {
    max-width: 850px;
    margin-bottom: 50px;
}


.career-support-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #064e3b;
}


.career-support-tag span {
    width: 32px;
    height: 2px;

    background: #064e3b;
}


.career-support-heading h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.2;

    color: #064e3b;
}


.career-support-heading p {
    margin: 0;

    font-size: 17px;
    line-height: 1.8;

}


/* ==========================================
   SUPPORT GRID
========================================== */

.career-support-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


/* ==========================================
   SUPPORT ITEM
========================================== */

.career-support-item {
    padding: 32px;

    background: #ffffff;

    border: 1px solid #d7e5df;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.career-support-item:hover {
    transform: translateY(-5px);

    border-color: #064e3b;

    box-shadow:
        0 15px 35px rgba(6, 78, 59, 0.10);
}


.career-support-item h3 {
    margin: 0 0 12px;

    font-size: 21px;
    font-weight: 700;

    color: #064e3b;
}


.career-support-item p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================
   DISCLAIMER
========================================== */

.career-support-note {
    margin-top: 35px;

    padding: 22px 28px;

    border-left: 4px solid #064e3b;

    background: #eaf4ef;
}


.career-support-note p {
    margin: 0;

    font-size: 17px;
    line-height: 1.7;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 768px) {

    .career-support-section {
        padding: 65px 20px;
    }


    .career-support-grid {
        grid-template-columns: 1fr;
    }


    .career-support-heading {
        margin-bottom: 35px;
    }


    .career-support-item {
        padding: 25px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 480px) {

    .career-support-section {
        padding: 55px 16px;
    }


    .career-support-heading h2 {
        font-size: 29px;
    }


    .career-support-heading p {
        font-size: 16px;
    }


    .career-support-item h3 {
        font-size: 19px;
    }


    .career-support-note {
        padding: 18px;
    }

}

/* =========================================
   WHO CAN JOIN & CAREER OUTCOMES
========================================= */

.who-career-section {
    width: 100%;
    padding: 20px 40px;
    
}

.who-career-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}


/* COLUMN */

.who-career-column {
    padding: 10px 0;
}


/* TAG */

.who-career-tag {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;

    color: #064e3b;
}

.who-career-tag span {
    width: 35px;
    height: 2px;
    background: #064e3b;
}


/* HEADING */

.who-career-column h2 {
    margin: 0 0 30px;

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;

    line-height: 1.25;

    color: #064e3b;
}


/* LIST */

.who-career-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ITEM */

.who-career-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 0;

    border-bottom: 1px solid #d7e5df;

    transition: 0.3s ease;
}

.who-career-item:hover {
    padding-left: 8px;
}


/* CHECK ICON */

.who-career-item span {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #064e3b;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}


/* TEXT */

.who-career-item p {
    margin: 0;

    font-size: 17px;
    font-weight: 500;

    color: #344b42;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .who-career-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .who-career-section {
        padding: 60px 20px;
    }

    .who-career-column h2 {
        font-size: 30px;
    }

    .who-career-item p {
        font-size: 16px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .who-career-section {
        padding: 50px 16px;
    }

    .who-career-column h2 {
        font-size: 27px;
    }

}

/* ==========================================
   WIKPOLT TRIVANDRUM HUB
========================================== */

.wkp-hub-location-section {
    width: 100%;
    padding: 85px 20px;

    background: #f7f8f7;
}


/* ==========================================
   CONTAINER
========================================== */

.wkp-hub-location-container {
    width: 100%;
    max-width: 1220px;

    margin: 0 auto;
}


/* ==========================================
   HEADER
========================================== */

.wkp-hub-location-header {
    max-width: 850px;

    margin-bottom: 55px;
}


.wkp-hub-location-tag {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #0aa5a5;
}


.wkp-hub-location-header h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.2;

    color: #064e3b;
}


.wkp-hub-location-header p {
    margin: 0;

    max-width: 780px;

    font-size: 17px;

    line-height: 1.8;

}


/* ==========================================
   MAIN GRID
========================================== */

.wkp-hub-location-grid {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr;

    gap: 80px;

    align-items: start;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.wkp-hub-location-details {
    width: 100%;
}


/* ==========================================
   LOCATION ITEM
========================================== */

.wkp-hub-location-item {
    padding: 0 0 28px;

    margin-bottom: 28px;

    border-bottom: 1px solid #d7e2de;
}


.wkp-hub-location-item:last-child {
    margin-bottom: 0;

    border-bottom: none;
}


/* ==========================================
   ITEM HEADING
========================================== */

.wkp-hub-location-item h3 {
    position: relative;

    margin: 0 0 12px;

    padding-left: 18px;

    font-size: 20px;

    font-weight: 700;

    color: #064e3b;
}


/* GREEN ACCENT */

.wkp-hub-location-item h3::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 6px;
    height: 20px;

    border-radius: 5px;

    background: #0aa5a5;
}


/* ==========================================
   TEXT
========================================== */

.wkp-hub-location-item p {
    margin: 0;

    font-size: 16px;

    line-height: 1.8;

   
}


.wkp-hub-address {
    font-size: 17px !important;

    font-weight: 600;

    color: #163d63 !important;

    line-height: 1.8;
}


/* ==========================================
   RIGHT LOCATION SECTION
========================================== */

.wkp-hub-location-side {
    position: sticky;

    top: 30px;

    padding: 42px 38px;

    background: #064e3b;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(6, 78, 59, 0.16);
}


/* ==========================================
   SMALL TITLE
========================================== */

.wkp-location-small-title {
    display: block;

    margin-bottom: 25px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #72d3b8;
}


/* ==========================================
   LOCATION NAMES
========================================== */

.wkp-location-name {
    padding: 15px 0;

    border-bottom: 1px solid
        rgba(255, 255, 255, 0.15);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    font-weight: 700;

    color: #ffffff;
}


.wkp-location-name:last-of-type {
    border-bottom: none;
}


/* ==========================================
   DIVIDER
========================================== */

.wkp-hub-location-line {
    width: 55px;

    height: 3px;

    margin: 28px 0;

    border-radius: 10px;

    background: #0aa5a5;
}


/* ==========================================
   SIDE DESCRIPTION
========================================== */

.wkp-hub-location-side p {
    margin: 0 0 28px;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.75);
}


/* ==========================================
   MAP BUTTON
========================================== */

.wkp-location-map-button {
    display: inline-flex;

    align-items: center;

    padding: 13px 24px;

    border-radius: 30px;

    background: #ffffff;

    color: #064e3b;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.wkp-location-map-button:hover {
    transform: translateY(-3px);

    background: #0aa5a5;

    color: #ffffff;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .wkp-hub-location-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .wkp-hub-location-side {
        position: relative;

        top: auto;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .wkp-hub-location-section {
        padding: 60px 16px;
    }


    /* HEADER */

    .wkp-hub-location-header {
        margin-bottom: 40px;
    }


    .wkp-hub-location-header h2 {
        font-size: 32px;

        line-height: 1.25;
    }


    .wkp-hub-location-header p {
        font-size: 16px;

        line-height: 1.75;
    }


    /* GRID */

    .wkp-hub-location-grid {
        gap: 35px;
    }


    /* ITEMS */

    .wkp-hub-location-item {
        padding-bottom: 22px;

        margin-bottom: 22px;
    }


    .wkp-hub-location-item h3 {
        font-size: 18px;
    }


    .wkp-hub-location-item p {
        font-size: 15px;

        line-height: 1.75;
    }


    /* RIGHT SIDE */

    .wkp-hub-location-side {
        padding: 30px 24px;

        border-radius: 14px;
    }


    .wkp-location-name {
        font-size: 23px;

        padding: 13px 0;
    }


    .wkp-location-map-button {
        width: 100%;

        justify-content: center;
    }

}

/* ==========================================
   WIKPOLT LOCATION & ENQUIRY SECTION
========================================== */

.wikpolt-location-section {
    width: 100%;
    padding: 45px 20px;
    background: #064e3b;
}


/* ==========================================
   CONTAINER
========================================== */

.wikpolt-location-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.05fr 0.9fr;

    gap: 28px;
    align-items: stretch;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.wikpolt-location-content {
    color: #ffffff;

    padding: 10px 0;
}


.wikpolt-location-tag {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #a7f3d0;
}


.wikpolt-location-content h2 {
    margin: 0 0 15px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
    line-height: 1.3;

    color: #ffffff;
}


.wikpolt-location-content > p {
    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.7;

    color: #d1fae5;
}


/* ==========================================
   ADDRESS
========================================== */

.wikpolt-location-address {
    margin-bottom: 22px;
}


.wikpolt-location-address strong {
    display: block;

    margin-bottom: 7px;

    font-size: 16px;

    color: #ffffff;
}


.wikpolt-location-address p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #d1fae5;
}


/* ==========================================
   BUTTON
========================================== */

.wikpolt-direction-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    color: #ffffff;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.wikpolt-direction-btn:hover {
    background: #ffffff;

    color: #064e3b;

    transform: translateY(-2px);
}


/* ==========================================
   MAP
========================================== */
.wikpolt-map-box {
    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}


/* ===================================
   GOOGLE MAP
=================================== */

.wikpolt-map-box iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: none;
}

/* ==========================================
   ENQUIRY FORM
========================================== */

.wikpolt-enquiry-box {
    padding: 28px;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}


.wikpolt-enquiry-box h3 {
    margin: 0 0 7px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;

    color: #064e3b;
}


.wikpolt-enquiry-box > p {
    margin: 0 0 18px;

    font-size: 14px;

    line-height: 1.6;

    color: #5b6b66;
}


/* ==========================================
   FORM
========================================== */

.wikpolt-enquiry-box form {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* ==========================================
   INPUTS
========================================== */

.wikpolt-enquiry-box input,
.wikpolt-enquiry-box textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid #cbd5d1;

    border-radius: 9px;

    outline: none;

    background: #ffffff;

    font-family: inherit;

    font-size: 15px;

    color: #1f2937;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.wikpolt-enquiry-box textarea {
    resize: vertical;

    min-height: 80px;
}


.wikpolt-enquiry-box input::placeholder,
.wikpolt-enquiry-box textarea::placeholder {
    color: #8a9691;
}


/* ==========================================
   FOCUS
========================================== */

.wikpolt-enquiry-box input:focus,
.wikpolt-enquiry-box textarea:focus {
    border-color: #064e3b;

    box-shadow:
        0 0 0 3px rgba(6, 78, 59, 0.1);
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.wikpolt-enquiry-box button {
    width: 100%;

    margin-top: 3px;

    padding: 13px 20px;

    border: none;

    border-radius: 30px;

    cursor: pointer;

    background: #064e3b;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.wikpolt-enquiry-box button:hover {
    background: #053d2f;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(6, 78, 59, 0.25);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .wikpolt-location-container {
        grid-template-columns: 1fr 1fr;
    }


    .wikpolt-enquiry-box {
        grid-column: span 2;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .wikpolt-location-section {
        padding: 45px 16px;
    }


    .wikpolt-location-container {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .wikpolt-enquiry-box {
        grid-column: auto;
    }


    .wikpolt-location-content {
        padding: 0;
    }


    .wikpolt-location-content h2 {
        font-size: 28px;
    }


    .wikpolt-location-content > p {
        font-size: 15px;
    }


    .wikpolt-map-box {
        min-height: 220px;

        border-radius: 14px;
    }


    .wikpolt-map-box iframe {
        height: 220px;
    }


    .wikpolt-enquiry-box {
        padding: 22px 18px;

        border-radius: 14px;
    }


    .wikpolt-enquiry-box h3 {
        font-size: 23px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 400px) {

    .wikpolt-location-content h2 {
        font-size: 25px;
    }


    .wikpolt-map-box iframe {
        height: 200px;
    }


    .wikpolt-enquiry-box {
        padding: 20px 15px;
    }

}

/* ===================================
   LIFE AT WIKPOLT SECTION
=================================== */

.wikpolt-life-section {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
}


.wikpolt-life-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}


/* ===================================
   HEADING
=================================== */

.wikpolt-life-heading {
    margin-bottom: 35px;
}


.wikpolt-life-heading h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 700;

    color: #163d63;

    line-height: 1.2;
}


.wikpolt-heading-line {
    width: 65px;
    height: 3px;

    margin: 14px 0 18px;

    background: #2fa866;
    border-radius: 10px;
}


.wikpolt-life-heading p {
    max-width: 750px;

    margin: 0;

    font-size: 18px;
    line-height: 1.7;

    color: #4d5d68;
}


/* ===================================
   IMAGE GALLERY
=================================== */

.wikpolt-life-gallery {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 16px;

    width: 100%;
}


/* ===================================
   IMAGE CARD
=================================== */

.wikpolt-life-card {
    position: relative;

    height: 225px;

    overflow: hidden;

    border-radius: 18px;

    background: #eeeeee;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* IMAGE */

.wikpolt-life-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


/* ===================================
   DARK OVERLAY
=================================== */

.wikpolt-life-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 55%;

    background:
        linear-gradient(
            to top,
            rgba(10, 30, 45, 0.85),
            rgba(10, 30, 45, 0)
        );

    pointer-events: none;
}


/* ===================================
   CARD TITLE
=================================== */

.wikpolt-life-card h4 {
    position: absolute;

    left: 16px;
    bottom: 15px;

    margin: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;

    z-index: 2;
}


/* ===================================
   HOVER
=================================== */

.wikpolt-life-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.16);
}


.wikpolt-life-card:hover img {
    transform: scale(1.07);
}


/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .wikpolt-life-gallery {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .wikpolt-life-card {
        height: 230px;
    }

}


/* ===================================
   MOBILE / SMALL TABLET
=================================== */

@media (max-width: 768px) {

    .wikpolt-life-section {
        padding: 55px 0;
    }


    .wikpolt-life-container {
        padding: 0 20px;
    }


    .wikpolt-life-heading h2 {
        font-size: 34px;
    }


    .wikpolt-life-heading p {
        font-size: 16px;
    }


    .wikpolt-life-gallery {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }


    .wikpolt-life-card {
        height: 210px;
    }

}


/* ===================================
   MOBILE
=================================== */

@media (max-width: 480px) {

    .wikpolt-life-container {
        padding: 0 16px;
    }


    .wikpolt-life-heading h2 {
        font-size: 30px;
    }


    .wikpolt-life-gallery {
        grid-template-columns: 1fr;
    }


    .wikpolt-life-card {
        height: 230px;
    }


    .wikpolt-life-card h4 {
        font-size: 17px;
    }

}
/* ===================================
   GLOBAL HORIZONTAL SCROLL FIX
=================================== */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}