.northlight-banner-section {
    min-height: 900px;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-1 {
    z-index: 1;
}

.section-2 {
    z-index: 2;
    min-height: 0px;
    background-color: black;
}

.section-3 {
    background: #0B212C;
    z-index: 3;
}

.banner-video-container {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (max-width: 1200px) {
    .banner-video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 10 / 9;
    }

    .fullscreen-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
    }
}

.circle-container {
    width: 130px;
    height: 130px;
    position: relative;
    display: inline-block;
}

.progress-circle-svg {
    width: 130px;
    height: 130px;
}

.circle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

.circle-label-content .big {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-top: -8px;
}

.circle-label-content .small {
    display: block;
    font-size: 16px;
    font-weight: 300;
    margin-top: -8px;
}

.progress-bar-wrapper {
    margin-bottom: 20px;
}

.progress-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 300;
}

.progress-bar-container {
    background-color: #282828;
    overflow: hidden;
    height: 2px;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #fff;
    color: #fff;
    text-align: center;
    line-height: 24px;
    transition: width 1.5s ease;
}

#microSD-counter {
    font-size: 64px;
    font-weight: 400;
}

.microSD-GB {
    position: absolute;
    bottom: 13px;
    left: 118px;
    font-size: 32px;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .section-1 {
        min-height: 700px;
    }
}

@media only screen and (min-width: 576px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        transition: transform 0.3s ease-in-out;
    }

    .navbar.hidden {
        transform: translateY(-100%);
    }

    .navbar.visible {
        transform: translateY(0);
    }
}

/* Features Section */
.features-container-desktop {
    position: relative;
    height: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-container-mobile {
    position: relative;
    max-height: 850px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.features-container-mobile.open {
    min-height: 620px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    height: 1000px;
}

.image-wrapper-mobile {
    position: relative;
    display: inline-block;
    max-height: 850px;
    padding: 0 10px;
}

.feature-wrapper-mobile {
    background-color: #0B212C;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.feature-wrapper-mobile.visible {
    opacity: 1;
    visibility: visible;
}

.feature-wrapper-mobile.hidden {
    opacity: 0;
    visibility: hidden;
}

.engineering-drawing {
    height: 100%;
    display: block;
}

.feature-background-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.engineering-drawing-mobile {
    max-width: 100%;
    max-height: 850px;
    display: block;
    object-fit: contain;
    object-position: top center;
}

.engineering-drawing-mobile.open {
    min-height: 620px;
}

.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.circle {
    pointer-events: none;
    fill: rgba(0, 123, 255, 0.3);
}

.circle-inner {
    cursor: pointer;
    fill: rgba(0, 123, 255, 0.7);
}

.content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.content.show {
    opacity: 1;
}

.text-overlay {
    color: white;
    position: absolute;
    top: 50%;
    left: 25%;
    overflow: hidden;
}

.text-overlay-mobile {
    color: white;
    position: absolute;
    top: 45%;
    left: 0;
    overflow: hidden;
    padding: 0 12px;
}

.feature-description {
    font-size: 20px;
    font-weight: 700;
}

.disclaimer {
    padding-top: 10px;
    color: #b6b6b6;
    font-size: 12px;
    font-weight: 300;
}

.disclaimer-desktop {
    padding-bottom: 30px;
    color: #90A3AD;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

.disclaimer-mobile {
    color: #90A3AD;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    padding: 0 20px 30px;
}

.xmark {
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
}

.bg-color {
    background-color: #0B212C;
}

.engineering-drawing-position {
    left: 22px;
}

.mobile-container-padding {
    padding: 50px 0 0 0;
}

.engineering-drawing-md {
    display: none;
}

.section a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
}

.section a:hover {
    text-decoration: underline !important;
}

.toggle-container {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.toggle-container .arrow {
    margin: 1px;
    transition: transform 0.3s ease;
}

.toggle-container.active .arrow {
    transform: rotate(90deg);
}

.toggle-content {
    color: #90A3AD;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-bottom 0.3s ease-out;
}

.toggle-content strong {
    color: white;
    font-weight: 400;
}

.toggle-content.open {
    margin-bottom: 1rem;
    max-height: 200px;
    opacity: 1;
}

@media only screen and (min-width: 1200px) {
    .features-container-mobile {
        display: none;
    }

    .disclaimer-mobile {
        display: none;
    }

    .mobile-container-padding {
        padding: 0;
    }
}

@media only screen and (min-width: 1800px) {
    .text-overlay {
        max-width: 460px;
    }
}

@media only screen and (max-width: 1799px) {
    .text-overlay {
        max-width: 460px;
    }
}

@media only screen and (max-width: 1599px) {
    .engineering-drawing-position {
        left: 120px;
    }

    .content {
        right: 70px;
    }

    .text-overlay {
        max-width: 425px;
    }
}

@media only screen and (max-width: 1399px) {
    .engineering-drawing-lg {
        display: none;
    }

    .engineering-drawing-md {
        display: block;
    }

    .image-wrapper {
        height: 900px;
    }

    .engineering-drawing-position {
        left: 80px;
    }

    .content {
        right: -50px;
    }

    .text-overlay {
        max-width: 375px;
    }
}

@media only screen and (max-width: 1199px) {
    .features-container-desktop {
        display: none;
    }

    .disclaimer-desktop {
        display: none;
    }
}

/* Spec */
.spec {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 30%;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    background-color: #233445;
    color: white;
}

.spec hr {
    border-top: 1px solid white;
    margin: 27px 0 !important;
}

.spec p {
    margin-bottom: 0px;
}

.spec-type {
    font-size: 24px;
    font-weight: 400;
}

.spec-title {
    font-weight: 400;
}