@font-face {
    font-family: "tt_firs_neue_trlregular";
    src:
        url("/assets/fonts/tt_firs_neue_trial_regular-webfont.woff2")
            format("woff2"),
        url("/assets/fonts/tt_firs_neue_trial_regular-webfont.woff")
            format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "tt_firs_neue_trlblack";
    src:
        url("/assets/fonts/tt_firs_neue_trial_black-webfont.woff2")
            format("woff2"),
        url("/assets/fonts/tt_firs_neue_trial_black-webfont.woff")
            format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "tt_firs_neue_trlmedium";
    src:
        url("/assets/fonts/tt_firs_neue_trial_medium-webfont.woff2")
            format("woff2"),
        url("/assets/fonts/tt_firs_neue_trial_medium-webfont.woff")
            format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "tt_firs_neue_trlbold";
    src:
        url("/assets/fonts/tt_firs_neue_trial_bold-webfont.woff2")
            format("woff2"),
        url("/assets/fonts/tt_firs_neue_trial_bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "tt_firs_neue_trlthin";
    src: url("/assets/fonts/tt_firs_neue_trial_thin-webfont.ttf")
        format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "tt_firs_neue_trllight";
    src: url("/assets/fonts/tt_firs_neue_trial_light-webfont.ttf")
        format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "tt_firs_neue_trial_DemiBold";
    src: url("/assets/fonts/tt_firs_neue_trial_demibold-webfont.ttf")
        format("truetype");
    font-weight: normal;
    font-style: normal;
}

.font-reg {
    font-family: "tt_firs_neue_trlregular" !important;
}

.font-tebal {
    font-family: "tt_firs_neue_trlblack" !important;
}

.font-radal {
    font-family: "tt_firs_neue_trlbold" !important;
}

.font-thin {
    font-family: "tt_firs_neue_trlthin" !important;
}

.font-light {
    font-family: "tt_firs_neue_trllight" !important;
}

.font-medium {
    font-family: "tt_firs_neue_trlmedium" !important;
}

.font-demibold {
    font-family: "tt_firs_neue_trial_DemiBold" !important;
}
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    overflow-x: hidden !important;
    overflow-y: auto;
    position: relative;
    background-color: #000000;
    color: white;
    font-family: "tt_firs_neue_trlmedium";
}

@media (max-width: 768px) {
    .w-screen {
        width: 100% !important;
    }
}

html,
body {
    cursor: none;
}

#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition:
        background-color 0.3s ease,
        opacity 0.3s ease;
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s ease,
        height 0.3s ease,
        border-width 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.cursor-gold #cursor-dot,
.cursor-gold #cursor-ring {
    background-color: #ffbe00 !important;
    border-color: #ffbe00 !important;
}

.cursor-black #cursor-dot {
    background-color: black !important;
}

.cursor-black #cursor-ring {
    border-color: black !important;
}

#cursor-ring.cursor-grow {
    width: 60px;
    height: 60px;
    border-width: 1px;
    border-color: #ffbe00;
    background-color: rgba(255, 190, 0, 0.2);
}

.cursor-black #cursor-ring.cursor-grow {
    border-color: black;
    background-color: rgba(0, 0, 0, 0.2);
}

#cursor-ring.force-gold {
    border-color: #ffbe00 !important;
    background-color: rgba(255, 190, 0, 0.2) !important;
}

#cursor-ring.force-orange {
    border-color: #ff8710 !important;
    background-color: rgba(255, 135, 16, 0.2) !important;
}

#cursor-dot.force-orange {
    background-color: #ff8710 !important;
}

#header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vh 5%;
    box-sizing: border-box;
    z-index: 9998;
    background-color: transparent;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: none;

    will-change: transform, padding, background-color;

    transition:
        background-color 0.2s ease,
        backdrop-filter 0.2s ease,
        padding 0.2s ease;
}

#header-bar.glassmorphed-bg {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.navbar-light-mode #header-bar {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

#header-bar {
    transition:
        transform 0.3s ease-in-out,
        background-color 0.3s ease,
        backdrop-filter 0.3s ease,
        border 0.3s ease,
        padding 0.3s ease;
}

.navbar-light-mode .nav-item,
.navbar-light-mode #lang-selector-display,
.navbar-light-mode .lang-arrow path,
.navbar-light-mode .lang-option-item {
    color: #ffbe00 !important;
    background-color: transparent !important;
    fill: transparent !important;
    stroke: #ffbe00 !important;
}

.navbar-light-mode #burger-menu span {
    background-color: #ffbe00 !important;
}

#top-logo {
    position: relative;
    top: 0;
    left: 0;
    width: 80px;
    height: auto;
    z-index: 10;
    pointer-events: auto;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
}

#navbar-container {
    position: relative;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    transform: none;
    transition: none;
}

#nav-links {
    display: flex;
    gap: 1.5rem;
    margin-right: 1.5rem;
}

.nav-item {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(20px);
    white-space: nowrap;
    transition: color 0.3s ease;
}

#lang-selector-container {
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

#lang-selector-display {
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
    padding: 0;
    border-radius: 4px;
    font-family: "tt_firs_neue_trlmedium";
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: none;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.lang-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lang-arrow path {
    stroke: white;
    transition: stroke 0.3s ease;
}

#lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    min-width: 120px;
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: none;
    z-index: 10002;
}

#lang-selector-container.open #lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.lang-option-item {
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.lang-option-item:hover,
.lang-option-item.active {
    background-color: rgba(255, 190, 0, 0.15);
    color: #ffbe00;
}

#lang-selector-container:hover {
    background-color: rgba(255, 190, 0, 0.1);
}

#lang-selector-container.open .lang-arrow {
    transform: rotate(180deg);
}

#lang-selector-container:hover #lang-selector-display,
.navbar-light-mode #lang-selector-container:hover #lang-selector-display {
    color: #ffbe00 !important;
}

#lang-selector-container:hover .lang-arrow path,
.navbar-light-mode #lang-selector-container:hover .lang-arrow path {
    stroke: #ffbe00 !important;
}

.nav-control-item {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
}

#burger-menu {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: auto;
    z-index: 10000;
    margin-right: 1.5rem;
}

#burger-menu span {
    width: 100%;
    height: 2px;
    background-color: white;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background-color 0.3s ease;
    transform-origin: center;
}

.navbar-open #burger-menu span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.navbar-open #burger-menu span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-open #burger-menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 101;
}

.section {
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 15vh 5%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 102;
}
*/ #section1 {
    background-color: #000000;
    justify-content: center;
    align-items: center;
    z-index: 100;

    background-image: none;

    transform-origin: center center;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
}

#video-bg-s1 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: filter 0.5s ease-in-out;
}

#headline-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 15vh 5%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 102;
    pointer-events: none;
}

#click-discover:hover {
    letter-spacing: 0.25em;
    transform: scale(1.05);
}

body.horizon-visible #section1 #video-bg-s1 {
    filter: brightness(1) grayscale(0);
}

#dh-logo-text-wrapper {
    width: 85vw;
    height: auto;
    text-align: center;
    z-index: 200;
    pointer-events: auto;
}

#dh-logo-text-wrapper h3 {
    font-size: 3.5vw;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;

    opacity: 0;
    filter: blur(5px);
}

#dh-logo-text-wrapper h1 {
    margin: 1vw 0 0 0;
    line-height: 1;
    text-transform: uppercase;
    color: white;
    opacity: 0;
}

@media (max-width: 1366px) {
    .nav-item {
        font-size: 0.755rem;
    }
    #nav-links {
        gap: 1rem;
    }
}

@media (max-width: 1280px) {
    .nav-item {
        font-size: 0.675rem;
    }
    #nav-links {
        gap: 0.75rem;
    }
    .footer-marquee-text {
        font-size: 7rem;
    }
}

@media (max-width: 1024px) {
    .nav-item {
        font-size: 0.575rem;
    }
    .footer-marquee-text {
        font-size: 5rem;
    }
}

@media (max-width: 900px) {
    .nav-item {
        font-size: 0.675rem;
    }
}

@media (max-width: 768px) {
    .nav-item {
        font-size: 0.675rem;
    }
    .footer-marquee-text {
        font-size: 4rem;
    }

    #navbar-container {
        right: -12px;
    }

    #nav-links {
        position: fixed;
        top: 0px;
        left: 50%;
        height: 100vh;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 100%;
        background-color: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(18px);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: start;
        z-index: 9999;

        display: none;
        opacity: 0;
        pointer-events: none;
    }

    .navbar-open #nav-links {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }

    #lang-selector-container {
        position: relative;
        z-index: 10001;
    }

    #lang-selector-display {
        gap: 0.1rem;
    }

    #lang-dropdown {
        position: fixed;
        top: auto;
        right: 5%;
        left: auto;
        min-width: 150px;
        margin-top: 0;
    }

    #lang-selector-container.open #lang-dropdown {
        top: 60px;
    }

    #burger-menu {
        margin-right: -0.5rem;
        width: 20px;
    }

    #burger-menu span {
        width: 20%;
        height: 4px;
    }

    .navbar-open #burger-menu span:nth-child(1) {
        transform: translateY(10px) rotate(135deg);
        width: 60%;
        height: 2px;
    }

    .navbar-open #burger-menu span:nth-child(3) {
        transform: translateY(-10px) rotate(-140deg);
        width: 60%;
        height: 2px;
    }

    #dh-logo-text-wrapper {
        width: 90vw;
        max-width: 400px;
    }

    #dh-logo-text-wrapper h3 {
        font-size: 1.5rem;
        transform: scale(1);
    }

    #dh-logo-text-wrapper h1 {
        font-size: 2.5rem;
        margin-top: 0rem;
        transform: scale(1);
    }

    #header-bar {
        padding: 3vh 5%;
    }

    #header-bar.glassmorphed-bg {
        padding-top: 1.5vh;
        padding-bottom: 1.5vh;
    }
}

#section2 {
    background-color: transparent;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
}

#section3 {
    background-color: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    z-index: 103;
}

.sec3-col-left {
    padding-right: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sec3-col-right {
    padding-left: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 1.5rem;
    pointer-events: auto;
}

.profile-card img {
    width: 100%;
    display: block;
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.sec3-new-top {
    width: 100%;
    padding-right: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.sec3-new-bottom {
    width: 100%;
    padding-left: 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#top-logo {
}

.sec3-jumbotron-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 1rem;
    position: relative;
}

.sec3-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    padding: 4rem 2rem 2rem 4rem;
    box-sizing: border-box;
    border-radius: 0 0 1rem 0;
    z-index: 104;
    text-align: left;
    color: #000;
}

.sec3-blur-divider {
    position: absolute;
    bottom: -10rem;
    left: 50%;
    width: 100vw;
    height: auto;
    z-index: -1;
    pointer-events: none;
    transform: translateX(-50%) translateY(50%) scale(1.2);
}

.sec3-blur-divider2 {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 100vw;
    height: auto;
    z-index: 1;
    pointer-events: none;
    transform: translateX(-50%) translateY(-50%) scale(1.2);
}

.aboutus-separator {
    position: absolute;
    left: 50%;
    width: 100vw;
    height: auto;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
    transform: translateX(-50%) translateY(-50%) scale(2);
    left: 28.5rem;
}

.double-ring-cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    transition:
        border-color 0.3s ease,
        color 0.3s ease;
    pointer-events: auto;
}

.double-ring-cta::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;

    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 1);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.double-ring-cta2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    transition:
        border-color 0.3s ease,
        color 0.3s ease;
    pointer-events: auto;
}

.double-ring-cta2::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;

    border-radius: 50%;
    border: 2px solid rgb(0, 0, 0);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.double-ring-cta:hover,
.double-ring-cta2:hover {
    border-color: #ffbe00;
    color: #ffbe00;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.double-ring-cta:hover::before,
.double-ring-cta2:hover::before {
    transform: scale(0.9);
    border-color: #ffbe00;
    border: 3px solid rgb(255, 190, 0, 1);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.double-ring-cta3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    transition:
        border-color 0.3s ease,
        color 0.3s ease;
    pointer-events: auto;
}

.double-ring-cta3::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;

    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.double-ring-cta:hover,
.double-ring-cta3:hover {
    border-color: #ffbe00;
    color: #ffbe00;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.double-ring-cta:hover::before,
.double-ring-cta3:hover::before {
    transform: scale(0.9);
    border-color: #ffbe00;
    border: 3px solid rgb(255, 190, 0, 1);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.text-gold {
    color: #ffbe00;
}

.text-gradient-rising {
    background: linear-gradient(to right, #ff8710 0%, #ff3728 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-reshaping {
    background: linear-gradient(to right, #ff8710 48%, #ff3728 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    #subheadline {
        width: 90%;
        font-size: 1.1rem;
    }

    #section3,
    #section4 {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .sec3-new-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 3.5rem;
    }

    .sec3-image-overlay {
        width: 100%;
        left: 0;
        border-radius: 0 0 1rem 1rem;
        padding: 2rem 1.5rem;
    }

    .sec3-col-left,
    .sec3-col-right,
    .sec3-new-left,
    .sec3-new-right,
    .sec3-new-top,
    .sec3-new-bottom {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .sec3-new-right,
    .sec3-new-bottom {
        margin-top: 3rem;
    }

    .s4-p-cta-wrapper {
    }

    .s4-p-cta-wrapper .double-ring-cta {
    }

    #nav-links {
        display: none;
    }

    .s5-layout-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        text-align: center;
        width: 100%;
    }

    .s5-col-text {
        text-align: center;
    }
}

.sec2-anim-item {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    filter: blur(5px);
}

.sec3-anim-item {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    filter: blur(5px);
}

#section4 {
    background-image: url("/assets/images/managementbg2.jpg");
    background-size: cover;
    background-position: center;

    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;

    position: relative;
}

#section4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#section4 .sec3-col-left,
#section4 .sec3-col-right {
    position: relative;
    z-index: 2;
}

#section5 {
    min-height: 0;

    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 103;
}

#video-bg-s5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#section6 {
    background-color: #ffffff;
    color: #000000;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 15vh;
    min-height: 110vh;
}

#section7 {
    background-image: url("/assets/images/sustain3.jpg");
    background-size: cover;
    background-position: center;
    background-color: #000000;
    color: #000000;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    z-index: 102;
}

#section7::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#section7 > div {
    position: relative;
    z-index: 2;
    width: 100%;
}

#section7 .text-gold {
    color: #000000;
}

.sec4-anim-item,
.sec6-anim-item,
.sec7-anim-item {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    filter: blur(5px);
}

.s4-p-cta-wrapper {
}

.s5-col-text {
    text-align: left;
    width: 100vw;
    overflow: hidden;
    min-width: 0;
    position: relative;
    left: 0;
}

.carousel-container {
    position: relative;
    max-width: 400px;
    border-radius: 1rem;
    aspect-ratio: 4/5;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    box-sizing: border-box;
    transform: scale(0.7) translateX(0);
    opacity: 0;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease,
        z-index 0.5s ease;
    z-index: 1;
}

.carousel-slide.slide-active {
    transform: scale(1) translateX(0);
    opacity: 1;
    z-index: 10;
}

.carousel-slide.slide-prev {
    transform: scale(0.85) translateX(-20%);
    opacity: 0.6;
    z-index: 5;
}

.carousel-slide.slide-next {
    transform: scale(0.85) translateX(20%);
    opacity: 0.6;
    z-index: 5;
}

.carousel-slide.slide-active .profile-overlay {
    background: linear-gradient(
        to right,
        #ff8710 0%,
        rgba(255, 190, 0, 0) 100%
    );
}

.carousel-slide.slide-active .profile-overlay p:last-child {
    color: white;
}

.profile-overlay-aboutus {
    background: linear-gradient(
        to right,
        #ff8710 0%,
        rgba(255, 190, 0, 0) 100%
    );
}

.carousel-slide .profile-card {
    margin-top: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    box-sizing: border-box;

    position: relative;
}

.card-bg {
    position: absolute;
    top: 18%;
    left: 0;
    width: 99%;
    height: 85%;

    background: linear-gradient(to bottom, #1b192a 0%, #ffffff 61%);
    border: 1px solid white;
    border-radius: 1rem;

    z-index: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: none;
    pointer-events: auto;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    display: block;
    padding: 0;
}

.carousel-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-arrow.left {
    left: -2.5rem;
    transform: translateY(-50%) rotate(180deg);
}

.carousel-arrow.left:hover {
    transform: translateY(-50%) rotate(180deg) scale(1.1);
    opacity: 0.8;
}

.carousel-arrow.right {
    right: -2.5rem;
}

.carousel-arrow.right:hover {
    transform: translateY(-50%) scale(1.1);
    opacity: 0.8;
}

.carousel-arrow:hover {
}

#music-controls-container {
}

#play-pause-btn {
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    pointer-events: auto;
    padding: 0;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

#play-pause-btn svg {
    fill: white;
    transition: fill 0.3s ease;
}

#play-pause-btn:hover {
    border-color: #ffbe00;
}

#play-pause-btn:hover svg {
    fill: #ffbe00;
}

.sound-bars-wrapper {
    display: flex;
    align-items: flex-end;
    height: 24px;
    gap: 3px;
}

.sound-bars-wrapper span {
    width: 3px;
    height: 4px;
    background-color: white;
    display: block;
    animation: sound-wave 1.2s infinite ease-in-out;
    animation-play-state: paused;
}

@keyframes sound-wave {
    0%,
    100% {
        height: 4px;
        opacity: 0.7;
    }

    50% {
        height: 24px;
        opacity: 1;
    }
}

.sound-bars-wrapper span:nth-child(1) {
    animation-delay: 0s;
}

.sound-bars-wrapper span:nth-child(2) {
    animation-delay: -1s;
}

.sound-bars-wrapper span:nth-child(3) {
    animation-delay: -0.8s;
}

.sound-bars-wrapper span:nth-child(4) {
    animation-delay: -0.6s;
}

#music-controls-container.playing .sound-bars-wrapper span {
    animation-play-state: running;
}

.play-icon {
    display: block;
}

.pause-icon {
    display: none;
}

#music-controls-container.playing .play-icon {
    display: none;
}

#music-controls-container.playing .pause-icon {
    display: block;
}

#main-footer {
    width: 100vw;
    padding: 0;
    box-sizing: border-box;
    background-color: #111111;
    color: white;
    display: flex;
    flex-direction: column;
    z-index: 1;
    position: relative;
}

.footer-col-1 {
    background-color: #fdbb11;
    color: #000000;
    padding: 4rem 5%;
    box-sizing: border-box;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo,
.footer-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.footer-col-1 p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: "tt_firs_neue_trlregular";
}

.footer-logo {
    width: 220px;
    height: auto;
}

.footer-links-group {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-link-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link-col a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link-col a:hover {
    color: #ffffff;
}

.footer-link-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
    white-space: nowrap;
}

.footer-col-2 {
    background-image: url("/assets/images/footerbg.png");
    background-size: cover;
    background-position: center;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 2%;
    box-sizing: border-box;
    overflow: hidden;
    color: white;
}

.footer-marquee-text {
    animation: footer-marquee-scroll 30s linear infinite;
    font-size: 9rem;
    font-weight: 900;
}

.footer-marquee-container {
    width: 120%;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes footer-marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .footer-col-1 {
        padding: 4rem 5% 4rem 5%;
    }

    .footer-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 5%;
        z-index: 104;
    }

    .footer-logo {
        flex: 0 0 20%;
    }

    .footer-text {
        flex: 0 0 50%;
    }

    .footer-links-group {
        flex-direction: row;
        justify-content: flex-end;
        gap: 1rem;
    }

    .footer-col-1 p {
        text-align: left;
    }

    .footer-link-col {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    #main-footer {
        flex-direction: column;
    }

    .footer-col-1 {
        flex-basis: auto;
        width: 100%;
        padding: 3rem 5%;
        align-items: flex-start;
        text-align: left;
    }

    .footer-col-1 p {
        text-align: left;
    }

    .footer-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        z-index: 104;
    }

    .footer-logo-and-text {
        width: 100%;
        align-items: flex-start;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .footer-link-col {
        align-items: flex-start;
    }

    .footer-col-2 {
        flex-basis: auto;
        width: 100%;
        padding: 3rem 0;
        min-height: 200px;
    }
}

#video-bg-s2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#video-bg-s3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#section2 > div {
    position: relative;
    z-index: 2;
}

.s5-marquee-container {
}

.s5-marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    will-change: transform;
}

.s5-marquee-container:hover .s5-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-text-item {
    font-size: 8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 2rem;
    flex-shrink: 0;
    white-space: nowrap;
    color: #fff;
    font-family: "tt_firs_neue_trlblack", sans-serif;
}

.marquee-dot {
    font-size: 4rem;
    color: #ffbe00;
    flex-shrink: 0;
    padding: 0 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .marquee-text-item {
        font-size: 4rem;
        padding: 0 1rem;
    }
    .marquee-dot {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
}

.tab-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2.5rem 0;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 1.75rem;
    border: 1px solid #000000;
    border-radius: 9999px;
    background-color: transparent;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: none;
    pointer-events: auto;
    width: auto;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.tab-button:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.tab-button.active {
    background-color: #ffbe00;
    color: #000000;
    border-color: #ffbe00;
}

.tab-button:hover ~ #cursor-ring {
    border-color: #000000;
    background-color: rgba(0, 0, 0, 0.2);
}

.tab-content-wrapper {
    position: relative;
    width: 100%;
    text-align: left;
}

.tab-panel {
    width: 100%;
    opacity: 0;
    display: none;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.tab-panel.active {
    opacity: 1;
    display: block;
    position: relative;
}

.tab-panel-layout {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
}

.s6-grid-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.s6-overlay-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: #ccc;
}

.s6-overlay-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s6-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
}

.s6-overlay-text h4 {
    font-family: "tt_firs_neue_trlblack";
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.s6-overlay-text p {
    font-size: 0.9rem;
    margin: 0;
    font-family: "tt_firs_neue_trlregular";
}

.s6-single-slide-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
    padding-top: 56.25%;
}

.s6-vp-80-carousel {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
}

.s6-single-slide-carousel-track {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.s6-single-slide-carousel-slide {
    position: absolute;
    inset: 0;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.s6-single-slide-carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0.75rem;
}

.s6-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: none;
    pointer-events: auto;
    transition: background-color 0.3s ease;
    padding: 0;
}

.s6-carousel-arrow:hover {
    background-color: #ffbe00;
}

.s6-carousel-arrow img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.s6-carousel-arrow.left {
    left: 1rem;
    transform: translateY(-50%) rotate(180deg);
}

.s6-carousel-arrow.right {
    right: 1rem;
}

@media (max-width: 768px) {
    #section6 {
        padding-top: 10vh;
    }

    .tab-container {
        gap: 0.5rem;
    }

    .tab-button {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        width: 45%;
    }

    .tab-panel-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .s6-grid-panel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .s6-vp-80-carousel {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: 0;
        border-radius: 0;
        padding-top: 66.66%;
    }
}

.s6-carousel-container {
    position: relative;
    width: 90vw;
    margin-left: -1vw;
    margin-right: 0;
    overflow: hidden;
    margin-top: 3rem;
    border-radius: 1rem;
    box-sizing: border-box;
}

.s6-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.s6-carousel-slide {
    flex: 0 0 28.5714%;
    width: 28.5714%;
    box-sizing: border-box;
    padding: 0 0.5rem;
}

.s6-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    object-fit: cover;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .s6-carousel-container {
        width: 100%;
        margin-left: 0;
    }

    .s6-carousel-slide {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width: 480px) {
    .s6-carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
    }

    .s6-carousel-slide img {
        border-radius: 0;
    }
}

.profile-card:hover .profile-overlay {
    padding-bottom: 2rem;
}

#milestone-track::-webkit-scrollbar {
    display: none;
}

.recognition-tab.active {
    background-color: #ff8710 !important;
    color: #000000 !important;
}

.recognition-tab:not(.active) {
    background-color: #f6f6f6 !important;
    color: #000000 !important;
}

.business-tab {
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.business-tab:not(.active) {
    background-color: transparent !important;
    border-radius: 9999px !important;
}

.business-tab.active {
    background-color: #ff8710 !important;
    color: white !important;
    border-radius: 9999px !important;
}

.business-tab:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.business-tab:focus {
    outline: none;
    box-shadow: none;
}

.business-custom-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.business-custom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .business-custom-card-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.gradient-circle-yellow {
    background: radial-gradient(circle, #ff8710 0%, rgba(255, 135, 16, 0.5) 0%);
    opacity: 1;
    height: 22rem;
    width: 26rem;
    left: 26rem;
    z-index: 0;
}

.gradient-circle-blue {
    background: radial-gradient(circle, #537ff1 0%, rgb(83 127 241 / 50%) 0%);
    opacity: 0.8;
    height: 27rem;
    width: 34rem;
    left: 4rem;
    z-index: 0;
}

.gradient-circle-yellow-bottom {
    background: radial-gradient(circle, #ff8710 0%, rgba(255, 135, 16, 0.5) 0%);
    opacity: 0.7;
    height: 16rem;
    width: 28rem;
    left: 11rem;
    z-index: 0;
}

.infrastructure-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 255, 255, 0.05);
}

.infrastructure-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 255, 255, 0.08);
}

.contact-tab {
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .aboutus-separator {
        left: 9rem;
        top: 29% !important;
    }
}
