.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: 600px; 
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6600;
}

.logo a {
    text-decoration: none;
    color: #333;
}

.hyperos-stack-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-top: 60px;
    box-sizing: border-box;
    background-color: #000;
}

.hyperos-stacked-img {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.hyperos-stacked-img.img-1 {
    top: 60px;
    left: 0;
    z-index: 1;
}
.hyperos-stacked-img.img-2 {
    top: 60px; 
    left: 0;
    z-index: 2;
}
.hyperos-stacked-img.img-3 {
    top: 60px; 
    left: 0;
    z-index: 3;
}


.hyperos-main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 600px;
}

.fluid-experience-section {
    background-color: black;
    padding: 80px 20px;
    text-align: center;
}

.fluid-title {
    font-size: 60px;
    font-weight: bold;
    color: white; 
    margin-top: 0;
    margin-bottom: 20px;
}

.fluid-subtitle-line1,
.fluid-subtitle-line2 {
    font-size: 30px;
    color: #444;
    margin-top: 5px;
    margin-bottom: 5px;
}

.fluid-subtitle-line2 {
    margin-bottom: 60px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    width: 45%;
    background-color: #333;
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.card-title {
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-top: 0;
    line-height: 1.4;
}

.reviews-container {
    padding-top: 80px; 
    padding-bottom: 50px;
    background-color: #f0f0f0; 
    padding-left: 40px; 
}

.reviews-grid {
    width: 100%;
    max-width: 600px;
}

.review-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 100%; 
    margin-bottom: 25px; 
    margin-right: 0; 
    text-align: left;
}

.review-card:last-child {
    margin-bottom: 0;
}

.rating-stars {
    font-size: 24px;
    color: #FFC107; 
    margin-bottom: 10px;
    text-align: left;
}

.review-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 10px 0;
    text-align: left;
}

@font-face {
    font-family: 'MiSans';
    src: url('fonts/MiSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'MiSans', sans-serif;
}