@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.transparent-navbar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.transparent-navbar .nav-link {
    color: var(--color-full-white);
}

.transparent-navbar .nav-icon {
    color: var(--color-full-white);
}

.video-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-full-white);
}

.header-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

.content-section {
    padding: 5rem 0;
    max-width: 1280px;
    margin: 0 auto;
}

.content-row {
    display: flex;
    align-items: center;
    margin: 4rem 0;
    gap: 4rem;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    border-radius: 1rem;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.05);
}

.content-text {
    flex: 1;
}

.content-text h2 {
    color: var(--color-light-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-text p {
    color: var(--color-gray);
    line-height: 1.8;
}