*{
    padding: 0px;
    margin: 0px;
    font-family: "Livvic", Sans-serif;
}
.indigene-hero {
    width: 100%;
    box-sizing: border-box;
}
.wla-hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    display: grid;
}

.indigene-hero *,
.indigene-hero *::before,
.indigene-hero *::after {
    box-sizing: border-box;
}
.indigene-hero-content {
    width: 100%;
    
}
.section_heading {
    margin: 0 0 20px;
    padding: 0;

    
    
    line-height: 1.15;
    font-weight: 700;
    color: #202020;
}
.highlight_span {
    color: #1CB0A9;
}
.section_des {
  
    padding: 0;

   
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;

    color: #555555;
}
.indigene-hero-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 18px 0 18px;
    padding: 0;
    list-style: none;
}

.indigene-hero-list li {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 18px;

    text-align: center;
}
.indigene-hero-list li:first-child {
    padding-left: 0 !important;
}

/* Vertical divider */
.indigene-hero-list li:not(:last-child)::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: #e5e5e5;
}

/* Icon */
.feature-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    background: #e8f6f5;
    border-radius: 50%;

    color: #1CB0A9;
    font-size: 21px;
}

/* Title */
.indigene-hero-list li h3 {
    margin: 0 0 6px;

   
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;

    color: #252525;
}

/* Description */
.indigene-hero-list li p {
    max-width: 150px;

    margin: 0;

   
    font-size: 9px;
    line-height: 1.5;
    font-weight: 400;

    color: #555;
}



/* ================================
   BUTTON
================================ */

.indigene-hero-button-wrapper {
    margin-top: 30px;
}

.indigene-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 145px;
    padding: 14px 28px;

    background: #1CB0A9;
    color: #ffffff;

    border: 2px solid #1CB0A9;
    border-radius: 5px;

   
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.indigene-hero-button:hover {
    background: #ffffff;
    color: #1CB0A9;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(28, 176, 169, 0.18);
}

/* ================================
   RIGHT IMAGE
================================ */

.indigene-hero-image {
    width: 100%;
    flex: 0 0 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.indigene-hero-image img {
    display: block;

    width: 100%;
    max-width: 550px;
    height: auto;

    margin: 0 auto;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1024px) {

    .indigene-hero {
        padding: 55px 25px;
    }

    .indigene-hero-container {
        gap: 35px;
    }

    

    .section_subtitle {
        font-size: 18px;
    }

    section_des {
        font-size: 16px;
    }

     .indigene-hero-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .indigene-hero-list li {
        padding: 0 10px;
    }

    .indigene-hero-list li h3 {
        font-size: 10px;
    }

    .indigene-hero-list li p {
        font-size: 8px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .indigene-hero {
        padding: 45px 20px;
    }

    .indigene-hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .indigene-hero-content,
    .indigene-hero-image {
        width: 100%;
        flex: 0 0 100%;
    }

    .indigene-hero-content {
        text-align: left;
    }

    .section_heading {
       
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .section_subtitle {
        font-size: 17px;
        margin-bottom: 16px;
    }

    section_des {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

     .indigene-hero-list {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .indigene-hero-list li {
        padding: 0 12px;
    }

    .indigene-hero-list li:nth-child(2)::after {
        display: none;
    }

    .indigene-hero-list li:nth-child(3)::after {
        display: block;
    }


    .indigene-hero-button-wrapper {
        margin-top: 25px;
    }

    .indigene-hero-button {
        padding: 13px 25px;
        font-size: 15px;
    }

    .indigene-hero-image {
        order: 2;
    }

    .indigene-hero-image img {
        width: 100%;
        max-width: 500px;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .indigene-hero {
        padding: 35px 16px;
    }

   
    .section_subtitle {
        font-size: 15px;
        padding: 7px 12px;
    }

    section_des {
        font-size: 14px;
    }

    
    .indigene-hero-list {
        grid-template-columns: 1fr 1fr;
    }

    .indigene-hero-list li {
        padding: 0 8px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .indigene-hero-list li h3 {
        font-size: 10px;
    }

    .indigene-hero-list li p {
        font-size: 8px;
    }

}
.indigene-divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.divider-line {
    width: 25px;
    height: 1px;
    background: #6f9ba0;
    flex-shrink: 0;
}
.divider-second-line {
    width: 50px;
    height: 1px;
    background: #6f9ba0;
    flex-shrink: 0;
}

.divider-icon {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1cb0a9;
    font-size: 16px;
    line-height: 1;

    transform: rotate(45deg);
    flex-shrink: 0;
}

.divider-text {
    font-family: Arial, sans-serif;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.7px;
    color: #4e5d6b;
    white-space: nowrap;
}
.itech-reviews-card img {object-fit: contain;
    margin: 0 auto;}


/* Tablet */
@media (max-width: 1024px) {
    .divider-line {
        width: 50px;
    }

    .divider-text {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .indigene-divider {
        gap: 7px;
    }

    .divider-line {
        width: 30px;
    }

    .divider-text {
        font-size: 9px;
        letter-spacing: 0.3px;
        white-space: normal;
    }

    .divider-icon {
        width: 15px;
        height: 15px;
        font-size: 13px;
    }
}




/* =========================================
   INDIGENOUS CERTIFICATION SECTION
========================================= */

.indigenous-certification-section {
    width: 100%;
    padding: 65px 20px 70px;
    background: #c7edef;
    box-sizing: border-box;
}

.indigenous-certification-section *,
.indigenous-certification-section *::before,
.indigenous-certification-section *::after {
    box-sizing: border-box;
}

.indigenous-certification-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.indigenous-certification-heading {
    text-align: center;
    margin-bottom: 40px;
}



.indigenous-certification-heading h3 {
    margin: 0 0 10px;

    font-family: Arial, sans-serif;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;

    color: #006471;
}

.indigenous-certification-heading p {
    max-width: 570px;
    margin: 0 auto;

    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;

    color: #111111;
}


/* =========================================
   CARDS WRAPPER
========================================= */

.certification-cards {
    display: grid;

    grid-template-columns: 1fr 50px 1fr;

    align-items: center;

    max-width: 980px;
    margin: 0 auto;
}


/* =========================================
   CERTIFICATION CARD
========================================= */

.certification-card {
    position: relative;

    min-height: 190px;

    padding: 15px 18px 18px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 7px 0 #8c4a08,
        0 8px 15px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
}

.certification-card:first-child {
    box-shadow:
        0 7px 0 #713d0a,
        0 8px 15px rgba(0, 0, 0, 0.08);
}


/* =========================================
   LOGO
========================================= */

.certification-logo {
    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.certification-logo img {
    display: block;

    width: auto;
    max-width: 100%;
    height: 95px;

    object-fit: contain;
}


/* =========================================
   GOLD LINE
========================================= */

.certification-line {
    width: 100%;
    height: 1px;

    margin: 0 0 16px;

    background: #d3a62a;
}


/* =========================================
   CARD TEXT
========================================= */

.certification-card p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.45;

    color: #202020;
}

.certification-card p span {
    color: #b62b27;
}


/* =========================================
   CENTER BADGE
========================================= */

.certification-center {
    position: relative;

    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Vertical lines */

.center-line {
    width: 1px;
    height: 48px;

    background: #9c9c9c;
}


/* Badge */

.certification-badge {
    width: 50px;
    height: 50px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

   

    border-radius: 6px;

    transform: rotate(45deg);
}


/* Badge inside */

.badge-inner {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #1cb0a9;

    border-radius: 50%;

    transform: rotate(-45deg);

    color: #a87d19;
    font-size: 21px;
}

.badge-inner span {
    line-height: 1;
}


/* =========================================
   DESKTOP CARD DIFFERENCE
========================================= */

.certification-card:first-child {
    margin-right: 0;
}

.certification-card:last-child {
    margin-left: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .indigenous-certification-section {
        padding: 50px 20px 60px;
    }

 

    

    .certification-cards {
        grid-template-columns: 1fr 40px 1fr;
    }

    .certification-card {
        min-height: 180px;
        padding: 13px 15px 16px;
    }

    .certification-logo {
        height: 95px;
    }

    .certification-logo img {
        height: 85px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .indigenous-certification-section {
        padding: 45px 18px 50px;
    }

    .indigenous-certification-heading {
        margin-bottom: 30px;
    }

    

    

    .indigenous-certification-heading p {
        font-size: 12px;
    }

    .certification-cards {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .certification-card {
        width: 100%;
        min-height: 180px;
    }

    /* Center badge becomes horizontal */
    .certification-center {
        width: 100%;
        height: 45px;

        flex-direction: row;
    }

    .center-line {
        width: 45%;
        height: 1px;
    }

    .certification-badge {
        width: 42px;
        height: 42px;

        margin: 0 12px;

        flex-shrink: 0;
    }

    .badge-inner {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .indigenous-certification-section {
        padding: 38px 15px 45px;
    }

   

   

    .indigenous-certification-heading p {
        font-size: 11px;
    }

    .certification-card {
        padding: 12px 15px 16px;
    }

    .certification-logo {
        height: 90px;
    }

    .certification-logo img {
        height: 80px;
    }

    .certification-card p {
        font-size: 11px;
    }

}