.noto-serif-font {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.faculty-glyphic-regular {
    font-family: "Faculty Glyphic", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.aladin-regular {
    font-family: "Aladin", system-ui;
    font-weight: 400;
    font-style: normal;
}

.inter-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.asap-font {
    font-family: "Asap", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    animation: fadeIn 0.5s forwards ease;
    user-select: none;
    font-family: Arial, sans-serif;
    color: white;
}

p {
    margin: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
    transition: all 0.3s linear;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header.scrolled {
    height: 60px;
    background-color: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgb(0, 0, 0);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 0.3rem 2rem;
}

.logo {
    opacity: 0;
    animation: jumpIn 1s 0.1s cubic-bezier(.51, .1, 0, 1) forwards;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 400;
}

.nav-links li {
    opacity: 0;
}

.nav-links li:nth-of-type(1) {
    animation: jumpIn 0.5s 0.5s cubic-bezier(.11, .92, .54, .97) forwards;
}

.nav-links li:nth-of-type(2) {
    animation: jumpIn 0.8s 0.5s cubic-bezier(.11, .92, .54, .97) forwards;
}

.nav-links li:nth-of-type(3) {
    animation: jumpIn 1.1s 0.5s cubic-bezier(.11, .92, .54, .97) forwards;
}

.nav-links li:nth-of-type(4) {
    animation: jumpIn 1.4s 0.5s cubic-bezier(.11, .92, .54, .97) forwards;
}

.nav-links li:nth-of-type(5) {
    animation: jumpIn 1.7s 0.5s cubic-bezier(.11, .92, .54, .97) forwards;
}

.nav-links li:nth-of-type(6) {
    animation: jumpIn 2s 0.5s cubic-bezier(.11, .92, .54, .97) forwards;
}

.nav-item {
    position: relative;
    cursor: pointer;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}

.nav-item a {
    z-index: 1;
}

.nav-link {
    color: white;
    text-decoration: none;
    display: inline-block;
}

.nav-item.active {
    background-color: rgba(0, 0, 0, 0.096);
}

.fa-chevron-down {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.nav-item.active .fa-chevron-down {
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
}

/* Dropdown animation */
.dropdown-menu {
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 1px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9;
    width: fit-content;
    white-space: nowrap;
}

.dropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}

.dropdown-menu.animating-out {
    transform: scaleY(0);
    opacity: 0;
    visibility: visible;
}

.dropdown-item {
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.bar.sticky {
    background-color: white;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

section {
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 1;
}

#home {
    padding-top: 80px;
    height: calc(100vh - 80px);
    align-items: center;
    color: white;
}

.landing-page-content {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding-bottom: 3rem;
}

.text-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-content {
    width: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s cubic-bezier(.11, .92, .54, .97) forwards;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease-in-out;
}

.image-content:hover img {
    transform: scale(1.05);
}

.tagline {
    font-size: 35px;
    margin: 0;
    padding: 0 0 2rem 0;
    letter-spacing: 5px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s cubic-bezier(.11, .92, .54, .97) forwards;
}

.Typewriter__cursor {
    color: #00ff6b;
}

.welcome-description {
    margin: 0;
    padding: 0 0 2rem 0;
    line-height: 25px;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s cubic-bezier(.11, .92, .54, .97) forwards;
}

.explore {
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.349);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s cubic-bezier(.11, .92, .54, .97) forwards;
    /* animation: grow 1.5s ease-in-out forwards; */
    -webkit-tap-highlight-color: transparent;

    .link {
        background-color: transparent;
        font-size: 15px;
        letter-spacing: 2px;
        color: white;
        position: relative;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        border: 0;
        padding-left: 15px;
        left: 0;
        line-height: auto;
        overflow: hidden;

        /*line*/
        &:before {
            content: "";
            background-color: #00ff6b;
            width: 3px;
            height: 100%;
            position: absolute;
            z-index: 2;
            left: 5px;
            top: 0px;
            border-radius: 50px;
            transition: all 0.3s ease-in-out;
        }

        /*arrow*/
        &:after {
            content: "";
            width: 15px;
            height: 15px;
            display: flex;
            align-items: center;
            background-color: transparent;
            position: absolute;
            border: solid 3px #00ff6b;
            border-left: 0;
            border-bottom: 0;
            top: calc(50% - 9px);
            border-radius: 2px;
            transform: translateX(-42px) rotate(45deg);
            transition: all 0.3s 0.2s ease-in-out;
        }
    }

    /* bg button */
    &:before {
        content: "";
        background-color: rgba(0, 0, 0, 0.644);
        width: 0;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        transition: all 0.4s 0.3s ease-in-out;
    }

    &:hover {
        &:before {
            width: 100%;
            height: 100%;
            left: 0;
            bottom: 0px;
        }

        .link {
            padding-left: 50px;


            &:before {
                left: 17px;

                transform: rotate(90deg);
            }

            &:after {
                transform: translate(-33px) rotate(45deg);
            }
        }
    }
}


@keyframes grow {
    0% {
        opacity: 0;
        transform: scale(0) rotateY(20deg)
    }

    40% {
        transform: scale(1)
    }

    50% {
        transform: scale(0.8)
    }

    60% {
        opacity: 1;
        transform: scale(1)
    }

    70% {
        transform: scale(0.85)
    }

    80% {
        transform: scale(1)
    }

    90% {
        transform: scale(0.95) rotateY(0)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

#about {
    height: calc(100vh - 60px);
    background-color: rgba(219, 219, 219);
    color: black;
    transition: all 0.5s ease-in-out;
}

.investments-section {
    width: 90%;
    height: 70vh;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-self: center;
}

.investments-section .text-content {
    justify-content: flex-start;
}

.section-sub-heading {
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: 1rem;
    padding-bottom: 0.25rem;
    position: relative;
    width: fit-content;
    letter-spacing: 3px;
}

.section-sub-heading::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: black;
    left: 0;
    top: 100%;
    transition: all 0.2s ease-in-out;
}

.section-sub-heading.white::after {
    background-color: white;
}

.section-content {
    font-weight: 100;
    font-size: 0.9rem;
}

#about-btn {
    margin-top: 1rem;

    .link {
        color: black;
    }

    .link.white {
        color: white;
    }

    animation: none;
    opacity: 1;
}

#about-btn:hover {
    .link {
        color: white;
    }
}

.points-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 2rem;
}

.points {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    width: 150px;
    background-color: rgba(243, 242, 242, 0.904);
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    letter-spacing: 1px;
}

.points-bg {
    background-color: rgba(0, 0, 0, 0.301);

}

.points .material-symbols-outlined {
    font-size: 60px !important;
}

.points-text {
    margin-top: 10px;
}

.strategies {
    width: 35%;
    height: fit-content;
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    position: relative;
}

.vertical-border {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    transform: scaleY(1);
    background-color: black;
}

.strategies .section-sub-heading {
    margin-bottom: 0;
}

.sub-strategy {
    z-index: 10;
    width: 100%;
    position: relative;
}

.sub-strategy::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0);
    left: 0;
    top: 100%;
    transition: all 0.2s ease-in-out;
}

.sub-strategy.white::after {
    background-color: white;
}

.sub-strategy-heading {
    margin-top: 1rem;
}

.expand-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    letter-spacing: 1px;
}

.green {
    color: #00ff6b;
    transition: all 0.5s ease-in-out;
}

.white {
    color: white;
}

.white-bg {
    background-color: white;
}

.sub-strategy-content {
    max-height: 0;
    overflow-y: hidden;
    transition: all 0.5s ease-in-out;
    margin-top: 8px;
    padding-bottom: 5px;
    font-weight: 200;
    opacity: 0;
    padding-right: 5px;
    width: 95%;
}

.sub-strategy-content.open {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
    opacity: 1;
}

.sub-strategy-content.open~.section-sub-heading::after {
    background-color: white;
}

.sub-strategy-content::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.sub-strategy-content {
    scrollbar-width: none;
}

.bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-image: linear-gradient(109.6deg, rgba(25, 74, 236, 1), rgba(6, 183, 249, 1));
}

.bg-with-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-image: linear-gradient(109.6deg, rgba(25, 74, 236, 1), rgba(6, 183, 249, 1));
}

.bg-with-image img {
    width: 300px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    opacity: 0;
    animation: illustrationFadeUp 0.8s 0.8s cubic-bezier(.11, .92, .54, .97) forwards;
}

/* Animations */

@keyframes jumpIn {
    0% {
        opacity: 1;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-300px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes illustrationFadeUp {

    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}