* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    overflow: hidden;
    background-image: url('background.jpg');
    /* your geotech/infracon image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Full-screen flexbox to center logo */
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    padding: 20px;
}

/* Glass card behind the logo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* Adapt to the wide horizontal logo you attached */
.logo {
    width: 360px;
    /* adjust this if it looks too big/small */
    height: auto;
    display: block;
}

.coming-soon {
    margin-top: 18px;
    color: #ffffff;
    font-size: 1.8rem;
    letter-spacing: 0.45rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Bottom-left company info */
.company-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-align: left;
    background: rgba(0, 0, 0, 0.55);
    padding: 16px 20px;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 380px;
}

.company-details h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #0b2c7f;
    /* close to your logo blue */
    text-transform: uppercase;
}

.company-details p {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .logo {
        width: 260px;
    }

    .coming-soon {
        font-size: 1.3rem;
        letter-spacing: 0.25rem;
    }

    .company-details {
        left: 10px;
        bottom: 10px;
        right: 10px;
        max-width: none;
    }
}