html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Poppins', Arial, sans-serif;

}

body,
html {
    overflow-x: hidden;
}


body {
    background-image: url('media/aastha.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
    pointer-events: none;
}

.bg-img {
    position: fixed;
    /* changed from absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* filter: blur(4px); */
    pointer-events: none;
    /* so it doesn't block clicks */
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    text-align: center;
    z-index: 1;
    padding-left: 0;
    padding-bottom: 0;
    box-sizing: border-box;

}

.logo {
    width: 200px;
    margin-bottom: 60px;
}

.desc {
    font-size: 1.1rem;
    color: #696969;
    margin-bottom: 18px;
}

.highlight {
    font-size: 1.1rem;
    color: #696969;
    margin-bottom: 18px;
}

.launching-soon {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    color: #ff5722;
    letter-spacing: 1px;
}

.contact-section {
    margin-top: 18px;
    font-size: 1rem;
    color: #696969;
}

.contact-title {
    font-weight: 500;
    margin-bottom: 8px;
}

.contacts span {
    margin: 0 10px;
    display: inline-block;
}

.contacts a {
    text-decoration: none;
    color: #4e4e4e;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100vw;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;

}

.social-icons {
    width: 28px;
    height: 28px;
    background: #066ba3;
    border-radius: 50%;
    padding: 4px;
    box-sizing: border-box;
    transition: background 0.2s;
    display: inline-block;
}

.na {
    width: 15px;
    height: 15px;

}


.powered {
    font-size: 0.95rem;
    color: #666;
}

.highlight-text {
    color: #353535;
}

.powered a {
    color: #696969;
    text-decoration: none;
    font-weight: 400;
    margin-top: 12px;
}

.launch-section {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 20px 24px 20px;
}

.main-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-section {
    padding: 24px 20px 16px 20px;
    margin-top: -8px;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin: 0 4px;
    padding-bottom: 4px;
}


.gradient-text {
    background: linear-gradient(90deg, #3382B0, #00466F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #3382B0;
    animation:
        typing 4s steps(15, end) infinite,
        blink-caret 0.7s step-end infinite;
    font-family: inherit;
    font-size: inherit;
}

@keyframes typing {
    0% {
        width: 0
    }

    60% {
        width: 15ch
    }

    80% {
        width: 15ch;
    }

    100% {
        width: 0;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: #3382B0;
    }
}

@media screen and (max-width: 250px) {
    body {
        overflow-x: auto;
        overflow-y: auto;
    }
}

@media screen and (max-width: 400px) {
    .coming-soon-container {
        width: 98vw;
        padding: 20px 4px 12px 4px;
    }

    .socials {
        gap: 4px;
        padding: 0 2px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.silver-gradient {
    background: linear-gradient(90deg, #888 0%, #acacac 50%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.gold-gradient {
    background: linear-gradient(90deg, #b8860b 0%, #aaa700 60%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.gems-gradient {
    background: linear-gradient(90deg, #4B0082 0%, #00b3b3 60%, #4B0082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}