/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Background Image (Perfect Natural) */
body {
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("landing.webp") no-repeat center/cover;
    z-index: -2;
}

/* No tint on background */
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
}

/* Floating Glassmorphism Card */
.card {
    width: 90%;
    max-width: 500px;
    padding: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    text-align: center;
    color: #363434;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    animation: fadeIn 1.2s ease;
}

/* Logo */
.logo {
    width: 180px;
    margin-bottom: 20px;
}

/* Company name */
.company {
    font-size: 23px;      /* increased size */
    font-weight: 600;     /* stronger bold */
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #363434;
}

/* Coming Soon Text */
h1 {
    font-size: 22px;     /* smaller */
    font-weight: 500;    /* lighter */
    margin-bottom: 15px;
    opacity: 0.9;
}


/* TAGS (Email & Phone) */
.tag-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
}

.tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 30px;
    margin: 6px;
    font-size: 15px;
    color: #363434;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
    text-decoration: none;
    transition: 0.3s ease;
}

.tag:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.tag i {
    margin-right: 8px;
}

/* Subtitle */
.subtitle {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Social Icons */
.social a {
    margin: 0 10px;
    font-size: 20px;
    color: #363434;
    transition: 0.3s ease;
}

.social a:hover {
    transform: scale(1.2);
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    h1 { font-size: 24px; }
    .card { padding: 30px; }
    .tag { font-size: 13px; padding: 8px 14px; }
}