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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 25%, rgba(15, 52, 96, 0.8) 50%, rgba(83, 52, 131, 0.85) 75%, rgba(114, 9, 183, 0.9) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.brand {
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    height: 220px;
    width: auto;
    max-width: 550px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
}


.coming-soon {
    margin-bottom: 30px;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out 0.3s both;
}

.coming-soon p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}



.social-links {
    margin-bottom: 40px;
}

.social-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-icons a:nth-child(2) {
    animation-delay: 1.4s;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icons i {
    font-size: 1.8rem;
    color: #fdba4d;
    transition: all 0.3s ease;
}

.social-icons a:hover i {
    color: #fab24d;
    transform: scale(1.1);
}

.social-icons span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-info {
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.contact-info i {
    color: rgba(255, 255, 255, 0.8);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-mountain {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 200px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50% 50% 0 0;
    animation: float 6s ease-in-out infinite;
}

.floating-cloud {
    position: absolute;
    top: 20%;
    right: -30px;
    width: 150px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-cloud::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.floating-cloud::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .logo {
        height: 160px;
        max-width: 400px;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    .brand {
        margin-bottom: 20px;
    }
    
    .coming-soon {
        margin-bottom: 20px;
    }
    
    .social-links {
        margin-bottom: 30px;
    }
    
    .service-card {
        max-width: 280px;
        padding: 25px 15px;
    }
    
    
    .social-icons {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .logo {
        height: 140px;
        max-width: 350px;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .brand {
        margin-bottom: 15px;
    }
    
    .coming-soon {
        margin-bottom: 15px;
    }
    
    .social-links {
        margin-bottom: 25px;
    }
    
    
}
