:root {
    --primary: #73BF45;
    --secondary: #1E1F21;
    --white: #fff;
    --black: #000;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../assets/fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'Poppins';
    src: url('../../assets/fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Rubik';
    src: url('../../assets/fonts/Rubik-Regular.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
}

body {
    margin: 0;
    overflow: hidden;
    background-color: #1E1F21 !important;
    color: white !important;
}

/* Add these styles to your existing CSS */
.scroll-container {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100vh;
}

section {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    transform: translateZ(0);
    /* GPU acceleration */
    will-change: transform;
    /* Hint browser for optimization */
    backface-visibility: hidden;
}

.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-container {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

@media (prefers-reduced-motion: reduce) {
    .scroll-container {
        scroll-behavior: auto;
    }
}

/* Add these styles */
.scroll-pagination {
    position: fixed;
    right: 30px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1000;
    mix-blend-mode: difference;
}

.progress-bar {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background-color: var(--primary) !important;
    z-index: -1;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-dots {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.5);
}

/* Parallax layers */
.parallax-layer {
    position: absolute;
    will-change: transform;
}

/* Adjust existing section positioning */
.videoBanner {
    padding-top: 80px !important;
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

/* Enhance existing parallax elements */
.rellax {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ThemeBtn Start */
.themeBtn {
    width: fit-content;
    background: var(--primary);
    color: var(--black);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    outline: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.65rem 1.75rem;
    transition: all 300ms ease-in-out;
}

.themeBtn:hover {
    background: var(--secondary);
    border-color: var(--primary);
    color: var(--primary);
}

/* ThemeBtn End */

/* Header Start */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: var(--secondary);
}

.header-topWrapper {
    background: var(--primary);
    padding: 0.5rem 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top__lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-top__lang select {
    background: unset;
    border: unset;
    font-size: 1rem;
    font-weight: 500;
}

.header-top__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

.header-main {
    padding: 0.5rem 0;
}

.header-main__logo {
    width: 80px;
}

.header-main__nav {
    gap: 7rem;
}

.header-main__nav li a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}

.header-main__nav li a:is(:hover, :focus) {
    color: var(--primary);
}

.nav-dropdown {
    width: 100%;
    background: #1A1A1A;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    z-index: 1;
}

.nav-dropdown__list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-dropdown__list li:not(:last-child) {
    border-right: 1px dashed var(--primary);
    padding-right: 2rem;
}

.nav-dropdown__list li a {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white);
    transition: all 300ms ease-in-out;
}

.nav-dropdown__list li a:hover {
    color: var(--primary);
}

/* Header End */

/* Footer Start */
.footer {
    scroll-snap-align: start;
    border: 1px solid #636363;
    border-bottom: none;
    border-radius: 0.625rem 0.625rem 0 0;
    position: relative;
    padding-top: 5rem;
}

.footer::before {
    content: '';
    width: 150px;
    aspect-ratio: 1;
    background: var(--primary);
    position: absolute;
    bottom: 0;
    right: 0;
    filter: blur(110px);
}

.footer-content {
    position: relative;
    padding: 0 2rem;
}

.col-lg-2:not(:last-child) .footer-content::before,
.col-lg-4:not(:last-child) .footer-content::before {
    content: '';
    width: 100%;
    height: 200px;
    border-right: 1px dashed var(--primary);
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.footer-content__logo img {
    width: 100%;
}

.footer-content__links {
    list-style: none;
    padding: 0;
    text-align: start;
    margin: 0;
}

.footer-content__links li a svg {
    color: #73bf45;
    margin-right: 4px;
}

.footer-content__links li+li {
    margin-top: 0.5rem;
}

.footer-content__links li a {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    transition: all 300ms ease-in-out;
}

.footer-content__links li a:hover {
    color: var(--primary);
}

.footer-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-content__icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content__icons li a {
    font-size: 1.5rem;
    color: var(--white);
    transition: all 300ms ease-in-out;
}

.footer-content__icons li a:hover {
    color: var(--primary);
}

.footer-copyright {
    border-top: 1px solid #636363;
    padding: 1rem 0;
    margin-top: 4rem;
}

.footer-copyright__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright__content p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.footer-copyright__contentLinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-copyright__contentLinks li:not(:last-child) {
    border-right: 1px dashed var(--primary);
    padding-right: 2rem;
}

.footer-copyright__contentLinks li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    transition: all 300ms ease-in-out;
}

.footer-copyright__contentLinks li a:hover {
    color: var(--primary);
}

/* Footer End */
