header {
    z-index: 9999999999;
}

.new {
    position: relative;
    overflow: hidden;
    max-height: 360px;
    transition: all 0.5s;
}

.newSecondary {
    max-height: 171.5px;
}

.new img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}

.new .newText {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new .newMore {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0);
    font-size: 0px;
    color: white;
    transition: background 0.5s, opacity 0.5s;
}

.new .newMoreText {
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newPrivate {
    aspect-ratio: 6/2;
    max-height: 130px;
}

.new:hover {

    box-shadow: 0px 0px 20px #888888;
}

.new:hover img {
    transform: scale(1.2);
}

.new:hover .newMore {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.591);
}

.card img {
    aspect-ratio: 16/10;
}

.video-box {
    width: 100%;
    max-width: 600px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

.report {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

/* تكبير الكرت عند الهوفر */
.report:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* الصورة الدائرية */
.circle-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 3px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.circle-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* تأثير Hover عالصورة */
.circle-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.4);
    border-color: gold;
}

.circle-box:hover img {
    transform: scale(1.1);
}

/* محتوى الكرت */
.report-content h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.report-content p {
    font-size: 14px;
    color: #555;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* زر اقرأ المزيد */
.report .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #212529;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.report .btn:hover {
    background-color: hsl(354, 70%, 54%);
    color: #fff;
}

.simple-footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
}

.simple-footer a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.simple-footer a:hover {
    color: rgb(164, 19, 19);
}

/* page new */

.relatedNews {
    min-height: 80px;
    display: flex;
    align-items: center;
}

.relatedNews h6 {
    border-left: 3px solid black;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100px;
    max-height: 150px;
    overflow: hidden;
    border-radius: 0.375rem;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* حركة ناعمة */
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-truncate-2:hover{
    color: peru;
    cursor: pointer;
}
.lastNews-box{ 
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #f3f3f5; 
    
}
/* تأثير hover على الصورة */
.lastNews-box:hover .image-wrapper img {
    transform: scale(1.1);
}
 