body {
    margin: 0;
    font-family: Arial, sans-serif;
    /* background: linear-gradient(135deg, #007BFF, #0056b3); */
    color: #007BFF;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.logo img {
    max-width: 300px;
}

.container .logo p {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
    padding: 0 10px;
    max-width: 60%;
    margin: 10px auto;
}

.container .logo p:hover {
    color: #29627f;
    transition: color 0.3s ease;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Facebook */
.social-links a.facebook {
    background: #1877f2;
}

.social-links a.facebook:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.5);
}

/* Instagram */
.social-links a.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links a.instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(221, 42, 123, 0.5);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Icon */
.whatsapp-btn i {
    z-index: 2;
}

/* WhatsApp Number Tooltip (Animated) */
.whatsapp-number {
    position: absolute;
    right: 70px;
    background: #F1F1F1;
    color: #111;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 1;
    animation: slideNumber 1.5s infinite alternate ease-in-out;
}

/* Animation */
@keyframes slideNumber {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .logo p {
        font-size: 1rem;
        max-width: 100% !important;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}