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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5')
                center center/cover no-repeat;
}

.overlay {
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.82);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.content {
    max-width: 800px;
}

.logo {
    font-size: 42px;
    font-weight: 800;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    color: #e2e8f0;
    line-height: 1.8;
}

.services {
    margin: 40px 0;
}

.services span {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid #f59e0b;
    color: #f59e0b;
    padding: 12px 20px;
    margin: 6px;
    border-radius: 30px;
    font-weight: 600;
}

.contact {
    margin-top: 30px;
}

.contact p {
    margin: 8px 0;
    font-size: 18px;
}

.coming {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 35px;
    background: #f59e0b;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(245, 158, 11, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 32px;
    }

    h1 {
        font-size: 36px;
    }

    p {
        font-size: 17px;
    }
}
