*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}
nav {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav ul li ul.dropdown li{
    display:block
}
nav ul li ul.dropdown {
    width: 100%;
    background: white;
    position: absolute;
    z-index: 999;
    display: none;
}
nav ul li:hover ul.dropdown {
    display: block;
	color: black;
}

nav li{
    height: 50px;
}
nav a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    text-decoration: none;
    color: white;
}
nav a:hover {
    background-color: #f0f0f0;
    color: #000;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 150px;
    height: 100vh;
    z-index: 999;
    background-color: none;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a {
    width: 100%;
	color: white;
}
.parallax {
    min-height: 700px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    background: rgba(0,0,0,0.4);
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    text-align: center;
}
.section {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #ffffff;
    flex-direction: row;
    gap: 2rem;
    padding-left: 3vw;
    padding-right: 3vw;
    text-align: left;
}
.section-content {
    flex: 1 1 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-carousel {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.carousel {
    position: relative;
    width: 320px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}
.carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.carousel-img {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}
.carousel-img.active {
    opacity: 1;
    z-index: 2;
}
.carousel-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}
.carousel-prev, .carousel-next {
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.carousel-prev:hover, .carousel-next:hover {
    background: #4f46e5;
}
@media (max-width: 768px) {
            .parallax {
                background-attachment: scroll;
            }
}
@media (max-width: 900px) {
    .section {
        flex-direction: column;
        gap: 1.5rem;
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .section-carousel {
        justify-content: center;
    }
}