/* ==========================================================
   DELBERG PRODUCT PAGE
   Theme matched with supplied website screenshot
========================================================== */


/* ========================
   VARIABLES
======================== */

:root {

    --dp-green: #2d973f;
    --dp-green-dark: #153c13;

    --dp-navy: #00173c;
    --dp-navy-dark: #05172f;

    --dp-text: #525b65;
    --dp-dark-text: #1d2630;

    --dp-light-bg: #f2f4f6;
    --dp-light-green: #edf6ef;

    --dp-border: #e6e9ec;

    --dp-white: #ffffff;

    --dp-heading-font: 'Teko', sans-serif;
    --dp-body-font: 'Poppins', sans-serif;
}


/* ========================
   RESET
======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--dp-body-font);
    color: var(--dp-text);
    background: #ffffff;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ========================
   COMMON CONTAINER
======================== */

.dp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* ========================
   COMMON SECTION HEADING
======================== */

.dp-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.dp-heading-eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;

    color: var(--dp-green);

    font-family: var(--dp-heading-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;

    margin-bottom: 13px;
}

.dp-heading-eyebrow span {
    width: 33px;
    height: 2px;
    background: var(--dp-green);
}

.dp-section-heading h2 {
    color: var(--dp-navy);

    font-family: var(--dp-heading-font);
    font-weight: 600;

    font-size: 40px;
    line-height: 1.18;

    margin-bottom: 15px;
}

.dp-section-heading p {
    max-width: 650px;
    margin: auto;

    font-size: 14px;
    color: #7a8289;

    line-height: 1.8;
}


/* ==========================================================
   SECTION 1
   PRODUCT INTRO
========================================================== */

.dp-product-hero {
    padding: 50px 0 50px;
    overflow: hidden;
    background: #ffffff;
}

.dp-product-hero-grid {
    display: grid;
    grid-template-columns: 1.07fr 0.93fr;

    min-height: 535px;

    align-items: center;
}


/* LEFT IMAGE */

.dp-product-hero-image-wrap {
    height: 535px;

    position: relative;

    padding: 32px 0 32px 32px;
}

.dp-product-green-shape {
    position: absolute;

    width: 57%;
    height: 76%;

    left: 0;
    top: 0;

    background: var(--dp-green);
}

.dp-product-green-shape::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    left: -28px;
    bottom: -48px;

    opacity: 0.18;

    background-image:
        radial-gradient(var(--dp-green) 1.3px, transparent 1.3px);

    background-size: 8px 8px;
}

.dp-product-hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    position: relative;
    z-index: 2;
}

.dp-image-label {
    position: absolute;

    left: 32px;
    bottom: 32px;

    z-index: 4;

    min-width: 280px;

    padding: 21px 28px;

    background: rgba(5, 23, 47, 0.94);

    border-left: 4px solid var(--dp-green);
}

.dp-image-label span {
    display: block;

    color: var(--dp-green);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 3px;
}

.dp-image-label strong {
    color: #ffffff;

    font-family: var(--dp-heading-font);

    font-size: 23px;
    font-weight: 600;
}


/* RIGHT BLOCK */

.dp-product-content-block {
    background: var(--dp-white);

    box-shadow: 0 8px 35px rgba(8, 28, 53, 0.09);

    padding: 55px 55px 58px;

    margin-left: -10px;

    position: relative;
    z-index: 5;
}

.dp-product-content-block::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 78px;

    background: var(--dp-green);
}

.dp-small-heading {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--dp-green);

    font-family: var(--dp-heading-font);

    font-size: 20px;
    font-weight: 500;

    margin-bottom: 15px;
}

.dp-small-heading span {
    display: inline-block;

    width: 35px;
    height: 2px;

    background: var(--dp-green);
}

.dp-product-content-block h1 {
    color: var(--dp-navy);

    font-family: var(--dp-heading-font);

    font-size: 40px;
    line-height: 1.15;

    font-weight: 600;

    margin-bottom: 22px;
}

.dp-product-content-block p {
    font-size: 14px;

    line-height: 1.85;

    color: #646d76;

    margin-bottom: 14px;
}

.dp-product-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 29px;
}

.dp-btn {
    min-height: 49px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 25px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.3px;

    transition: 0.3s ease;
}

.dp-btn-primary {
    color: #ffffff;
    background: var(--dp-green);
    border: 2px solid var(--dp-green);
}

.dp-btn-primary:hover {
    background: var(--dp-green-dark);
    border-color: var(--dp-green-dark);
}

.dp-btn-outline {
    color: var(--dp-navy);

    border: 2px solid var(--dp-navy);

    background: transparent;
}

.dp-btn-outline:hover {
    background: var(--dp-navy);
    color: #ffffff;
}



/* ==========================================================
   PRODUCT DESCRIPTION - PRESSURE TRANSMITTER
========================================================== */

.dp-description-section {
    padding: 50px 0;
    background: #ffffff;
}

.dp-description-wrap {
    max-width: 1120px;
    margin: 0 auto;
}


/* HEADING */

.dp-description-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.dp-description-heading h2 {
    color: var(--dp-navy);
    font-family: var(--dp-heading-font);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 9px;
}

.dp-product-subtitle {
    font-family: var(--dp-heading-font);
    color: #707981;
    font-size: 21px;
    font-weight: 500;
}


/* TEXT */

.dp-description-text {
    max-width: 1020px;
}

.dp-description-text-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.dp-description-text p,
.dp-description-bottom p {
    color: #646d76;
    font-size: 14px;
    line-height: 1.9;
}


/* ==========================================================
   PRESSURE TRANSMITTER IMAGE GALLERY
========================================================== */

.dp-pressure-gallery {
    display: grid;

    grid-template-columns:
        1.3fr
        0.85fr
        0.85fr;

    grid-template-rows: 245px 245px;

    gap: 15px;

    margin: 10px 0 42px;
}

.dp-pressure-image {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
    margin: 0;
}

.dp-pressure-image-large {
    grid-row: 1 / 3;
}

.dp-pressure-image-wide {
    grid-column: 2 / 4;
}

.dp-pressure-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.dp-pressure-image:hover img {
    transform: scale(1.055);
}


/* DARK GRADIENT */

.dp-pressure-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 46%;

    background:
        linear-gradient(
            to top,
            rgba(3, 20, 42, 0.88),
            rgba(3, 20, 42, 0)
        );

    pointer-events: none;
}


/* IMAGE CAPTION */

.dp-image-caption {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 17px;

    z-index: 3;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;

    font-family: var(--dp-heading-font);

    font-size: 16px;
    font-weight: 500;
}

.dp-image-caption span {
    color: var(--dp-green);

    font-size: 12px;

    font-family: var(--dp-body-font);
    font-weight: 600;
}


/* FINAL PARAGRAPH */

.dp-description-bottom {
    display: grid;

    grid-template-columns: 4px 1fr;

    gap: 23px;

    max-width: 1030px;
}

.dp-description-line {
    width: 4px;
    height: 100%;

    min-height: 75px;

    background: var(--dp-green);
}



/* ==========================================================
   TECHNICAL SPECIFICATION SECTION
========================================================== */

.dp-specification-section {
    padding: 50px 0 60px;

    background: var(--dp-light-bg);
}

.dp-specification-box {
    max-width: 1100px;

    margin: 0 auto;

    background: #ffffff;

    box-shadow: 0 6px 25px rgba(7, 30, 61, 0.05);
}


/* TABLE TOP */

.dp-specification-top {
    min-height: 100px;

    padding: 25px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: #112104;
}

.dp-spec-label {
    display: block;

    color: var(--dp-green);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.7px;

    margin-bottom: 2px;
}

.dp-specification-top h3 {
    color: #ffffff;

    font-family: var(--dp-heading-font);

    font-size: 25px;
    font-weight: 600;

    line-height: 1.2;
}

.dp-spec-types {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.dp-spec-types span {
    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, 0.21);

    color: #ffffff;

    font-size: 10px;
    font-weight: 500;
}


/* RESPONSIVE WRAPPER */

.dp-table-responsive {
    width: 100%;
    overflow-x: auto;
}


/* TABLE */

.dp-spec-table {
    width: 100%;

    min-width: 800px;

    border-collapse: collapse;

    background: #ffffff;
}

.dp-spec-table thead {
    background: #eef5ef;
}

.dp-spec-table th {
    padding: 18px 22px;

    color: var(--dp-navy);

    text-align: left;

    font-family: var(--dp-heading-font);

    font-size: 16px;
    font-weight: 600;

    border-bottom: 2px solid var(--dp-green);
}

.dp-spec-table th:first-child {
    width: 24%;
}

.dp-spec-table th:nth-child(2) {
    width: 32%;
}

.dp-spec-table th:nth-child(3) {
    width: 44%;
}

.dp-spec-table td {
    padding: 17px 22px;

    color: #677078;

    font-size: 12px;
    line-height: 1.65;

    vertical-align: top;

    border-bottom: 1px solid #e9ecee;
}

.dp-spec-table td strong {
    color: var(--dp-navy);

    font-size: 12px;
    font-weight: 600;
}

.dp-spec-table tbody tr {
    transition: background 0.25s ease;
}

.dp-spec-table tbody tr:hover {
    background: #f8faf8;
}


/* NOTE */

.dp-table-note {
    padding: 18px 25px;

    background: #f5f8f6;

    border-left: 4px solid var(--dp-green);

    color: #717a82;

    font-size: 11px;
    line-height: 1.7;
}

.dp-table-note strong {
    color: var(--dp-navy);
}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 900px) {

    .dp-description-text-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dp-pressure-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 320px 260px 260px;
    }

    .dp-pressure-image-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .dp-pressure-image-wide {
        grid-column: 1 / 3;
    }

}


@media (max-width: 768px) {

    .dp-description-section {
        padding: 65px 0;
    }

    .dp-description-heading h2 {
        font-size: 36px;
    }

    .dp-product-subtitle {
        font-size: 18px;
    }

    .dp-specification-section {
        padding: 65px 0 75px;
    }

    .dp-specification-top {
        align-items: flex-start;
        flex-direction: column;

        padding: 22px;
    }

}


@media (max-width: 520px) {

    .dp-description-heading h2 {
        font-size: 31px;
    }

    .dp-pressure-gallery {
        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 270px);
    }

    .dp-pressure-image-large,
    .dp-pressure-image-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .dp-description-bottom {
        grid-template-columns: 3px 1fr;
        gap: 16px;
    }

    .dp-specification-top h3 {
        font-size: 22px;
    }

}


/* ==========================================================
   SECTION 2
   WHY CHOOSE PRODUCTS
========================================================== */

.dp-why-section {
    padding: 50px 0 50px;

    background: var(--dp-light-bg);
}

.dp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.dp-why-card {
    background: #ffffff;

    border: 1px solid #eceff1;

    padding: 35px 28px 34px;

    min-height: 270px;

    position: relative;

    transition: 0.3s ease;

    overflow: hidden;
}

.dp-why-card::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: -25px;
    bottom: -25px;

    border-radius: 50%;

    background: var(--dp-light-green);

    transition: 0.3s ease;
}

.dp-why-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(4, 28, 57, 0.09);
}

.dp-why-card:hover::after {
    transform: scale(1.35);
}

.dp-why-number {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dp-light-green);

    border-radius: 50%;

    color: var(--dp-green);

    font-family: var(--dp-heading-font);

    font-weight: 600;
    font-size: 18px;

    margin-bottom: 25px;
}

.dp-why-card h3 {
    color: var(--dp-navy);

    font-family: var(--dp-heading-font);

    font-size: 21px;
    line-height: 1.3;

    font-weight: 600;

    margin-bottom: 14px;
}

.dp-why-card p {
    color: #747b82;

    font-size: 13px;

    line-height: 1.8;

    position: relative;

    z-index: 2;
}
.dp-subproducts-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    margin-top: 30px;
}

.dp-subproduct-card {
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.dp-subproduct-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.dp-subproduct-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.dp-subproduct-content {
    padding: 18px;
}

.dp-subproduct-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
    white-space: normal;
}

.dp-subproduct-content p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* On smaller screens, let it wrap to 2 per row, then 1 per row */
@media (max-width: 992px) {
    .dp-subproducts-grid {
        flex-wrap: wrap;
    }
    .dp-subproduct-card {
        flex: 1 1 calc(50% - 25px);
    }
}

@media (max-width: 576px) {
    .dp-subproduct-card {
        flex: 1 1 100%;
    }
}

/* ==========================================================
   SECTION 3
   PRODUCT RANGE
========================================================== */
/* =========================================================
   RELATED PRODUCTS SECTION
========================================================= */

#related-products {
    width: 100%;
    padding: 50px 0 50px;
    overflow: hidden;
}


/* HEADING */

#related-products .dp-section-heading {
    margin-bottom: 48px;
}


/* =========================================================
   FULL WIDTH CAROUSEL
========================================================= */

.dp-related-carousel-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);

    overflow: hidden;
    position: relative;
}


.dp-related-carousel {
    display: flex;
    align-items: flex-start;

    gap: 24px;

    width: max-content;

    will-change: transform;
}


/* =========================================================
   CARD
========================================================= */

.dp-related-carousel .dp-product-card {

    display: block !important;

    flex: 0 0 calc((100vw - 96px) / 4);

    width: calc((100vw - 96px) / 4);

    min-width: 0;

    height: auto !important;

    box-sizing: border-box;

    flex-shrink: 0;

    align-self: flex-start;
}


/* =========================================================
   IMAGE
========================================================= */

.dp-product-card-image {

    display: block;

    width: 100%;
    height: 235px;

    overflow: hidden;

    border-radius: 10px;

    margin: 0;
    padding: 0;

    background: #f1f3f4;
}


.dp-product-card-image img {

    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none;

    object-fit: cover;
    object-position: center;

    margin: 0;
    padding: 0;

    transition: transform 0.45s ease;
}


.dp-product-card:hover
.dp-product-card-image img {
    transform: scale(1.04);
}


/* NO IMAGE */

.dp-product-no-image {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f1f3f4;

    color: #777;

    font-size: 14px;
}


/* =========================================================
   CONTENT
========================================================= */

.dp-product-card-content {

    display: block !important;

    width: 100%;

    height: auto !important;

    padding: 20px 4px 0;

    box-sizing: border-box;

    margin: 0;
}


.dp-product-card-content h3 {

    margin: 0 0 10px;

    line-height: 1.2;
}


.dp-product-card-content p {

    margin: 0 0 16px;

    line-height: 1.7;
}


.dp-product-card-content
.delberg-category-explore-link {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin: 0;
}


/* =========================================================
   LARGE DESKTOP - 5 CARDS
========================================================= */

@media (min-width: 1500px) {

    .dp-related-carousel .dp-product-card {

        flex: 0 0 calc((100vw - 120px) / 5);

        width: calc((100vw - 120px) / 5);
    }

}


/* =========================================================
   TABLET - 3 CARDS
========================================================= */

@media (max-width: 1199px) {

    #related-products {
        padding: 60px 0 70px;
    }

    .dp-related-carousel {
        gap: 20px;
    }

    .dp-related-carousel .dp-product-card {

        flex: 0 0 calc((100vw - 64px) / 3);

        width: calc((100vw - 64px) / 3);
    }

    .dp-product-card-image {
        height: 220px;
    }

}


/* =========================================================
   SMALL TABLET - 2 CARDS
========================================================= */

@media (max-width: 991px) {

    .dp-related-carousel .dp-product-card {

        flex: 0 0 calc((100vw - 40px) / 2);

        width: calc((100vw - 40px) / 2);
    }

}


/* =========================================================
   MOBILE - 1 CARD
========================================================= */

@media (max-width: 767px) {

    #related-products {
        padding: 50px 0 60px;
    }

    #related-products .dp-section-heading {
        margin-bottom: 32px;
    }

    .dp-related-carousel {
        gap: 16px;
    }

    .dp-related-carousel .dp-product-card {

        flex: 0 0 calc(100vw - 32px);

        width: calc(100vw - 32px);
    }

    .dp-product-card-image {
        height: 220px;
    }

}
/* .dp-products-section {
    padding: 60px 0 50px;
    background: #ffffff;
}

.dp-products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.dp-product-card {
    background: #ffffff;

    border: 1px solid var(--dp-border);

    overflow: hidden;

    position: relative;

    transition: 0.35s ease;
}

.dp-product-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 40px rgba(3, 29, 59, 0.11);
}

.dp-product-card-image {
    width: 100%;
    height: 260px;

    overflow: hidden;

    background: #dddddd;
}

.dp-product-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.dp-product-card:hover .dp-product-card-image img {
    transform: scale(1.07);
}

.dp-product-card-content {
    padding: 27px 24px 0px;

    position: relative;
}

.dp-product-count {
    color: var(--dp-green);

    font-family: var(--dp-heading-font);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.dp-product-card h3 {
    color: var(--dp-navy);

    font-family: var(--dp-heading-font);

    font-size: 23px;
    line-height: 1.25;

    margin-bottom: 13px;

    font-weight: 600;
}

.dp-product-card p {
    color: #747b81;

    font-size: 12px;

    line-height: 1.75;

    min-height: 85px;

    margin-bottom: 20px;
}

.dp-product-card a {
    border-top: 1px solid #eceff1;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 10px 0;

    color: var(--dp-navy);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: 0.3s ease;
}

.dp-product-card a span {
    color: var(--dp-green);

    font-size: 20px;

    line-height: 1;

    transition: 0.3s ease;
}

.dp-product-card a:hover {
    color: var(--dp-green);
}

.dp-product-card a:hover span {
    transform: translateX(5px);
} */


/* ==========================================================
   SECTION 4
   FAQ
========================================================== */

.dp-faq-section {
    padding: 50px 0 70px;

    background: var(--dp-light-bg);
}

.dp-faq-heading {
    margin-bottom: 40px;
}

.dp-faq-grid {
    max-width: 1050px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 13px 18px;

    align-items: start;
}

.dp-faq-item {
    background: #ffffff;

    border-radius: 4px;

    overflow: hidden;

    box-shadow: 0 3px 10px rgba(9, 28, 49, 0.04);
}

.dp-faq-question {
    width: 100%;

    min-height: 62px;

    border: 0;

    background: #ffffff;

    padding: 10px 15px 10px 14px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 12px;

    cursor: pointer;

    text-align: left;
}

.dp-faq-question-left {
    display: flex;
    align-items: center;

    gap: 14px;
}

.dp-faq-number {
    min-width: 32px;
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #f0f6f1;

    color: var(--dp-green);

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: var(--dp-heading-font);

    font-size: 11px;
    font-weight: 600;
}

.dp-faq-title {
    color: var(--dp-navy);

    font-size: 12px;

    font-weight: 500;

    line-height: 1.5;
}

.dp-faq-plus {
    flex: 0 0 27px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dfe4e7;

    border-radius: 50%;

    color: #79818a;

    font-size: 16px;

    line-height: 1;

    transition: 0.3s ease;
}

.dp-faq-item.active .dp-faq-plus {
    color: #ffffff;

    background: var(--dp-green);

    border-color: var(--dp-green);

    transform: rotate(45deg);
}

.dp-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.dp-faq-answer-inner {
    border-top: 1px solid #edf0f2;

    padding: 16px 58px 20px 61px;

    color: #747d85;

    font-size: 12px;

    line-height: 1.8;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .dp-product-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dp-product-content-block {
        padding: 45px 38px;
    }

    .dp-product-content-block h1 {
        font-size: 38px;
    }

    .dp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dp-product-card-image {
        height: 300px;
    }

}


/* ==========================================================
   MOBILE / TABLET
========================================================== */

@media (max-width: 768px) {

    .dp-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* HERO */

    .dp-product-hero {
        padding: 45px 0 65px;
    }

    .dp-product-hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .dp-product-hero-image-wrap {
        height: 430px;

        padding: 22px 0 0 22px;
    }

    .dp-product-green-shape {
        width: 60%;
        height: 75%;
    }

    .dp-product-content-block {
        margin-left: 0;

        padding: 38px 28px 40px;

        box-shadow: 0 8px 30px rgba(8, 28, 53, 0.08);
    }

    .dp-product-content-block h1 {
        font-size: 35px;
    }


    /* HEADINGS */

    .dp-section-heading {
        margin-bottom: 35px;
    }

    .dp-section-heading h2 {
        font-size: 32px;
    }


    /* WHY */

    .dp-why-section {
        padding: 65px 0;
    }


    /* PRODUCTS */

    /* .dp-products-section {
        padding: 65px 0 70px;
    } */


    /* FAQ */

    .dp-faq-section {
        padding: 65px 0 75px;
    }

    .dp-faq-grid {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 520px) {

    .dp-heading-eyebrow {
        font-size: 17px;
        gap: 8px;
    }

    .dp-heading-eyebrow span {
        width: 23px;
    }

    .dp-section-heading h2 {
        font-size: 29px;
    }


    /* HERO */

    .dp-product-hero-image-wrap {
        height: 330px;
    }

    .dp-image-label {
        left: 22px;
        bottom: 0;

        min-width: 230px;

        padding: 16px 20px;
    }

    .dp-image-label strong {
        font-size: 19px;
    }

    .dp-product-content-block {
        padding: 34px 23px 36px;
    }

    .dp-product-content-block h1 {
        font-size: 31px;
    }

    .dp-product-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .dp-btn {
        width: 100%;
    }


    /* WHY */

    .dp-why-grid {
        grid-template-columns: 1fr;
    }

    .dp-why-card {
        min-height: auto;
    }


    /* PRODUCTS */

    .dp-products-grid {
        grid-template-columns: 1fr;
    }

    .dp-product-card-image {
        height: 280px;
    }


    /* FAQ */

    .dp-faq-question {
        min-height: 66px;
    }

    .dp-faq-title {
        font-size: 11px;
    }

    .dp-faq-answer-inner {
        padding: 15px 20px 19px 60px;
    }

}



@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');


/* =========================================================
   COMMON STYLES
========================================================= */

.category-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.category-section {
    padding: 50px 0;
}

.category-small-heading {
    margin: 0 0 10px;
    font-family: var(--dp-heading-font);
    font-size: 34px;
    font-weight: 400;
    line-height: 34px;
    color: #2c963d;
}

.category-small-heading::after {
    content: "";
    display: inline-block;
    width: 34px;
    height: 2px;
    margin-left: 12px;
    vertical-align: middle;
    background: #2c963d;
}

.centered-small-heading::before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 2px;
    margin-right: 12px;
    vertical-align: middle;
    background: #2c963d;
}

.category-main-heading {
    margin: 0;
    font-family: var(--dp-heading-font);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    color: #00173c;
}

.category-main-heading span {
    color: #2c963d;
}

.category-description {
    margin: 10px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: #666666;
}

.category-section-heading {
    max-width: 760px;
    margin: 0 auto 20px;
    text-align: center;
}


/* =========================================================
   SECTION 1
   CATEGORY HERO
========================================================= */

.category-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0;

    background: linear-gradient(
        90deg,
        #f5f7f8 0%,
        #f5f7f8 58%,
        #edf2ee 58%,
        #edf2ee 100%
    );
}

.category-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #2c963d;
}

.category-hero-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 65px;
    align-items: center;
}

.category-hero-content {
    padding: 20px 0;
}

.category-hero-subheading {
    margin: 16px 0 0;

    font-family: var(--dp-body-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;

    color: #303030;
}

.category-hero-text {
    max-width: 570px;
    margin: 18px 0 0;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.9;

    color: #656565;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.category-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.category-btn {
    display: inline-flex;
    min-width: 150px;
    min-height: 49px;

    align-items: center;
    justify-content: center;

    padding: 12px 25px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;

    text-decoration: none;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.category-btn-primary {
    color: #ffffff;
    background: #2c963d;
    border: 2px solid #2c963d;
}

.category-btn-primary:hover {
    color: #ffffff;
    background: #207d31;
    border-color: #207d31;
    transform: translateY(-2px);
}

.category-btn-dark {
    color: #ffffff;
    background: #10284a;
    border: 2px solid #10284a;
}

.category-btn-dark:hover {
    color: #ffffff;
    background: #2c963d;
    border-color: #2c963d;
    transform: translateY(-2px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.category-hero-image {
    position: relative;
    padding: 0 0 28px 28px;
}

.category-hero-image::before {
    content: "";
    position: absolute;
    z-index: -1;

    bottom: 0;
    left: 0;

    width: 55%;
    height: 60%;

    background: #2c963d;
}

.category-hero-image::after {
    content: "";
    position: absolute;
    z-index: -1;

    top: -22px;
    right: -22px;

    width: 135px;
    height: 135px;

    background-image: radial-gradient(
        #2c963d 1.3px,
        transparent 1.3px
    );

    background-size: 11px 11px;
    opacity: 0.3;
}

.category-hero-image img {
    display: block;

    width: 100%;
    height: 470px;

    object-fit: cover;
}


/* =========================================================
   SECTION 2
   PRODUCT RANGE
========================================================= */

.product-range {
    background: #ffffff;
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e4e7ea;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(12, 38, 70, 0.12);
    transform: translateY(-7px);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-card-image {
    position: relative;

    display: block;
    width: 100%;
    height: 220px;

    overflow: hidden;
    background: #eceff1;
}

.product-card-image::after {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    background: linear-gradient(
        to top,
        rgba(10, 35, 57, 0.18),
        transparent 50%
    );
}

.product-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.55s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-card-content {
    padding: 24px 21px 22px;
}

.product-card-number {
    display: block;
    margin-bottom: 7px;

    font-family: var(--dp-heading-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #2c963d;
}

.product-card h3 {
    margin: 0 0 11px;

    font-family: var(--dp-heading-font);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;

    color: #10284a;
}

.product-card p {
    min-height: 80px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.75;

    color: #6c6c6c;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 18px;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;

    color: #111111;

    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.25s ease;
}

.product-card-link::after {
    content: "→";

    font-size: 18px;
    line-height: 1;

    color: #2c963d;

    transition: transform 0.25s ease;
}

.product-card-link:hover {
    color: #2c963d;
}

.product-card-link:hover::after {
    transform: translateX(5px);
}


/* =========================================================
   SECTION 3
   WHY CHOOSE OUR PRODUCTS
========================================================= */

.why-products {
    position: relative;
    overflow: hidden;

    background: #f3f5f6;
}

.why-products-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: stretch;
}


/* =========================================================
   WHY CHOOSE IMAGE
========================================================= */

.why-product-image {
    position: relative;
    min-height: 585px;
}

.why-product-image img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 585px;

    object-fit: cover;
}

.why-image-content {
    position: absolute;

    right: -20px;
    bottom: 35px;

    max-width: 285px;
    padding: 23px 27px;

    color: #ffffff;
    background: #10284a;
}

.why-image-content strong {
    display: block;
    margin-bottom: 5px;

    font-family: var(--dp-heading-font);
    font-size: 28px;
    font-weight: 600;

    color: #ffffff;
}

.why-image-content span {
    display: block;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.76);
}


/* =========================================================
   WHY CHOOSE CONTENT
========================================================= */

.why-product-content {
    padding: 35px 0;
}

.why-product-content .category-main-heading {
    font-size: 40px;
}

.why-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;

    margin-top: 30px;
}

.why-item {
    position: relative;

    padding: 22px 19px;

    background: #ffffff;
    border-left: 3px solid #2c963d;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-item:hover {
    box-shadow: 0 10px 28px rgba(12, 38, 70, 0.08);
    transform: translateY(-4px);
}

.why-item-number {
    display: block;
    margin-bottom: 7px;

    font-family: var(--dp-heading-font);
    font-size: 12px;
    font-weight: 600;

    color: #2c963d;
}

.why-item h3 {
    margin: 0 0 7px;

    font-family: var(--dp-heading-font);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;

    color: #10284a;
}

.why-item p {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.7;

    color: #777777;
}


/* =========================================================
   SECTION 4
   FAQ
========================================================= */

.category-faq {
    background: #eef1f5;
}

.faq-heading {
    margin-bottom: 42px;
}

.faq-heading .category-main-heading {
    font-size: clamp(32px, 4vw, 44px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;
    align-items: start;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e4e7ea;
    border-radius: 4px;

    box-shadow: 0 4px 15px rgba(20, 39, 70, 0.03);
}

.faq-question {
    display: grid;
    grid-template-columns: 38px 1fr 30px;
    gap: 12px;
    align-items: center;

    width: 100%;
    min-height: 65px;

    padding: 13px 17px;

    background: #ffffff;

    border: 0;
    outline: 0;

    text-align: left;
    cursor: pointer;
}

.faq-number {
    display: flex;

    width: 34px;
    height: 34px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-family: var(--dp-heading-font);
    font-size: 11px;
    font-weight: 600;

    color: #2c963d;
    background: #edf7ef;
}

.faq-question-text {
    font-family: "Poppins", sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.55;

    color: #26364c;
}

.faq-toggle {
    display: flex;

    width: 28px;
    height: 28px;

    align-items: center;
    justify-content: center;
    justify-self: end;

    border: 1px solid #dfe3e8;
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;

    color: #8090a0;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    background: #ffffff;

    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 25px 22px 67px;

    font-family: "Poppins", sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.8;

    color: #737373;
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    color: #ffffff;
    background: #2c963d;
    border-color: #2c963d;

    transform: rotate(45deg);
}


/* =========================================================
   RESPONSIVE - LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .category-hero-wrapper,
    .why-products-wrapper {
        gap: 40px;
    }

    .product-range-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .category-section {
        padding: 70px 0;
    }

    .category-hero {
        background: #f5f7f8;
    }

    .category-hero-wrapper,
    .why-products-wrapper {
        grid-template-columns: 1fr;
    }

    .category-hero-image {
        max-width: 700px;
    }

    .product-range-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-product-image {
        min-height: 450px;
    }

    .why-product-image img {
        min-height: 450px;
    }

    .why-image-content {
        right: 20px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 700px) {

    .category-container {
        width: calc(100% - 30px);
    }

    .category-section {
        padding: 60px 0;
    }

    .category-hero {
        padding: 60px 0;
    }

    .category-main-heading {
        font-size: 36px;
    }

    .category-hero-image {
        padding: 0 0 14px 14px;
    }

    .category-hero-image img {
        height: 360px;
    }

    .product-range-grid {
        grid-template-columns: 1fr;
    }

    .product-card h3,
    .product-card p {
        min-height: auto;
    }

    .why-items {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .category-container {
        width: calc(100% - 24px);
    }

    .category-main-heading {
        font-size: 32px;
    }

    .category-hero-subheading {
        font-size: 19px;
    }

    .category-hero-buttons {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
    }

    .category-hero-image img {
        height: 300px;
    }

    .why-product-image,
    .why-product-image img {
        min-height: 360px;
    }

    .why-image-content {
        right: 15px;
        bottom: 20px;
        left: 15px;

        max-width: none;
    }

    .faq-question {
        grid-template-columns: 34px 1fr 28px;
        gap: 9px;

        padding: 12px;
    }

    .faq-answer-inner {
        padding: 0 18px 20px 55px;
    }

}


/* =========================================================
   ABOUT OUR INSTRUMENTS
========================================================= */

.about-instruments-section {
    padding: 50px 0;
    background: #ffffff;
}

.about-instruments-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}


/* LEFT CONTENT */

.about-instruments-content {
    padding-right: 20px;
}

.about-instruments-subtitle {
    font-family: var(--dp-heading-font);
    display: flex;
    align-items: center;
    line-height: 34px;
    gap: 12px;
    color: #28a745;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 12px;
}

.about-instruments-subtitle span {
    display: block;
    width: 30px;
    height: 2px;
    background: #28a745;
}

.about-instruments-content h2 {
    margin: 0 0 25px;
    color: #0d2748;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 700;
}

.about-instruments-content h2 strong {
    color: #28a745;
    font-weight: 700;
}

.about-instruments-content p {
    color: #686f78;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-instruments-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.about-btn-primary,
.about-btn-secondary {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: 0.3s ease;
}

.about-btn-primary {
    background: #28a745;
    color: #ffffff;
}

.about-btn-primary:hover {
    background: #0d2748;
    color: #ffffff;
}

.about-btn-secondary {
    background: #0d2748;
    color: #ffffff;
}

.about-btn-secondary:hover {
    background: #28a745;
    color: #ffffff;
}


/* RIGHT PRODUCT PANEL */

.about-instruments-products {
    background: #f5f7f8;
    position: relative;
    padding: 38px;
    border-left: 4px solid #28a745;
}

.about-instruments-products:before {
    content: "";
    position: absolute;
    right: -10px;
    top: -10px;
    width: 80px;
    height: 80px;
    border-top: 1px solid #dce2e5;
    border-right: 1px solid #dce2e5;
}

.about-products-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dde2e5;
}

.about-products-number {
    color: #28a745;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
}

.about-products-header small {
    display: block;
    color: #28a745;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.about-products-header h3 {
    color: #0d2748;
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}


/* PRODUCT GRID */

.about-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-product-item {
    display: flex;
    gap: 14px;
    padding: 20px 14px 20px 0;
    border-bottom: 1px solid #dde2e5;
}

.about-product-item:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid #dde2e5;
}

.about-product-count {
    color: #28a745;
    font-size: 10px;
    font-weight: 700;
    padding-top: 4px;
}

.about-product-item h4 {
    color: #0d2748;
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 5px;
    font-weight: 700;
}

.about-product-item p {
    margin: 0;
    color: #7b8188;
    font-size: 12px;
    line-height: 1.5;
}


/* BOTTOM INFO */

.about-products-bottom {
    margin-top: 28px;
    background: #0d2748;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-bottom-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.about-products-bottom span {
    display: block;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.about-products-bottom p {
    color: #b9c1cb;
    font-size: 11px;
    margin: 4px 0 0;
}


/* RESPONSIVE */

@media only screen and (max-width: 991px) {

    .about-instruments-section {
        padding: 70px 0;
    }

    .about-instruments-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-instruments-content {
        padding-right: 0;
    }

    .about-instruments-content h2 {
        font-size: 36px;
    }
}


@media only screen and (max-width: 575px) {

    .about-instruments-section {
        padding: 55px 0;
    }

    .about-instruments-content h2 {
        font-size: 30px;
    }

    .about-instruments-products {
        padding: 28px 20px;
    }

    .about-product-list {
        grid-template-columns: 1fr;
    }

    .about-product-item,
    .about-product-item:nth-child(even) {
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid #dde2e5;
    }

    .about-instruments-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn-primary,
    .about-btn-secondary {
        width: 100%;
    }

    .about-products-number {
        font-size: 38px;
    }
}





















@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* =============================================
   DELBERG ABOUT PAGE
   Sections only - no header/footer styles
============================================= */

.about-page-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.about-page-section {
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
    color: #18243a;
}

.about-page-section * {
    box-sizing: border-box;
}

.about-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
    color: #2b8d3a;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .2px;
}

.about-page-eyebrow::after {
    content: '';
    width: 42px;
    height: 2px;
    background: #2b8d3a;
}

.about-page-eyebrow-light {
    color: #55bd64;
}

.about-page-eyebrow-light::after {
    background: #55bd64;
}

.about-page-section h2,
.about-page-hero h1,
.about-page-cta h2 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.14;
    text-transform: capitalize;
}

.about-page-section h2 {
    color: #102b4d;
    font-size: clamp(34px, 4vw, 50px);
}

.about-page-section h3 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    color: #102b4d;
}

.about-page-section p,
.about-page-cta p,
.about-page-hero p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.85;
}

/* 01. HERO */
.about-page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    background-image: url('https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=2000&q=88');
    background-position: center;
    background-size: cover;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 16, 30, .94) 0%, rgba(8, 32, 46, .85) 45%, rgba(10, 36, 34, .35) 100%);
}

.about-page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 6px;
    height: 42%;
    background: #2b8d3a;
}

.about-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.10), rgba(0,0,0,.10));
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

.about-page-hero h1 {
    max-width: 790px;
    font-size: clamp(45px, 6vw, 72px);
    letter-spacing: -.5px;
}

.about-page-hero p {
    max-width: 720px;
    margin-top: 22px;
    color: rgba(255,255,255,.86);
    font-size: 15px;
}

.about-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 500;
}

.about-page-breadcrumb a {
    color: #55bd64;
    text-decoration: none;
}

.about-page-breadcrumb span:last-child {
    color: #ffffff;
}

/* 02. OVERVIEW */
.about-page-overview {
    background: #ffffff;
}

.about-page-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.about-page-overview-media {
    position: relative;
    min-height: 580px;
}

.about-page-overview-media::before {
    content: '';
    position: absolute;
    width: 68%;
    height: 72%;
    left: -24px;
    top: -24px;
    background: #2b8d3a;
}

.about-page-overview-media::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 18px;
    width: 130px;
    height: 130px;
    opacity: .7;
    background-image: radial-gradient(#b8c2c8 1px, transparent 1px);
    background-size: 8px 8px;
}

.about-page-image-frame {
    position: absolute;
    overflow: hidden;
    z-index: 2;
    background: #e9eef1;
}

.about-page-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-page-image-main {
    width: 82%;
    height: 470px;
    right: 0;
    top: 0;
}

.about-page-image-small {
    width: 48%;
    height: 220px;
    left: 0;
    bottom: 0;
    border: 10px solid #ffffff;
}

.about-page-overview-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 245px;
    padding: 25px 28px;
    color: #ffffff;
    background: #102b4d;
    box-shadow: 0 14px 35px rgba(16, 43, 77, .18);
}

.about-page-overview-badge strong,
.about-page-overview-badge span {
    display: block;
}

.about-page-overview-badge strong {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.about-page-overview-badge span {
    margin-top: 5px;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    line-height: 1.6;
}

.about-page-content-block > p {
    margin-top: 18px;
    color: #657080;
    font-size: 14px;
}

.about-page-mini-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-page-mini-point {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 20px;
    border: 1px solid #e8edf0;
    background: #f8fafb;
}

.about-page-mini-point > span {
    color: #2b8d3a;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.about-page-mini-point h3 {
    font-size: 18px;
}

.about-page-mini-point p {
    margin-top: 7px;
    color: #737d88;
    font-size: 12px;
    line-height: 1.7;
}

/* 03. SOLUTIONS */
.about-page-solutions {
    background: #f4f6f7;
}

.about-page-section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.about-page-section-heading-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-page-section-heading-center .about-page-eyebrow {
    justify-content: center;
}

.about-page-section-heading-center .about-page-eyebrow::before {
    content: '';
    width: 42px;
    height: 2px;
    background: #2b8d3a;
}

.about-page-section-heading > p {
    margin-top: 15px;
    color: #6e7986;
    font-size: 14px;
}

.about-page-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-page-solution-card {
    position: relative;
    min-height: 365px;
    padding: 32px 26px 28px;
    overflow: hidden;
    border-bottom: 4px solid #2b8d3a;
    background: #ffffff;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.about-page-solution-card::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -45px;
    width: 150px;
    height: 150px;
    border: 28px solid rgba(43,141,58,.06);
    border-radius: 50%;
}

.about-page-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(16,43,77,.12);
}

.about-page-card-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #dbe3e7;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.about-page-solution-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 38px;
    color: #2b8d3a;
    border: 1px solid #dce8df;
    background: #f4faf5;
    font-size: 22px;
}

.about-page-card-label {
    display: block;
    margin-bottom: 5px;
    color: #2b8d3a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.about-page-solution-card h3 {
    font-size: 29px;
    text-transform: uppercase;
}

.about-page-solution-card p {
    margin-top: 13px;
    color: #737d88;
    font-size: 12px;
    line-height: 1.75;
}

.about-page-solution-card a {
    position: absolute;
    left: 26px;
    bottom: 28px;
    z-index: 2;
    color: #102b4d;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.about-page-solution-card a span {
    color: #2b8d3a;
    margin-left: 4px;
}

/* 04. CAPABILITIES */
.about-page-capabilities {
    background: #ffffff;
}

.about-page-capabilities-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.about-page-capabilities-intro > p {
    margin-top: 18px;
    color: #6d7783;
    font-size: 14px;
}

.about-page-capabilities-photo {
    position: relative;
    height: 360px;
    margin-top: 32px;
    overflow: hidden;
}

.about-page-capabilities-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page-photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    color: #ffffff;
    background: rgba(16,43,77,.93);
}

.about-page-photo-caption strong,
.about-page-photo-caption span {
    display: block;
}

.about-page-photo-caption strong {
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
}

.about-page-photo-caption span {
    margin-top: 4px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
}

.about-page-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-page-service-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    min-height: 176px;
    padding: 24px 20px;
    border: 1px solid #e8edf0;
    background: #f8fafb;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.about-page-service-item:hover {
    transform: translateY(-4px);
    border-color: #b9d8bf;
    background: #ffffff;
}

.about-page-service-no {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #2b8d3a;
    background: #eaf5ec;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.about-page-service-item h3 {
    font-size: 20px;
    line-height: 1.25;
}

.about-page-service-item p {
    margin-top: 9px;
    color: #737e89;
    font-size: 11px;
    line-height: 1.75;
}

/* 05. WHY */
.about-page-why {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #102b4d;
}

.about-page-why::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,.11) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,.11) 1px, transparent 1px);
    background-size: 42px 42px;
}

.about-page-why-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-page-why-copy h2 {
    color: #ffffff;
}

.about-page-why-copy p {
    margin-top: 18px;
    color: rgba(255,255,255,.70);
    font-size: 14px;
}

.about-page-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s ease;
}

.about-page-why-copy .about-page-button {
    margin-top: 28px;
}

.about-page-button-light {
    color: #ffffff;
    background: #2b8d3a;
}

.about-page-button-light:hover {
    background: #237831;
}

.about-page-button-outline {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.42);
    background: transparent;
}

.about-page-button-outline:hover {
    color: #102b4d;
    background: #ffffff;
}

.about-page-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-page-value-card {
    min-height: 160px;
    padding: 24px;
    border-left: 3px solid #2b8d3a;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(2px);
}

.about-page-value-card-wide {
    grid-column: 1 / -1;
}

.about-page-value-card > span {
    color: #55bd64;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.about-page-value-card h3 {
    margin-top: 8px;
    color: #ffffff;
    font-size: 21px;
}

.about-page-value-card p {
    margin-top: 8px;
    color: rgba(255,255,255,.64);
    font-size: 11px;
    line-height: 1.7;
}

/* 06. INDUSTRIES */
.about-page-industries {
    background: #f4f6f7;
}

.about-page-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 225px;
    gap: 14px;
}

.about-page-industry-card {
    position: relative;
    overflow: hidden;
    background: #102b4d;
}

.about-page-industry-card-large {
    grid-row: span 2;
}

.about-page-industry-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform .35s ease;
}

.about-page-industry-card:hover .about-page-industry-bg {
    transform: scale(1.06);
}

.about-page-industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(6,20,35,.88) 100%);
}

.about-page-industry-bg-1 { background-image: url('../images/about-us/foods.jpg'); }
.about-page-industry-bg-2 { background-image: url('../images/about-us/breweries.jpg'); }
.about-page-industry-bg-3 { background-image: url('../images/about-us/sugar.jpg'); }
.about-page-industry-bg-4 { background-image: url('../images/about-us/automobile.webp'); }
.about-page-industry-bg-5 { background-image: url('../images/about-us/chemical.jpg'); }
.about-page-industry-bg-6 { background-image: url('../images/about-us/etp-stp.jpg'); }
.about-page-industry-bg-7 { background-image: url('../images/about-us/rice.jpg'); }

.about-page-industry-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px;
}

.about-page-industry-content span {
    color: #55bd64;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.about-page-industry-content h3 {
    margin-top: 5px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
}

/* 07. CTA */
.about-page-cta {
    padding: 72px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    background:
        linear-gradient(90deg, rgba(19,68,30,.98), rgba(32,126,49,.94)),
        url('https://images.unsplash.com/photo-1496247749665-49cf5b1022e9?auto=format&fit=crop&w=1800&q=85') center/cover;
}

.about-page-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.about-page-cta h2 {
    max-width: 780px;
    font-size: clamp(34px, 4vw, 48px);
}

.about-page-cta p {
    max-width: 760px;
    margin-top: 14px;
    color: rgba(255,255,255,.80);
    font-size: 13px;
}

.about-page-cta-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .about-page-two-column,
    .about-page-capabilities-layout,
    .about-page-why-layout {
        gap: 44px;
    }

    .about-page-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page-industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .about-page-section {
        padding: 70px 0;
    }

    .about-page-two-column,
    .about-page-capabilities-layout,
    .about-page-why-layout,
    .about-page-cta-inner {
        grid-template-columns: 1fr;
    }

    .about-page-overview-media {
        min-height: 520px;
        max-width: 680px;
    }

    .about-page-capabilities-intro {
        max-width: 680px;
    }

    .about-page-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page-industry-card-large {
        grid-row: span 1;
    }

    .about-page-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .about-page-container {
        width: min(100% - 28px, 1180px);
    }

    .about-page-section {
        padding: 58px 0;
    }

    .about-page-hero {
        min-height: 400px;
    }

    .about-page-hero h1 {
        font-size: 43px;
    }

    .about-page-overview-media {
        min-height: 420px;
    }

    .about-page-image-main {
        width: 88%;
        height: 330px;
    }

    .about-page-image-small {
        width: 52%;
        height: 165px;
    }

    .about-page-overview-badge {
        width: 210px;
        padding: 18px 20px;
    }

    .about-page-mini-points,
    .about-page-service-list,
    .about-page-value-grid,
    .about-page-solution-grid,
    .about-page-industry-grid {
        grid-template-columns: 1fr;
    }

    .about-page-value-card-wide {
        grid-column: auto;
    }

    .about-page-solution-card {
        min-height: 330px;
    }

    .about-page-industry-grid {
        grid-auto-rows: 240px;
    }

    .about-page-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .about-page-button {
        width: 100%;
    }
}



/* =========================================================
   DELBERG INDIA - CONTACT PAGE
   Theme matched to the existing Delberg homepage.
   ========================================================= */

.del-contact-heading {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.del-contact-heading h2 {
    color: #0b2b45;
    margin-bottom: 16px;
}

.del-contact-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #616b73;
    line-height: 1.8;
}

.del-contact-card-row {
    margin-top: 30px;
}

.del-contact-info-card {
    height: 100%;
    min-height: 245px;
    padding: 34px 24px 30px;
    background: #f4f6f7;
    border: 1px solid #edf0f1;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.del-contact-info-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: #2b8d3a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.del-contact-info-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(9, 35, 54, 0.10);
}

.del-contact-info-card:hover:before {
    transform: scaleX(1);
}

.del-contact-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dce6df;
    color: #2b8d3a;
    font-size: 25px;
}

.del-contact-info-card h3 {
    color: #0b2b45;
    font-size: 21px;
    margin-bottom: 15px;
}

.del-contact-info-card p {
    color: #626b72;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 4px;
}

.del-contact-info-card a {
    color: #626b72;
}

.del-contact-info-card a:hover {
    color: #2b8d3a;
}

.del-contact-form-section {
    background: #f2f4f5;
}

.del-contact-form-card {
    height: 100%;
    padding: 45px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(10, 39, 61, 0.08);
}

.del-contact-form-title span,
.del-contact-support-head > span,
.del-contact-kicker,
.del-contact-cta-copy > span {
    color: #2b8d3a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.del-contact-form-title h2,
.del-contact-support-head h2,
.del-contact-company-card h2,
.del-contact-cta-copy h2 {
    color: #0b2b45;
}

.del-contact-form-title h2 {
    margin: 8px 0 14px;
}

.del-contact-form-title p {
    color: #697178;
    line-height: 1.8;
    margin-bottom: 28px;
}

.del-contact-form .form-group {
    margin-bottom: 22px;
}

.del-contact-form label {
    display: block;
    font-size: 13px;
    color: #22313c;
    font-weight: 700;
    margin-bottom: 8px;
}

.del-contact-form label span {
    color: #2b8d3a;
}

.del-contact-form .form-control {
    width: 100%;
    height: 50px;
    border: 1px solid #dce1e4;
    background: #f8f9fa;
    border-radius: 0;
    padding: 10px 15px;
    color: #22313c;
    box-shadow: none;
    transition: all 0.25s ease;
}

.del-contact-form textarea.form-control {
    min-height: 155px;
    height: auto;
    resize: vertical;
}

.del-contact-form select.form-control {
    cursor: pointer;
}

.del-contact-form .form-control:focus {
    border-color: #2b8d3a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(43, 141, 58, 0.08);
}

.del-contact-submit {
    min-width: 165px;
}

.del-contact-submit i {
    margin-left: 8px;
}

.del-contact-alert {
    border-radius: 0;
    margin-bottom: 25px;
}

.del-contact-alert ul {
    margin: 8px 0 0 18px;
}

.del-contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.del-contact-support-card {
    height: 100%;
    background: #2b8d3a;
    padding: 45px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.del-contact-support-card:after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 45px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.del-contact-support-head,
.del-contact-support-list,
.del-contact-direct {
    position: relative;
    z-index: 1;
}

.del-contact-support-head > span {
    color: #ffffff;
    opacity: 0.85;
}

.del-contact-support-head h2 {
    color: #ffffff;
    margin: 8px 0 15px;
    font-size: 32px;
}

.del-contact-support-head p {
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    margin-bottom: 28px;
}

.del-contact-support-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
}

.del-contact-support-item i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b8d3a;
    background: #ffffff;
    border-radius: 50%;
    margin-top: 2px;
}

.del-contact-support-item h4 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 17px;
}

.del-contact-support-item p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    line-height: 1.6;
}

.del-contact-direct {
    margin-top: 25px;
    padding: 20px;
    background: #0b2b45;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.del-contact-direct small {
    display: block;
    color: rgba(255,255,255,0.72);
    margin-bottom: 4px;
}

.del-contact-direct > div > a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.del-contact-whatsapp {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #2b8d3a;
    border-radius: 50%;
    font-size: 23px;
}

.del-contact-whatsapp:hover {
    color: #0b2b45;
}

.del-contact-solutions {
    overflow: hidden;
}

.del-solution-box {
    height: 100%;
    min-height: 260px;
    border: 1px solid #e8ecee;
    padding: 35px 28px;
    position: relative;
    background: #ffffff;
    transition: all 0.3s ease;
}

.del-solution-box > span {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 13px;
    font-weight: 800;
    color: #d4dbde;
}

.del-solution-box > i {
    font-size: 34px;
    color: #2b8d3a;
    margin-bottom: 24px;
}

.del-solution-box h3 {
    color: #0b2b45;
    margin-bottom: 12px;
}

.del-solution-box p {
    color: #697178;
    line-height: 1.75;
    margin-bottom: 0;
}

.del-solution-box:hover {
    background: #0b2b45;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10, 39, 61, 0.12);
}

.del-solution-box:hover h3,
.del-solution-box:hover p {
    color: #ffffff;
}

.del-solution-box:hover > span {
    color: rgba(255,255,255,0.25);
}

.del-contact-map-section {
    background: #f2f4f5;
}

.del-contact-map-wrap {
    height: 100%;
    min-height: 500px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 12px 38px rgba(10, 39, 61, 0.08);
}

.del-contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

.del-contact-company-card {
    height: 100%;
    padding: 45px 40px;
    background: #ffffff;
    box-shadow: 0 12px 38px rgba(10, 39, 61, 0.08);
}

.del-contact-company-card h2 {
    margin: 8px 0 15px;
}

.del-contact-company-card > p {
    color: #697178;
    line-height: 1.75;
}

.del-contact-company-card ul {
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.del-contact-company-card li {
    padding: 13px 0;
    border-bottom: 1px solid #e8ecee;
    color: #5e6971;
    line-height: 1.6;
}

.del-contact-company-card li strong {
    color: #0b2b45;
}

.del-contact-cta-section {
    background: #ffffff;
    padding: 40px 0 40px;
}

.del-contact-cta {
    padding: 36px 42px;
    background: #0b2b45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.del-contact-cta:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #2b8d3a;
}

.del-contact-cta-copy,
.del-contact-cta-actions {
    position: relative;
    z-index: 1;
}

.del-contact-cta-copy > span {
    color: #7ed88a;
}

.del-contact-cta-copy h2 {
    color: #ffffff;
    margin: 5px 0 0;
}

.del-contact-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .del-contact-form-card,
    .del-contact-support-card,
    .del-contact-company-card {
        padding: 35px 28px;
    }

    .del-contact-map-wrap,
    .del-contact-map-wrap iframe {
        min-height: 420px;
    }

    .del-contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .del-contact-info-card {
        min-height: auto;
    }

    .del-contact-form-card,
    .del-contact-support-card,
    .del-contact-company-card {
        padding: 28px 20px;
    }

    .del-contact-support-head h2 {
        font-size: 27px;
    }

    .del-contact-direct {
        padding: 16px;
    }

    .del-contact-direct > div > a {
        font-size: 17px;
    }

    .del-contact-map-wrap,
    .del-contact-map-wrap iframe {
        min-height: 340px;
    }

    .del-contact-cta {
        padding: 30px 22px;
    }

    .del-contact-cta-actions {
        width: 100%;
    }

    .del-contact-cta-actions a {
        flex: 1 1 auto;
        text-align: center;
    }
}
.dp-subproduct-btn {
    display: inline-flex;
    /* align-items: center; */
    gap: 8px;
    /* margin-top: 12px; */
    padding: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    /* background-color: #1a1a1a;  */
    /* border-radius: 30px; */
    text-decoration: none;
    transition: all 0.3s ease;
}

.dp-subproduct-btn:hover {
    color: #2b8d3a;
    gap: 12px; 
}

.dp-btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.dp-subproduct-btn:hover .dp-btn-arrow {
    transform: translateX(3px);
}

/* =========================================================
   RELATED SUB PRODUCTS
========================================================= */

.dp-related-products-section {
    padding: 50px 0;
    background: #f7f7f7;
}

.dp-related-products-section .dp-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.dp-related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.dp-related-product-card {
    background: #fff;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    border: 1px solid #e9e9e9;
}

.dp-related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}


/* IMAGE */

.dp-related-product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #eeeeee;
}

.dp-related-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.dp-related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dp-related-product-card:hover .dp-related-product-image img {
    transform: scale(1.06);
}


/* TAG */

.dp-related-product-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(5, 23, 47, 0.94)   ;
    color: #fff;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
}


/* CONTENT */

.dp-related-product-content {
    padding: 28px;
}

.dp-related-small-title {
    color: #2d973f;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.dp-related-product-content h3 {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 14px;
}

.dp-related-product-content h3 a {
    color: #1f1f1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dp-related-product-content h3 a:hover {
    color: #005658;
}

.dp-related-product-content p {
    font-family: "Poppins", sans-serif;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* LINK */

.dp-related-product-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-decoration: none;
}

.dp-related-product-link span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.dp-related-product-link:hover {
    color: #2d973f;
}

.dp-related-product-link:hover span {
    transform: translateX(6px);
}


/* TABLET */

@media (max-width: 991px) {

    .dp-related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .dp-related-products-section {
        padding: 65px 0;
    }

    .dp-related-products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dp-related-product-image {
        height: 250px;
    }

    .dp-related-product-content {
        padding: 22px;
    }

    .dp-related-product-content h3 {
        font-size: 22px;
    }
}