body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
}

.hero-section {
    height: 90vh;
    background: url('../assets/images/bg-image.png');
    opacity: .9;
}

.bg-blur {
    --header-bg-margin: calc(var(--h-contain) - 20px);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    mix-blend-mode: difference;
    background-color: hsla(0, 0%, 67%, 0.638);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .6);
    opacity: .9;
    position: fixed;
    top: 10px;
    z-index: 10;
}

.product-card {
    height: 100vh;
}

@media (max-width: 991px) {
    .product-card {
        height: 50vh;
    }
}

.card {
    border-radius: 5px;
}

footer small {
    opacity: .8
}

:root {
    --bg: #0b0f14;
    --bg-2: #0f1318;
    --card: #0f1a24;
    --muted: #9aa3ad;
    --accent: #0d6efd;
    --text: #e9eef5;
    --soft: #121418;
    --glass: rgba(255, 255, 255, 0.03);
    font-family: var(--body-font);
}

body.theme-dark {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.fs-big {
    font-size: 5rem;
}

.fs-md {
    font-size: 3rem;
}

@media (max-width: 991px) {
    .fs-big {
        font-size: 2rem;
    }

    .fs-md {
        font-size: 1rem;
    }
}

a:hover {
    color: #9ecbff;
    text-decoration: underline;
}

.bg-dark-2 {
    background: var(--bg-2);
}

.dynamic-text {
    mix-blend-mode: difference;
    color: white;
}

/* .site-footer {
    background: linear-gradient(180deg, #050607 0%, #071018 100%);
} */

.hero {
    padding: 6rem 0;
}

.hero .hero-image {
    max-width: 540px;
    width: 100%;
}

.card {
    background: transparent;
}

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

.navbar-toggler {
    border-radius: 0;
    background: #fff;
}

/* 
.nav-item a.active {
    color: red;
} */

/* mobile offcanvas */
.mobile-offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 1080;
    transition: transform .28s ease;
    overflow-y: auto;
    background: var(--bg);
}

.mobile-offcanvas.open {
    transform: translateX(0%);
    left: 0;
}

/* backdrop */
.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1075;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.offcanvas-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: all .6s cubic-bezier(.2, .9, .2, 1);
}

.fade-in.delay-1 {
    transition-delay: .12s;
}

.fade-in.delay-2 {
    transition-delay: .24s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* small helpers */
.divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bg-black {
    background: #06070a;
}

/* responsiveness */
@media (max-width: 991px) {
    .hero {
        padding: 3rem 0;
    }

    .hero .hero-image {
        max-width: 320px;
        display: block;
        margin: 0 auto;
    }
}

.typewriter-container {
    color: #212225;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    overflow: hidden;
}

.typewriter-container h1 {
    font-size: 2rem;
    border-right: 3px solid #000705;
    white-space: nowrap;
    overflow: hidden;

}

@media (max-width: 991px) {

    .typewriter-container h1 {
        font-size: 18px;

    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #000806;
    }
}

#typewriter {
    animation: blink 0.75s step-end infinite;
}

.btn-floating {
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.team-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(227, 221, 221, 0.6);
}

.team-card:hover {
    box-shadow: 0 2px 10px blue;
}

@media (max-width: 991px) {
    .team-card {
        border: none;
        border-radius: none;
        box-shadow: none;
    }
}

.team-social {
    color: white;
}

.team-social:hover {
    color: blue;
}

.container-fluid div.my-row:hover {
    background: #6b66665e;
}

.scroll-container {
    position: relative;
    display: flex;
    align-items: center;
}

.faq {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    padding: 5px;
    width: 100%;
}


.faq::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */
}


/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00000049;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 5;
}

.scroll-btn:hover {
    background-color: #000000;
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

.faq-n {
    border: 1px solid black;
    margin: 10px;
    padding: 10px;
    height: 250px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}