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

        body{
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
            min-height:100vh;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#fff;
            padding:20px;
        }

        .coming-soon-wrapper{
            width:100%;
            max-width:1100px;
        }

        .coming-card{
            background: rgba(255,255,255,0.08);
            border:1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(12px);
            border-radius:24px;
            overflow:hidden;
            box-shadow:0 10px 40px rgba(0,0,0,0.35);
        }

        .left-section{
            padding:60px 40px;
        }

        .right-section{
            background: rgba(255,255,255,0.05);
            padding:60px 40px;
            height:100%;
        }

        .logo-box{
            width: 35%;
            /* height:120px; */
            background:#ffffff;
            border-radius:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:30px;
            overflow:hidden;
            padding: 20px;
            margin: auto;
        }

        .logo-box img{
            width:100%;
            height:100%;
            object-fit:contain;
            padding:10px;
        }

        .badge-custom{
            background:#f59e0b;
            color:#000;
            font-weight:600;
            padding:10px 22px;
            border-radius:50px;
            font-size: 30px;
            letter-spacing:1px;
            display:inline-block;
            margin-bottom:20px;
        }

        .main-title{
            font-size: 20px;
            font-weight:700;
            line-height:1.2;
            margin-bottom:20px;
        }

        .highlight{
            color:#fbbf24;
        }

        .sub-text{
            font-size: 14px;
            line-height:1.8;
            color:#dbeafe;
            margin-bottom:35px;
        }

        .info-card{
            background: rgba(255,255,255,0.08);
            border-radius:18px;
            padding:25px;
            margin-bottom:20px;
            border:1px solid rgba(255,255,255,0.08);
        }

        .info-title{
            font-size:14px;
            color:#fbbf24;
            text-transform:uppercase;
            letter-spacing:1px;
            margin-bottom:10px;
            font-weight:600;
        }

        .info-content{
            font-size:16px;
            line-height:1.8;
            color:#ffffff;
        }

        .contact-list{
            list-style:none;
            padding-left:0;
            margin-bottom:0;
        }

        .contact-list li{
            margin-bottom:12px;
            font-size:15px;
            color:#e2e8f0;
        }

        .footer-text{
            margin-top:25px;
            font-size:14px;
            color:#cbd5e1;
        }

        @media (max-width: 991px){
            .left-section,
            .right-section{
                padding:40px 25px;
            }

            .main-title{
                font-size:38px;
            }

            .logo-box{
                width:100px;
                height:100px;
            }
        }

        @media (max-width: 576px){
            .main-title{
                font-size:30px;
            }

            .sub-text{
                font-size:15px;
            }
        }