
    
        body {
            font-family: 'Arial', sans-serif;
            background-image: url(image1.png);
            background-size: 100% 100%;
            animation: gradient 15s ease infinite;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }


        .company-name {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);

        }

        .container {
            text-align: center;
            background: rgba(0, 0, 0, 0);
            opacity: 0.9;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .coming-soon {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 30px;
            opacity: 0.9;
            letter-spacing: 2px;
        }

        .contact-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .email {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: #fdbb2d;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        .email:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        .loading-bar {
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
        }

        .loading-progress {
            width: 60%;
            height: 100%;
            background: white;
            animation: loading 2s ease-in-out infinite;
        }

        @keyframes loading {
            0% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }


        @media (max-width: 768px) {
            .company-name {
                font-size: 2.5rem;
            }
            
            .container {
                padding: 40px 20px;
            }
            
            .coming-soon {
                font-size: 1.5rem;
            }
            
            .email {
                font-size: 1.1rem;
            }
        }
    