h1,
h2,
h3,
h4,
h5,
h6,
.nav-link {
    color: var(--heading);
}

.nav-link {
    font-weight: bold;
}

h2,
h3,
h4,
h5,
h6,
.card-title {
    background-image: linear-gradient(to right, #DD1C1A, #EBCE02);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.section-heading,
.h4,
.h5 {
    background-image: linear-gradient(to right, #DD1C1A, #EBCE02);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

a {
    color: var(--link);
    text-decoration: none;
}

footer {
    background-color: #01AED5;
    color: #fff;
}

main {
    background-color: var(--bg);
}

.hero {
    padding-top: 110px;
    padding-bottom: 95px;
    color: #fff;
}

.hero h1 {
    color: #fff;
    font-size: 4em;
    text-shadow: 6px 6px #DD1C1A;
    font-weight: 900;
}

.hero a {
    color: #fff;
}

.hero-home {
    background-image: linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.42)), url("/img/bps-designs-homepage-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-our-work-item {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/img/our-work-hero-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.hero-blog-item,
.hero-page-item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-page-item {
    position: relative;
}

.hero-page-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.56));
    z-index: 0;
}

.hero-page-item > .container {
    position: relative;
    z-index: 1;
}

.hero-page-item > .custom-shape-divider-bottom-hero {
    position: absolute;
    z-index: 2;
}

.hero-location {
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 600px) {

    .hero-home,
    .hero-our-work-item,
    .hero-blog-item,
    .hero-page-item,
    .hero-location {
        background-attachment: initial;
    }

    .hero {
        padding-top: 88px;
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-actions .btn {
        width: 100%;
    }

}

.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-hero svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 52px;
}

.custom-shape-divider-bottom-hero .shape-fill {
    fill: #FFFFFF;
}

.custom-shape-divider-top-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-footer svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.custom-shape-divider-top-footer .shape-fill {
    fill: #FFFFFF;
}


:root {
    --bg: #ffffff;
    --bg-soft: #fff7e8;
    --bg-section: linear-gradient(180deg, rgba(241, 161, 34, 0.08), rgba(1, 174, 213, 0.08));
    --text: #24303f;
    --text-muted: #405166;
    --heading: #DD1C1A;
    --link: #DD1C1A;
    --nav-bg: rgba(255, 255, 255, 0.96);
    --card-bg: #ffffff;
    --card-border: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

:root[data-theme='dark'] {
    --bg: #0f172a;
    --bg-soft: #162033;
    --bg-section: linear-gradient(180deg, rgba(24, 34, 52, 0.94), rgba(15, 23, 42, 0.98));
    --text: #e5eefc;
    --text-muted: #c4d2e7;
    --heading: #f2c94c;
    --link: #8bd3ff;
    --nav-bg: rgba(15, 23, 42, 0.92);
    --card-bg: #162033;
    --card-border: rgba(139, 211, 255, 0.14);
    --shadow-soft: 0 1rem 2rem rgba(0, 0, 0, 0.28);
}

body {
    color: var(--text);
    background-color: var(--bg);
    transition: background-color 0.2s ease, color 0.2s ease;
}

nav.navbar {
    border-bottom: 4px solid #F3C709;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
}

.nav-link:hover,
.nav-link:focus {
    color: #b11211;
}

.navbar-toggler {
    border-color: rgba(221, 28, 26, 0.35);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(221, 28, 26, 0.2);
}

.navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.navbar-nav {
    gap: 0.65rem;
}

.navbar-nav .nav-link.active {
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: var(--card-bg);
    color: var(--heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus {
    transform: translateY(-1px);
    color: var(--link);
}

footer .container {
    padding-top: 80px;
    padding-bottom: 32px;
}

footer h3 {
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

iframe {
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px #000;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.92);
}

h2,
h3,
h4 {
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 30px;
}

p {
    line-height: 1.75;
    color: var(--text);
}

li {
    color: var(--text);
}

.blog-meta {
    color: #617186;
    border-bottom: 1px solid rgba(36, 48, 63, 0.14);
}

.blog-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    width: fit-content;
    padding: 0.24rem 0.5rem;
    border-radius: 999px;
    background: rgba(36, 48, 63, 0.06);
    border: 1px solid rgba(36, 48, 63, 0.08);
    color: #617186;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
}

h5,
h6 {
    font-weight: 650;
}

.cta-bg {
    background-image: url("/img/cta-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.cta-text {
    font-size: 1.3rem;
}

.top-bar {
    background-color: #F1A122;
    color: #fff;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.grecaptcha-badge {
    display: none;
}

#confetti-canvas {
    top: 0;
    position: absolute;
}

.badge a {
    color: #fff;
    text-decoration: none;
}

.card-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clamp-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.clamp-text-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

#contact-form {
    box-shadow: 0 0 10px #ccc;
    background: #fff;
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e66e2;
}

.lead-text {
    font-size: 1.18rem;
    color: var(--text-muted);
}

.lead-text-sm {
    font-size: 1.08rem;
    color: var(--text-muted);
}

.hero-inner {
    max-width: 920px;
    padding-top: 0.5rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.info-card {
    background: linear-gradient(180deg, var(--card-bg), var(--bg-soft));
}

.card,
.info-card,
.product-card,
.theme-toggle {
    border-color: var(--card-border) !important;
}

.card,
.info-card,
.product-card {
    background-color: var(--card-bg);
    box-shadow: var(--shadow-soft);
}

.feature-list li {
    margin-bottom: 0.75rem;
}

.text-link-strong {
    color: #0e66e2;
    font-weight: 700;
}

:root[data-theme='dark'] .text-link-strong {
    color: #8bd3ff;
}

:root[data-theme='dark'] h2,
:root[data-theme='dark'] h3,
:root[data-theme='dark'] h4,
:root[data-theme='dark'] h5,
:root[data-theme='dark'] h6,
:root[data-theme='dark'] .card-title,
:root[data-theme='dark'] .section-heading,
:root[data-theme='dark'] .h4,
:root[data-theme='dark'] .h5 {
    background-image: linear-gradient(to right, #8bd3ff, #c7b8ff);
}

:root[data-theme='dark'] .blog-meta {
    color: #b4c3d6;
    border-bottom-color: rgba(139, 211, 255, 0.16);
}

:root[data-theme='dark'] .blog-card-meta {
    background: rgba(139, 211, 255, 0.08);
    color: #b9c9db;
}

:root[data-theme='dark'] .blog-card-image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6, 10, 18, 0.28), rgba(6, 10, 18, 0.42));
    pointer-events: none;
}

:root[data-theme='dark'] .blog-card-meta {
    background: rgba(139, 211, 255, 0.14);
    border-color: rgba(139, 211, 255, 0.24);
    color: #eef6ff;
}

:root[data-theme='dark'] .top-bar {
    background-color: #182235;
}

:root[data-theme='dark'] nav.navbar {
    border-bottom-color: #7c6518;
}

:root[data-theme='dark'] .hero-home {
    background-image: linear-gradient(rgba(6, 10, 18, 0.64), rgba(6, 10, 18, 0.78)), url("/img/bps-designs-homepage-bg.webp");
}

:root[data-theme='dark'] .hero-blog-item {
    position: relative;
}

:root[data-theme='dark'] .hero-blog-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(6, 10, 18, 0.64), rgba(6, 10, 18, 0.78));
    z-index: 0;
}

:root[data-theme='dark'] .hero-blog-item > .container {
    position: relative;
    z-index: 1;
}

:root[data-theme='dark'] .hero-blog-item > .custom-shape-divider-bottom-hero {
    position: absolute;
    z-index: 2;
}

:root[data-theme='dark'] .hero h1 {
    color: #d7ddea;
    text-shadow: 4px 4px #243246;
}

:root[data-theme='dark'] .hero .btn-hero-primary {
    background-color: #b8931b;
    border-color: #b8931b;
    color: #0f172a !important;
}

:root[data-theme='dark'] .hero .btn-hero-primary:hover,
:root[data-theme='dark'] .hero .btn-hero-primary:focus,
:root[data-theme='dark'] .hero .btn-hero-primary:active {
    background-color: #c9a227;
    border-color: #c9a227;
    color: #0f172a !important;
}

:root[data-theme='dark'] .nav-link {
    color: #c8d5e6;
}

:root[data-theme='dark'] .nav-link:hover,
:root[data-theme='dark'] .nav-link:focus {
    color: #8bd3ff;
}

:root[data-theme='dark'] .cta-panel {
    background: linear-gradient(135deg, #14324a, #1b4568);
}

:root[data-theme='dark'] .btn-cta-light {
    background-color: #2d4a6b;
    border-color: #2d4a6b;
    color: #e5eefc !important;
}

:root[data-theme='dark'] .btn-card-action {
    background-color: #37587d;
    border-color: #37587d;
    color: #e5eefc !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

:root[data-theme='dark'] .btn-card-action:hover,
:root[data-theme='dark'] .btn-card-action:focus,
:root[data-theme='dark'] .btn-card-action:active {
    background-color: #4a6b94;
    border-color: #4a6b94;
    color: #ffffff !important;
}

:root[data-theme='dark'] .btn-cta-light:hover,
:root[data-theme='dark'] .btn-cta-light:focus,
:root[data-theme='dark'] .btn-cta-light:active {
    background-color: #37587d;
    border-color: #37587d;
    color: #ffffff !important;
}

:root[data-theme='dark'] footer {
    background-color: #14324a;
    color: #bfd0df;
}

:root[data-theme='dark'] footer h3 {
    color: #d9e3ec;
}

:root[data-theme='dark'] footer p,
:root[data-theme='dark'] footer li {
    color: #bfd0df;
}

:root[data-theme='dark'] footer a {
    color: #c9d9e6;
}

:root[data-theme='dark'] footer a:hover,
:root[data-theme='dark'] footer a:focus {
    color: #f1f5f9;
}

:root[data-theme='dark'] .custom-shape-divider-bottom-hero .shape-fill,
:root[data-theme='dark'] .custom-shape-divider-top-footer .shape-fill {
    fill: var(--bg);
}

:root[data-theme='dark'] .section-label {
    color: #8bd3ff;
}

:root[data-theme='dark'] .navbar-brand img {
    filter: brightness(0.72) contrast(0.98);
}

:root[data-theme='dark'] .navbar-toggler {
    border-color: rgba(139, 211, 255, 0.35);
}

:root[data-theme='dark'] .navbar-toggler-icon {
    filter: invert(1);
}

.hero-kicker {
    letter-spacing: 0.18em;
    font-weight: 700;
    text-shadow: 1px 1px 2px #000;
}

.section-soft {
    background: var(--bg-section);
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.cta-panel {
    background: linear-gradient(135deg, #01AED5, #0e66e2);
}

footer {
    transition: background-color 0.2s ease, color 0.2s ease;
}

a.badge {
    text-decoration: none;
}

.hero-actions .btn {
    min-width: 220px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-hero-primary {
    background-color: #F3C709;
    border: 2px solid #F3C709;
    color: #1f1f1f !important;
    font-weight: 700;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus,
.btn-hero-primary:active {
    background-color: #e0b807;
    border-color: #e0b807;
    color: #1f1f1f !important;
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    border: 2px solid #ffffff;
    color: #ffffff !important;
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus,
.btn-hero-secondary:active {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #0e66e2 !important;
}

:root[data-theme='dark'] .btn-hero-secondary {
    background-color: rgba(28, 42, 61, 0.78);
    border-color: rgba(139, 211, 255, 0.32);
    color: #e5eefc !important;
}

:root[data-theme='dark'] .btn-hero-secondary:hover,
:root[data-theme='dark'] .btn-hero-secondary:focus,
:root[data-theme='dark'] .btn-hero-secondary:active {
    background-color: rgba(48, 68, 95, 0.92);
    border-color: rgba(139, 211, 255, 0.42);
    color: #ffffff !important;
}

.btn-cta-light {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #0e66e2 !important;
    font-weight: 700;
}

.btn-cta-light:hover,
.btn-cta-light:focus,
.btn-cta-light:active {
    background-color: #f2f7ff;
    border-color: #f2f7ff;
    color: #0e66e2 !important;
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background-color: #01AED5;
    border: 2px solid #01AED5;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 0.5rem 1rem rgba(1, 174, 213, 0.18);
}

.btn-card-action:hover,
.btn-card-action:focus,
.btn-card-action:active {
    background-color: #0e66e2;
    border-color: #0e66e2;
    color: #ffffff !important;
}

.cta-panel,
.cta-panel h2,
.cta-panel .cta-copy {
    color: #ffffff !important;
}

table {
    border: solid 1px #F1A122;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 20px auto;
}

table th {
    background-color: #F1A122;
    border: solid 1px #F1A122;
    color: #ffffff;
    padding: 10px;
    text-align: left;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
}

table tbody td {
    border: solid 1px #F1A122;
    color: #333;
    padding: 10px;
    text-shadow: 1px 1px 1px #fff;
}

.banner {
    box-shadow: 0 0 10px 2px #999;
}

