body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1501594907352-04cda38ebc29') no-repeat center/cover;
    color: white;
    text-align: center;
}

header {
    padding: 40px 20px;
}

header img {
    max-width: 180px;
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 42px;
    color: gold;
    margin-top: 15px;
    animation: slideDown 1s ease-in-out;
}

p {
    font-size: 22px;
    color: #ccc;
    animation: fadeIn 2s ease-in-out;
}

.services, .social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 40px auto;
    max-width: 1000px;
}

.service-item, .social-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item img, .social-item img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.service-item span {
    font-size: 20px;
    font-weight: bold;
}

.service-item:hover, .social-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 15px gold;
}

h2 {
    color: gold;
    margin-bottom: 20px;
    font-size: 28px;
}
.social-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
}

.social-item:hover img {
    transform: scale(1.1);
}


@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideDown {
    from {transform: translateY(-20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
