body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.coming_soon_section{
    height: 100vh;
    background: url('/assets/images/coming_soon_bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Overlay */
.coming_soon_section_overlay{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(252,176,15,0.15), transparent 30%),
        linear-gradient(135deg, #004889c9 0%, #053976d9 45%, #001d4a 100%);
    z-index: 1;
}

/* Container */
.coming_soon_section .container{
    position: relative;
    z-index: 2;
}

/* Main Wrapper */
.coming_soon_wrapper{
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 30px 15px;
}

/* Logo */
.header_logo{
    margin-bottom: 25px;
}

.coming_soon_section .header_logo img{
    width: 275px;
    object-fit: cover;
    animation: floatLogo 4s ease-in-out infinite;
    border-radius: 15px;
    padding: 10px;
        background: #fff;

}

/* Floating Logo Animation */
@keyframes floatLogo{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
}

/* Content */
.coming_soon_content{
    position: relative;
}

/* Glow Effect */
.coming_soon_content::before{
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(252,176,15,0.18), transparent 70%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(40px);
}

/* Heading */
.coming_soon_section h1{
    font-size: 72px;
    line-height: 82px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;

    background: linear-gradient(to right, #ffffff, #fcb00f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.coming_text{
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 35px;
    text-align: center;
    line-height: 32px;
    font-weight: 300;
}

/* Contact Info */
.contact_info{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

/* Contact Buttons */
.contact_info a{
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 50px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: all 0.3s ease;
}

/* Icons */
.contact_info a i{
    margin-right: 8px;
    color: #fcb00f;
}

/* Hover */
.contact_info a:hover{
    background: #fcb00f;
    color: #001440;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(252,176,15,0.3);
}

.contact_info a:hover i{
    color: #001440;
}

/* Social Icons */
.social_icons{
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.social_icons a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.social_icons a:hover{
    background: #fcb00f;
    color: #001440;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252,176,15,0.25);
}

/* Bottom Text */
.bottom_text{
    margin-top: 40px;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px){

    .coming_soon_section{
        padding: 40px 0;
        height: auto;
        min-height: 100vh;
    }

    .coming_soon_section h1{
        font-size: 46px;
        line-height: 58px;
    }

    .coming_text{
        font-size: 16px;
        line-height: 28px;
    }

    .coming_soon_section .header_logo img{
        width: 200px;
    }

    .contact_info{
        flex-direction: column;
        align-items: center;
    }

    .contact_info a{
        width: 100%;
        max-width: 320px;
    }

    .social_icons{
        margin-top: 30px;
    }
}