body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #a4b6c4;
    text-align: center;
    max-width: 100%;
    height: 130vh;
    overflow-x: hidden;
    font-family: "Georgia", serif; 
    font-size: 18px; 
    line-height: 1.6; 
    transition: color 1.5s ease-in-out;
    display: flex;
    flex-direction: column;
    
 
}

.logo {
    position: absolute;
    left: 5rem;
    width: 15rem;
    height: auto;
    margin-top: -1rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.logo.loaded {
    opacity: 1;
}


.title-container {
    font-family: 'Roboto', sans-serif;
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


.water-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: overlay;
    animation: water-move 8s infinite alternate ease-in-out;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0.8;
    animation: rise 8s infinite ease-in-out;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

@keyframes water-move {
    0% {
        filter: blur(2px);
        transform: scale(1);
    }
    100% {
        filter: blur(4px);
        transform: scale(1.02);
    }
}


.cimen, .site {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
    color: #003366;
}

.cimen {
    transform: translateX(-100vw);
}

.site {
    transform: translateX(100vw);
}

.cimen.visible, .site.visible {
    opacity: 1;
    transform: translateX(0);
}


.main-info {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    font-size: 2rem;
    transform: translateY(50px);
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out, color 0.5s ease;
}

.main-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.main-info-2 {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    font-size: 2rem;
    transform: translateY(50px);
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out, color 0.5s ease;
}

.main-info-2.visible {
    opacity: 1;
    transform: translateY(0);
}

.technology {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    width: 80%;
}
.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}