body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(
        135deg,
        #3b0a0a 0%,
        #5c1212 45%,
        #1a0202 100%
    );
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    padding: 20px;
    position: relative;
}

.scene-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Person popping from behind and peeking from left */
.person-holder {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    animation: popOut 4s ease-in-out infinite;
}

@keyframes popOut {
    0%, 100% { 
        left: -60px;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        left: -40px;
        transform: translateY(-50%) scale(1.05);
    }
}

.person-svg {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

.person-image {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

/* Hand pointing gesture */
.pointing-hand {
    animation: pointGesture 4s ease-in-out infinite;
    transform-origin: 240px 140px;
}

@keyframes pointGesture {
    0%, 100% { 
        transform: rotate(0deg) translateX(0);
    }
    50% { 
        transform: rotate(-5deg) translateX(8px);
    }
}

.coming-soon {
    max-width: 720px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 45px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.35),
        -10px 0 30px rgba(92, 18, 18, 0.15);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 2;
}

.logo {
    margin-bottom: 25px;
}

.logo img {
    max-width: 160px;
}

h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
}

.status {
    font-size: 15px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color:#6e0f0f ;
    margin-bottom: 22px;
    font-weight: 700;
}

p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.services {
    margin: 30px 0;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 14px;
}

.service-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.strong {
    border: 1px solid black;
    padding: 5px;
    background-color: #5c1212;
    color: white;
}

.service-item img {
    width: 38px;
    margin-bottom: 10px;
}

.service-item span {
    display: block;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.footer {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}
.person-holder img{
    width: 600px;
    left: 0;
}
@media (max-width: 1024px) {
    .person-holder {
        left: -40px;
    }
    .person-svg {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .person-holder {
        display: none;
    }
    .scene-container {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 32px;
    }
    .coming-soon {
        padding: 35px 25px;
    }
}