

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        /* Glass Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            background: rgb(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }
        .btn {
            display: inline-block;
            font-weight: 400;
            line-height: 1.5;
            color: #212529;
            text-align: center;
            text-decoration: none;
            vertical-align: middle;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: transparent;
            border: 1px solid transparent;
            padding: .375rem .75rem;
            font-size: 1rem;
            border-radius: .25rem;
            -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        }
        .btn-outline-brand {
            color: #2370b8;
            border-color: #2370b8;
            font-size: 14px
        }

            .btn-outline-brand:hover {
                color: #fff;
                background-color: #2370b8;
                border-color: #2370b8
            }
        .btn-outline-brand2 {
            color: #0e8c8a;
            border-color: #0e8c8a;
            font-size: 14px
        }

            .btn-outline-brand2:hover {
                color: #fff;
                background-color: #0e8c8a;
                border-color: #0e8c8a
            }
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

            nav ul li {
                position: relative;
            }

                nav ul li a {
                    color: #fff;
                    text-decoration: none;
                    font-size: 16px;
                    font-weight: 500;
                    /*text-transform: uppercase;*/
                    letter-spacing: 1px;
                    padding: 8px 0;
                    transition: all 0.3s ease;
                    position: relative;
                    opacity: 0.9;
                }

                    nav ul li a:hover {
                        color: #4dc0ff;
                        opacity: 1;
                    }

                    nav ul li a.active {
                        color: #4dc0ff;
                        opacity: 1;
                    }

                        nav ul li a.active::after {
                            content: '';
                            position: absolute;
                            bottom: -5px;
                            left: 0;
                            width: 100%;
                            height: 2px;
                            background-color: #4dc0ff;
                        }

        .menu-divider {
            color: rgba(255, 255, 255, 0.3);
            font-size: 20px;
            font-weight: 300;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Video Background */
        .video-background {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

            .video-background video {
                position: absolute;
                top: 50%;
                left: 50%;
                min-width: 100%;
                min-height: 100%;
                width: auto;
                height: auto;
                transform: translateX(-50%) translateY(-50%);
                object-fit: cover;
                z-index: 1;
            }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
            z-index: 2;
        }

        /* Glass Content Box */
        .glass-container {
            position: absolute;
            top: 33%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 1200px;
            z-index: 3;
            text-align: center;
        }

        .glass-box {
            background: rgba(30, 30, 30, 0.45);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 5px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

            .glass-box::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            }

        /* Content Styles */
        .logo-text {
            font-size: 30px;
            font-weight: 500;
            margin-bottom: 12px;
            
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

       

        .coming-soon-text {
            font-size: 26px;
            line-height: 1.5;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .soon-text {
            font-size: 22px;
            color: #fff;
            text-align:left
        }

        .slash {
            color: rgba(255, 255, 255, 0.5);
            margin: 0 15px;
            font-weight: 300;
        }

        /* Medeed Introduction */
        .medeed-intro {
            margin-top: 30px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

            .medeed-intro h3 {
                font-size: 18px;
                color: #fff;
                margin-top: 10px;
                margin-bottom: 20px;
                font-weight: 400;
                text-align:left
            }

            .medeed-intro p {
                font-size: 17px;
                line-height: 1.6;
                color: rgba(255, 255, 255, 0.8);
                /*max-width: 600px;*/
                margin: 0 auto;
                font-weight: 300;
                text-align: justify
            }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .mobile-menu-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(15, 15, 15, 0.95);
                backdrop-filter: blur(15px);
                flex-direction: column;
                padding: 100px 40px;
                transition: right 0.4s ease;
                z-index: 1000;
                gap: 30px;
            }

                nav ul.active {
                    right: 0;
                }

            .menu-divider {
                display: none;
            }

            .logo-text {
                font-size: 36px;
            }

            .coming-soon-text {
                font-size: 22px;
            }

            .soon-text {
                font-size: 28px;
            }

            .glass-box {
                padding: 50px 30px;
            }
        }

        @media (max-width: 768px) {
            .logo-text {
                font-size: 30px;
                letter-spacing: 2px;
            }

            .coming-soon-text {
                font-size: 20px;
            }

            .soon-text {
                font-size: 24px;
            }

            .medeed-intro h3 {
                font-size: 20px;
            }

            .medeed-intro p {
                font-size: 16px;
            }

            .glass-box {
                padding: 40px 25px;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 35px;
            }

            .logo-text {
                font-size: 26px;
                letter-spacing: 1px;
            }

            .coming-soon-text {
                font-size: 18px;
            }

            .soon-text {
                font-size: 20px;
            }

            .slash {
                margin: 0 8px;
            }

            .medeed-intro {
                margin-top: 40px;
                padding-top: 30px;
            }

                .medeed-intro h3 {
                    font-size: 18px;
                }

                .medeed-intro p {
                    font-size: 15px;
                }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: #4dc0ff;
            border-radius: 5px;
        }

            ::-webkit-scrollbar-thumb:hover {
                background: #3aa8e0;
            }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glass-box {
            animation: fadeInUp 1s ease-out;
        }
       
    