﻿body {
    font-family: 'Tahoma', sans-serif;
    overflow-x: hidden;
}


@keyframes slideLine {
    from {
        width: 60px;
    }

    to {
        width: 120px;
    }
}

.news-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #B5D8EB, #f0f8ff);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.15);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.4s ease;
    border-right: 6px solid #B5D8EB;
}

    .news-item.show {
        transform: translateY(0);
        opacity: 1;
    }

    .news-item:hover {
        box-shadow: 0 12px 40px rgba(0, 119, 182, 0.3);
    }

.news-img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: relative;
}

.news-item:hover .news-img {
    transform: scale(1.05) rotate(1deg);
}

.news-content {
    padding: 25px;
    flex: 1;
}

.news-title {
    color: #254288;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.news-text {
    color: rgba(60, 60, 60, 0.85);
    line-height: 1.7;
}

/* تأثير التموج */
.news-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.2) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: ripple 5s infinite ease-in-out;
}

@keyframes ripple {
    0%, 100% {
        background-position: 0 0, 100% 100%;
    }

    50% {
        background-position: 100% 0, 0 100%;
    }
}

/* موبايل */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        border-right: none;
        border-bottom: 6px solid #00b4d8;
    }

    .news-img {
        width: 100%;
        height: 200px;
    }
}
