* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
            .content-card {
    width: 100%;
    text-align: center;
    max-width: 100% !important;
}
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0F1B2E 0%, #1A2B47 50%, #253A5C 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated background elements */
        .bg-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
            .logo{
                padding-bottom:2em;
            }
        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(50, 255, 50, 0.1));
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 10%;
            animation-delay: -5s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 5%;
            animation-delay: -10s;
        }

        .shape:nth-child(4) {
            width: 40px;
            height: 40px;
            top: 10%;
            right: 30%;
            animation-delay: -15s;
        }
    img {
    width: 100%;
    max-width: 400px;
}
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(20px) rotate(240deg); }
        }

        .main-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .content-card {
            background: transparent;
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            max-width: 600px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .tagline {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .construction-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .construction-text {
            font-size: 1.1rem;
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .progress-container {
            margin: 30px 0;
        }

        .progress {
            height: 8px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }

        .progress-bar {
            background: linear-gradient(45deg, #00ffff, #32ff32);
            height: 100%;
            border-radius: 50px;
            animation: progressAnimation 2s ease-in-out;
        }

        @keyframes progressAnimation {
            0% { width: 0%; }
            100% { width: 75%; }
        }

        .contact-info {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-info h5 {
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-info p {
            color: #ffffff;
            margin-bottom: 5px;
        }

        /* WhatsApp floating button 
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, #25d366, #128c7e);
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 24px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
            color: white;
        }*/

        @keyframes pulse {
            0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8); }
            100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .content-card {
                padding: 30px 20px;
            }
            
            .construction-title {
                font-size: 1.5rem;
            }
            
            .construction-text {
                font-size: 1rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 20px;
            }
        }