/* Products main arrow */

.products-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}

.products-arrow {
    font-size: 9px;
    transition: transform 0.25s ease;
}


/* Arrow rotate when dropdown opens */

.products-toggle[aria-expanded="true"] .products-arrow {
    transform: rotate(180deg);
}


/* Main dropdown */

.product-dropdown {
    min-width: 300px;
    padding: 8px;
    border: 1px solid rgba(201, 162, 39, 0.20);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}


/* Dropdown items */

.product-dropdown .dropdown-item {
    padding: 11px 14px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    transition: all 0.25s ease;
}

.product-dropdown .dropdown-item:hover {
    background: #f8f6ef;
    color: #C9A227;
}


/* STP submenu */

.dropdown-submenu {
    position: relative;
}

.stp-dropdown {
    position: absolute;
    top: -8px;
    left: calc(100% + 8px);

    min-width: 300px;
    padding: 8px;

    border: 1px solid rgba(201, 162, 39, 0.20);
    border-radius: 10px;

    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);

    display: none;
}

.dropdown-submenu:hover > .stp-dropdown {
    display: block;
}


/* STP arrow */

.stp-menu {
    display: flex !important;
    align-items: center;
}

.submenu-arrow {
    margin-left: auto;
    font-size: 9px;
    color: #999;
    transition: all 0.25s ease;
}

.dropdown-submenu:hover .submenu-arrow {
    color: #C9A227;
    transform: translateX(3px);
}


/* Remove Bootstrap default arrows */

.products-toggle::after,
.stp-menu::after {
    display: none !important;
}


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

.mobile-products-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Products Arrow */

.mobile-products-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}


/* Rotate Products Arrow */

.mobile-products-toggle[aria-expanded="true"] .mobile-products-arrow {
    transform: rotate(180deg);
}


/* ================================
   PRODUCT LIST
================================ */

.mobile-product-list {
    list-style: none;
    padding: 5px 0 5px 15px;
    margin: 0;
    border-left: 1px solid rgba(201, 162, 39, 0.35);
}


.mobile-product-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 12px;

    color: #333;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    border-radius: 6px;

    transition: all 0.25s ease;
}


.mobile-product-list > li > a:hover {
    color: #C9A227;
    background: rgba(201, 162, 39, 0.06);
}


/* ================================
   STP
================================ */

.mobile-stp-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}


.mobile-stp-arrow {
    font-size: 9px;
    transition: transform 0.3s ease;
}


/* Rotate STP Arrow */

.mobile-stp-toggle[aria-expanded="true"] .mobile-stp-arrow {
    transform: rotate(180deg);
}


/* ================================
   STP SUB LIST
================================ */

.mobile-stp-list {
    list-style: none;

    margin: 4px 0 5px 15px;
    padding: 3px 0 3px 12px;

    border-left: 1px solid rgba(201, 162, 39, 0.25);
}


.mobile-stp-list li a {
    display: block;

    padding: 8px 10px;

    color: #666;

    text-decoration: none;

    font-size: 13px;

    border-radius: 5px;

    transition: all 0.25s ease;
}


.mobile-stp-list li a:hover {
    color: #C9A227;
    background: rgba(201, 162, 39, 0.05);
}











/* =========================================
   V1 FEATURES SECTION
========================================= */

.v1-features {
    width: 100%;
    background: #ffffff;
    padding: 0;
}


/* Bootstrap 5 custom 5-column width */

@media (min-width: 992px) {

    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }

}


/* =========================================
   FEATURE BOX
========================================= */

.v1-feature-box {
    min-height: 190px;

    padding: 0 25px;

    text-align: center;

    border-right: 1px solid #e5e5e5;

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


/* Remove last separator */

.v1-last {
    border-right: none;
}


/* =========================================
   ICON
========================================= */

.v1-icon {
    height: 55px;

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

    margin-bottom: 13px;

    font-size: 42px;

    color: #19a9d2;
}


/* Individual Icon Colors */

.v1-blue {
    color: #0875b9;
}

.v1-green {
    color: #6b9f35;
}

.v1-shield {
    color: #0875b9;
}

.v1-team {
    color: #1675b4;
}


/* =========================================
   TITLE
========================================= */

.v1-title {
    margin: 0 0 12px;
    color: #075b91;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}


/* Green title */

.v1-feature-box:nth-child(3) .v1-title {
    color: #26704d;
}


/* =========================================
   DESCRIPTION
========================================= */

.v1-text {
    max-width: 205px;

    margin: 0 auto;

    color: #222;

    font-size: 16px;

   

    font-weight: 400;

    text-align: center;
}


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

@media (max-width: 991.98px) {

    .v1-feature-box {
        min-height: 210px;

        padding: 25px 20px;

        border-bottom: 1px solid #e5e5e5;
    }

}


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

@media (max-width: 575.98px) {

    .v1-feature-box {
        min-height: auto;

        padding: 25px 20px;

        border-right: none;

        border-bottom: 1px solid #e5e5e5;
    }

    .v1-last {
        border-bottom: none;
    }

    .v1-icon {
        font-size: 38px;
        height: 48px;
    }

    .v1-title {
        font-size: 16px;
    }

    .v1-text {
        max-width: 280px;
        font-size: 13px;
    }

}









/* =========================================
   V2 DESIGN & ENGINEERING
========================================= */

.v2-engineering-section {
    position: relative;

   

    background: #f8fafb;

    overflow: hidden;
}


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

.v2-section-heading {
    margin-bottom: 65px;
}


.v2-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: #0b76a8;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.v2-main-title {
    margin: 0 auto 20px;

    max-width: 850px;

    color: #102f43;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;
}


.v2-main-title span {
    color: #0b76a8;
}


.v2-intro {
    max-width: 820px;

    margin: 0 auto;

    color: #5d6870;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   CONTENT
========================================= */

.v2-content-row {
    margin-bottom: 65px;
}


.v2-content {
    padding-right: 30px;
}


.v2-content p {
    margin-bottom: 22px;

    color: #4f5c63;

    font-size: 16px;
    text-align: justify;
    
}


.v2-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   RIGHT SIDE BOX
========================================= */

.v2-side-box {
    position: relative;

    background: #ffffff;

    border: 1px solid #e3eaee;

    border-radius: 14px;

    padding: 30px;

    box-shadow: 0 15px 45px rgba(14, 53, 70, 0.08);
}


/* =========================================
   SIDE HEADER
========================================= */

.v2-side-header {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding-bottom: 25px;

    margin-bottom: 10px;

    border-bottom: 1px solid #e7edef;
}


.v2-side-number {
    display: flex;

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

    min-width: 48px;
    height: 48px;

    border-radius: 10px;

    background: #0b76a8;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


.v2-side-small {
    display: block;

    margin-bottom: 5px;

    color: #8b989f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.v2-side-header h3 {
    margin: 0;

    color: #15394d;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================
   CAPABILITIES
========================================= */

.v2-capabilities {
     grid-template-columns: 1fr 1fr;

    gap: 0 20px;
}


.v2-capability {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 52px;

    border-bottom: 1px solid #edf1f3;
}


.v2-capability span {
    min-width: 25px;

    color: #0b76a8;

    font-size: 10px;

    font-weight: 700;
}


.v2-capability p {
    margin: 0;

    color: #47565e;

    font-size: 15px;

    line-height: 1.4;
}


/* =========================================
   BOTTOM HIGHLIGHT
========================================= */

.v2-bottom-highlight {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    text-align: center;
}


.v2-highlight-line {
    height: 1px;

    flex: 1;

    background: #dce5e9;
}


.v2-bottom-highlight h3 {
    margin: 0;

    white-space: nowrap;

    color: #15394d;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: .3px;
}


.v2-bottom-highlight h3 span {
    margin: 0 8px;

    color: #0b76a8;
}


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

@media (max-width: 991.98px) {

    .v2-engineering-section {
        padding: 70px 0;
    }


    .v2-main-title {
        font-size: 36px;
    }


    .v2-content {
        padding-right: 0;
    }


    .v2-side-box {
        margin-top: 10px;
    }

}


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

@media (max-width: 767.98px) {

    .v2-engineering-section {
        padding: 55px 0;
    }


    .v2-section-heading {
        margin-bottom: 40px;
    }


    .v2-eyebrow {
        font-size: 11px;

        letter-spacing: 2px;
    }


    .v2-main-title {
        font-size: 28px;
    }


    .v2-intro {
        font-size: 14px;

        line-height: 1.7;
    }


    .v2-content p {
        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 18px;
    }


    .v2-side-box {
        padding: 22px;
    }


    .v2-side-header h3 {
        font-size: 18px;
    }


    .v2-capabilities {
        grid-template-columns: 1fr;
    }


    .v2-capability {
        min-height: 48px;
    }


    .v2-bottom-highlight {
        flex-direction: column;

        gap: 12px;
    }


    .v2-highlight-line {
        width: 100%;

        flex: none;
    }


    .v2-bottom-highlight h3 {
        white-space: normal;

        font-size: 16px;

        line-height: 1.7;
    }

}


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

@media (max-width: 480px) {

    .v2-main-title {
        font-size: 25px;
    }


    .v2-side-header {
        gap: 12px;
    }


    .v2-side-number {
        min-width: 42px;
        height: 42px;
    }

}






/* =========================================
   V3 SERVICES
========================================= */

.v3-services-section {
    padding: 90px 0;
    background: #f7fafc;
}


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

.v3-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}


.v3-subtitle {
    display: inline-block;
    margin-bottom: 12px;

    color: #0b76a8;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


.v3-heading h2 {
    margin: 0 0 18px;

    color: #18384b;

    font-size: 40px;
    line-height: 1.25;

    font-weight: 700;
}


.v3-heading h2 span {
    color: #0b76a8;
}


.v3-heading p {
    max-width: 700px;
    margin: auto;

    color: #687780;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.v3-service-wrapper {
    background: #ffffff;

    border: 1px solid #e2e9ed;

    border-radius: 14px;

    overflow: visible;

    box-shadow: 0 18px 50px rgba(20, 60, 80, 0.07);
}


/* =========================================
   LEFT MENU
========================================= */

.v3-service-menu {
    padding: 20px;

    background: #f3f7f9;

    border-radius: 14px 0 0 14px;
}


.v3-service-btn {
    position: relative;

    width: 100%;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 17px 15px;

    margin-bottom: 7px;

    border: 0;

    border-radius: 8px;

    background: transparent;

    text-align: left;

    color: #43545e;

    transition: all 0.3s ease;
}


.v3-service-btn:last-child {
    margin-bottom: 0;
}


.v3-service-btn:hover {
    background: #ffffff;

    color: #0b76a8;
}


/* Active */

.v3-service-btn.active {
    background: #ffffff;

    color: #0b76a8;

    box-shadow: 0 5px 20px rgba(20, 60, 80, 0.08);
}


/* Number */

.v3-service-number {
    min-width: 34px;

    color: #9aa7ad;

    font-size: 11px;

    font-weight: 700;
}


.v3-service-btn.active .v3-service-number {
    color: #0b76a8;
}


/* Name */

.v3-service-name {
    flex: 1;

    font-size: 14px;

    font-weight: 600;
}


.v3-service-name small {
    display: block;

    margin-top: 3px;

    color: #9ba6ab;

    font-size: 9px;

    letter-spacing: 1px;
}


/* Arrow */

.v3-service-btn > i {
    font-size: 11px;

    color: #a7b0b5;

    transition: all 0.3s ease;
}


.v3-service-btn:hover > i,
.v3-service-btn.active > i {
    color: #0b76a8;

    transform: translateX(4px);
}


/* =========================================
   RIGHT CONTENT
========================================= */

.v3-service-content {
    height: 100%;

    padding: 45px 50px;
}


.v3-service-content .tab-pane {
    animation: v3FadeIn 0.35s ease;
}


@keyframes v3FadeIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Label */

.v3-content-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #0b76a8;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Title */

.v3-service-content h3 {
    margin: 0 0 22px;

    color: #173b50;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 700;
}


/* Paragraph */

.v3-service-content p {
    max-width: 850px;

    margin-bottom: 18px;

    color: #596970;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================
   STP HIGHLIGHTS
========================================= */

.v3-highlight-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;
}


.v3-highlight-grid > div {
    padding: 18px;

    background: #f5f9fb;

    border: 1px solid #e4edf1;

    border-radius: 8px;
}


.v3-highlight-grid strong {
    display: block;

    margin-bottom: 5px;

    color: #0b76a8;

    font-size: 18px;
}


.v3-highlight-grid span {
    display: block;

    color: #69777e;

    font-size: 11px;

    line-height: 1.5;
}


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

@media (max-width: 991.98px) {

    .v3-services-section {
        padding: 70px 0;
    }


    .v3-heading h2 {
        font-size: 34px;
    }


    .v3-service-menu {
        border-radius: 14px 14px 0 0;
    }


    .v3-service-content {
        padding: 35px;
    }

}


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

@media (max-width: 767.98px) {

    .v3-services-section {
        padding: 55px 0;
    }


    .v3-heading {
        margin-bottom: 35px;
    }


    .v3-heading h2 {
        font-size: 28px;
    }


    .v3-heading p {
        font-size: 13px;
    }


    .v3-service-wrapper {
        border-radius: 10px;
    }


    .v3-service-menu {
        padding: 12px;

        border-radius: 10px 10px 0 0;
    }


    .v3-service-btn {
        padding: 14px 12px;
    }


    .v3-service-name {
        font-size: 13px;
    }


    .v3-service-content {
        padding: 30px 22px;
    }


    .v3-service-content h3 {
        font-size: 24px;
    }


    .v3-service-content p {
        font-size: 13px;
        line-height: 1.8;
    }


    .v3-highlight-grid {
        grid-template-columns: 1fr;
    }

}




/* =========================================
   V4 DESIGN & ENGINEERING SECTION
========================================= */

.v4-engineering-section {
    position: relative;

    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.v4-header {
    text-align: center;

    margin-bottom: 50px;
}


.v4-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #0b76a8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.8px;
}


.v4-title {
    margin: 0;

    color: #173b50;

    font-size: 42px;

    line-height: 1.25;

    font-weight: 700;
}


.v4-title span {
    color: #0b76a8;
}


.v4-title-line {
    width: 65px;

    height: 3px;

    margin: 22px auto 0;

    background: #0b76a8;

    border-radius: 10px;
}


/* =========================================
   MAIN CONTENT
========================================= */

.v4-content-box {
    position: relative;

    padding: 35px 40px;

    margin-bottom: 35px;

    background: #f7fafc;

    border-left: 4px solid #0b76a8;

    border-radius: 0 12px 12px 0;
}


.v4-content-box p {
    margin: 0 0 20px;

    color: #56666f;

    font-size: 14px;

    line-height: 1.9;
}


.v4-content-box p:last-child {
    margin-bottom: 0;
}


.v4-content-box strong {
    color: #244c62;

    font-weight: 600;
}


/* =========================================
   CAPABILITY BOX
========================================= */

.v4-capability-box {
    padding: 35px;

    margin-top: 35px;

    background: #ffffff;

    border: 1px solid #e1e9ed;

    border-radius: 14px;

    box-shadow: 0 15px 45px rgba(20, 60, 80, 0.07);
}


/* =========================================
   CAPABILITY HEADER
========================================= */

.v4-capability-heading {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    margin-bottom: 20px;

    border-bottom: 1px solid #e7edef;
}


.v4-capability-number {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 48px;

    height: 48px;

    background: #0b76a8;

    color: #ffffff;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;
}


.v4-capability-label {
    display: block;

    margin-bottom: 5px;

    color: #8b989f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.v4-capability-heading h3 {
    margin: 0;

    color: #173b50;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   CAPABILITY GRID
========================================= */

.v4-capability-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 45px;

    row-gap: 0;
}


.v4-capability-item {
    display: flex;

    align-items: center;

    min-height: 55px;

    gap: 14px;

    padding: 10px 0;

    border-bottom: 1px solid #edf1f3;

    color: #4f6068;

    font-size: 13px;

    line-height: 1.5;
}


.v4-capability-item span {
    min-width: 27px;

    color: #0b76a8;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.v4-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 45px;

    text-align: center;
}


.v4-bottom-line {
    flex: 1;

    height: 1px;

    background: #dce5e9;
}


.v4-bottom h3 {
    margin: 0;

    white-space: nowrap;

    color: #173b50;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;
}


.v4-bottom h3 span {
    color: #0b76a8;
}


.v4-bottom h3 b {
    margin: 0 8px;

    color: #a7b5bb;

    font-weight: 400;
}


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

@media (max-width: 991.98px) {

    .v4-engineering-section {
        padding: 70px 0;
    }


    .v4-title {
        font-size: 36px;
    }


    .v4-content-box {
        padding: 30px;
    }


    .v4-capability-box {
        padding: 28px;
    }


    .v4-capability-grid {
        column-gap: 25px;
    }

}


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

@media (max-width: 767.98px) {

    .v4-engineering-section {
        padding: 55px 0;
    }


    .v4-header {
        margin-bottom: 35px;
    }


    .v4-label {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .v4-title {
        font-size: 28px;

        line-height: 1.3;
    }


    .v4-content-box {
        padding: 25px 20px;

        margin-bottom: 25px;
    }


    .v4-content-box p {
        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 17px;
    }


    .v4-capability-box {
        padding: 22px 20px;

        margin-top: 25px;
    }


    .v4-capability-heading {
        gap: 12px;

        align-items: flex-start;

        padding-bottom: 20px;
    }


    .v4-capability-number {
        min-width: 42px;

        height: 42px;
    }


    .v4-capability-heading h3 {
        font-size: 19px;
    }


    .v4-capability-grid {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .v4-capability-item {
        min-height: 50px;

        font-size: 12px;
    }


    .v4-bottom {
        flex-direction: column;

        gap: 12px;

        margin-top: 35px;
    }


    .v4-bottom-line {
        width: 100%;

        flex: none;
    }


    .v4-bottom h3 {
        white-space: normal;

        font-size: 16px;

        line-height: 1.8;
    }

}


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

@media (max-width: 480px) {

    .v4-title {
        font-size: 25px;
    }


    .v4-capability-heading h3 {
        font-size: 17px;
    }

}




/* =========================================
   V5 O&M SECTION
========================================= */

.v5-om-section {
    position: relative;

    

    background: #f7fafc;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.v5-header {
    text-align: center;

    margin-bottom: 50px;
}


.v5-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #0b76a8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.8px;
}


.v5-title {
    margin: 0;

    color: #173b50;

    font-size: 42px;

    line-height: 1.25;

    font-weight: 700;
}


.v5-title span {
    color: #0b76a8;
}


.v5-title-line {
    width: 65px;

    height: 3px;

    margin: 22px auto 18px;

    background: #0b76a8;

    border-radius: 10px;
}


.v5-intro {
    margin: 0;

    color: #6d7b82;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================
   MAIN CONTENT
========================================= */

.v5-content-box {
    position: relative;

    padding: 38px 42px;

    background: #ffffff;

    border: 1px solid #e2eaee;

    border-radius: 12px;

    box-shadow: 0 12px 40px rgba(20, 60, 80, 0.05);
}


.v5-content-box::before {
    content: "";

    position: absolute;

    top: 30px;
    bottom: 30px;
    left: 0;

    width: 4px;

    background: #0b76a8;

    border-radius: 0 5px 5px 0;
}


.v5-content-box p {
    margin: 0 0 20px;

    color: #56666f;

    font-size: 14px;

    line-height: 1.9;
}


.v5-content-box p:last-child {
    margin-bottom: 0;
}


.v5-content-box strong {
    color: #244c62;

    font-weight: 600;
}


/* =========================================
   CAPABILITY BOX
========================================= */

.v5-capability-box {
    margin-top: 35px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e1e9ed;

    border-radius: 14px;

    box-shadow: 0 15px 45px rgba(20, 60, 80, 0.07);
}


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

.v5-capability-heading {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    margin-bottom: 10px;

    border-bottom: 1px solid #e7edef;
}


.v5-capability-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 52px;

    width: 52px;

    height: 52px;

    color: #ffffff;

    background: #0b76a8;

    border-radius: 10px;

    font-size: 21px;
}


.v5-capability-label {
    display: block;

    margin-bottom: 5px;

    color: #8b989f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.v5-capability-heading h3 {
    margin: 0;

    color: #173b50;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   CAPABILITY GRID
========================================= */

.v5-capability-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 35px;

    row-gap: 0;
}


.v5-capability-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 58px;

    padding: 10px 0;

    border-bottom: 1px solid #edf1f3;
}


.v5-capability-item span {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 28px;

    height: 28px;

    color: #0b76a8;

    background: #eef7fb;

    border-radius: 50%;

    font-size: 9px;

    font-weight: 700;
}


.v5-capability-item p {
    margin: 0;

    color: #53636b;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.v5-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 45px;

    text-align: center;
}


.v5-bottom-line {
    flex: 1;

    height: 1px;

    background: #d5e0e5;
}


.v5-bottom h3 {
    margin: 0;

    white-space: nowrap;

    color: #173b50;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;
}


.v5-bottom h3 span {
    color: #0b76a8;
}


.v5-bottom h3 b {
    margin: 0 8px;

    color: #a7b5bb;

    font-weight: 400;
}


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

@media (max-width: 1199.98px) {

    .v5-capability-grid {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 30px;
    }

}


@media (max-width: 991.98px) {

    .v5-om-section {
        padding: 70px 0;
    }


    .v5-title {
        font-size: 36px;
    }


    .v5-content-box {
        padding: 30px;
    }


    .v5-capability-box {
        padding: 28px;
    }

}


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

@media (max-width: 767.98px) {

    .v5-om-section {
        padding: 55px 0;
    }


    .v5-header {
        margin-bottom: 35px;
    }


    .v5-label {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .v5-title {
        font-size: 28px;

        line-height: 1.3;
    }


    .v5-intro {
        font-size: 11px;

        line-height: 1.8;
    }


    .v5-content-box {
        padding: 27px 21px;

        border-radius: 10px;
    }


    .v5-content-box::before {
        top: 25px;
        bottom: 25px;

        width: 3px;
    }


    .v5-content-box p {
        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 17px;
    }


    .v5-capability-box {
        padding: 22px 20px;

        margin-top: 25px;

        border-radius: 10px;
    }


    .v5-capability-heading {
        gap: 12px;

        align-items: flex-start;

        padding-bottom: 20px;
    }


    .v5-capability-icon {
        min-width: 44px;

        width: 44px;

        height: 44px;

        font-size: 18px;
    }


    .v5-capability-heading h3 {
        font-size: 19px;
    }


    .v5-capability-grid {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .v5-capability-item {
        min-height: 52px;
    }


    .v5-capability-item p {
        font-size: 12px;
    }


    .v5-bottom {
        flex-direction: column;

        gap: 12px;

        margin-top: 35px;
    }


    .v5-bottom-line {
        width: 100%;

        flex: none;
    }


    .v5-bottom h3 {
        white-space: normal;

        font-size: 15px;

        line-height: 1.8;
    }

}


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

@media (max-width: 480px) {

    .v5-title {
        font-size: 25px;
    }


    .v5-capability-heading h3 {
        font-size: 17px;
    }


    .v5-capability-item p {
        font-size: 11.5px;
    }

}





/* =========================================
   V6 AMC SECTION
========================================= */

.v6-amc-section {
    position: relative;

   
    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.v6-header {
    text-align: center;

    margin-bottom: 50px;
}


.v6-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #0b76a8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.8px;
}


.v6-title {
    margin: 0;

    color: #173b50;

    font-size: 42px;

    line-height: 1.25;

    font-weight: 700;
}


.v6-title span {
    color: #0b76a8;
}


.v6-title-line {
    width: 65px;

    height: 3px;

    margin: 22px auto 18px;

    background: #0b76a8;

    border-radius: 10px;
}


.v6-intro {
    margin: 0;

    color: #6d7b82;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================
   MAIN CONTENT
========================================= */

.v6-content-box {
    position: relative;

    padding: 38px 42px;

    background: #f7fafc;

    border-left: 4px solid #0b76a8;

    border-radius: 0 12px 12px 0;
}


.v6-content-box p {
    margin: 0 0 20px;

    color: #56666f;

    font-size: 14px;

    line-height: 1.9;
}


.v6-content-box p:last-child {
    margin-bottom: 0;
}


.v6-content-box strong {
    color: #244c62;

    font-weight: 600;
}


/* =========================================
   AMC CAPABILITY BOX
========================================= */

.v6-capability-box {
    margin-top: 35px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e1e9ed;

    border-radius: 14px;

    box-shadow: 0 15px 45px rgba(20, 60, 80, 0.07);
}


/* =========================================
   CAPABILITY HEADER
========================================= */

.v6-capability-heading {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    margin-bottom: 10px;

    border-bottom: 1px solid #e7edef;
}


.v6-capability-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 52px;

    width: 52px;

    height: 52px;

    color: #ffffff;

    background: #0b76a8;

    border-radius: 10px;

    font-size: 20px;
}


.v6-capability-label {
    display: block;

    margin-bottom: 5px;

    color: #8b989f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.v6-capability-heading h3 {
    margin: 0;

    color: #173b50;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   CAPABILITY GRID
========================================= */

.v6-capability-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 35px;

    row-gap: 0;
}


.v6-capability-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 58px;

    padding: 10px 0;

    border-bottom: 1px solid #edf1f3;
}


.v6-capability-item span {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 28px;

    height: 28px;

    color: #0b76a8;

    background: #eef7fb;

    border-radius: 50%;

    font-size: 9px;

    font-weight: 700;
}


.v6-capability-item p {
    margin: 0;

    color: #53636b;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.v6-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 45px;

    text-align: center;
}


.v6-bottom-line {
    flex: 1;

    height: 1px;

    background: #d5e0e5;
}


.v6-bottom h3 {
    margin: 0;

    white-space: nowrap;

    color: #173b50;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;
}


.v6-bottom h3 span {
    color: #0b76a8;
}


.v6-bottom h3 b {
    margin: 0 8px;

    color: #a7b5bb;

    font-weight: 400;
}


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

@media (max-width: 1199.98px) {

    .v6-capability-grid {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 30px;
    }

}


@media (max-width: 991.98px) {

    .v6-amc-section {
        padding: 70px 0;
    }


    .v6-title {
        font-size: 36px;
    }


    .v6-content-box {
        padding: 30px;
    }


    .v6-capability-box {
        padding: 28px;
    }

}


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

@media (max-width: 767.98px) {

    .v6-amc-section {
        padding: 55px 0;
    }


    .v6-header {
        margin-bottom: 35px;
    }


    .v6-label {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .v6-title {
        font-size: 28px;

        line-height: 1.3;
    }


    .v6-intro {
        font-size: 11px;

        line-height: 1.8;
    }


    .v6-content-box {
        padding: 27px 21px;

        border-left-width: 3px;

        border-radius: 0 10px 10px 0;
    }


    .v6-content-box p {
        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 17px;
    }


    .v6-capability-box {
        padding: 22px 20px;

        margin-top: 25px;

        border-radius: 10px;
    }


    .v6-capability-heading {
        gap: 12px;

        align-items: flex-start;

        padding-bottom: 20px;
    }


    .v6-capability-icon {
        min-width: 44px;

        width: 44px;

        height: 44px;

        font-size: 17px;
    }


    .v6-capability-heading h3 {
        font-size: 19px;
    }


    .v6-capability-grid {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .v6-capability-item {
        min-height: 52px;
    }


    .v6-capability-item p {
        font-size: 12px;
    }


    .v6-bottom {
        flex-direction: column;

        gap: 12px;

        margin-top: 35px;
    }


    .v6-bottom-line {
        width: 100%;

        flex: none;
    }


    .v6-bottom h3 {
        white-space: normal;

        font-size: 15px;

        line-height: 1.8;
    }

}


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

@media (max-width: 480px) {

    .v6-title {
        font-size: 25px;
    }


    .v6-capability-heading h3 {
        font-size: 17px;
    }


    .v6-capability-item p {
        font-size: 11.5px;
    }

}



/* =========================================
   V7 TECHNICAL CONSULTANCY
========================================= */

.v7-consultancy-section {
    position: relative;

   

    background: #f7fafc;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.v7-header {
    text-align: center;

    margin-bottom: 50px;
}


.v7-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #0b76a8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.8px;
}


.v7-title {
    margin: 0;

    color: #173b50;

    font-size: 42px;

    line-height: 1.25;

    font-weight: 700;
}


.v7-title span {
    color: #0b76a8;
}


.v7-title-line {
    width: 65px;

    height: 3px;

    margin: 22px auto 18px;

    background: #0b76a8;

    border-radius: 10px;
}


.v7-intro {
    margin: 0;

    color: #6d7b82;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================
   MAIN CONTENT
========================================= */

.v7-content-box {
    position: relative;

    padding: 38px 42px;

    background: #ffffff;

    border: 1px solid #e2eaee;

    border-radius: 12px;

    box-shadow: 0 12px 40px rgba(20, 60, 80, 0.05);
}


.v7-content-box::before {
    content: "";

    position: absolute;

    top: 30px;
    bottom: 30px;
    left: 0;

    width: 4px;

    background: #0b76a8;

    border-radius: 0 5px 5px 0;
}


.v7-content-box p {
    margin: 0 0 20px;

    color: #56666f;

    font-size: 14px;

    line-height: 1.9;
}


.v7-content-box p:last-child {
    margin-bottom: 0;
}


.v7-content-box strong {
    color: #244c62;

    font-weight: 600;
}


/* =========================================
   CAPABILITY BOX
========================================= */

.v7-capability-box {
    margin-top: 35px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e1e9ed;

    border-radius: 14px;

    box-shadow: 0 15px 45px rgba(20, 60, 80, 0.07);
}


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

.v7-capability-heading {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    margin-bottom: 10px;

    border-bottom: 1px solid #e7edef;
}


.v7-capability-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 52px;

    width: 52px;

    height: 52px;

    color: #ffffff;

    background: #0b76a8;

    border-radius: 10px;

    font-size: 20px;
}


.v7-capability-label {
    display: block;

    margin-bottom: 5px;

    color: #8b989f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.v7-capability-heading h3 {
    margin: 0;

    color: #173b50;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   CAPABILITY GRID
========================================= */

.v7-capability-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 35px;

    row-gap: 0;
}


.v7-capability-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 58px;

    padding: 10px 0;

    border-bottom: 1px solid #edf1f3;
}


.v7-capability-item span {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 28px;

    height: 28px;

    color: #0b76a8;

    background: #eef7fb;

    border-radius: 50%;

    font-size: 9px;

    font-weight: 700;
}


.v7-capability-item p {
    margin: 0;

    color: #53636b;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.v7-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 45px;

    text-align: center;
}


.v7-bottom-line {
    flex: 1;

    height: 1px;

    background: #d5e0e5;
}


.v7-bottom h3 {
    margin: 0;

    white-space: nowrap;

    color: #173b50;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;
}


.v7-bottom h3 span {
    color: #0b76a8;
}


.v7-bottom h3 b {
    margin: 0 8px;

    color: #a7b5bb;

    font-weight: 400;
}


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

@media (max-width: 1199.98px) {

    .v7-capability-grid {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 30px;
    }

}


@media (max-width: 991.98px) {

    .v7-consultancy-section {
        padding: 70px 0;
    }


    .v7-title {
        font-size: 36px;
    }


    .v7-content-box {
        padding: 30px;
    }


    .v7-capability-box {
        padding: 28px;
    }

}


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

@media (max-width: 767.98px) {

    .v7-consultancy-section {
        padding: 55px 0;
    }


    .v7-header {
        margin-bottom: 35px;
    }


    .v7-label {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .v7-title {
        font-size: 28px;

        line-height: 1.3;
    }


    .v7-intro {
        font-size: 11px;

        line-height: 1.8;
    }


    .v7-content-box {
        padding: 27px 21px;

        border-radius: 10px;
    }


    .v7-content-box::before {
        top: 25px;
        bottom: 25px;

        width: 3px;
    }


    .v7-content-box p {
        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 17px;
    }


    .v7-capability-box {
        padding: 22px 20px;

        margin-top: 25px;

        border-radius: 10px;
    }


    .v7-capability-heading {
        gap: 12px;

        align-items: flex-start;

        padding-bottom: 20px;
    }


    .v7-capability-icon {
        min-width: 44px;

        width: 44px;

        height: 44px;

        font-size: 17px;
    }


    .v7-capability-heading h3 {
        font-size: 19px;
    }


    .v7-capability-grid {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .v7-capability-item {
        min-height: 52px;
    }


    .v7-capability-item p {
        font-size: 12px;
    }


    .v7-bottom {
        flex-direction: column;

        gap: 12px;

        margin-top: 35px;
    }


    .v7-bottom-line {
        width: 100%;

        flex: none;
    }


    .v7-bottom h3 {
        white-space: normal;

        font-size: 15px;

        line-height: 1.8;
    }

}


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

@media (max-width: 480px) {

    .v7-title {
        font-size: 25px;
    }


    .v7-capability-heading h3 {
        font-size: 17px;
    }


    .v7-capability-item p {
        font-size: 11.5px;
    }

}




/* =========================================
   V8 CHEMICAL SECTION
========================================= */

.v8-chemical-section {
    position: relative;

  

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.v8-header {
    text-align: center;

    margin-bottom: 50px;
}


.v8-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #0b76a8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.8px;
}


.v8-title {
    margin: 0;

    color: #173b50;

    font-size: 42px;

    line-height: 1.25;

    font-weight: 700;
}


.v8-title span {
    color: #0b76a8;
}


.v8-title-line {
    width: 65px;

    height: 3px;

    margin: 22px auto 18px;

    background: #0b76a8;

    border-radius: 10px;
}


.v8-intro {
    margin: 0;

    color: #6d7b82;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;
}


/* =========================================
   MAIN CONTENT
========================================= */

.v8-content-box {
    position: relative;

    padding: 38px 42px;

    background: #f7fafc;

    border-left: 4px solid #0b76a8;

    border-radius: 0 12px 12px 0;
}


.v8-content-box p {
    margin: 0 0 20px;

    color: #56666f;

    font-size: 14px;

    line-height: 1.9;
}


.v8-content-box p:last-child {
    margin-bottom: 0;
}


.v8-content-box strong {
    color: #244c62;

    font-weight: 600;
}


/* =========================================
   CHEMICAL RANGE BOX
========================================= */

.v8-chemical-box {
    margin-top: 35px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e1e9ed;

    border-radius: 14px;

    box-shadow: 0 15px 45px rgba(20, 60, 80, 0.07);
}


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

.v8-chemical-heading {
    display: flex;

    align-items: center;

    gap: 18px;

    padding-bottom: 25px;

    margin-bottom: 10px;

    border-bottom: 1px solid #e7edef;
}


.v8-chemical-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 52px;

    width: 52px;

    height: 52px;

    color: #ffffff;

    background: #0b76a8;

    border-radius: 10px;

    font-size: 20px;
}


.v8-chemical-label {
    display: block;

    margin-bottom: 5px;

    color: #8b989f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.v8-chemical-heading h3 {
    margin: 0;

    color: #173b50;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;

    text-transform: capitalize;
}


/* =========================================
   CHEMICAL GRID
========================================= */

.v8-chemical-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    column-gap: 35px;

    row-gap: 0;
}


.v8-chemical-item {
    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 62px;

    padding: 10px 0;

    border-bottom: 1px solid #edf1f3;
}


.v8-chemical-item span {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 29px;

    height: 29px;

    color: #0b76a8;

    background: #eef7fb;

    border-radius: 50%;

    font-size: 9px;

    font-weight: 700;
}


.v8-chemical-item p {
    margin: 0;

    color: #53636b;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   BOTTOM CONTENT
========================================= */

.v8-bottom-content {
    margin-top: 35px;

    padding: 30px 35px;

    background: #f7fafc;

    border: 1px solid #e3ebef;

    border-radius: 12px;
}


.v8-bottom-content > p {
    margin: 0 0 25px;

    color: #56666f;

    font-size: 14px;

    line-height: 1.9;

    text-align: center;
}


/* =========================================
   CHEMICAL SOLUTIONS FOR
========================================= */

.v8-chemical-for {
    padding-top: 22px;

    border-top: 1px solid #dfe8ec;

    text-align: center;
}


.v8-for-label {
    display: block;

    margin-bottom: 10px;

    color: #8b989f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.v8-chemical-for h4 {
    margin: 0;

    color: #173b50;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 700;
}


.v8-chemical-for h4 b {
    margin: 0 6px;

    color: #a7b5bb;

    font-weight: 400;
}


/* =========================================
   FINAL STATEMENT
========================================= */

.v8-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 45px;

    text-align: center;
}


.v8-bottom-line {
    flex: 1;

    height: 1px;

    background: #d5e0e5;
}


.v8-bottom h3 {
    margin: 0;

    white-space: nowrap;

    color: #173b50;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;
}


.v8-bottom h3 span {
    color: #0b76a8;
}


.v8-bottom h3 b {
    margin: 0 8px;

    color: #a7b5bb;

    font-weight: 400;
}


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

@media (max-width: 1199.98px) {

    .v8-chemical-grid {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 30px;
    }

}


@media (max-width: 991.98px) {

    .v8-chemical-section {
        padding: 70px 0;
    }


    .v8-title {
        font-size: 36px;
    }


    .v8-content-box {
        padding: 30px;
    }


    .v8-chemical-box {
        padding: 28px;
    }


    .v8-bottom-content {
        padding: 28px;
    }

}


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

@media (max-width: 767.98px) {

    .v8-chemical-section {
        padding: 55px 0;
    }


    .v8-header {
        margin-bottom: 35px;
    }


    .v8-label {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .v8-title {
        font-size: 28px;

        line-height: 1.3;
    }


    .v8-intro {
        font-size: 11px;

        line-height: 1.8;
    }


    .v8-content-box {
        padding: 27px 21px;

        border-left-width: 3px;

        border-radius: 0 10px 10px 0;
    }


    .v8-content-box p {
        font-size: 13px;

        line-height: 1.8;

        margin-bottom: 17px;
    }


    .v8-chemical-box {
        padding: 22px 20px;

        margin-top: 25px;

        border-radius: 10px;
    }


    .v8-chemical-heading {
        gap: 12px;

        align-items: flex-start;

        padding-bottom: 20px;
    }


    .v8-chemical-icon {
        min-width: 44px;

        width: 44px;

        height: 44px;

        font-size: 17px;
    }


    .v8-chemical-heading h3 {
        font-size: 18px;

        line-height: 1.4;
    }


    .v8-chemical-grid {
        grid-template-columns: 1fr;

        column-gap: 0;
    }


    .v8-chemical-item {
        min-height: 52px;
    }


    .v8-chemical-item p {
        font-size: 12px;
    }


    .v8-bottom-content {
        padding: 22px 20px;

        margin-top: 25px;

        border-radius: 10px;
    }


    .v8-bottom-content > p {
        font-size: 13px;

        line-height: 1.8;
    }


    .v8-chemical-for h4 {
        font-size: 13px;

        line-height: 2;
    }


    .v8-chemical-for h4 b {
        margin: 0 3px;
    }


    .v8-bottom {
        flex-direction: column;

        gap: 12px;

        margin-top: 35px;
    }


    .v8-bottom-line {
        width: 100%;

        flex: none;
    }


    .v8-bottom h3 {
        white-space: normal;

        font-size: 15px;

        line-height: 1.8;
    }

}


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

@media (max-width: 480px) {

    .v8-title {
        font-size: 25px;
    }


    .v8-chemical-heading h3 {
        font-size: 17px;
    }


    .v8-chemical-item p {
        font-size: 11.5px;
    }

}





/* =========================================
   P1 - ABOUT WATER RESOURCE TECHNOLOGIES
========================================= */

.p1-about-section {
    padding: 100px 0;
    background: #f7fafc;
    position: relative;
    overflow: hidden;
}

.p1-about-content {
    padding-right: 30px;
}


/* SECTION TAG */

.p1-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0077b6;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.p1-section-tag::before {
    content: "";
    width: 35px;
    height: 3px;
    background: #00a6a6;
    display: inline-block;
}


/* HEADING */

.p1-about-content h2 {
    font-size: 44px;
    line-height: 1.18;
    font-weight: 700;
    color: #123047;
    margin-bottom: 25px;
}

.p1-about-content h2 span {
    color: #008ca8;
}


/* PARAGRAPHS */

.p1-about-content p {
    color: #667681;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.p1-about-content p strong {
    color: #263f50;
}


/* =========================================
   EXPERTISE BOXES
========================================= */

.p1-expertise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.p1-expertise-item {
    background: #ffffff;
    border: 1px solid #e3edf1;
    border-radius: 10px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.p1-expertise-item i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #e7f7f8;
    color: #008ca8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.p1-expertise-item span {
    font-size: 14px;
    font-weight: 700;
    color: #344e5c;
}

.p1-expertise-item:hover {
    transform: translateY(-3px);
    border-color: #00a6a6;
    box-shadow: 0 8px 25px rgba(0, 120, 150, 0.08);
}


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

.p1-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 25px;
    border-radius: 5px;
    background: #008ca8;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.p1-about-btn i {
    transition: transform 0.3s ease;
}

.p1-about-btn:hover {
    background: #123047;
    color: #ffffff;
}

.p1-about-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   IMAGE AREA
========================================= */

.p1-about-image-wrap {
    position: relative;
    padding: 20px;
}

.p1-image-bg-shape {
    position: absolute;
    width: 75%;
    height: 85%;
    right: 0;
    bottom: 0;
    background: #dff4f5;
    border-radius: 25px;
    z-index: 0;
}

.p1-about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(23, 61, 75, 0.16);
}


/* =========================================
   FLOATING CARD
========================================= */

.p1-floating-card {
    position: absolute;
    left: 0;
    bottom: 45px;
    z-index: 2;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    min-width: 235px;
}

.p1-floating-icon {
    width: 45px;
    height: 45px;
    background: #008ca8;
    color: #ffffff;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.p1-floating-card strong {
    display: block;
    color: #123047;
    font-size: 16px;
}

.p1-floating-card span {
    display: block;
    color: #7a8990;
    font-size: 12px;
    margin-top: 3px;
}


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

@media (max-width: 991px) {

    .p1-about-section {
        padding: 75px 0;
    }

    .p1-about-content {
        padding-right: 0;
    }

    .p1-about-content h2 {
        font-size: 36px;
    }

    .p1-about-image-wrap {
        margin-top: 25px;
    }

    .p1-about-image {
        height: 430px;
    }
}


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

@media (max-width: 575px) {

    .p1-about-section {
        padding: 55px 0;
    }

    .p1-about-content h2 {
        font-size: 30px;
    }

    .p1-about-content p {
        font-size: 15px;
    }

    .p1-expertise {
        grid-template-columns: repeat(2, 1fr);
    }

    .p1-about-image-wrap {
        padding: 10px;
    }

    .p1-about-image {
        height: 330px;
    }

    .p1-floating-card {
        left: 0;
        bottom: 25px;
        min-width: 210px;
        padding: 12px 14px;
    }

    .p1-floating-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}






/* =========================================
   P2 - VISION / MISSION SECTION
========================================= */

.p2-values-section {
    padding: 110px 0;
    background: #f5f9fa;
    position: relative;
    overflow: hidden;
}


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

.p2-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.p2-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #008ca8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.p2-section-tag::before,
.p2-section-tag::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #00a6a6;
}

.p2-heading h2 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #123047;
    margin-bottom: 15px;
}

.p2-heading h2 span {
    color: #008ca8;
}

.p2-heading p {
    color: #71818a;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   VALUE CARDS
========================================= */

.p2-values-row {
    position: relative;
    z-index: 2;
}

.p2-value-card {
    height: 100%;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e4edef;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.p2-value-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: #eaf7f8;
    transition: all 0.4s ease;
}

.p2-value-card:hover {
    transform: translateY(-7px);
    border-color: #b8dfe3;
    box-shadow: 0 20px 50px rgba(19, 65, 78, 0.10);
}

.p2-value-card:hover::before {
    transform: scale(1.4);
}


/* =========================================
   CARD TOP
========================================= */

.p2-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.p2-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #e7f7f8;
    color: #008ca8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.p2-value-card:hover .p2-icon {
    background: #008ca8;
    color: #ffffff;
    transform: rotate(-5deg);
}

.p2-number {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #e7eef0;
}


/* =========================================
   CARD CONTENT
========================================= */

.p2-card-label {
    color: #008ca8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.p2-value-card h3 {
    font-size: 27px;
    line-height: 1.3;
    color: #123047;
    font-weight: 700;
    margin-bottom: 17px;
    position: relative;
    z-index: 1;
}

.p2-value-card h3 span {
    color: #008ca8;
}

.p2-value-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #6c7d85;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p2-card-line {
    width: 45px;
    height: 3px;
    background: #00a6a6;
    margin: 23px 0 17px;
}


/* =========================================
   MINI TEXT
========================================= */

.p2-mini-text {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #425a65;
}

.p2-mini-text i {
    color: #008ca8;
}


/* =========================================
   COMMITMENT POINTS
========================================= */

.p2-commitment-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 23px;
}

.p2-commitment-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    background: #f5fafb;
    border-radius: 8px;
}

.p2-commitment-points i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #008ca8;
    color: #ffffff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p2-commitment-points span {
    font-size: 13px;
    font-weight: 700;
    color: #405660;
}


/* =========================================
   ENVIRONMENT SECTION
========================================= */

.p2-environment-card {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f6fbf8 100%
    );
}

.p2-environment-card::before {
    background: #e5f5e9;
}

.p2-environment-bottom {
    margin-top: 22px;
    padding: 15px;
    background: #eff9f2;
    border: 1px solid #dceee0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.p2-leaf-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #238b52;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p2-environment-bottom strong {
    display: block;
    font-size: 14px;
    color: #234c35;
    margin-bottom: 3px;
}

.p2-environment-bottom span {
    display: block;
    font-size: 12px;
    color: #6a8171;
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.p2-bottom-statement {
    margin: 45px auto 0;
    max-width: 620px;
    padding: 18px 25px;
    background: #123047;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.p2-statement-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #008ca8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.p2-bottom-statement span {
    display: block;
    color: #73cbd2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.p2-bottom-statement h4 {
    margin: 2px 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}


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

@media (max-width: 991px) {

    .p2-values-section {
        padding: 80px 0;
    }

    .p2-heading {
        margin-bottom: 45px;
    }

    .p2-heading h2 {
        font-size: 38px;
    }

    .p2-value-card {
        padding: 32px;
    }
}


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

@media (max-width: 575px) {

    .p2-values-section {
        padding: 60px 0;
    }

    .p2-heading {
        margin-bottom: 35px;
    }

    .p2-heading h2 {
        font-size: 30px;
    }

    .p2-heading p {
        font-size: 14px;
    }

    .p2-value-card {
        padding: 25px;
        border-radius: 14px;
    }

    .p2-card-top {
        margin-bottom: 22px;
    }

    .p2-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .p2-number {
        font-size: 32px;
    }

    .p2-value-card h3 {
        font-size: 23px;
    }

    .p2-value-card p {
        font-size: 14px;
    }

    .p2-commitment-points {
        grid-template-columns: 1fr;
    }

    .p2-bottom-statement {
        margin-top: 30px;
        padding: 15px;
    }

    .p2-bottom-statement h4 {
        font-size: 17px;
    }
}




/* =========================================
   P3 - CORE VALUES SECTION
========================================= */

.p3-values-section {
    padding: 110px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


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

.p3-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.p3-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #008ca8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.p3-section-tag::before,
.p3-section-tag::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #00a6a6;
}

.p3-heading h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #123047;
    font-weight: 700;
    margin-bottom: 15px;
}

.p3-heading h2 span {
    color: #008ca8;
}

.p3-heading p {
    color: #71818a;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   CORE VALUES CARD
========================================= */

.p3-core-card {
    height: 100%;
    background: #f5fafb;
    border: 1px solid #e1edef;
    border-radius: 18px;
    padding: 35px;
}


/* CARD HEADING */

.p3-card-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    margin-bottom: 8px;
    border-bottom: 1px solid #dce9eb;
}

.p3-heading-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #008ca8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.p3-card-heading span {
    display: block;
    color: #008ca8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.p3-card-heading h3 {
    margin: 0;
    color: #123047;
    font-size: 23px;
    font-weight: 700;
}


/* =========================================
   VALUE ITEMS
========================================= */

.p3-value-item {
    display: flex;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 1px solid #dce9eb;
    transition: all 0.3s ease;
}

.p3-value-item:hover {
    padding-left: 7px;
}

.p3-last-value {
    border-bottom: 0;
    padding-bottom: 0;
}

.p3-value-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #dce9eb;
    color: #008ca8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.p3-value-item:hover .p3-value-icon {
    background: #008ca8;
    color: #ffffff;
    border-color: #008ca8;
}

.p3-value-content h4 {
    color: #123047;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}

.p3-value-content p {
    color: #708089;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   WHY WRT CARD
========================================= */

.p3-why-card {
    height: 100%;
    min-height: 100%;
    border-radius: 18px;
    background: #123047;
    position: relative;
    overflow: hidden;
}

.p3-why-decoration {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    right: -170px;
    top: -170px;
    background: rgba(0, 166, 166, 0.12);
}

.p3-why-content {
    position: relative;
    z-index: 2;
    padding: 45px;
}


/* LABEL */

.p3-small-label {
    color: #68cdd2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    display: block;
    margin-bottom: 15px;
}


/* HEADING */

.p3-why-content h3 {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    max-width: 570px;
    margin-bottom: 20px;
}

.p3-why-content h3 span {
    color: #6bd0d4;
}

.p3-why-content > p {
    color: #c4d1d5;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* =========================================
   FACTOR GRID
========================================= */

.p3-factor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}

.p3-factor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.p3-factor i {
    color: #6bd0d4;
    font-size: 15px;
}

.p3-factor span {
    color: #e5eef0;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================
   SUPPORT
========================================= */

.p3-support-line {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.p3-support-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #008ca8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p3-support-line strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 3px;
}

.p3-support-line span {
    display: block;
    color: #9eb1b7;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   PHILOSOPHY
========================================= */

.p3-philosophy {
    margin-top: 35px;
    padding: 35px 45px;
    border-radius: 18px;
    background: linear-gradient(
        100deg,
        #008ca8 0%,
        #006f91 100%
    );
    display: flex;
    align-items: center;
    gap: 22px;
    position: relative;
    overflow: hidden;
}

.p3-philosophy-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 45px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    right: -90px;
    top: -120px;
}

.p3-philosophy-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.p3-philosophy-content {
    position: relative;
    z-index: 1;
}

.p3-philosophy-content > span {
    color: #a5e8e9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.p3-philosophy-content h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    margin: 5px 0 8px;
    letter-spacing: 1px;
}

.p3-philosophy-content h3 b {
    color: #9ee2e4;
    font-weight: 400;
    margin: 0 5px;
}

.p3-philosophy-content p {
    color: #d4eef0;
    font-size: 14px;
    line-height: 1.7;
    max-width: 850px;
    margin: 0;
}

.p3-philosophy-arrow {
    margin-left: auto;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}


/* =========================================
   HOVER
========================================= */

.p3-philosophy:hover .p3-philosophy-arrow {
    transform: translateX(5px);
}


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

@media (max-width: 991px) {

    .p3-values-section {
        padding: 80px 0;
    }

    .p3-heading {
        margin-bottom: 45px;
    }

    .p3-heading h2 {
        font-size: 38px;
    }

    .p3-why-content {
        padding: 35px;
    }

    .p3-why-content h3 {
        font-size: 30px;
    }

    .p3-philosophy {
        padding: 30px;
    }
}


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

@media (max-width: 575px) {

    .p3-values-section {
        padding: 60px 0;
    }

    .p3-heading {
        margin-bottom: 35px;
    }

    .p3-heading h2 {
        font-size: 30px;
    }

    .p3-heading p {
        font-size: 14px;
    }

    .p3-core-card {
        padding: 25px;
    }

    .p3-card-heading h3 {
        font-size: 20px;
    }

    .p3-why-content {
        padding: 28px 25px;
    }

    .p3-why-content h3 {
        font-size: 26px;
    }

    .p3-factor-grid {
        grid-template-columns: 1fr;
    }

    .p3-philosophy {
        padding: 28px 22px;
        align-items: flex-start;
    }

    .p3-philosophy-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .p3-philosophy-content h3 {
        font-size: 18px;
        line-height: 1.7;
    }

    .p3-philosophy-content h3 b {
        margin: 0 2px;
    }

    .p3-philosophy-content p {
        font-size: 13px;
    }

    .p3-philosophy-arrow {
        display: none;
    }
}