:root {
    color-scheme: light;
    --brand-deep: #1c1440;
    --brand-blue: #5030a0;
    --brand-gold: #ff9500;
    --brand-cream: #fbf8ff;
    --text-muted: #5c596e;
    --brand-teal: #23b3a2;
    --brand-magenta: #f05a8c;
    --card-shadow: 0 25px 55px rgba(27, 24, 86, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Inter",
        "Segoe UI",
        system-ui,
        -apple-system,
        sans-serif;
    background-color: #fdfcfe;
    background-image: var(--bg-img);
    background-repeat: repeat;
    background-size: 520px, 320px, 420px, 280px;
    background-position:
        top -60px right -60px,
        15% 140px,
        85% calc(100% - 160px),
        left -80px bottom -60px;
    color: var(--brand-deep);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 255, 255, 0.8),
            transparent 45%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(244, 247, 255, 0.65),
            transparent 55%
        );
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='rgba(89,77,140,0.08)' stroke-width='0.5'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

[data-animate] {
    opacity: 0;
    will-change: opacity, transform;
}

[data-animate].animate__animated {
    opacity: 1;
}

[data-parallax] {
    will-change: transform;
    transition: transform 0.2s ease-out;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

main {
    padding: 15px;
}

.site-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
}

.container {
    max-width: 1550px;
}

.section-block {
    position: relative;
    isolation: isolate;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 3rem;
    padding: 3rem;
    border: 1px solid rgba(80, 48, 160, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--card-shadow);
}

.section-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--section-image);
    background-size: cover;
    background-position: center;
    opacity: 0.09;
    filter: saturate(0.7);
    z-index: 0;
    pointer-events: none;
}

.section-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(255, 255, 255, 0.9)
    );
    z-index: -1;
    pointer-events: none;
}

.site-header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    border-bottom: 1px solid rgba(80, 48, 160, 0.08);
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(29, 22, 84, 0.08);
}

.site-header.bg-white {
    background: rgba(255, 255, 255, 0.98);
}

.site-header.bg-transparent {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(80, 48, 160, 0.05);
}

header.bg-transparent.home-page nav a {
    color: var(--brand-deep);
}

header {
    transition: background-color 0.3s ease;
}

.brand-mark__meta .brand-mark__title {
    color: var(--brand-deep);
}

.brand-mark__meta.top0 .brand-mark__subtitle {
    color: var(--text-muted);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark img {
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
}

.brand-mark__meta {
    display: flex;
    flex-direction: column;
}

.brand-mark__title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-mark__subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.primary-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
    position: relative;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: var(--brand-blue);
}

.primary-nav a.is-active {
    color: var(--brand-blue);
    position: relative;
    transition: 0.3s;
}

.primary-nav a::before,
.primary-nav a::after {
    position: absolute;
    content: "";
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--brand-blue);
    transition: width 0.25s ease;
}

.primary-nav a::before {
    left: 50%;
}

.primary-nav a::after {
    right: 50%;
}

.primary-nav a.is-active::before,
.primary-nav a.is-active::after,
.primary-nav a:hover::before,
.primary-nav a:hover::after,
.primary-nav a:focus-visible::before,
.primary-nav a:focus-visible::after {
    width: 50%;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(95, 56, 137, 0.4);
    background: transparent;
    color: var(--brand-blue);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 4px;
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.pill-button {
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: #7a3df2;
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 10px 35px rgba(122, 61, 242, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pill-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 35px rgba(122, 61, 242, 0.45);
}

.pill-button--light {
    background: #fff;
    color: var(--brand-blue) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero--video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: clamp(480px, 90vh, 860px);
    padding: 6rem 0 5rem;
    margin-bottom: 4rem;
    overflow: hidden;
    border-radius: 0;
    margin-top: 80px;
}

.hero--video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero--video__scrim {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.35) 70%); */
    z-index: 1;
}

.hero--video .hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
}

.hero--video .hero__body {
    color: rgb(122, 61, 242);
    font-weight: 500;
    font-size: 18px;
    /* text-shadow: 0 0 10px rgba(172, 172, 172, 0.597); */
}

.hero--video .hero__cta {
    justify-content: flex-start;
}

.hero__eyebrow {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-blue);
    font-weight: 700;
}

.hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 1rem 0;
    color: var(--brand-gold);
}

.hero__body {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero__meta {
    margin-top: 15px;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.chip,
.icon-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(200, 162, 50, 0.08);
    border: 1px solid rgba(160, 119, 48, 0.899);
    font-size: 0.85rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.icon-chip {
    border-radius: 18px;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.08em;
}

.chip i,
.icon-chip i {
    color: var(--brand-gold);
}

.icon-chip--brand i {
    color: var(--brand-gold);
}

.icon-chip--ghost {
    background: rgba(35, 179, 162, 0.08);
    border-color: rgba(35, 179, 162, 0.2);
}

.capability-card .icon-chip,
.process-step .icon-chip,
.testimonial-card .icon-chip {
    align-self: flex-start;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--brand-blue);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-indicator i {
    animation: pulseDown 1.8s infinite;
}

.hero--video .scroll-indicator {
    color: rgba(255, 255, 255, 0.85);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 40%;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(61, 209, 196, 0.55),
            transparent 60%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(244, 95, 160, 0.35),
            transparent 60%
        );
    filter: blur(0);
    opacity: 0.45;
    animation: morphBlob 24s ease-in-out infinite alternate;
}

.floating-shape--one {
    top: -40px;
    left: -60px;
}

.floating-shape--two {
    bottom: -80px;
    right: 10%;
    animation-delay: 6s;
}

.floating-shape--three {
    top: 20%;
    right: -120px;
    animation-delay: 12s;
}

@keyframes pulseDown {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(6px);
        opacity: 0.4;
    }

    100% {
        transform: translateY(0);
        opacity: 0.8;
    }
}

@keyframes morphBlob {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 60% 40% / 50% 30% 70% 50%;
    }

    50% {
        transform: translate3d(30px, -20px, 0) rotate(20deg) scale(1.2);
        border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
    }

    100% {
        transform: translate3d(-20px, 10px, 0) rotate(-12deg) scale(0.95);
        border-radius: 45% 55% 65% 35% / 55% 35% 65% 45%;
    }
}

.ghost-button {
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(80, 48, 160, 0.3);
    background: transparent;
    color: var(--brand-blue);
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: auto;
}

.ghost-button:hover {
    border-color: var(--brand-blue);
}

.ghost-button--light {
    border-color: var(--brand-gold);
    color: #fff;
    background: transparent;
    color: var(--brand-gold);
}

.ghost-button--light:hover {
    border-color: #fff;
}

.hero-media {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(15, 25, 42, 0.2);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    content: "Custom uniforms delivered globally";
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(13, 27, 42, 0.8);
    color: #fff;
    font-size: 0.85rem;
}

.stats {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.stat-card {
    padding: 1.8rem;
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(80, 48, 160, 0.08);
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0),
        rgba(248, 245, 255, 0.9)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(80, 48, 160, 0.08);
    border: 1px solid rgba(80, 48, 160, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--brand-blue);
    position: relative;
    z-index: 1;
}

.stat-card__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-deep);
    position: relative;
    z-index: 1;
}

.stat-card__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--brand-deep);
}

.section-heading p {
    margin: 0;
    color: var(--text-muted);
    max-width: 480px;
}

.product-grid {
    /* margin: 4rem 0; */
}

.product-card {
    position: relative;
    border-radius: 24px;
    min-height: 350px;
    padding: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    box-shadow: 0 25px 45px rgba(15, 25, 42, 0.15);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card span {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-card strong {
    font-size: 1.4rem;
}

.product-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    font-size: 1.1rem;
    color: var(--brand-gold);
}

.process {
    background: #fff;
    border-radius: 32px;
    padding: 1.5rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(80, 48, 160, 0.08);
    box-shadow: var(--card-shadow);
}

.process-steps {
    counter-reset: process;
}

.process-step {
    padding: 1.5rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    height: 270px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(80, 48, 160, 0.06);
    gap: 0.75rem;
}

.process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    font-weight: 700;
    color: rgba(32, 24, 68, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

/* .capabilities-grid,
.testimonial-grid,
.content-grid {
  margin-bottom: 4rem;
} */

.capability-card,
.testimonial-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(80, 48, 160, 0.08);
    min-height: 200px;
    box-shadow: var(--card-shadow);
    color: var(--brand-deep);
}

.capability-card h3,
.testimonial-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.capability-card p,
.testimonial-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.testimonial-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--brand-blue);
}

.cta {
    background: transparent;
    color: var(--brand-deep);
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta p {
    max-width: 500px;
    color: var(--text-muted);
}

.cta .pill-button {
    background: linear-gradient(120deg, #ffb36b, #7a3df2);
    color: #fff;
    box-shadow: 0 20px 45px rgba(122, 61, 242, 0.25);
}

.cta.section-block::before {
    opacity: 0.15;
}

.cta.section-block::after {
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.9)
    );
}

.page-hero {
    margin-top: 6rem;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero p {
    max-width: 640px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: underline;
}

.list-card {
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(80, 48, 160, 0.08);
    background: #fff;
    height: 100%;
    box-shadow: var(--card-shadow);
    color: var(--brand-deep);
}

.list-card h3 {
    margin-top: 0;
}

.media-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(80, 48, 160, 0.08);
}

.media-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.media-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--brand-deep);
}

.media-card__body p {
    margin: 0;
    color: var(--text-muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(95, 56, 137, 0.1);
    color: var(--brand-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.div-body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.div-body img {
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(15, 25, 42, 0.15);
}

input,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(95, 56, 137, 0.2);
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(95, 56, 137, 0.1);
}

.contact-card {
    padding: 2rem;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(80, 48, 160, 0.08);
    color: var(--brand-deep);
}

.contact-card a {
    color: var(--brand-blue);
    font-weight: 600;
}

.timeline {
    display: grid;
    gap: 1.5rem;
    border-left: 2px solid rgba(80, 48, 160, 0.15);
    padding-left: 1.5rem;
}

.timeline-item {
    position: relative;
    padding-left: 1rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand-teal);
    left: -2rem;
    top: 0.4rem;
    box-shadow: 0 0 0 6px rgba(57, 209, 196, 0.1);
}

.hero.section-block {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.hero.section-block::before {
    opacity: 0.12;
}

.hero.section-block::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.94)
    );
}

.process .section-heading {
    margin-top: 0;
}

.site-footer {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--brand-deep);
    border-top: 1px solid rgba(80, 48, 160, 0.08);
    position: relative;
    overflow: hidden;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta h2 {
    margin: 0.5rem 0 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.footer-main {
    display: flex;
    gap: 2rem;
    padding: 3rem 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    min-width: 220px;
    text-align: center;
}

.brand-name {
    color: #803ec7;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.footer-brand img {
    width: 140px;
    margin-inline: auto;
}

.footer-brand p {
    margin-top: 1rem;
    letter-spacing: 0.2em;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.footer-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.footer-column h4 {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-column a {
    color: inherit;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(80, 48, 160, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid rgba(80, 48, 160, 0.2);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
    border-top: 1px solid rgba(80, 48, 160, 0.08);
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Product Gallery Styles */
.product-category {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(80, 48, 160, 0.08);
}

.product-category:last-child {
    border-bottom: none;
}

.category-header {
    margin-bottom: 1.5rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-title i {
    font-size: 1.5rem;
    color: var(--brand-blue);
}

.category-title h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--brand-deep);
}

.product-count {
    padding: 0.25rem 0.75rem;
    background: rgba(80, 48, 160, 0.08);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-gallery-grid {
    margin-bottom: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #fff;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(80, 48, 160, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(80, 48, 160, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-hidden {
    display: none;
}

.gallery-item-hidden.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.category-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.show-more-btn {
    padding: 0.75rem 2rem;
    border-radius: 999px;
    border: 1px solid rgba(80, 48, 160, 0.3);
    background: transparent;
    color: var(--brand-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.show-more-btn:hover {
    border-color: var(--brand-blue);
    background: rgba(80, 48, 160, 0.05);
    transform: translateY(-2px);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.product-nav-wrapper {
    position: relative;
    display: inline-block;
}

.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.15);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 4px;
}

.category-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-dropdown li {
    margin: 0;
    padding: 0;
}

.category-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.category-dropdown li a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    padding-left: 25px;
}

@media (max-width: 768px) {
    .product-nav-wrapper {
        display: block;
        width: 100%;
    }

    .category-dropdown {
        position: static;
        width: 100%;
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }

    .category-dropdown.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .category-dropdown li a {
        padding: 10px 15px;
    }
}

.category-detail-section {
    margin-bottom: 4rem;
}

.category-detail-image {
    position: relative;
    overflow: hidden;
}

.category-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(15, 25, 42, 0.15);
    transition: transform 0.3s ease;
}

.category-detail-image:hover img {
    transform: scale(1.02);
}

.category-detail-content {
    padding: 2rem 0;
}

.category-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.category-detail-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.category-detail-text p {
    margin-bottom: 1.25rem;
}

.category-detail-text ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.category-detail-text ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.category-detail-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5f3a8f;
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .category-detail-content {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .category-detail-image {
        margin-bottom: 1rem;
    }
}

.gallery-item.product-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(80, 48, 160, 0.1);
    border: 1px solid rgba(80, 48, 160, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item.product-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(80, 48, 160, 0.2);
    border-color: rgba(80, 48, 160, 0.2);
}

.gallery-item.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-primary {
    opacity: 1;
    z-index: 1;
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-secondary {
    opacity: 0;
    z-index: 2;
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.product-image-container.has-secondary-image:hover
    .product-image-primary {
    opacity: 0;
    transform: scale(1.1);
}

.gallery-item.product-image-container.has-secondary-image:hover
    .product-image-secondary {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-item.product-image-container.has-secondary-image:hover img {
    transform: scale(1.1);
}

.gallery-item.product-image-container:not(.has-secondary-image):hover img {
    transform: scale(1.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.9) 100%
    );
    color: #fff;
    z-index: 5;
    transform: translateY(0);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.gallery-item.product-image-container:hover .product-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.product-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-overlay .badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-blue);
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.product-category-badge .badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-blue);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.gallery-item.product-image-container:hover .product-category-badge .badge {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.product-item {
    margin-bottom: 1.5rem;
}

.product-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card-image {
    width: 100%;
    overflow: hidden;
}

/* Product item text that appears outside overlay (for accessibility) */
.gallery-item.product-image-container::after {
    content: attr(data-product-name);
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-deep);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .gallery-item.product-image-container {
        aspect-ratio: 1;
        border-radius: 16px;
    }

    .product-overlay {
        padding: 1.25rem;
        transform: translateY(0);
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }

    .product-overlay h4 {
        font-size: 1rem;
    }

    .product-overlay .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    .product-category-badge {
        top: 8px;
        right: 8px;
    }

    .product-category-badge .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-brand {
        text-align: left;
    }

    .category-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 995px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-header__inner {
        flex-wrap: wrap;
    }

    .primary-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        display: none;
        padding: 0 0 1rem;
    }

    .primary-nav.is-open {
        display: flex;
    }

    header {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .primary-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .process {
        padding: 2rem;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* .ghost-button {
    padding: 10px 20px;
    font-size: 14px;
  } */
    header {
        padding: 0 20px;
    }

    .section-heading {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .section-block {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    p,
    a,
    span {
        font-size: 0.8rem !important;
    }

    .brand-mark__meta {
        display: none;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

/* Clients Marquee Styles */
.clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background: transparent;
}

.clients-marquee .marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
}

.client-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(80, 48, 160, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    min-width: 180px;
}

.client-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.client-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.client-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-deep);
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    max-width: 150px;
}
.blog-content {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

.blog-content * {
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    white-space: normal !important;
}

.blog-content pre,
.blog-content code {
    white-space: pre-wrap !important;
}

.blog-content img,
.blog-content video,
.blog-content iframe {
    max-width: 100%;
    height: auto;
}

.blog-content table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
}
.floating-container {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating-container a {
    background-color: #7810f6;
    border-color: #5030a0;
    color: var(--brand-cream);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.525);
    transition: background-color 0.3s ease;
}
