/* إعدادات عامة */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    background-color: #333;
}

/* الخلفية */
.background {
    background-image: url('images/banner2.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    padding: 20px;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.price-button {
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    opacity: 0;
    animation: fadeIn 4s forwards;
}

.price-button:hover {
    background-color: darkgreen;
}

/* زر واتساب متحرك */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    animation: bounce 2s infinite;
}

.whatsapp-floating img {
    width: 100%;
    height: 100%;
}

/* الأيقونات الاجتماعية */
.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 5s forwards;
}

.social-icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* تأثيرات النصوص */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* الحركات */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10