/*
Theme Name: SignMark BD
Theme URI: https://signmarkbd.com/
Author: SignMark BD
Description: Professional signage company WordPress theme.
Version: 2.0
*/

/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {

    --sm-navy: #0b1f3a;
    --sm-navy-dark: #06152b;
    --sm-navy-light: #153861;

    --sm-gold: #e7a51a;
    --sm-gold-light: #ffc857;

    --sm-white: #ffffff;
    --sm-bg: #f6f8fb;
    --sm-bg-dark: #eef2f7;

    --sm-text: #122033;
    --sm-muted: #64748b;
    --sm-border: #e2e8f0;

    --sm-radius: 18px;
    --sm-radius-sm: 12px;

    --sm-container: 1240px;

    --sm-shadow:
        0 20px 50px rgba(11, 31, 58, 0.08);

    --sm-transition:
        all 0.35s cubic-bezier(0.2, 0.65, 0.3, 1);
}


/* =========================================================
   RESET
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    font-family: "Inter", sans-serif;

    color: var(--sm-text);
    background: var(--sm-white);

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.sm-search-open,
body.sm-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.sm-container {
    width: min(
        calc(100% - 40px),
        var(--sm-container)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.sm-site-header {
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid transparent;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition: var(--sm-transition);
}

.sm-site-header.is-scrolled {
    border-color: var(--sm-border);

    box-shadow:
        0 10px 30px rgba(11, 31, 58, 0.06);
}

.sm-navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.sm-site-brand {
    flex-shrink: 0;
}

.sm-site-brand a {
    display: inline-flex;
    align-items: center;
}

.sm-logo-image {
    width: auto;
    max-width: 190px;
    height: 52px;
    object-fit: contain;
}

.sm-text-logo {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--sm-navy);
}

.sm-desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sm-primary-menu {
    display: flex;
    align-items: center;
    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.sm-primary-menu > li {
    position: relative;
}

.sm-primary-menu a {
    align-items: center;
    color: #334155;
    font-size: 14px;
    font-weight: 600;

    transition: var(--sm-transition);
}

.sm-primary-menu a:hover {
    color: var(--sm-navy);
}

.sm-primary-menu .current-menu-item > a,
.sm-primary-menu .current-menu-ancestor > a {
    color: var(--sm-navy);
}

.sm-header-icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--sm-navy);

    background: transparent;

    border: 1px solid var(--sm-border);
    border-radius: 50%;

    transition: var(--sm-transition);
}

.sm-header-icon:hover {
    color: var(--sm-white);
    background: var(--sm-navy);
    border-color: var(--sm-navy);

    transform: translateY(-2px);
}

.sm-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 19px;

    color: var(--sm-white);
    background: var(--sm-navy);

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--sm-transition);
}

.sm-header-cta:hover {
    color: var(--sm-white);
    background: var(--sm-gold);

    transform: translateY(-2px);
}

.sm-mobile-controls {
    display: none;
}


/* =========================================================
   SEARCH
========================================================= */

.sm-search-overlay {
    position: fixed;
    inset: 0;

    z-index: 1200;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(6, 21, 43, 0.95);

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;
}

.sm-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.sm-search-inner {
    width: min(700px, 100%);
    position: relative;
}

.sm-search-inner h2 {
    margin: 12px 0 28px;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
}

.sm-search-form {
    display: flex;

    border-bottom: 2px solid
        rgba(255, 255, 255, 0.35);
}

.sm-search-form input {
    width: 100%;

    padding: 18px 0;

    color: #fff;
    background: transparent;

    border: 0;
    outline: 0;

    font-size: 20px;
}

.sm-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sm-search-form button {
    flex-shrink: 0;

    padding: 0 15px;

    color: var(--sm-gold);
    background: transparent;

    border: 0;

    font-size: 22px;
}

.sm-search-close {
    position: absolute;
    top: -80px;
    right: 0;

    width: 45px;
    height: 45px;

    border: 1px solid
        rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    color: #fff;
    background: transparent;

    transition: var(--sm-transition);
}

.sm-search-close:hover {
    color: var(--sm-navy);
    background: #fff;
}

.sm-search-help {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.sm-mobile-menu {
    display: none;
}


/* =========================================================
   HERO SECTION
========================================================= */

.sm-hero {
    position: relative;
    overflow: hidden;

    padding: 90px 0 110px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(231, 165, 26, 0.13),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #eef3f8 100%
        );
}


/* =========================================================
   HERO BACKGROUND DECORATION
========================================================= */

.sm-hero::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(11, 31, 58, 0.04);

    pointer-events: none;
}


/* =========================================================
   HERO GRID
========================================================= */

.sm-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.sm-hero-content {
    position: relative;
    z-index: 2;

    min-width: 0;
}


/* =========================================================
   EYEBROW
========================================================= */

.sm-eyebrow,
.sm-section-label {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--sm-gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.sm-eyebrow-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: var(--sm-gold);
}


/* =========================================================
   HERO TITLE
========================================================= */

.sm-hero h1 {
    max-width: 750px;

    margin: 20px 0 24px;

    color: var(--sm-navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        42px,
        5.2vw,
        72px
    );

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -2.5px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.sm-hero-description {
    max-width: 620px;

    margin: 0;

    color: var(--sm-muted);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.sm-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.sm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: var(--sm-transition);
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.sm-btn-primary {
    color: #fff;

    background: var(--sm-navy);

    box-shadow:
        0 12px 25px rgba(11, 31, 58, 0.18);
}

.sm-btn-primary:hover {
    color: #fff;

    background: var(--sm-gold);

    transform: translateY(-3px);

    box-shadow:
        0 16px 30px rgba(231, 165, 26, 0.2);
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.sm-btn-outline {
    color: var(--sm-navy);

    border: 1px solid
        rgba(11, 31, 58, 0.25);

    background: transparent;
}

.sm-btn-outline:hover {
    color: #fff;

    background: var(--sm-navy);

    border-color: var(--sm-navy);

    transform: translateY(-3px);
}


/* =========================================================
   GOLD BUTTON
========================================================= */

.sm-btn-gold {
    color: var(--sm-navy);

    background: var(--sm-gold);
}

.sm-btn-gold:hover {
    color: var(--sm-navy);

    background: var(--sm-gold-light);

    transform: translateY(-3px);
}


/* =========================================================
   LIGHT BUTTON
========================================================= */

.sm-btn-light {
    color: #fff;

    border: 1px solid
        rgba(255, 255, 255, 0.3);

    background: transparent;
}

.sm-btn-light:hover {
    color: var(--sm-navy);

    background: #fff;
}


/* =========================================================
   HERO TRUST
========================================================= */

.sm-hero-trust {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 50px;
}

.sm-trust-item {
    display: flex;
    flex-direction: column;

    gap: 3px;

    min-width: 0;
}

.sm-trust-item strong {
    color: var(--sm-navy);

    font-size: 14px;
    font-weight: 800;
}

.sm-trust-item span {
    color: var(--sm-muted);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.4;
}

.sm-trust-divider {
    width: 1px;
    height: 35px;

    flex: 0 0 1px;

    background: var(--sm-border);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.sm-hero-visual {
    position: relative;

    width: 100%;
    min-width: 0;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.sm-hero-image-wrap {
    position: relative;

    width: 100%;

    padding: 22px;

    isolation: isolate;
}


/* =========================================================
   IMAGE WRAPPER BACKGROUND
========================================================= */

.sm-hero-image-wrap::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            var(--sm-navy),
            var(--sm-navy-light)
        );

    border-radius: 30px;

    transform: rotate(2deg);

    z-index: -2;
}


/* =========================================================
   IMAGE WRAPPER BORDER
========================================================= */

.sm-hero-image-wrap::after {
    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 24px;

    z-index: -1;

    pointer-events: none;
}


/* =========================================================
   OWL CAROUSEL
========================================================= */

.sm-hero-carousel {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 25px 70px rgba(11, 31, 58, 0.25);
}


/* =========================================================
   HERO SLIDE
========================================================= */

.sm-hero-slide {
    width: 100%;

    height: 520px;
}

.sm-hero-slide img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;

    object-fit: cover;
}


/* =========================================================
   OWL DOTS
========================================================= */

.sm-hero-carousel .owl-dots {
    position: absolute;

    left: 0;
    bottom: 18px;

    width: 100%;

    margin: 0;

    text-align: center;
}

.sm-hero-carousel .owl-dot {
    display: inline-flex;

    align-items: center;
    justify-content: center;
}

.sm-hero-carousel .owl-dot span {
    display: block;

    width: 8px;
    height: 8px;

    margin: 5px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.5) !important;

    transition: all 0.3s ease;
}

.sm-hero-carousel .owl-dot.active span {
    width: 30px !important;

    background: var(--sm-gold) !important;
}


/* =========================================================
   HERO DECORATIVE SHAPES
========================================================= */

.sm-hero-shape {
    position: absolute;

    z-index: -3;

    border-radius: 50%;

    pointer-events: none;
}

.sm-hero-shape-one {
    width: 90px;
    height: 90px;

    top: -45px;
    right: -30px;

    border: 12px solid
        rgba(231, 165, 26, 0.2);
}

.sm-hero-shape-two {
    width: 130px;
    height: 130px;

    bottom: -50px;
    left: -45px;

    border: 20px solid
        rgba(11, 31, 58, 0.06);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.sm-floating-card {
    position: absolute;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    max-width: 220px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid
        rgba(255, 255, 255, 0.8);

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(11, 31, 58, 0.15);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}

.sm-floating-card i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--sm-gold);

    background: rgba(231, 165, 26, 0.1);

    border-radius: 10px;
}

.sm-floating-card div {
    display: flex;
    flex-direction: column;

    gap: 2px;

    min-width: 0;
}

.sm-floating-card strong {
    color: var(--sm-navy);

    font-size: 12px;
    font-weight: 800;

    line-height: 1.3;
}

.sm-floating-card span {
    color: var(--sm-muted);

    font-size: 10px;

    line-height: 1.4;
}

.sm-floating-card-top {
    top: 45px;
    left: -45px;
}

.sm-floating-card-bottom {
    right: -35px;
    bottom: 40px;
}


/* =========================================================
   TABLET
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .sm-hero {
        padding: 80px 0 95px;
    }

    .sm-hero-grid {
        gap: 50px;
    }

    .sm-hero h1 {
        font-size: clamp(
            40px,
            5vw,
            60px
        );

        letter-spacing: -2px;
    }

    .sm-hero-description {
        font-size: 16px;
    }

    .sm-hero-slide {
        height: 450px;
    }

    .sm-hero-image-wrap {
        padding: 18px;
    }

    .sm-floating-card-top {
        left: -25px;
    }

    .sm-floating-card-bottom {
        right: -20px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    .sm-hero {
        padding: 70px 0 85px;
    }

    .sm-hero-grid {
        gap: 40px;
    }

    .sm-hero h1 {
        margin-top: 16px;
        margin-bottom: 20px;

        font-size: clamp(
            38px,
            5.5vw,
            52px
        );

        line-height: 1.08;

        letter-spacing: -1.8px;
    }

    .sm-hero-description {
        font-size: 15px;

        line-height: 1.7;
    }

    .sm-hero-actions {
        margin-top: 28px;
    }

    .sm-btn {
        min-height: 50px;

        padding: 0 20px;

        font-size: 13px;
    }

    .sm-hero-trust {
        gap: 13px;

        margin-top: 38px;
    }

    .sm-trust-item strong {
        font-size: 12px;
    }

    .sm-trust-item span {
        font-size: 9px;
    }

    .sm-trust-divider {
        height: 30px;
    }

    .sm-hero-image-wrap {
        padding: 15px;
    }

    .sm-hero-image-wrap::before {
        border-radius: 24px;
    }

    .sm-hero-image-wrap::after {
        inset: 9px;

        border-radius: 19px;
    }

    .sm-hero-carousel {
        border-radius: 16px;
    }

    .sm-hero-slide {
        height: 390px;
    }

    .sm-floating-card {
        gap: 9px;

        padding: 11px 13px;

        max-width: 180px;
    }

    .sm-floating-card i {
        width: 32px;
        height: 32px;

        flex-basis: 32px;
    }

    .sm-floating-card strong {
        font-size: 10px;
    }

    .sm-floating-card span {
        font-size: 9px;
    }

    .sm-floating-card-top {
        top: 25px;
        left: -18px;
    }

    .sm-floating-card-bottom {
        right: -15px;
        bottom: 25px;
    }

    .sm-hero-shape-one {
        width: 70px;
        height: 70px;

        top: -35px;
        right: -20px;

        border-width: 9px;
    }

    .sm-hero-shape-two {
        width: 100px;
        height: 100px;

        bottom: -35px;
        left: -30px;

        border-width: 15px;
    }
}


/* =========================================================
   MOBILE
   0 - 767px
========================================================= */

@media (max-width: 767px) {

    .sm-hero {
        padding: 50px 0 65px;

        overflow: hidden;
    }


    /* -----------------------------------------
       ONE COLUMN
    ----------------------------------------- */

    .sm-hero-grid {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 45px;
    }


    /* -----------------------------------------
       CONTENT
    ----------------------------------------- */

    .sm-hero-content {
        width: 100%;

        text-align: center;
    }


    /* -----------------------------------------
       EYEBROW
    ----------------------------------------- */

    .sm-eyebrow,
    .sm-section-label {
        justify-content: center;

        gap: 7px;

        font-size: 9px;

        letter-spacing: 1.3px;

        line-height: 1.5;
    }

    .sm-eyebrow-dot {
        width: 7px;
        height: 7px;

        flex-basis: 7px;
    }


    /* -----------------------------------------
       TITLE
    ----------------------------------------- */

    .sm-hero h1 {
        width: 100%;
        max-width: 100%;

        margin: 16px auto 18px;

        font-size: clamp(
            34px,
            9.5vw,
            46px
        );

        line-height: 1.08;

        letter-spacing: -1.5px;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .sm-hero-description {
        width: 100%;
        max-width: 580px;

        margin: 0 auto;

        font-size: 14px;

        line-height: 1.7;
    }


    /* -----------------------------------------
       BUTTONS
    ----------------------------------------- */

    .sm-hero-actions {
        width: 100%;

        flex-direction: column;

        gap: 10px;

        margin-top: 25px;
    }

    .sm-btn {
        width: 100%;

        min-height: 50px;

        padding: 0 18px;

        border-radius: 8px;

        font-size: 13px;
    }


    /* -----------------------------------------
       TRUST ITEMS
    ----------------------------------------- */

    .sm-hero-trust {
        width: 100%;

        justify-content: center;

        gap: 8px;

        margin-top: 30px;
    }

    .sm-trust-item {
        flex: 1;

        min-width: 0;

        text-align: center;
    }

    .sm-trust-item strong {
        font-size: 10px;
    }

    .sm-trust-item span {
        font-size: 8px;

        line-height: 1.35;
    }

    .sm-trust-divider {
        width: 1px;
        height: 28px;

        flex: 0 0 1px;
    }


    /* -----------------------------------------
       HERO VISUAL
    ----------------------------------------- */

    .sm-hero-visual {
        width: 100%;

        min-width: 0;
    }

    .sm-hero-image-wrap {
        width: 100%;

        padding: 12px;

        margin: 0 auto;
    }


    /* -----------------------------------------
       BACKGROUND FRAME
    ----------------------------------------- */

    .sm-hero-image-wrap::before {
        border-radius: 20px;

        transform: rotate(1.5deg);
    }

    .sm-hero-image-wrap::after {
        inset: 7px;

        border-radius: 16px;
    }


    /* -----------------------------------------
       CAROUSEL
    ----------------------------------------- */

    .sm-hero-carousel {
        width: 100%;

        border-radius: 14px;

        box-shadow:
            0 15px 40px
            rgba(11, 31, 58, 0.18);
    }

    .sm-hero-slide {
        width: 100%;

        height: auto;

        aspect-ratio: 4 / 3;
    }

    .sm-hero-slide img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* -----------------------------------------
       DOTS
    ----------------------------------------- */

    .sm-hero-carousel .owl-dots {
        bottom: 8px;
    }

    .sm-hero-carousel .owl-dot span {
        width: 6px;
        height: 6px;

        margin: 4px;
    }

    .sm-hero-carousel .owl-dot.active span {
        width: 22px !important;
    }


    /* -----------------------------------------
       FLOATING CARDS
    ----------------------------------------- */

    .sm-floating-card {
        gap: 7px;

        padding: 8px 10px;

        max-width: 150px;

        border-radius: 9px;

        box-shadow:
            0 8px 25px
            rgba(11, 31, 58, 0.12);
    }

    .sm-floating-card i {
        width: 28px;
        height: 28px;

        flex: 0 0 28px;

        border-radius: 7px;

        font-size: 11px;
    }

    .sm-floating-card div {
        gap: 1px;
    }

    .sm-floating-card strong {
        font-size: 8px;

        line-height: 1.3;
    }

    .sm-floating-card span {
        font-size: 7px;

        line-height: 1.3;
    }

    .sm-floating-card-top {
        top: 18px;
        left: -5px;
    }

    .sm-floating-card-bottom {
        right: -5px;
        bottom: 18px;
    }


    /* -----------------------------------------
       DECORATIVE SHAPES
    ----------------------------------------- */

    .sm-hero-shape-one {
        width: 55px;
        height: 55px;

        top: -25px;
        right: -10px;

        border-width: 7px;
    }

    .sm-hero-shape-two {
        width: 75px;
        height: 75px;

        bottom: -25px;
        left: -15px;

        border-width: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   0 - 480px
========================================================= */

@media (max-width: 480px) {

    .sm-hero {
        padding: 38px 0 50px;
    }


    /* -----------------------------------------
       GRID
    ----------------------------------------- */

    .sm-hero-grid {
        gap: 38px;
    }


    /* -----------------------------------------
       EYEBROW
    ----------------------------------------- */

    .sm-eyebrow,
    .sm-section-label {
        font-size: 8px;

        letter-spacing: 1px;
    }


    /* -----------------------------------------
       TITLE
    ----------------------------------------- */

    .sm-hero h1 {
        margin-top: 13px;
        margin-bottom: 15px;

        font-size: 33px;

        line-height: 1.08;

        letter-spacing: -1.2px;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .sm-hero-description {
        font-size: 13px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       BUTTON
    ----------------------------------------- */

    .sm-hero-actions {
        margin-top: 22px;

        gap: 8px;
    }

    .sm-btn {
        min-height: 47px;

        font-size: 12px;

        border-radius: 7px;
    }


    /* -----------------------------------------
       TRUST
    ----------------------------------------- */

    .sm-hero-trust {
        gap: 5px;

        margin-top: 24px;
    }

    .sm-trust-item strong {
        font-size: 9px;
    }

    .sm-trust-item span {
        font-size: 7px;

        line-height: 1.3;
    }

    .sm-trust-divider {
        height: 24px;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .sm-hero-image-wrap {
        padding: 9px;
    }

    .sm-hero-image-wrap::before {
        border-radius: 17px;
    }

    .sm-hero-image-wrap::after {
        inset: 6px;

        border-radius: 13px;
    }

    .sm-hero-carousel {
        border-radius: 11px;
    }

    .sm-hero-slide {
        aspect-ratio: 4 / 3;
    }


    /* -----------------------------------------
       FLOATING CARD
    ----------------------------------------- */

    .sm-floating-card {
        padding: 6px 8px;

        max-width: 125px;

        gap: 5px;

        border-radius: 7px;
    }

    .sm-floating-card i {
        width: 24px;
        height: 24px;

        flex-basis: 24px;

        font-size: 9px;
    }

    .sm-floating-card strong {
        font-size: 7px;
    }

    .sm-floating-card span {
        font-size: 6px;
    }

    .sm-floating-card-top {
        top: 12px;
        left: -4px;
    }

    .sm-floating-card-bottom {
        right: -4px;
        bottom: 12px;
    }


    /* -----------------------------------------
       SHAPES
    ----------------------------------------- */

    .sm-hero-shape-one {
        width: 42px;
        height: 42px;

        top: -18px;
        right: -7px;

        border-width: 6px;
    }

    .sm-hero-shape-two {
        width: 60px;
        height: 60px;

        bottom: -20px;
        left: -10px;

        border-width: 8px;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
   0 - 360px
========================================================= */

@media (max-width: 360px) {

    .sm-hero {
        padding: 32px 0 42px;
    }

    .sm-hero-grid {
        gap: 32px;
    }

    .sm-hero h1 {
        font-size: 29px;

        letter-spacing: -1px;
    }

    .sm-hero-description {
        font-size: 12px;
    }

    .sm-btn {
        min-height: 45px;

        font-size: 11px;
    }

    .sm-hero-trust {
        gap: 3px;
    }

    .sm-trust-item strong {
        font-size: 8px;
    }

    .sm-trust-item span {
        font-size: 6.5px;
    }

    .sm-trust-divider {
        height: 22px;
    }

    .sm-floating-card {
        display: none;
    }

    .sm-hero-shape-one,
    .sm-hero-shape-two {
        display: none;
    }
}


/* =========================================================
   INTRO
========================================================= */

.sm-intro-section {
    padding: 100px 0;
}

.sm-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;
}

.sm-intro-heading h2,
.sm-section-heading h2,
.sm-faq-intro h2 {
    max-width: 650px;

    margin: 12px 0 0;

    color: var(--sm-navy);

    font-family: "Manrope", sans-serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;
    line-height: 1.12;

    letter-spacing: -1.5px;
}

.sm-intro-text p {
    margin: 0;

    color: var(--sm-muted);

    font-size: 17px;
}

.sm-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 65px;
}

.sm-stat {
    display: flex;
    flex-direction: column;

    gap: 3px;

    padding: 24px;

    border: 1px solid var(--sm-border);
    border-radius: 14px;

    transition: var(--sm-transition);
}

.sm-stat:hover {
    border-color: rgba(231, 165, 26, 0.4);

    transform: translateY(-5px);

    box-shadow: var(--sm-shadow);
}

.sm-stat-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    color: var(--sm-gold);

    background: rgba(231, 165, 26, 0.1);

    border-radius: 10px;
}

.sm-stat strong {
    color: var(--sm-navy);

    font-family: "Manrope", sans-serif;

    font-size: 18px;
}

.sm-stat > span:last-child {
    color: var(--sm-muted);

    font-size: 12px;
}


/* =========================================================
   SERVICES
========================================================= */

.sm-services-section {
    padding: 110px 0;

    background: var(--sm-bg);
}

.sm-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.sm-section-heading > p {
    max-width: 470px;

    margin: 0;

    color: var(--sm-muted);

    font-size: 15px;
}

.sm-section-heading.centered {
    display: block;

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.sm-section-heading.centered h2 {
    margin-inline: auto;
}

.sm-section-heading.centered > p {
    margin: 18px auto 0;
}

.sm-services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.sm-service-card {
    position: relative;

    min-height: 360px;

    padding: 30px;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);

    transition: var(--sm-transition);
}

.sm-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--sm-navy),
            var(--sm-gold)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: 0.4s ease;
}

.sm-service-card:hover {
    transform: translateY(-8px);

    border-color: transparent;

    box-shadow:
        0 25px 50px rgba(11, 31, 58, 0.1);
}

.sm-service-card:hover::before {
    transform: scaleX(1);
}

.sm-service-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: #e8edf3;

    font-family: "Manrope", sans-serif;

    font-size: 42px;
    font-weight: 800;
}

.sm-service-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    color: var(--sm-gold);

    background: rgba(231, 165, 26, 0.08);

    border-radius: 16px;
}

.sm-service-icon img {
    width: 55px;
    height: 55px;

    object-fit: contain;
}

.sm-service-icon i {
    font-size: 25px;
}

.sm-service-content h3 {
    margin: 0 0 10px;

    color: var(--sm-navy);

    font-family: "Manrope", sans-serif;

    font-size: 19px;
    line-height: 1.3;
}

.sm-service-content h3 a:hover {
    color: var(--sm-gold);
}

.sm-service-content p {
    min-height: 75px;

    margin: 0 0 20px;

    color: var(--sm-muted);

    font-size: 13px;
    line-height: 1.7;
}

.sm-card-link,
.sm-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--sm-navy);

    font-size: 12px;
    font-weight: 800;

    transition: var(--sm-transition);
}

.sm-card-link:hover,
.sm-text-link:hover {
    color: var(--sm-gold);

    gap: 13px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.sm-products-section {
    padding: 110px 0;

    background: #fff;
}

.sm-product-category {
    margin-bottom: 70px;
}

.sm-product-category:last-child {
    margin-bottom: 0;
}

.sm-category-header {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--sm-border);
}

.sm-category-header h3 {
    margin: 5px 0;

    color: var(--sm-navy);

    font-family: "Manrope", sans-serif;

    font-size: 28px;
    font-weight: 800;
}

.sm-category-header h3 a:hover {
    color: var(--sm-gold);
}

.sm-category-header p {
    max-width: 650px;

    margin: 0;

    color: var(--sm-muted);

    font-size: 13px;
}

.sm-product-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}


/* =========================================================
   SIGNMARK BD - PREMIUM PRODUCT CARD
========================================================= */

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 37, 73, 0.15);
    box-shadow: 0 20px 45px rgba(14, 37, 73, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8fafc;
}

.product-card-image > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.07);
}

/* =========================================
   PRODUCT IMAGE
========================================= */

.product-card-image {
    position: relative;
    overflow: hidden;
}


/* =========================================
   DISCOUNT BADGE
========================================= */

.product-discount-badge {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 10;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 58px;
    height: 30px;

    padding: 0 10px;

    background: #ef4444;
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    line-height: 1;

    border-radius: 999px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   CATEGORY BADGE
========================================================= */

.product-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    max-width: 130px;
    display: inline-flex;
    align-items: center;

    padding: 6px 11px;

    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);

    border-radius: 999px;

    font-size: 10px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    text-decoration: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.product-category-badge:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   CONTENT
========================================================= */

.product-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 20px 18px 18px;
}


/* =========================================================
   TITLE
========================================================= */

.product-card-title {
    margin: 0 0 7px;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;

    color: var(--primary);

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;

    transition: color 0.25s ease;
}

.product-card-title a:hover {
    color: #1d68b0;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-card-excerpt {
    margin: 0 0 15px;

    color: #64748b;

    font-size: 12px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   PRICE
========================================================= */

.product-card-price {
    margin-top: auto;
    margin-bottom: 17px;
}

.price-label {
    display: block;

    margin-bottom: 3px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.current-price {
    color: var(--primary);

    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.old-price {
    color: #94a3b8;

    font-size: 12px;
    font-weight: 600;

    text-decoration: line-through;
}

.custom-price {
    color: var(--accent);

    font-size: 15px;
    font-weight: 800;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================
   PRODUCT DETAILS BUTTON - FIX
========================================= */

.product-card .product-details-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;

    flex: 1;
    min-height: 42px;
    padding: 10px 14px;

    background-color: #0e2549 !important;
    background-image: none !important;

    color: #ffffff !important;

    border: 1px solid #0e2549 !important;
    border-radius: 9px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;

    text-decoration: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card .product-details-btn span {
    color: #ffffff !important;
}

.product-card .product-details-btn i {
    color: #ffffff !important;
    transition: transform 0.3s ease;
}

.product-card .product-details-btn:hover {
    background-color: #08172f !important;
    border-color: #08172f !important;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(14, 37, 73, 0.25);
}

.product-card .product-details-btn:hover span,
.product-card .product-details-btn:hover i {
    color: #ffffff !important;
}

.product-card .product-details-btn:hover i {
    transform: translateX(4px);
}


/* WhatsApp */

.product-whatsapp-btn {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #16a34a;
    color: #ffffff;

    border-radius: 9px;

    text-decoration: none;

    font-size: 18px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-whatsapp-btn:hover {
    background: #15803d;
    color: #ffffff;

    transform: translateY(-2px) scale(1.03);

    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.25);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .product-card {
        border-radius: 15px;
    }

    .product-card-content {
        padding: 16px 14px 14px;
    }

    .product-card-title {
        font-size: 15px;
    }

    .current-price {
        font-size: 18px;
    }

    .product-details-btn {
        min-height: 40px;
        font-size: 11px;
    }

    .product-whatsapp-btn {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .product-card,
    .product-card-img,
    .product-details-btn,
    .product-whatsapp-btn {
        transition: none !important;
    }

    .product-card:hover {
        transform: none;
    }

    .product-card:hover .product-card-img {
        transform: none;
    }

}


/* =========================================================
   WHY CHOOSE
========================================================= */

.sm-why-section {
    padding: 110px 0;

    background: var(--sm-navy);
}

.sm-why-section .sm-section-label {
    color: var(--sm-gold);
}

.sm-why-section .sm-section-heading h2 {
    color: #fff;
}

.sm-why-section .sm-section-heading > p {
    color: #aab8c9;
}

.sm-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.sm-benefit-card {
    position: relative;

    padding: 35px 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    border: 1px solid
        rgba(255,255,255,0.1);

    border-radius: 16px;

    transition: var(--sm-transition);
}

.sm-benefit-card:hover {
    transform: translateY(-7px);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.1),
            rgba(255,255,255,0.04)
        );

    border-color:
        rgba(231,165,26,0.4);
}

.sm-benefit-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(255,255,255,0.08);

    font-family: "Manrope", sans-serif;

    font-size: 45px;
    font-weight: 800;
}

.sm-benefit-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    color: var(--sm-gold);

    background: rgba(231,165,26,0.1);

    border-radius: 13px;
}

.sm-benefit-card h3 {
    margin: 0 0 10px;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 19px;
}

.sm-benefit-card p {
    margin: 0;

    color: #aab8c9;

    font-size: 13px;
}


/* =========================================================
   GALLERY
========================================================= */

.sm-gallery-section {
    padding: 110px 0;

    background: var(--sm-bg);
}

.sm-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-auto-rows: 230px;

    gap: 18px;
}

.sm-gallery-item {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 16px;

    background: #ddd;
}

.sm-gallery-item:nth-child(1) {
    grid-column: span 5;
    grid-row: span 2;
}

.sm-gallery-item:nth-child(2) {
    grid-column: span 7;
}

.sm-gallery-item:nth-child(3) {
    grid-column: span 3;
}

.sm-gallery-item:nth-child(4) {
    grid-column: span 4;
}

.sm-gallery-item:nth-child(5) {
    grid-column: span 5;
}

.sm-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s
        cubic-bezier(0.2,0.65,0.3,1);
}

.sm-gallery-item:hover img {
    transform: scale(1.07);
}

.sm-gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 20px;

    color: #fff;

    background:
        linear-gradient(
            to top,
            rgba(6,21,43,0.8),
            rgba(6,21,43,0.1)
        );

    opacity: 0;

    transition: 0.4s ease;
}

.sm-gallery-item:hover .sm-gallery-overlay {
    opacity: 1;
}

.sm-gallery-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sm-gold);

    color: var(--sm-navy);

    border-radius: 50%;
}

.sm-gallery-title {
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.sm-process-section {
    padding: 110px 0;
}

.sm-process-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.sm-process-line {
    position: absolute;

    top: 52px;
    left: 12%;

    width: 76%;

    border-top:
        1px dashed #cbd5e1;

    z-index: 0;
}

.sm-process-step {
    position: relative;

    text-align: center;

    z-index: 1;
}

.sm-process-icon {
    position: relative;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    background: #fff;

    border: 1px solid var(--sm-border);

    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(11,31,58,0.08);

    transition: var(--sm-transition);
}

.sm-process-step:hover .sm-process-icon {
    border-color: var(--sm-gold);

    transform: translateY(-6px);
}

.sm-process-icon img {
    width: 62px;
    height: 62px;

    object-fit: contain;
}

.sm-process-icon span {
    position: absolute;

    top: -8px;
    right: -8px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: var(--sm-navy);

    border-radius: 50%;

    font-size: 9px;
    font-weight: 800;
}

.sm-process-step h3 {
    margin: 0 0 10px;

    color: var(--sm-navy);

    font-family: "Manrope", sans-serif;

    font-size: 19px;
}

.sm-process-step p {
    max-width: 220px;

    margin: 0 auto;

    color: var(--sm-muted);

    font-size: 13px;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.sm-testimonial-section {
    padding: 110px 0;

    background: var(--sm-bg);
}

.sm-testimonial-card {
    margin: 15px;

    padding: 35px;

    min-height: 290px;

    display: flex;
    flex-direction: column;

    background: #fff;

    border: 1px solid var(--sm-border);
    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(11,31,58,0.04);

    transition: var(--sm-transition);
}

.sm-testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 50px rgba(11,31,58,0.1);
}

.sm-rating {
    margin-bottom: 18px;

    color: var(--sm-gold);

    font-size: 15px;
    letter-spacing: 3px;
}

.sm-testimonial-card > p {
    flex-grow: 1;

    margin: 0 0 30px;

    color: #475569;

    font-size: 15px;
    line-height: 1.8;
}

.sm-client {
    display: flex;
    align-items: center;

    gap: 13px;

    padding-top: 20px;

    border-top: 1px solid var(--sm-border);
}

.sm-avatar {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #fff;

    background: var(--sm-navy);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 800;
}

.sm-client div:last-child {
    display: flex;
    flex-direction: column;
}

.sm-client strong {
    color: var(--sm-navy);

    font-size: 13px;
}

.sm-client span {
    color: var(--sm-muted);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.sm-testimonial-carousel .owl-dots {
    margin-top: 20px;
}

.sm-testimonial-carousel .owl-dot span {
    background: #cbd5e1 !important;
}

.sm-testimonial-carousel .owl-dot.active span {
    width: 30px !important;

    background: var(--sm-navy) !important;
}


/* =========================================================
   FAQ
========================================================= */

.sm-faq-section {
    padding: 110px 0;
}

.sm-faq-container {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 90px;
}

.sm-faq-intro h2 {
    font-size: 44px;
}

.sm-faq-intro > p {
    margin: 20px 0 25px;

    color: var(--sm-muted);

    font-size: 15px;
}

.sm-faq-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.sm-faq-item {
    overflow: hidden;

    border: 1px solid var(--sm-border);
    border-radius: 13px;

    transition: var(--sm-transition);
}

.sm-faq-item.is-open {
    border-color: rgba(231,165,26,0.5);

    box-shadow:
        0 12px 35px rgba(11,31,58,0.07);
}

.sm-faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    color: var(--sm-navy);
    background: #fff;

    border: 0;

    text-align: left;

    font-size: 14px;
    font-weight: 700;
}

.sm-faq-toggle {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--sm-navy);

    background: var(--sm-bg);

    border-radius: 50%;

    transition: var(--sm-transition);
}

.sm-faq-item.is-open .sm-faq-toggle {
    color: #fff;
    background: var(--sm-navy);

    transform: rotate(45deg);
}

.sm-faq-answer {
    display: none;

    padding: 0 20px 22px;

    color: var(--sm-muted);

    font-size: 13px;
    line-height: 1.8;
}

.sm-faq-item.is-open .sm-faq-answer {
    display: block;
}


/* =========================================================
   BLOG
========================================================= */

.sm-blog-section {
    padding: 110px 0;

    background: var(--sm-bg);
}

.sm-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.sm-blog-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--sm-border);

    border-radius: 17px;

    transition: var(--sm-transition);
}

.sm-blog-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(11,31,58,0.1);
}

.sm-blog-image {
    display: block;

    height: 245px;

    overflow: hidden;

    background: var(--sm-bg-dark);
}

.sm-blog-thumbnail {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.sm-blog-card:hover .sm-blog-thumbnail {
    transform: scale(1.05);
}

.sm-blog-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--sm-gold);

    font-size: 40px;

    background:
        linear-gradient(
            135deg,
            var(--sm-navy),
            var(--sm-navy-light)
        );
}

.sm-blog-content {
    padding: 25px;
}

.sm-blog-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 13px;

    color: var(--sm-muted);

    font-size: 10px;
    font-weight: 600;
}

.sm-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sm-blog-meta i {
    color: var(--sm-gold);
}

.sm-blog-content h3 {
    margin: 0 0 12px;

    color: var(--sm-navy);

    font-family: "Manrope", sans-serif;

    font-size: 19px;
    line-height: 1.35;
}

.sm-blog-content h3 a:hover {
    color: var(--sm-gold);
}

.sm-blog-content p {
    margin: 0 0 20px;

    color: var(--sm-muted);

    font-size: 13px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.sm-final-cta {
    padding: 100px 0;
}

.sm-cta-box {
    position: relative;

    overflow: hidden;

    padding: 75px;

    background:
        linear-gradient(
            125deg,
            var(--sm-navy-dark),
            var(--sm-navy)
        );

    border-radius: 25px;

    box-shadow:
        0 30px 70px rgba(11,31,58,0.2);
}

.sm-cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -130px;
    right: -80px;

    border-radius: 50%;

    border: 60px solid
        rgba(231,165,26,0.08);
}

.sm-cta-content {
    position: relative;
    z-index: 2;

    max-width: 780px;
}

.sm-cta-content h2 {
    margin: 14px 0;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        32px,
        4vw,
        52px
    );

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.sm-cta-content p {
    max-width: 650px;

    margin: 0;

    color: #aebbc9;

    font-size: 16px;
}


/* =========================================================
   FOOTER
========================================================= */

.sm-footer {
    padding: 80px 0 25px;

    color: #9aa9bb;

    background: #06152b;
}

.sm-footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        0.9fr
        1.2fr;

    gap: 65px;

    padding-bottom: 60px;
}

.sm-footer-logo-image {
    width: auto;
    max-width: 200px;
    height: 55px;

    object-fit: contain;

    opacity: 0.9;
}

.sm-footer-brand > p {
    max-width: 360px;

    margin: 22px 0;

    color: #8d9caf;

    font-size: 13px;
}

.sm-footer-social {
    display: flex;
    gap: 8px;
}

.sm-footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        rgba(255,255,255,0.06);

    border: 1px solid
        rgba(255,255,255,0.08);

    border-radius: 50%;

    transition: var(--sm-transition);
}

.sm-footer-social a:hover {
    color: var(--sm-navy);

    background: var(--sm-gold);

    transform: translateY(-3px);
}

.sm-footer-column h3 {
    margin: 0 0 23px;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 16px;
}

.sm-footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.sm-footer-column li {
    margin-bottom: 12px;
}

.sm-footer-column li a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #8d9caf;

    font-size: 12px;

    transition: var(--sm-transition);
}

.sm-footer-column li a i {
    color: var(--sm-gold);

    font-size: 8px;

    transition: var(--sm-transition);
}

.sm-footer-column li a:hover {
    color: #fff;

    transform: translateX(4px);
}

.sm-footer-column li a:hover i {
    transform: translateX(3px);
}

.sm-footer-contact {
    display: flex;

    gap: 12px;

    margin-bottom: 17px;
}

.sm-footer-contact > span {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--sm-gold);

    background:
        rgba(231,165,26,0.08);

    border-radius: 8px;

    font-size: 12px;
}

.sm-footer-contact p,
.sm-footer-contact a {
    margin: 0;

    color: #8d9caf;

    font-size: 12px;
    line-height: 1.7;
}

.sm-footer-contact a:hover {
    color: #fff;
}

.sm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top: 1px solid
        rgba(255,255,255,0.08);

    font-size: 10px;
}

.sm-footer-bottom p {
    margin: 0;
}

.sm-footer-bottom strong {
    color: #fff;
}

.sm-footer-legal {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;
}

.sm-footer-legal a {
    color: #78899d;

    transition: var(--sm-transition);
}

.sm-footer-legal a:hover {
    color: #fff;
}

.sm-developed-by a {
    color: #fff;
    font-weight: 700;
}

.sm-developed-by a:hover {
    color: var(--sm-gold);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal-up,
.reveal-right {
    opacity: 0;

    transition:
        opacity 0.7s ease,
        transform 0.7s
        cubic-bezier(0.2,0.65,0.3,1);
}

.reveal-up {
    transform: translateY(35px);
}

.reveal-right {
    transform: translateX(45px);
}

.reveal-up.is-visible,
.reveal-right.is-visible {
    opacity: 1;

    transform: translate(0);
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .sm-container {
        width: min(
            calc(100% - 32px),
            var(--sm-container)
        );
    }

    .sm-desktop-nav {
        gap: 15px;
    }

    .sm-primary-menu {
        gap: 18px;
    }

    .sm-primary-menu a {
        font-size: 12px;
    }

    .sm-services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sm-product-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

    .sm-benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sm-footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 991px) {

    .sm-navbar {
        min-height: 72px;
    }

    .sm-desktop-nav {
        display: none;
    }

    .sm-mobile-controls {
        display: flex;

        align-items: center;

        gap: 10px;
    }

    .sm-menu-toggle {
        width: 42px;
        height: 42px;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 5px;

        color: var(--sm-navy);

        background: transparent;

        border: 1px solid var(--sm-border);
        border-radius: 50%;
    }

    .sm-menu-toggle span {
        width: 17px;
        height: 2px;

        background: currentColor;

        transition: var(--sm-transition);
    }

    .sm-menu-toggle.is-active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .sm-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .sm-menu-toggle.is-active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    .sm-mobile-menu {
        position: fixed;

        top: 72px;
        left: 0;
        right: 0;

        display: block;

        max-height:
            calc(100vh - 72px);

        overflow-y: auto;

        padding: 25px 0 35px;

        background: #fff;

        border-top: 1px solid var(--sm-border);

        box-shadow:
            0 20px 40px rgba(11,31,58,0.1);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--sm-transition);
    }

    .sm-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .sm-mobile-nav {
        display: flex;
        flex-direction: column;

        gap: 3px;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    .sm-mobile-nav a {
        display: block;

        padding: 13px 0;

        color: var(--sm-navy);

        font-size: 14px;
        font-weight: 700;

        border-bottom: 1px solid
            var(--sm-border);
    }

    .sm-mobile-quote {
        display: flex;
        align-items: center;
        justify-content: center;

        gap: 10px;

        margin-top: 22px;

        padding: 14px;

        color: #fff;
        background: var(--sm-navy);

        border-radius: 9px;

        font-size: 13px;
        font-weight: 700;
    }

    .sm-hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .sm-hero-content {
        text-align: center;
    }

    .sm-hero-description {
        margin-inline: auto;
    }

    .sm-hero-actions,
    .sm-hero-trust {
        justify-content: center;
    }

    .sm-hero-visual {
        max-width: 800px;

        width: 100%;

        margin-inline: auto;
    }

    .sm-intro-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .sm-faq-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .sm-process-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 60px;
    }

    .sm-process-line {
        display: none;
    }

    .sm-blog-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 768px) {

    .sm-hero {
        padding: 65px 0 80px;
    }

    .sm-hero h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .sm-hero-slide {
        height: 400px;
    }

    .sm-floating-card {
        display: none;
    }

    .sm-stats-grid {
        grid-template-columns:
            repeat(2, 1fr);

        margin-top: 45px;
    }

    .sm-section-heading {
        display: block;
    }

    .sm-section-heading > p {
        margin-top: 20px;
    }

    .sm-product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sm-gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 220px;
    }

    .sm-gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .sm-gallery-item:first-child {
        grid-column: span 2;
    }

    .sm-cta-box {
        padding: 55px 30px;
    }

    .sm-footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .sm-container {
        width: calc(100% - 28px);
    }

    .sm-hero {
        padding: 55px 0 65px;
    }

    .sm-hero h1 {
        font-size: 36px;

        letter-spacing: -1.2px;
    }

    .sm-hero-description {
        font-size: 15px;
    }

    .sm-hero-actions {
        flex-direction: column;
    }

    .sm-btn {
        width: 100%;
    }

    .sm-hero-trust {
        gap: 12px;
    }

    .sm-trust-item span {
        font-size: 9px;
    }

    .sm-trust-divider {
        height: 28px;
    }

    .sm-hero-slide {
        height: 300px;
    }

    .sm-intro-section,
    .sm-services-section,
    .sm-products-section,
    .sm-why-section,
    .sm-gallery-section,
    .sm-process-section,
    .sm-testimonial-section,
    .sm-faq-section,
    .sm-blog-section {
        padding: 75px 0;
    }

    .sm-intro-heading h2,
    .sm-section-heading h2,
    .sm-faq-intro h2 {
        font-size: 32px;
    }

    .sm-stats-grid {
        grid-template-columns: 1fr;
    }

    .sm-services-grid {
        grid-template-columns: 1fr;
    }

    .sm-product-grid {
        grid-template-columns: 1fr;
    }

    .sm-category-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .sm-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sm-gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 250px;
    }

    .sm-gallery-item:nth-child(n),
    .sm-gallery-item:first-child {
        grid-column: span 1;
    }

    .sm-process-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .sm-blog-grid {
        grid-template-columns: 1fr;
    }

    .sm-cta-box {
        padding: 45px 23px;
    }

    .sm-cta-content h2 {
        font-size: 32px;
    }

    .sm-footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .sm-footer {
        padding-top: 60px;
    }

    .sm-footer-legal {
        gap: 10px 15px;
    }

}

/* =========================================================
   PRODUCT PAGINATION
========================================================= */

.gsbd-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 48px;
}

.gsbd-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

/* Remove default list styles */
.gsbd-pagination .page-numbers li {
    margin: 0;
    padding: 0;
}

/* Number + dots */
.gsbd-pagination .page-numbers li .page-numbers {
    min-width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    color: #0b1f3a;
    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover */
.gsbd-pagination .page-numbers li .page-numbers:hover {
    color: #ffffff;
    background: #0b1f3a;

    border-color: #0b1f3a;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(11, 31, 58, 0.15);
}

/* Active page */
.gsbd-pagination .page-numbers li .page-numbers.current {
    color: #ffffff;
    background: #e7a51a;

    border-color: #e7a51a;

    box-shadow:
        0 8px 20px rgba(231, 165, 26, 0.22);

    cursor: default;
}

/* Don't move active page on hover */
.gsbd-pagination .page-numbers li .page-numbers.current:hover {
    transform: none;
}

/* Previous / Next */
.gsbd-pagination .page-numbers li .prev,
.gsbd-pagination .page-numbers li .next {
    gap: 9px;

    padding: 0 16px;

    color: #0b1f3a;

    background: #f8fafc;

    border-color: #dbe2ea;
}

/* Prev / Next hover */
.gsbd-pagination .page-numbers li .prev:hover,
.gsbd-pagination .page-numbers li .next:hover {
    color: #ffffff;
    background: #0b1f3a;

    border-color: #0b1f3a;
}

/* Arrow */
.gsbd-pagination .page-numbers li .prev i,
.gsbd-pagination .page-numbers li .next i {
    font-size: 11px;

    transition: transform 0.25s ease;
}

/* Arrow animation */
.gsbd-pagination .page-numbers li .prev:hover i {
    transform: translateX(-3px);
}

.gsbd-pagination .page-numbers li .next:hover i {
    transform: translateX(3px);
}

/* Dots */
.gsbd-pagination .page-numbers li .dots {
    min-width: 30px;

    padding: 0;

    color: #64748b;

    background: transparent;

    border-color: transparent;

    cursor: default;
}

.gsbd-pagination .page-numbers li .dots:hover {
    color: #64748b;

    background: transparent;

    border-color: transparent;

    transform: none;

    box-shadow: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .gsbd-pagination {
        margin-top: 36px;
    }

    .gsbd-pagination .page-numbers {
        gap: 5px;
    }

    .gsbd-pagination .page-numbers li .page-numbers {
        min-width: 38px;
        height: 38px;

        padding: 0 9px;

        border-radius: 8px;

        font-size: 13px;
    }

    .gsbd-pagination .page-numbers li .prev,
    .gsbd-pagination .page-numbers li .next {
        padding: 0 11px;
    }

    /* Hide text on mobile */
    .gsbd-pagination .page-numbers li .prev span,
    .gsbd-pagination .page-numbers li .next span {
        display: none;
    }

    .gsbd-pagination .page-numbers li .prev,
    .gsbd-pagination .page-numbers li .next {
        width: 38px;
        padding: 0;
        gap: 0;
    }

}

/* =========================================
   RESPONSIVE CONTENT TABLE FIX
========================================= */

.entry-content table,
.product-description table,
.woocommerce-product-details__short-description table,
.woocommerce-Tabs-panel table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.entry-content table td,
.entry-content table th,
.product-description table td,
.product-description table th,
.woocommerce-product-details__short-description table td,
.woocommerce-product-details__short-description table th,
.woocommerce-Tabs-panel table td,
.woocommerce-Tabs-panel table th {
    white-space: nowrap;
}


/* Prevent content overflow */
.entry-content,
.product-description,
.woocommerce-product-details__short-description,
.woocommerce-Tabs-panel {
    max-width: 100%;
    overflow-x: hidden;
}