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

body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #082b61;
}

/* Main Page */

.coming-soon {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7faff 55%,
            #eef5ff 100%
        );
}

/* Navbar */

.navbar {
    width: 100%;
    padding: 22px 7%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.brand span {
    font-size: 24px;
    font-weight: 700;
    color: #082b61;
}

/* Main Content */

.content {
    flex: 1;
    width: 100%;
    max-width: 850px;
    margin: auto;
    padding: 40px 25px 80px;
    text-align: center;
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Main Logo */

.logo-container {
    width: 145px;
    height: 145px;
    margin-bottom: 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #ffffff;
    border-radius: 50%;

    box-shadow:
        0 15px 45px rgba(8, 43, 97, 0.12),
        0 4px 12px rgba(8, 43, 97, 0.06);

    animation: float 4s ease-in-out infinite;
}

.logo-container img {
    width: 125px;
    height: 125px;
    object-fit: contain;
}

/* Small Heading */

.small-text {
    color: #f47721;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

/* Main Heading */

h1 {
    font-size: clamp(55px, 8vw, 92px);
    line-height: 1;
    font-weight: 700;
    color: #082b61;
    margin-bottom: 25px;
}

h1 span {
    color: #f47721;
}

/* Description */

.description {
    max-width: 650px;
    font-size: 17px;
    line-height: 1.8;
    color: #63748d;
}

/* Divider

.divider {
    width: 65px;
    height: 4px;
    background: #f47721;
    border-radius: 10px;
    margin: 25px auto 18px;
} */

/* Stay Tuned */

.stay-tuned {
    color: #082b61;
    font-size: 15px;
    font-weight: 500;
}

/* Button */

.button {
    margin-top: 30px;
    padding: 14px 27px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #082b61;
    color: #ffffff;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    border-radius: 8px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.button span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.button:hover {
    background: #f47721;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 119, 33, 0.25);
}

.button:hover span {
    transform: translateX(5px);
}

/* Decorative Circles */

.circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 420px;
    height: 420px;

    top: -250px;
    right: -150px;

    border: 70px solid rgba(244, 119, 33, 0.07);
}

.circle-two {
    width: 500px;
    height: 500px;

    bottom: -350px;
    left: -250px;

    border: 80px solid rgba(8, 43, 97, 0.05);
}

/* Footer */

footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    color: #082B61;
    font-size: 15px;
}

/* Logo Animation */

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Tablet */

@media (max-width: 768px) {

    .navbar {
        padding: 18px 5%;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand span {
        font-size: 21px;
    }

    .content {
        padding: 30px 20px 60px;
    }

    .logo-container {
        width: 125px;
        height: 125px;
    }

    .logo-container img {
        width: 108px;
        height: 108px;
    }

    .description {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile */

@media (max-width: 480px) {

    .navbar {
        justify-content: center;
    }

    .brand span {
        font-size: 19px;
    }

    .content {
        padding-top: 15px;
    }

    .logo-container {
        width: 110px;
        height: 110px;
        margin-bottom: 22px;
    }

    .logo-container img {
        width: 95px;
        height: 95px;
    }

    .small-text {
        font-size: 10px;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 55px;
    }

    .description {
        font-size: 14px;
    }

    .stay-tuned {
        font-size: 13px;
    }

    .button {
        padding: 12px 22px;
    }

    footer {
        font-size: 15px;
    }
}