/*===product-detail.css start===*/

/* ================================================================
   1. PRODUCT INTRO SECTION
   ================================================================ */
.pdIntroSec {
    background: #fff;
}

.pdIntroWrap {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.pdIntroContent {
    flex: 1;
    min-width: 0;
}

.pdIntroTitle {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    font-family: "Nata Sans", sans-serif;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 24px;
}

.pdIntroText {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}

.pdIntroText:last-child {
    margin-bottom: 0;
}

.pdIntroVisual {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    height: 100%;

    .pdIntroFigure {
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

.pdIntroFigure {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.pdIntroFigure img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
}

.pdIntroBadge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(4, 143, 234, 0.92);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Nata Sans", sans-serif;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
}

/* products */
.childProdSec {
    .childProdSlider {
        padding-bottom: 40px;
    }

    .childProdSlide {
        padding: 0px 10px;
    }

    .slick-arrow {
        position: absolute;
        top: auto;
        bottom: 0;
        left: calc(50% - 50px);
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        color: #04213F;
        font-size: 14px;
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(4, 33, 63, 0.18);
        font-size: 0;
        z-index: 3;
        transition: all 0.5s;

        &:hover {
            background: linear-gradient(135deg, #048FEA, #0470C7);
            color: #fff;

            &::after {
                color: #fff;
            }
        }

        &::after {
            content: '\f060';
            font-family: fontawesome;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #04213F;
            transition: all 0.5s;
            font-size: 18px;
        }

        &.slick-next {
            left: auto;
            right: calc(50% - 50px);

            &::after {
                content: '\f061';
            }
        }
    }

    .childProdBox {
        padding: 30px 20px;
        min-height: auto;

        .childProdBoxInn {
            display: flex;
            flex-direction: column;
            align-items: center;
            row-gap: 20px;

            .childProdImg {
                width: 100%;
                height: 280px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 12px;
                }

                &.resImg {
                    display: none;
                }
            }

            .childProdTxt {
                h3 {
                    color: var(--blue);
                }

                .childProdBtn {
                    width: 200px;
                }

                .childProdPara {
                    /* height: 175px;
                    overflow-y: auto;
                    padding-right: 10px; */

                    .childProdParaTxt {
                        position: relative;
                        min-height: 190px;
                        max-height: 190px;
                        overflow: hidden;
                        transition: max-height 0.5s ease;

                        &.is-clamped {
                            &::after {
                                content: "";
                                position: absolute;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                height: 100px;
                                background: linear-gradient(to bottom, rgba(230, 245, 255, 0), #ffffff6e);
                                pointer-events: none;
                                opacity: 1;
                                transition: all 0.4s ease;
                            }
                        }

                        &.is-open {
                            max-height: 1000px;

                            &::after {
                                height: 0;
                                opacity: 0;
                            }
                        }
                    }

                    .readMoreBtn {
                        display: none;
                        margin: 10px 0 20px;
                        padding: 0;
                        background: none;
                        border: none;
                        font-size: 16px;
                        font-weight: 700;
                        color: #048FEA;
                        cursor: pointer;

                        &.is-visible {
                            display: inline-block;
                        }
                    }
                }
            }
        }
    }
}

.childProdBtnWrap {
    max-width: 200px;
    margin: 20px auto ;
}

/* ================================================================
   2. CHEMICAL IDENTITY SECTION
   ================================================================ */
.pdChemSec {
    position: relative;
    overflow: hidden;
    background-color: #E6F5FF;
}

.logoRightPattern {
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

.pdChemSec .subH {
    color: var(--blue);
}

.pdChemSec .secH span::after {
    background-image: linear-gradient(to right, rgba(11, 59, 34, 0), rgba(61, 199, 24, 0.2));
}

.pdChemSec .secH {
    margin-bottom: 20px;
}

.pdChemDesc {
    font-size: 15px;
    line-height: 1.8;
    max-width: 80%;
    margin: 0 auto 40px;
    text-align: center;

    p {
        text-align: center;
    }
}

/* Chem Data Table */
.pdChemTable {
    width: 70%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 36px;
    background-color: var(--green);

    .pdHeading {
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid #ffffff70;

        h3 {
            color: #fff;
            font-size: 50px;
            font-weight: bold;
        }
    }

    table {
        width: 100%;
        border-spacing: 0px;

        tr {
            td {
                vertical-align: top;

                table {
                    border-right: 1px solid #ffffff70;
                }
            }
        }
    }
}

.pdChemTable thead tr {
    background: var(--green);
}

.pdChemTable thead th {
    padding: 14px 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    text-align: left;
}

.pdChemTable td tr:last-child td {
    border-bottom: none;
}

.pdChemTable tbody td {
    padding: 13px 0px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid #ffffff70;
    line-height: 1.4;
}

.pdChemTable td table {
    width: 100%;
}

.pdChemTable td table tr {
    padding-left: 20px;
}

.pdChemTable td table td {
    padding: 15px 20px;
    vertical-align: middle;
}

.pdChemTable tbody td:first-child {
    color: #fff;
    font-weight: 600;
}

.pdChemBtns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pdChemBtns .commonBtn {
    min-width: 220px;
    padding: 14px 30px;

    &.borderBtn {
        background-color: transparent;
        border: 1px solid #000;

        span {
            color: #000;
        }

        &:before {
            width: 0px;
        }

        &:hover {
            border: 1px solid transparent;

            span {
                color: #fff;
            }

            &:before {
                width: 100%;
            }
        }
    }
}

.pdBtnOutline {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    background: transparent;
    border-radius: 10px;
    padding: 14px 30px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.pdBtnOutline span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: "Manjari", sans-serif;
}

.pdBtnOutline i {
    color: var(--green);
    font-size: 16px;
}

.pdBtnOutline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--green) !important;
}

/* ================================================================
   3. KEY PROPERTIES SECTION
   ================================================================ */
.pdPropSec {
    background: #fff;
}

.pdPropGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pdPropCard {
    background: var(--light-green);
    border-radius: 16px;
    padding: 28px 22px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pdPropCard:hover {
    box-shadow: 0 8px 32px rgba(61, 199, 24, 0.15);
    transform: translateY(-4px);
}

.pdPropIcon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.pdPropIcon i {
    font-size: 22px;
    color: var(--blue);
}

.pdPropTitle {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    font-family: "Nata Sans", sans-serif;
    margin-bottom: 8px;
}

.pdPropDesc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ================================================================
   4. INDUSTRIAL APPLICATIONS SECTION
   ================================================================ */
.pdAppSec {
    background: #0a1a0d;
    position: relative;
    overflow: hidden;
}

.pdAppSec .subH {
    color: var(--green);
}

.pdAppSec .secH {
    color: #fff;
}

.pdAppSec .secH span::after {
    background-image: linear-gradient(to right, rgba(10, 26, 13, 0), rgba(61, 199, 24, 0.25));
}

.pdAppVisual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 440px;
    margin-bottom: 0;
}

.pdAppVisual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pdAppOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 36px;
}

.pdAppOverlayContent {
    color: #fff;
}

.pdAppOverlayTag {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.pdAppOverlayTitle {
    font-size: 32px;
    font-weight: 700;
    font-family: "Nata Sans", sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}

.pdAppOverlayDesc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 0 16px;
}

/* Application Tabs */
.pdAppTabs {
    display: flex;
    gap: 0;
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pdAppTabBtn {
    flex: 1;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    font-family: "Manjari", sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    text-align: center;
}

.pdAppTabBtn:last-child {
    border-right: none;
}

.pdAppTabBtn.is-active,
.pdAppTabBtn:hover {
    background: var(--green);
    color: #fff;
}

/* Tab Content Panels */
.pdAppPanels {
    position: relative;
}

.pdAppPanel {
    display: none;
}

.pdAppPanel.is-active {
    display: block;
}

/* ================================================================
   5. TECHNICAL SPECIFICATIONS SECTION
   ================================================================ */
.pdSpecSec {
    background: #fff;
}

.pdSpecTableWrap {
    overflow-x: auto;
    border-radius: 14px;
}

.pdSpecTable {
    width: 100%;
    border-collapse: collapse;
    max-width: 80%;
    margin: 0 auto;
    background-color: #E6F5FF;
    border-radius: 20px;
}

.pdSpecTable thead tr {
    background: var(--blue);
}

.pdSpecTable thead th {
    padding: 15px 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    white-space: nowrap;
    border-right: 1px solid #ffffff91;
}

.pdSpecTable thead th:first-child {
    border-radius: 14px 0 0 0;
}

.pdSpecTable thead th:last-child {
    border-radius: 0 14px 0 0;
}

.pdSpecTable tbody td {
    padding: 13px 20px;
    font-size: 18px;
    color: #444;
    line-height: 1.45;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.pdSpecTable tbody td:first-child {
    font-weight: 600;
    color: #111;
    min-width: 200px;
    border-left: none;
}

.pdSpecTable tbody tr:last-child {
    td {
        border-bottom: none;
    }
}

.pdSpecBadge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
}


/* ================================================================
   6. CERTIFICATIONS & STANDARDS SECTION
   ================================================================ */

.pdCertGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.pdCertCard {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdCertCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.pdCertIcon {
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--blue);
    margin-bottom: 10px;
}

.pdCertLabel {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    font-family: "Nata Sans", sans-serif;
    line-height: 1.2;
}

.pdCertSub {
    color: #777;
    line-height: 1.4;
    color: var(--blue);
}

/* ================================================================
   7. OTHER PRODUCTS SECTION
   ================================================================ */
.pdOtherSec {
    background: #fff;
}

.pdOtherSec .productCardInner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.pdOtherSec .productCardInner:hover .productName {
    opacity: 0;
}

.pdOtherSec .productCardInner:hover .productHover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: auto;
    bottom: 0;
}

.pdOtherSec .productCardInner:hover .productFigure img {
    transform: scale(1.05);
}

.pdOtherSec .productFigure {
    margin: 0;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
}

.pdOtherSec .productFigure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    transition: transform 0.45s ease;
}

.pdOtherSec .productName {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    text-align: center;
    padding: 16px 10px 6px;
    margin: 0;
    transition: opacity 0.3s ease;
    font-family: "Nata Sans", sans-serif;
}

.pdOtherSec .productHover {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    bottom: auto;
    background: #fff;
    border-radius: 14px;
    padding: 20px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 2;
}

.pdOtherSec .productHover .commonBtn {
    display: inline-flex;
    width: auto;
    min-width: 140px;
    padding: 11px 20px;
    margin-top: 12px;
}

.pdOtherSec .productHoverTitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    font-family: "Nata Sans", sans-serif;
    line-height: 1.2;
}

.pdOtherSec .productHoverDesc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.pdOtherSliderWrap {
    position: relative;
    padding: 0 60px;
}

.pdOtherNav {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.pdOtherNav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: 0.5s;
}

.pdOtherNav button:hover {
    background-color: var(--green);
    color: #fff;
}


.slick-arrow {
    background: #fff;
    color: #000;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pdOtherSwiper {
    overflow: hidden;
}

.pdOtherSwiper .slick-list {
    margin: 0 -12px;
    overflow: hidden;
}

.pdOtherSwiper .slick-slide {
    padding: 0 12px;
    overflow: hidden;
}


.industrySec {
    background-color: #E5F8E2;

    .secH {
        span {
            &::after {
                background-image: linear-gradient(to right, #e6f5ff00, #B7EBAA);
            }
        }
    }
}

.indPanelBoxWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;

    .indPanelItem {
        width: calc((100% / 4) - 20px);
        padding: 40px 30px;
        border-left: 4px solid var(--blue);
        border-radius: 20px;
        background-image: linear-gradient(to right, #ffffff, #ffffff00);
        height: 100%;
        display: flex;
        align-items: center;
        min-height: 165px;

        p {
            margin-bottom: 0px;
            font-size: 20px;
            font-weight: 600;
            position: relative;
            padding-left: 15px;

            &::before {
                width: 7px;
                height: 7px;
                border-radius: 50%;
                position: absolute;
                left: 0;
                top: 7px;
                background-color: var(--blue);
                content: "";
            }
        }
    }
}

/*==product section start==*/
.pdOtherSec {
    background-color: #E6F5FF;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1440px) {
    .CertiWrap {
        .echCertiWrap {
            .certiCard {
                min-height: 200px;
            }
        }
    }

    .childProdSec {
        .childProdBox {
            .childProdBoxInn {
                .childProdTxt {
                    .childProdPara {
                        /* height: 120px; */
                    }
                }
            }
        }
    }
}

@media (max-width: 1366px) {
    .childProdSec {
        .childProdBox {
            .childProdBoxInn {
                .childProdImg {
                    height: 230px;
                }

                .childProdTxt {
                    h3 {
                        font-size: 20px;
                    }

                    .childProdPara {
                        /* height: 160px; */
                    }
                }
            }
        }
    }
    .indPanelBoxWrap {
        .indPanelItem {
            width: calc((100% / 2) - 20px);
        }
    }
}

@media (max-width: 1199px) {
    .pdIntroTitle {
        font-size: 36px;
    }

    .pdPropGrid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
}

@media (max-width: 991px) {
    .pdIntroWrap {
        flex-direction: column;
        gap: 40px;

        .headingWrap {
            text-align: center;
        }
    }

    .pdIntroVisual {
        width: 100%;
        margin-top: 20px;
    }

    .pdIntroFigure img {
        height: 340px;
    }

    .pdAppVisual {
        height: 340px;
    }

    .pdAppOverlayTitle {
        font-size: 26px;
    }

    .pdCertGrid {
        gap: 14px;
    }

    .pdOtherSliderWrap {
        padding: 0 50px;
    }

    .pdChemDesc {
        font-size: 14px;
        max-width: 100%;
    }

    .CertiWrap {
        .echCertiWrap {
            width: calc(50% - 10px);

            .certiCard {
                min-height: 170px;
            }
        }
    }
}

@media (max-width: 768px) {
    .childProdSec {
        .childProdBox {
            .childProdBoxInn {
                .childProdTxt {
                    .childProdPara {
                        /* height: 120px; */
                    }
                }
            }
        }
    }
    .indPanelBoxWrap {
        .indPanelItem {
            width: 100%;
            min-height: auto;
        }
    }
}

@media (max-width: 767px) {
    .pdIntroTitle {
        font-size: 28px;
    }

    .pdPropGrid {
        gap: 16px;
    }

    .pdAppTabs {
        flex-wrap: wrap;
    }

    .pdAppTabBtn {
        flex: unset;
        width: 50%;
    }

    .pdChemBtns {
        flex-direction: column;
        align-items: stretch;
    }

    .pdChemBtns .commonBtn,
    .pdBtnOutline {
        min-width: unset;
    }

    .pdCertGrid {
        gap: 12px;
    }

    .pdOtherSliderWrap {
        padding: 0 44px;
    }

    .childProdSec {
        .childProdBox {
            .childProdBoxInn {
                flex-direction: column;
                flex-wrap: wrap;

                .childProdImg {
                    width: 170px;
                    height: auto;
                    margin: 0px auto 15px;

                    &.resImg {
                        display: block;
                    }

                    &.deskImg {
                        display: none;
                    }
                }

                .childProdTxt {
                    width: 100%;
                    padding-left: 0;

                    h3 {
                        padding-right: 0;
                        text-align: center;
                        font-size: 20px;
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .pdPropGrid {
        grid-template-columns: 1fr;
    }

    .pdAppTabBtn {
        width: 100%;
    }

    .CertiWrap {
        .echCertiWrap {
            width: 100%;

            .certiCard {
                min-height: auto;
            }
        }
    }

    .childProdSec {
        .childProdBox {
            .childProdBoxInn {
                .childProdImg {
                    width: 100%;
                    height: auto;

                    img {
                        object-fit: cover;
                    }
                }

                .childProdTxt {
                    .childProdPara {
                        height: auto;
                    }
                }
            }
        }
    }
}

/*===product-detail.css end===*/