* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* letter-spacing: 0.016rem; */
}

body {
    color: var(--text-color);
    font-family: "DM Sans", sans-serif;
}

:root {
    --primary-color: #F43130;
    --secondary-color: #FFB425;
    --primary-light: #feecec;
    --primary-soft: #f7a3a2;
    --secondary-light: #fff4d9;
    --black: #000000;
    --white: #fff;
    --text-color: #222222;
    --text-muted: rgba(34, 34, 34, 0.72);
    --surface-dark: #222222;
    --surface-light: #F5F5F5;
    --brand-gradient: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --border-color: #D7D7D7;
    --fs-15: 15px;
    --transition: all 0.3s ease-in-out;
    --btn-width: 53px;
    --font-regular: 400;
    --font-500: 500;
    --font-600: 600;
    --font-700: 700;
    --font-800: 800;
    --font-heading: "Sora", sans-serif;
    --spacing: 0.25rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-color);
}

strong {
    color: var(--text-color);
}


p {
    line-height: 1.7;
    font-weight: var(--font-regular);
    color: var(--text-muted);
    margin-bottom: 24px;
}

input {
    width: 100%;
}

button {
    background-color: transparent;
    cursor: pointer;
}

input,
textarea,
textarea:focus,
input:focus,
button {
    border: none;
    outline: none;
    user-select: none;
}

.sec-space {
    margin-top: 70px;
}

.sec-space.position-relative {
    overflow: hidden;
}

.sec-alt {
    position: relative;
    overflow: hidden;
    padding-block: 64px;
    background:
        /* radial-gradient(90% 70% at 100% 0%, rgba(244, 49, 48, 0.07) 0%, transparent 55%),
        radial-gradient(80% 60% at 0% 100%, rgba(255, 180, 37, 0.09) 0%, transparent 50%), */
        linear-gradient(180deg, #faf8f7 0%, var(--surface-light) 48%, #f3f1f0 100%);
}

.sec-prop {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.sec-prop--flame {
    width: min(180px, 36vw);
    left: -20px;
    bottom: 12%;
    opacity: 0.08;
    transform: rotate(-8deg);
    animation: prop-float 7s ease-in-out infinite;
}

.sec-prop--flame-sm {
    width: min(120px, 28vw);
    right: 4%;
    top: 48px;
    opacity: 0.1;
    animation: prop-float 6.5s ease-in-out infinite reverse;
}

.sec-prop--map {
    width: min(720px, 200vw);
    height: auto;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    /* opacity: 0.16; */
    object-fit: contain;
}

.sec-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.sec-shape--blob {
    width: 280px;
    height: 280px;
    right: -80px;
    top: 20%;
    border-radius: 42% 58% 60% 40% / 46% 42% 58% 54%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 180, 37, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(244, 49, 48, 0.12) 0%, transparent 60%);
    animation: prop-morph 12s ease-in-out infinite;
}

.sec-shape--dot-grid {
    width: 160px;
    height: 160px;
    top: 32px;
    right: 4%;
    opacity: 0.35;
    background-image: radial-gradient(circle, rgba(244, 49, 48, 0.35) 1.5px, transparent 1.6px);
    background-size: 14px 14px;
}

.sec-shape--arc {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -140px;
    border: 2px solid rgba(244, 49, 48, 0.1);
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
}

@keyframes prop-float {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-14px) rotate(-4deg);
    }
}

@keyframes prop-morph {

    0%,
    100% {
        border-radius: 42% 58% 60% 40% / 46% 42% 58% 54%;
        transform: translateY(0);
    }

    50% {
        border-radius: 58% 42% 40% 60% / 52% 58% 42% 48%;
        transform: translateY(12px);
    }
}

@media (min-width: 768px) {
    .sec-prop--flame {
        width: 220px;
        left: 2%;
        opacity: 0.09;
    }

    .sec-prop--map {
        width: min(900px, 200vw);
        top: 36px;
        /* opacity: 0.14; */
    }
}

@media (min-width: 992px) {
    .sec-alt {
        padding-block: 80px;
    }

    .experience-section {
        padding-block: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sec-prop--flame,
    .sec-prop--flame-sm,
    .sec-shape--blob {
        animation: none;
    }
}

.services-extinguisher {
    width: 114px;
    height: auto;
    position: absolute;
    left: 80px;
    bottom: -10px;
}

.sep-space {
    display: grid;
    gap: 30px;
}

.btn {
    --btn-bg: var(--primary-color);
    --btn-border: var(--primary-color);
    --btn-color: var(--white);
    --btn-curve: var(--secondary-color);
    --btn-hover-color: var(--text-color);
    --btn-hover-border: var(--secondary-color);
    padding: 10px 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--btn-color);
    font-weight: var(--font-500);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--btn-border);
    background-color: var(--btn-bg);
    background-image: none;
    cursor: pointer;
    transition: color 0.45s ease, border-color 0.45s ease;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--btn-curve);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    width: 320%;
}

.btn:hover {
    color: var(--btn-hover-color);
    border-color: var(--btn-hover-border);
}

.btn :is(span, svg) {
    position: relative;
    z-index: 3;
    transition: color 0.45s ease, stroke 0.45s ease;
}

.btn svg path {
    /* fill: none; */
    stroke: currentColor;
}

.btn .quote-icon path {
    fill: currentColor;
    stroke: none;
}

/* Primary — solid brand red → amber curve */
.btn-primary {
    --btn-bg: var(--primary-color);
    --btn-border: var(--primary-color);
    --btn-color: var(--white);
    --btn-curve: var(--secondary-color);
    --btn-hover-color: var(--text-color);
    --btn-hover-border: var(--secondary-color);
}

/* Secondary — white ghost for dark / hero → white curve */
.btn-secondary {
    --btn-bg: transparent;
    --btn-border: rgba(255, 255, 255, 0.85);
    --btn-color: var(--white);
    --btn-curve: var(--white);
    --btn-hover-color: var(--text-color);
    --btn-hover-border: var(--white);
}

/* White — solid light CTA for dark bands → amber curve */
.btn-white {
    --btn-bg: var(--white);
    --btn-border: var(--white);
    --btn-color: var(--text-color);
    --btn-curve: var(--text-color);
    --btn-hover-color: var(--white);
    --btn-hover-border: var(--text-color);
}

/* Outline — primary border on light surfaces → primary curve */
.btn-outline {
    --btn-bg: transparent;
    --btn-border: var(--primary-color);
    --btn-color: var(--primary-color);
    --btn-curve: var(--primary-color);
    --btn-hover-color: var(--white);
    --btn-hover-border: var(--primary-color);
}

@media (prefers-reduced-motion: reduce) {
    .btn::before {
        transition: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        border-radius: 0;
        transform: none;
        opacity: 0;
    }

    .btn:hover::before {
        opacity: 1;
        width: 100%;
        height: 100%;
    }
}

.dual-btn {
    gap: 20px;
}

.sec-h h2 {
    font-size: clamp(1.75rem, 1.4375rem + 1vw, 2.25rem);
    margin-bottom: 10px;
    line-height: 46px;
    color: var(--text-color);
}

.sec-h .eyebrow {
    margin-bottom: 8px;
}

.sec-h.middle .eyebrow {
    text-align: center;
}

.middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* top header start */
.top-header {
    background-color: var(--surface-dark);
    padding-block: 10px;
    font-size: 15px;
}

.top-header a {
    color: var(--white);
}

.top-header a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.top-header-sep {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.55);
    margin-inline: 14px;
}

@media (max-width: 600px) {
    .top-header {
        font-size: 13px;
    }

    .top-header-social {
        display: none !important;
    }

    .top-header .container,
    .top-header-contact,
    .top-header-contact a {
        gap: 8px !important;
    }

    .top-header svg {
        width: 15px;
        height: 15px;
    }
}

/* top header end */


/* header start */
.scrollto {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.home .header {
    position: sticky;
    background-color: var(--white);
}

.header {
    border-bottom: 1px solid var(--border-color);
    top: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.2s ease-in-out;
    position: sticky;
    background-color: var(--white);
}

/* header scrolled */


.logo img {
    width: auto;
    height: 45px
}

/* nav start*/
nav #menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 26px;
}

nav #menu li a {
    color: var(--text-color);
    /* font-size: var(--fs-15); */
    font-weight: var(--font-500);
}

nav #menu li a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown ul {
    position: absolute;
    display: block;
    visibility: hidden;
    background-color: var(--white);
    box-shadow: 0 0 30px rgb(127 137 161 / .25);
    transition: all 0.3s;
    padding: 14px 8px;
    z-index: 99;
    transform-origin: top;
    transform: scale(0);
}

.dropdown ul li {
    padding: 0 8px 14px;
    min-width: 170px;
    list-style: none;
}

.dropdown ul li:last-of-type {
    padding-bottom: 0;
}

.toggle-slide-btn,
.cancel-btn {
    display: none;
    cursor: pointer;
}

.site-toggle {
    cursor: pointer;
}

.doc-overlay {
    bottom: 0;
    height: 100vh;
    opacity: .5;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 2;
    background: var(--black);
}

/* nav end */

/* menu-search */
.search-toggle {
    width: 40px;
    height: 40px;
    color: var(--text-color);
    cursor: pointer;
}

/* .header-quote-btn {
    padding: 10px 18px;
    white-space: nowrap;
} */

.search-overlay {
    position: fixed;
    z-index: 200;
    padding: 24px;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-overlay-close {
    top: 28px;
    right: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-overlay-close:hover {
    color: var(--primary-color);
}

.search-overlay-form {
    width: min(720px, 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
    padding-bottom: 14px;
}

.search-overlay-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: var(--white);
    font-size: clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
    padding: 0;
    margin: 0;
}

.search-overlay-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-overlay-form button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-overlay-form button:hover {
    color: var(--primary-color);
}

body.search-open {
    overflow: hidden;
}

/* header end */


.fw-regular {
    font-weight: var(--font-regular);
}

.sub-heading {
    background: var(--white);
    color: var(--text-color);
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 46px;
    border: 1px solid var(--border-color);
}

.sub-heading-icon {
    width: 18px;
    height: 22px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.big-heading {
    font-size: 48px;
    text-transform: capitalize;
    line-height: 1.4;
    color: var(--white);
}

.eyebrow {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: var(--font-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
}


/* hero banner start */
.hero-banner,
.hero-banner .swiper {
    position: relative;
}

.hero-banner .hero-content:after {
    content: '';
    position: absolute;
    background: linear-gradient(89.97deg, var(--black) -7.68%, transparent 155.57%);
    height: 100%;
    width: 100%;
    inset: 0;
}

.hero-banner p {
    border-left: 3px solid var(--primary-color);
}

.hero-pagination {
    position: absolute;
    right: 64px;
    bottom: 40px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    width: auto;
    pointer-events: none;
}

.hero-pagination .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
}

.hero-banner .swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.55);
    height: 8px;
    width: 8px;
    display: block;
    border: none;
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
    position: relative;
    margin: 0 !important;
}

.hero-banner .swiper-pagination .swiper-pagination-bullet::after {
    display: none;
}

.hero-banner .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 8px;
    height: 8px;
}

.hero-banner .swiper-pagination .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
}

.hero-pagination-line {
    display: block;
    width: 72px;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.hero-pagination-fraction {
    color: var(--white);
    font-size: 16px;
    font-weight: var(--font-500);
    white-space: nowrap;
}

@media (max-width: 1023px) {
    .hero-pagination {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }

    .hero-pagination-line {
        width: 48px;
    }

    .hero-pagination-fraction {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .hero-pagination {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .hero-pagination-line {
        width: 32px;
    }

    .hero-pagination .swiper-pagination {
        gap: 12px;
    }
}

/* hero banner end */

/* trust bar start */
.trust-bar {
    position: relative;
    padding-block: 26px;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(244, 49, 48, 0.08) 0%, transparent 55%),
        radial-gradient(90% 70% at 100% 100%, rgba(255, 180, 37, 0.1) 0%, transparent 50%),
        var(--white);
    border-bottom: 1px solid var(--border-color);
}

.trust-bar::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background-image: var(--brand-gradient);
}

.trust-bar-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.trust-bar-item {
    flex-direction: column;
    align-items: flex-start;
}

.trust-bar-icon {
    color: var(--primary-color);
    line-height: 0;
    flex-shrink: 0;
}

.trust-bar-icon svg {
    display: block;
}

.trust-bar-item:hover .trust-bar-icon {
    color: var(--secondary-color);
}

.trust-bar-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: var(--fs-15);
    font-weight: var(--font-600);
    /* line-height: 1.3; */
}

.trust-bar-item p {
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 576px) {
    .trust-bar-list {
        gap: 24px 28px;
    }

    .trust-bar-item {
        flex-direction: row;
        gap: 14px;
    }

    .trust-bar-item strong {
        font-size: 18px;
    }

    .trust-bar-item p {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .trust-bar {
        padding-block: 40px;
    }

    .trust-bar-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px 32px;
    }
}

/* trust bar end */

/* partner section start */
.partner-content {
    display: grid;
    grid-template-columns: 20% auto;
    gap: 15px;
    align-items: center;
}

.partner-content .eyebrow {
    margin-bottom: 8px;
}

.partner-content p {
    font-size: 20px;
    font-weight: var(--font-600);
    color: var(--text-color);
}

.partner-sec {
    padding-block: 30px;
    border-block: 1px solid var(--border-color);
}

.partner-content p {
    position: relative;
}

.partner-content p::after {
    content: "";
    border: 1px solid var(--border-color);
    position: absolute;
    right: 0;
    height: 87%;
    top: 7px;
}

.partner-content li img {
    width: 90px;
    height: 100%;
    object-fit: contain;
}

.partner-content li:first-of-type img {
    width: 70px;
}

.partner-content .client-tag {
    display: inline-block;
    white-space: nowrap;
    font-size: 15px;
    font-weight: var(--font-600);
    color: var(--text-color);
    letter-spacing: 0.02em;
}


/* scroll */
.scroller {
    max-width: 100%;
    margin-block: auto;
}

.marquee-list .scroller__inner {
    display: flex;
    gap: 60px;
}

.tag-list li {
    display: flex;
    align-items: center;
}

.scroller[data-animated="true"] {
    overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
    flex-wrap: nowrap;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-30% - 0.5rem));
    }
}

.marquee-list {
    overflow: hidden;
    padding-inline: calc(var(--spacing) * 5);
    /* padding-block: calc(var(--spacing) * 4); */
    font-size: var(--fs-18);
    color: var(--color-white);
}

/* partner section end */


/* category-card-img start */
.category-card-img {
    position: relative;
}

/* .category-card-img img {
    width: 100%;
    height: 100%;
} */

.category-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(125deg,
            transparent 0%,
            transparent calc(50% - var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% - var(--shine)),
            transparent calc(50% - var(--shine) + 4%),
            transparent calc(50% + var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% + var(--shine)),
            transparent calc(50% + var(--shine) + 4%),
            transparent 100%);
}

.category-card:hover .category-card-img::after {
    animation: shine-spread 1.6s ease forwards;
    /* was 0.85s */
}

.service-intro-img {
    border-radius: 12px;
    overflow: hidden;
}

.service-intro-img:hover::after {
    animation: shine-spread 1.6s ease forwards;
}

@property --shine {
    syntax: "<length-percentage>";
    inherits: false;
    initial-value: 0%;
}

@keyframes shine-spread {
    0% {
        --shine: 0%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    75% {
        --shine: 55%;
        opacity: 1;
    }

    100% {
        --shine: 55%;
        opacity: 0;
        /* vanish at the edges */
    }
}

.category-card {
    padding: 20px;
    overflow: hidden !important;
    /* background-color: #ebda8d; */
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 50% auto;
    gap: 20px;
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.11);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card :is(.category-card-h, .category-card-img) {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.category-card .category-card-h {
    border-radius: 12px;
}

.category-card .category-card-img {
    border-radius: 0 12px 12px;
}

.category-card-h a {
    color: var(--text-color);
    font-weight: var(--font-600);
    font-size: 18px;
}

.category-icon-wrap {
    position: absolute;
    z-index: 1;
    background-color: #fff;
    padding: 0 10px 10px 0;
    border-radius: 0 0 32px 0;
}

.category-icon {
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 12px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category-icon-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 20px;
    height: 20px;
    border-radius: 10px 0px 0px 0px;
    box-sizing: border-box;
    box-shadow: -10px 0px 0px 0px #FFFFFF;
}

.category-icon-wrap::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 10px 0px 0px 0px;
    box-sizing: border-box;
    box-shadow: -10px 0px 0px 0px #FFFFFF;
}

.category-card-content {
    background: #f6f6f6;
    height: fit-content;
    padding: 20px;
    border-radius: 12px;
    margin-left: -120px;
    z-index: 1;
    position: relative;
}

.category-card-h {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.category-card-h:hover {
    color: var(--primary-color);
}

.arrow {
    /* width: 32px; */
    /* height: 32px; */
    /* background-color: var(--secondary-color); */
    z-index: 1;
    border-radius: 12px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: var(--transition);
    background: #fff;
    padding: 10px 16px;
    font-size: 15px;
}

.arrow:hover {
    color: var(--text-color);
}

.arrow:hover svg {
    transform: rotate(45deg);
    transition: var(--transition);
}

.arrow::before {
    content: "";
    position: absolute;
    right: 0;
    top: -20px;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 10px 0px;
    box-sizing: border-box;
    box-shadow: 10px 0px 0px 0px #FFFFFF;
}

.arrow::after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 10px 0px;
    box-sizing: border-box;
    box-shadow: 10px 0px 0px 0px #FFFFFF;
}

@media (max-width: 1024px) {
    .category-card {
        display: block;
        padding: 18px;
    }

    .category-card .category-card-img {
        border-radius: 0 12px 0 0;
    }

    .category-card-content {
        padding: 16px 16px 28px 16px;
        border-radius: 0 0 12px 12px;
        margin-left: 0;
    }
}


/* .mate-yellow {
    background-color: #f9e37f;
}

.mate-cyan {
    background-color: #d5f3ed;
}

.mate-purple {
    background-color: #e7dcec;
}

.mate-blue {
    background-color: #daecf8;
}

.mate-brown {
    background-color: #fae8d6;
}

.mate-gray {
    background-color: #ecefef;
}

.mate-green {
    background-color: #d9f6e5;
}

.mate-red {
    background-color: var(--primary-light);
} */

/* category-card-img end */

/* about us start */
.about-us {
    /* background: url("../img/about-us-bg.png") no-repeat; */
    background: url("../img/about-background.png") no-repeat;
    background-size: contain;
    padding-block: 85px;
    display: grid;
    grid-template-columns: auto 37%;
    align-items: center;
    color: var(--white);
    padding-inline: 60px;
    background-position: center;
    gap: 35px;
}

.about-content>.eyebrow {
    margin-bottom: 12px;
}

.about-us .sec-h h2 {
    color: var(--white);
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-regular);
}

.about-img {
    position: relative;
}

.about-img-media {
    overflow: hidden;
    border-radius: 12px;
}

.about-img:hover .category-card-img::after {
    animation: shine-spread 1.6s ease forwards;
}

.about-reviews {
    position: absolute;
    left: 0;
    bottom: 50px;
    margin: 0;
    writing-mode: sideways-lr;
    /* transform: translateY(-50%) rotate(180deg); */
    /* font-family: var(--font-heading); */
    font-size: 13px;
    font-weight: var(--font-700);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-color);
    white-space: nowrap;
    /* line-height: 1; */
}

.about-experience {
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--secondary-color);
    color: var(--white);
    /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); */
    animation: about-float 5s ease-in-out infinite;
}

.about-experience span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--font-700);
    line-height: 1.25;
    color: var(--white);
}

.about-experience svg {
    flex-shrink: 0;
    color: var(--white);
}

@keyframes about-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* .about-img::before {
    content: "";
    position: absolute;
    background: url("../img/circle-layer.webp") no-repeat center;
    background-size: contain;
    width: 140px;
    height: 140px;
    bottom: 0;
    left: 17%;
    transform: translate(-50%, 50%);
    animation: spin 17s linear infinite;
} */

.about-points {
    /* display: grid;
    grid-template-columns: auto auto;
    gap: 4px; */
    margin-bottom: 28px;
    border-block: 1px solid var(--border-color);
    padding-block: 20px;
}

.about-points .point-box {
    align-items: start;
}

/* .about-points .point-box:last-of-type::before {
    content: "";
    height: 100%;
    width: 1px;
    background-color: var(--border-color);
    left: -18px;
    position: absolute;
} */

.double-line-h {
    position: relative;
    margin-bottom: 10px;
}

.double-line-h::before {
    content: "";
    border-block: 1px solid var(--primary-color);
    height: 106%;
    width: 39px;
    top: -1px;
    position: absolute;
}

.point-box .point-img {
    background-color: var(--primary-light);
    padding: 13px;
    border-radius: 53px;
    border: 1px solid var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-box .point-img img,
.point-box .point-img svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    display: block;
}

.point-box {
    gap: 12px;
}

.point-h {
    font-size: 18px;
    font-weight: var(--font-700);
    color: var(--text-color);
    margin-bottom: 4px;
}

.point-content p {
    color: var(--text-color);
    font-size: 15px;
}

/* about us end */



/* product section start */
.product-h {
    padding-right: clamp(0rem, -3.75rem + 12vw, 3rem);
}

.products-swiper {
    position: relative;
    padding-bottom: 40px;
}

.products-swiper .swiper-slide {
    height: auto;
}

.products-swiper .swiper-wrapper {
    align-items: stretch;
    padding-bottom: 40px;
}

.products-swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.products-swiper .swiper-pagination-bullet {
    transition: var(--transition);
    background: var(--border-color);
    opacity: 1;
}

.products-swiper .swiper-pagination-bullet-active {
    padding-inline: 13px;
    border-radius: 10px;
    background: var(--primary-color);
}

.product-card {
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: 10px;
    transition: var(--transition);
    background-color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0px 0px 7px 1px #e9e9e9;
}

.product-card.featured {
    background-image: var(--brand-gradient);
    border-color: transparent;
    border-bottom-color: transparent;
}

.product-card.featured .product-title,
.product-card.featured .product-content p {
    color: var(--white);
}

.product-card.featured .product-title:hover {
    color: var(--white);
    opacity: 0.9;
}

.product-card.featured .btn-primary {
    --btn-bg: var(--white);
    --btn-border: var(--white);
    --btn-color: var(--text-color);
    --btn-curve: var(--secondary-color);
    --btn-hover-color: var(--text-color);
    --btn-hover-border: var(--secondary-color);
}

.product-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
}

.product-title {
    font-size: 20px;
    font-weight: var(--font-600);
    color: var(--text-color);
}

.product-title:hover {
    color: var(--primary-color);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-content .btn {
    margin-top: auto;
}

.product-content p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

/* product section end */

/* industries served section start */
.industries-served-section {
    position: relative;
}

.industries-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--white);
    padding: 22px;
    gap: 20px;
    color: var(--text-color);
}

.industries-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.industries-card-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    object-fit: contain;
}

.industries-card-arrow-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 10px;
    border-radius: 10px 0 0 0;
}

.industries-card-arrow {
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 12px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.industries-card-arrow-wrap::before {
    content: "";
    position: absolute;
    right: 0;
    top: -20px;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 10px 0px;
    box-sizing: border-box;
    box-shadow: 10px 0px 0px 0px #FFFFFF;
}

.industries-card-arrow-wrap::after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-radius: 0px 0px 10px 0px;
    box-sizing: border-box;
    box-shadow: 10px 0px 0px 0px #FFFFFF;
}

.industries-card:hover .industries-card-arrow {
    background-color: var(--primary-color);
    color: #fff;
}

.industries-card-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    transition: background-color 0.3s ease;
}

.industries-card-body {
    flex: 1;
}

.industries-card:hover .industries-card-title {
    color: var(--primary-color);
}

.industries-card-image {
    border-radius: 12px 12px 0 12px;
    overflow: hidden;
    position: relative;
}

/* Shine effect for industries image */
.industries-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(125deg,
            transparent 0%,
            transparent calc(50% - var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% - var(--shine)),
            transparent calc(50% - var(--shine) + 4%),
            transparent calc(50% + var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% + var(--shine)),
            transparent calc(50% + var(--shine) + 4%),
            transparent 100%);
}

.industries-card:hover .industries-card-image::after {
    animation: shine-spread 1.6s ease forwards;
}

@property --shine {
    syntax: "<length-percentage>";
    inherits: false;
    initial-value: 0%;
}

@keyframes shine-spread {
    0% {
        --shine: 0%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    75% {
        --shine: 55%;
        opacity: 1;
    }

    100% {
        --shine: 55%;
        opacity: 0;
    }
}

.industries-card-image img {}

@media (max-width: 767px) {
    .industries-card {
        border-radius: 20px;
        padding: 18px;
    }

    .industries-card-image img {
        min-height: 260px;
    }
}

/* industries served section end */

/* testimonial start */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--white);
    transition: border-color 0.45s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--brand-gradient);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.45s ease;
    z-index: 0;
    border-radius: inherit;
}

.testimonial-card:hover {
    border-color: transparent;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card>* {
    position: relative;
    z-index: 1;
}

.testimonial-card :is(p, .client-name, .client-info span),
.testimonial-card .review,
.testimonial-card .client-quote-icon {
    transition: color 0.35s ease;
}

.testimonial-card:hover :is(p, .client-name, .client-info span) {
    color: var(--white);
}

.testimonial-card:hover .review {
    color: var(--white);
}

.testimonial-card:hover .client-quote-icon path {
    fill: var(--white);
}

.review {
    color: #F6911E;
    display: flex;
    gap: 4px;
}

.review svg path:not([fill="gray"]) {
    fill: currentColor;
}

.client-quote-icon path {
    fill: var(--primary-color);
}

.client-name {
    font-weight: var(--font-600);
    color: var(--text-color);
}

.client-info span {
    color: var(--text-muted);
    font-size: 14px;
}

.client-profile {
    gap: 10px;
}

.client-details {
    justify-content: space-between;
    margin-top: auto;
}

.client-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.mySwiper {
    position: relative;
    padding-bottom: 40px;
}

.mySwiper .swiper-slide {
    height: auto;
}

.testimonials .mySwiper .swiper-wrapper {
    align-items: stretch;
}

.mySwiper .swiper-wrapper {
    padding-bottom: 50px;
}

.mySwiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.mySwiper .swiper-pagination-bullet {
    transition: var(--transition);
    background: var(--border-color);
    opacity: 1;
}

.mySwiper .swiper-pagination-bullet-active {
    padding-inline: 13px;
    border-radius: 10px;
    background: var(--primary-color);
}

.inner-sec {
    padding-block: 60px;
}

/* testimonial end */

/* contact section start */
.contact-section {
    position: relative;
    padding: 64px 0;
    background-image:
        linear-gradient(90deg, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.72) 48%, rgba(15, 15, 15, 0.55) 100%),
        url("./../img/fire/parallex.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: visible;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .col-lg-7 {
    color: var(--white);
    padding-right: 12px;
}

.contact-section .col-lg-7 .eyebrow,
.contact-section .col-xl-7 .eyebrow {
    color: var(--secondary-color);
}

.contact-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-meta-item {
    position: relative;
    padding-inline: 20px;
}

.contact-meta-item:first-child {
    padding-left: 0;
}

.contact-meta-item:last-child {
    padding-right: 0;
}

.contact-meta-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.contact-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background-color: rgb(255 255 255 / 9%);
    color: var(--white);
}

.contact-meta-icon svg {
    width: 28px;
    height: 28px;
}

.contact-meta-item .h6 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-meta-item p,
.contact-meta-item a {
    color: rgba(255, 255, 255, 0.8);
    word-break: break-word;
}

.contact-meta-item a:hover {
    color: var(--secondary-color);
}

.contact-content {
    position: relative;
    padding: 28px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.contact-field label {
    font-size: 14px;
    font-weight: var(--font-600);
    color: var(--text-color);
}

.contact-field .important {
    color: var(--primary-color);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    width: 100%;
    background-color: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text-color);
    resize: vertical;
}

.contact-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2236%22%20height%3D%2236%22%20viewBox%3D%220%200%201612.8%201843.2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M725.04%201233.36c45%2045%20118.08%2045%20163.08%200l576-576c45-45%2045-118.08%200-163.08s-118.08-45-163.08%200L806.4%20988.92%20311.76%20494.64c-45-45-118.08-45-163.08%200s-45%20118.08%200%20163.08l576%20576z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.contact-field :is(input, textarea, select):focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: none;
}

.contact-form .btn {
    padding-block: 12px;
}


/* contact section end */

/* faq section start */
/* .faq-section .sec-h p {
    max-width: 560px;
} */

.wp-block-create-block-bwe-addons-faq.accordion {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wp-block-create-block-bwe-addons-details {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--white);
    overflow: hidden;
}

.wp-block-create-block-bwe-addons-details details {
    margin: 0;
}

.wp-block-create-block-bwe-addons-details summary {
    position: relative;
    display: block;
    padding: 18px 52px 18px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: var(--font-600);
    line-height: 1.4;
    color: var(--text-color);
    transition: var(--transition);
}

.wp-block-create-block-bwe-addons-details summary::-webkit-details-marker {
    display: none;
}

.wp-block-create-block-bwe-addons-details summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.3s ease;
}

.wp-block-create-block-bwe-addons-details details[open] summary::after {
    transform: translateY(-35%) rotate(225deg);
}

.wp-block-create-block-bwe-addons-details .content {
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: var(--fs-15);
    line-height: 1.6;
}

.wp-block-create-block-bwe-addons-details .content p {
    margin-bottom: 0;
}

/* faq section end */

/* blog start */
.img-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: var(--surface-light);
}

.img-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(125deg,
            transparent 0%,
            transparent calc(50% - var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% - var(--shine)),
            transparent calc(50% - var(--shine) + 4%),
            transparent calc(50% + var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% + var(--shine)),
            transparent calc(50% + var(--shine) + 4%),
            transparent 100%);
}

.blog-card:hover .img-placeholder::after {
    animation: shine-spread 1.6s ease forwards;
}

.p-date {
    color: var(--text-color);
    font-size: var(--fs-15);
    font-weight: var(--font-500);
}

.category:not(body.category) {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: var(--font-500);
    line-height: 1.4;
    transition: var(--transition);
}

.category:not(body.category):hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-title:hover {
    color: var(--primary-color);
}

.card-ath {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #717171;
    font-weight: var(--font-regular);
    width: fit-content;
    transition: var(--transition);
}

.card-ath:hover {
    color: var(--primary-color);
}

.card-ath svg {
    flex-shrink: 0;
}

/* blog end */


/* footer start */
.footer-cta {
    background-image: var(--brand-gradient);
    background-color: var(--primary-color);
    padding: 40px 0;
    position: relative;
}

.footer-cta::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    aspect-ratio: 180 / 240;
    opacity: 0.1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 70' fill='%23fff'%3E%3Cpath d='M49.67 45.21c0 11.61-7.96 21.36-18.73 24.08 1.76-1.63 3.8-4.38 5.05-8.9 1.27-4.62.22-9.97-3.4-13.32.12 2.19-1.1 4.32-2.95 5.64.16-2.18-.31-4.36-1.36-6.28-1.83-3.31-5.4-5.71-9.32-6.25 5.46 5.67-5.8 10.99-5.8 18.99 0 5.3 2.56 8.3 5.34 10.06C7.86 66.43 0 56.74 0 45.21c0-4.09.86-8.07 2.35-11.19 1.86-3.91 4.37-7.48 7.43-10.56 9.48-9.51 13.49-20.56 5.81-23.36 4.74-.56 9.71 1.44 12.76 5.13 3.04 3.69 4.05 8.94 2.6 13.5-.7 2.2-1.94 4.27-2.05 6.58-.11 2.3 1.6 4.95 3.89 4.65 1.72-.22 2.84-1.98 3.25-3.67.41-1.69.38-3.49 1.03-5.1.65-1.61 2.36-3.04 4.02-2.52-1.86.7-2.24 3.32-1.38 5.12.86 1.8 2.52 3.04 3.87 4.51 2.94 3.19 6.11 8.53 6.11 16.92z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

/* .footer-cta::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
} */

.footer-cta .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
    background-image: url("../img/fire/footer-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.92) 100%),
        linear-gradient(90deg, rgba(8, 8, 8, 0.65) 0%, rgba(8, 8, 8, 0.3) 45%, rgba(8, 8, 8, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

.footer-main :is(p, a, span) {
    color: rgba(255, 255, 255, 0.7);
    word-break: break-word;
}

.footer-social {
    list-style: none;
    padding: 0;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-about .logo img {
    height: 55px;
}

.footer-heading {
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-600);
    margin-bottom: 24px;
    padding-bottom: 12px;
    display: inline-block;
    position: relative;
    border-bottom: none;
}

.footer-heading::before,
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
}

.footer-heading::before {
    left: 0;
    width: 16px;
    background-color: var(--white);
}

.footer-heading::after {
    left: 22px;
    right: 0;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

.footer :is(.footer-links, .footer-contact) a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact svg {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    padding: 8px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
}

.footer-main .container {
    position: relative;
    z-index: 1;
}

.footer-bar {
    background-color: #1a1a1a;
    padding: 16px 0;
}

.footer-bar span {
    font-weight: var(--font-500);
}

/* footer end */

/* sidebar start */
.sidebar-info-contents {
    position: absolute;
    right: 0;
    width: 400px;
    background: #ffffff;
    bottom: 0;
    top: 0;
    height: 100vh;
    padding: 20px 35px;
    z-index: 2;
    transform: translateX(363px);
    transition: var(--transition);
}

.sidebar-textwidget {
    width: 100%;
    background: #00000059;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100vh;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.side-show {
    visibility: visible;
    opacity: 1;
}

.side-show .sidebar-info-contents {
    transform: translateX(0px);
}


.cross-icon {
    text-align: end;
    margin-bottom: 30px;
    cursor: pointer;
}


.sidebar-info-contents .logo {
    margin-bottom: 30px;
    display: inline-block;
}

.sidebar-title {
    font-size: 20px;
    font-weight: var(--font-600);
    margin-bottom: 16px;
}

.sidebar-info-contents p {
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.flip:hover img {
    transform: rotateY(360deg);
    transition: transform .8s .1s;
}

/* rotate animation start */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* rotate animation end */

/* principal page start */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.brand-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 28px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    box-shadow: 0px 0px 5px 0px #adadad38;
}

.brand-box:hover {
    border-color: #d9d9d9;
    transform: translateY(-10px);
}

.brand-box img {
    width: auto;
    height: auto;
}

/* principal page end */

/* dic brand page start */
.brand-img {
    text-align: center;
}

.brand-img img {
    /* height: 130px; */
    width: auto;
}

.brand-page {
    display: grid;
    grid-template-columns: 25% auto;
    gap: 30px;
}

.brand-card {
    padding: 20px;
    border: 1px solid var(--primary-light);
    border-radius: 10px;
    background: var(--primary-light);
    margin-bottom: 20px;
}

.brand-card :last-of-type {
    margin-bottom: 16px !important;
}

/* dic brand page end */

/* table of content start */
.toc {
    border: 1px solid var(--primary-color);
    padding: 16px;
    position: relative;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.head-th {
    font-size: 20px;
    font-weight: var(--font-700);
    padding-bottom: 15px;
    border-bottom: 1px solid #cbcbcb;
    margin-bottom: 20px;
}


.toc:before {
    transform: skewY(-48deg);
    content: "";
    position: absolute;
    height: 100%;
    width: 20px;
    top: 10px;
    left: -20px;
    background-color: var(--primary-color);
}

.toc ul li a {
    color: var(--text-color);
}

.toc ul li a:hover {
    color: var(--primary-color);
}

.toc ul>ul {
    margin-bottom: 0;
}

.readMoreContainer {
    margin-bottom: 30px;
}

.readMoreContainer .brand-card {
    display: none;
    /* Hidden by default */
}

.readMoreContainer :is(.brand-card:first-child, .brand-card:nth-child(-n+2)) {
    display: block;
    /* Show the first one */
}

.readMoreContainer.show-all .brand-card {
    display: block;
    /* Show all when expanded */
}

.toggle-button {
    cursor: pointer;
    color: var(--white);
    background-image: var(--brand-gradient);
    background-color: var(--primary-color);
    border: none;
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
}

/* table of content end */


@media (min-width: 1025px) {

    .dropdown ul {
        left: -15px;
        top: 50px;
        white-space: nowrap;
    }

    .dropdown:hover>ul {
        transform: scaleY(1);
        visibility: visible;
        opacity: 1;
    }
}


@media (max-width: 1024px) {

    .header nav {
        background: var(--white);
        height: 100vh;
        left: 0;
        position: fixed;
        top: 0;
        transform: translateX(-101%);
        transition: all .2s;
        width: 300px;
        z-index: 10;
    }

    .header nav #menu {
        display: block;
        padding: 50px 30px 30px;
    }


    .left-header {
        display: flex;
    }

    .toggle-slide-btn {
        display: block;
    }

    .header nav ul li {
        margin-bottom: 10px;
        padding: 10px 0 0;
    }

    .cancel-btn {
        position: fixed;
        right: 9%;
        top: 20px;
        z-index: 1;
    }

    .site-toggle {
        display: none;
    }

    .show-ul {
        transform: translate(0%) !important;
    }

    .header ul li.showMenu>ul {
        display: block !important;
        margin-top: 15px;
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
        position: relative;
    }

    .header ul .dropdown ul {
        visibility: hidden;
        margin: 0;
        z-index: 99;
        transform-origin: top;
        transform: scale(0);
        padding: 10px;
    }
}


@media (max-width: 768px) {
    .services-extinguisher {
        right: 10px;
        left: auto;
    }

    .contact-section .col-lg-7 {
        padding-right: 0;
    }

    .contact-content {
        padding: 24px;
        margin: 0;
    }

    .footer-cta {
        padding: 30px 0;
        text-align: center;
    }

    .footer-cta .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-main {
        padding: 50px 0;
    }

    .header-quote-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        gap: 0;
        border-radius: 50%;
        justify-content: center;
        z-index: 1;
    }

    .header-quote-btn .quote-label {
        display: none;
    }

    .header-quote-btn .quote-icon {
        display: block;
    }

    .search-overlay-close {
        top: 20px;
        right: 20px;
    }

    .search-overlay-form {
        padding-bottom: 10px;
    }

    .search-overlay-form input {
        font-size: 1.15rem;
    }

    .big-heading {
        font-size: 32px;
    }

    .brand-page {
        grid-template-columns: auto;
    }

    .toc {
        position: relative;
        top: 0;
    }

    .about-us {
        background-color: var(--surface-dark);
        grid-template-columns: auto;
        padding: 40px;
        border-radius: 10px;
    }

    /* .about-img::before {
        left: 26%;
    } */

    .about-content {
        order: 1;
    }

    .about-experience {
        right: 0;
        left: auto;
    }

    .about-experience span {
        font-size: 15px;
    }

    .about-experience svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 600px) {
    .services-extinguisher {
        right: 10px;
        bottom: -50px;
        left: auto;
    }

    .contact-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .contact-meta {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 0;
    }

    .contact-meta-item {
        padding-inline: 0;
    }

    .contact-meta-item:not(:last-child)::after {
        display: none;
    }

    .contact-meta-item:not(:last-child) {
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .contact-content {
        padding: 20px;
    }

    .header-right {
        gap: 12px;
    }

    .about-us {
        padding: 20px;
    }

    .about-points {
        grid-template-columns: auto;
    }

    .about-points .point-box:last-of-type::before {
        display: none;
    }

    /* .about-img::before {
        left: 34%;
    } */

    .about-reviews {
        font-size: 12px;
    }
}

.yoast-breadcrumbs a {
    color: var(--white);
    font-weight: 500;
}

.yoast-breadcrumbs a:hover {
    color: var(--primary-color);
}

/* page header */
.page-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 72px 0;
    background-color: var(--surface-dark);
    background-image: url("./../img/fire/page-banner-bg.jpg");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-header .yoast-breadcrumbs,
.page-header .yoast-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
}

.page-header .breadcrumb_last {
    color: var(--white);
}

.page-header .eyebrow {
    color: var(--secondary-color);
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .page-header {
        padding: 56px 0;
        background-position: center;
    }

    .page-header::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 100%);
    }
}

/* contact page */
.contact-info-item {
    padding-bottom: 40px;
    color: inherit;
}

.contact-info-item:last-child {
    padding-bottom: 0;
}

.contact-info-item::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 48px;
    bottom: 4px;
    width: 2px;
    background-color: var(--border-color);
}

.contact-info-item:last-child::after {
    display: none;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-info-item:hover .contact-info-value {
    color: var(--primary-color);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background-color: var(--surface-light);
    color: var(--primary-color);
}

.contact-info-label {
    font-size: 13px;
    font-weight: var(--font-700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.contact-info-value {
    font-size: 16px;
    font-weight: var(--font-600);
    color: var(--text-color);
    word-break: break-word;
}

.contact-page-form {
    height: 100%;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--white);
}

.contact-map-section {
    margin-top: 70px;
    line-height: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 767px) {
    .contact-page-form {
        padding: 24px 20px;
    }

    .contact-map-section iframe {
        height: 320px;
    }
}

/* include cards */
.include-card {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.include-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.include-card:hover {
    border-color: var(--primary-soft);
    box-shadow: 0 12px 28px rgba(34, 34, 34, 0.06);
    transform: translateY(-4px);
}

.include-card:hover::before {
    transform: scaleX(1);
}

.include-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.include-card:hover .include-card-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.include-card p {
    font-size: var(--fs-15);
}

/* inspection warning signs section */
.inspection-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.inspection-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.inspection-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(125deg,
            transparent 0%,
            transparent calc(50% - var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% - var(--shine)),
            transparent calc(50% - var(--shine) + 4%),
            transparent calc(50% + var(--shine) - 4%),
            rgba(255, 255, 255, 0.45) calc(50% + var(--shine)),
            transparent calc(50% + var(--shine) + 4%),
            transparent 100%);
}

.inspection-media:hover::after {
    animation: shine-spread 1.6s ease forwards;
}

.inspection-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: var(--white);
    border-radius: 12px;
    z-index: 2;
}

.inspection-badge-count {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: var(--font-700);
    line-height: 1;
    color: var(--primary-color);
}

.inspection-badge-text {
    font-size: 13px;
    font-weight: var(--font-600);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-color);
}

.warning-signs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.warning-signs li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 12px 12px;
    background-color: var(--surface-light);
    border-radius: 999px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: var(--font-600);
}

.warning-signs li::before {
    content: "";
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-gradient);
}

.warning-signs li:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.warning-signs li:hover::before {
    background: var(--white);
}

@media (max-width: 991px) {
    .inspection-media img {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .warning-signs li {
        width: 100%;
        border-radius: 12px;
    }

    .inspection-badge {
        left: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }

    .inspection-badge-count {
        font-size: 28px;
    }
}

/* page header meta */
.page-header-meta {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-15);
    font-weight: var(--font-500);
}

.page-header-meta a {
    color: inherit;
}

.page-header-meta a:hover {
    color: var(--secondary-color);
}

.page-header-meta svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

/* blog single */
.blog-sidebar-cta {
    position: relative;
    overflow: hidden;
    padding: 28px 24px;
    border-radius: 20px;
    background-color: #0a0a0a;
    background-image:
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.18) 0%,
            rgba(10, 10, 10, 0.48) 28%,
            rgba(10, 10, 10, 0.88) 58%,
            #0a0a0a 78%),
        url("./../img/fire/cta-sprinkler-pipes.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-sidebar-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--primary-color);
}

.blog-sidebar-cta-title {
    font-size: 22px;
    text-transform: none;
}

.blog-sidebar-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-cta-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: var(--fs-15);
    font-weight: var(--font-500);
}

.blog-sidebar-cta-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.blog-sidebar-cta-list-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.blog-sidebar-cta .btn {
    font-size: 14px;
    padding: 10px 18px;
}

.blog-latest-heading {
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 12px;
}

.blog-latest-heading::before,
.blog-latest-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
}

.blog-latest-heading::before {
    left: 0;
    width: 16px;
    background-color: var(--text-color);
}

.blog-latest-heading::after {
    left: 22px;
    right: 0;
    background-color: var(--primary-color);
}

.blog-latest .blog-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.blog-latest .blog-card:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.blog-latest .blog-title {
    display: block;
    font-family: var(--font-heading);
    font-weight: var(--font-600);
    color: var(--text-color);
}

.blog-latest .p-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

/* blog post content — WordPress HTML, no custom classes on children */
body.wp-singular {
    --heading-1: clamp(1.75rem, 3.8vw, 2.625rem);
    --heading-2: clamp(1.625rem, 2.5vw, 2rem);
    --heading-3: clamp(1.435rem, 2.5vw, 1.75rem);
    --heading-4: clamp(1.341rem, 2.5vw, 1.5rem);
    --heading-5: 1.25rem;
    --heading-6: 1rem;
}

body.wp-singular .page-header h1 {
    font-size: var(--heading-1);
}

.blog-content {
    color: var(--text-color);
    overflow-x: hidden;
}

.blog-content>*:last-child {
    margin-bottom: 0;
}

.blog-content [class*="wp-block"]:not(.wp-block-create-block-bwe-addons-details) {
    margin-bottom: 24px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-bottom: 16px;
}

.blog-content h1 {
    font-size: var(--heading-1);
}

.blog-content h2 {
    font-size: var(--heading-2);
}

.blog-content h3 {
    font-size: var(--heading-3);
}

.blog-content h4 {
    font-size: var(--heading-4);
    font-weight: var(--font-600);
}

.blog-content h5 {
    font-size: var(--heading-5);
    font-weight: var(--font-600);
}

.blog-content h6 {
    font-size: var(--heading-6);
    font-weight: var(--font-600);
}

.blog-content a:not(.btn) {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.blog-content a:not(.btn):hover {
    color: var(--secondary-color);
}

.blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.blog-content figure {
    margin: 0 0 24px;
}

/* 
.blog-content figure img {
    border-radius: 16px;
} */

.blog-content :where(.wp-block-image figcaption),
.blog-content figcaption {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

.blog-content figure:has(table) {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    /* border-radius: 12px; */
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-15);
}

.blog-content th,
.blog-content td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border-color);
}

.blog-content thead th {
    background-color: var(--surface-dark);
    color: var(--white);
    font-weight: var(--font-600);
    border-bottom: 0;
}

.blog-content tbody tr:nth-child(even) {
    background-color: var(--surface-light);
}

.blog-content tbody tr:last-child td {
    border-bottom: 0;
}

.blog-content :is(ol, ul) {
    padding-left: 24px;
    margin-bottom: 24px;
}

.blog-content li {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.blog-content li:last-child {
    margin-bottom: 0;
}

.blog-content ul {
    list-style: none;
    padding-left: 20px;
}

.blog-content ul li {
    position: relative;
    padding-left: 12px;
}

.blog-content ul li::before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    left: -16px;
    top: 3px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 12.5l3.5 3.5 7.5-7.5' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-content blockquote {
    position: relative;
    margin: 0 0 24px;
    padding: 24px;
    border: none;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 16px 16px 0;
    background:
        linear-gradient(135deg, rgba(244, 49, 48, 0.06) 0%, rgba(255, 180, 37, 0.08) 100%);
}

.blog-content blockquote {
    color: var(--text-color);
}

.blog-content blockquote>*:last-child {
    margin-bottom: 0;
}

.blog-content address {
    font-style: normal;
}

@media (max-width: 767px) {
    .blog-content blockquote {
        padding: 20px;
    }

    .blog-content blockquote p {
        font-size: 16px;
    }

    .blog-sidebar-cta {
        padding: 24px 20px;
    }

    .blog-sidebar-cta-title {
        font-size: 20px;
    }
}

/* about page — journey timeline */
.about-timeline-row {
    --bs-gutter-x: 0;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 7px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about-timeline-item {
    padding: 0 0 36px 28px;
}

.about-timeline-row> :last-child .about-timeline-item {
    padding-bottom: 0;
}

.about-timeline-item::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary-color);
    z-index: 1;
    box-shadow: 0 0 0 6px var(--surface-light);
}

.about-timeline-year {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: var(--font-700);
    color: var(--primary-color);
    margin-bottom: 12px;
}

.about-timeline-text {
    color: var(--text-muted);
}

/* about page — experience section */
.experience-section {
    padding-block: 64px;
    background:
        linear-gradient(180deg, #faf8f7 0%, var(--surface-light) 50%, #f3f1f0 100%);
}

.experience-visual {
    min-height: 300px;
    overflow: hidden;
    border-radius: 16px;
}

.experience-visual img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.experience-visual:hover img {
    transform: scale(1.04);
}

.experience-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.experience-visual-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.experience-visual-year {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: var(--font-700);
    color: var(--secondary-color);
}

.experience-metrics {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.experience-metric {
    padding: 24px 0;
}

.experience-metric:not(:first-child) {
    border-top: 1px solid rgba(34, 34, 34, 0.12);
}

@media (max-width: 767px) {
    .experience-metric:first-of-type {
        padding-top: 0;
    }

    .experience-metric:last-of-type {
        padding-bottom: 0;
    }
}

.experience-metric-value {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: var(--font-700);
    color: var(--text-color);
    margin-bottom: 8px;
}

.experience-metric-value--text {
    font-size: clamp(16px, 1.5vw, 20px);
}

.experience-metric-label {
    font-size: 14px;
    font-weight: var(--font-600);
    text-transform: uppercase;
    color: var(--text-muted);
}

/* about page — NFPA callout */
.about-nfpa-callout {
    min-height: 200px;
    padding: 36px 28px;
    border-radius: 16px;
    background: var(--surface-dark);
    color: var(--white);
    overflow: hidden;
}

.about-nfpa-callout::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 49, 48, 0.35) 0%, transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(255, 180, 37, 0.22) 0%, transparent 50%);
    pointer-events: none;
}

.about-nfpa-value {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 64px);
    font-weight: var(--font-700);
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.about-nfpa-label {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: var(--font-500);
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 576px) {

    .experience-visual,
    .experience-visual img {
        min-height: 360px;
    }

    .experience-visual-badge {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }
}

@media (min-width: 768px) {
    .experience-metrics {
        border-top: 1px solid rgba(34, 34, 34, 0.12);
    }

    .experience-metric {
        padding: 28px 20px 20px;
        border-top: 0;
    }

    .experience-metric:not(:first-child) {
        border-top: 0;
    }

    .experience-metric:nth-child(odd) {
        border-right: 1px solid rgba(34, 34, 34, 0.12);
        padding-left: 0;
    }

    .experience-metric:nth-child(even) {
        padding-right: 0;
    }

    .experience-metric:nth-child(n + 3) {
        border-top: 1px solid rgba(34, 34, 34, 0.12);
    }
}

@media (min-width: 992px) {
    .about-timeline-row {
        --bs-gutter-x: 1.5rem;
    }

    .about-timeline::before {
        top: 18px;
        bottom: auto;
        left: 8%;
        right: 8%;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    }

    .about-timeline-item {
        text-align: center;
        padding: 48px 0 0;
    }

    .about-timeline-row> :last-child .about-timeline-item {
        padding-bottom: 0;
    }

    .about-timeline-item::before {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .experience-visual,
    .experience-visual img {
        min-height: 480px;
    }

    .experience-copy {
        padding-left: 12px;
    }

    .experience-metric {
        padding: 24px 20px 8px;
        border-top: 0;
        border-right: 1px solid rgba(34, 34, 34, 0.12);
    }

    .experience-metric:not(:first-child),
    .experience-metric:nth-child(n + 3) {
        border-top: 0;
    }

    .experience-metric:nth-child(odd),
    .experience-metric:nth-child(even) {
        padding-left: 20px;
        padding-right: 20px;
        border-right: 1px solid rgba(34, 34, 34, 0.12);
    }

    .experience-metric:first-child {
        padding-left: 0;
    }

    .experience-metric:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .about-nfpa-callout {
        min-height: 260px;
        padding: 48px 36px;
    }
}