
        body, h1, h2, h3, h4, h5, h6, .notoo, .navbar-brand, .nav-link {
            font-family: "Noto Kufi Arabic", sans-serif !important;
        }
        
        .bg-primary-custom {
            background-color: #ff9800 !important; 
            color: white;
        }
        


        .icon-outlined {
            width: 110px;
            height: 110px;
            line-height: 110px;
            text-align: center;
            display: inline-block;
            border-radius: 50%;
            border: 2px solid #ddd;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .icon-outlined img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

     
        .top-bar {
            background-color: #fff;
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }
        
        .nav-link {
            font-weight: 500;
            color: #333 !important;
            transition: 0.3s;
        }
        
        .nav-link:hover {
            color: #ff9800 !important;
        }

        /* Hero Carousel Fixes */
        .home-carousel {
            direction: ltr; 
        }
        .home-carousel .item {
            text-align: right; 
        }

.navbar-nav .nav-item {
    display: flex;
    align-items: center; 
}

.navbar-nav .nav-link {
    border: 1px solid #ff9800 !important;
    border-radius: 25px; 
    padding: 8px 20px !important; 
    margin: 0 5px;
    color: #333 !important; 
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}


.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    background-color: #ff9800; 
    color: #fff !important; 
    box-shadow: 0 4px 6px rgba(255, 152, 0, 0.2); 
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}


.moving-text {
    display: inline-block;

    transform: translate(-100%, 0); 
    /* اسم الحركة move-right */
    animation: move-right 15s linear infinite; 
    font-weight: bold;
    color: #fff; 
}


@keyframes move-right {
    0% {
        transform: translate(-100%, 0); 
    }
    100% {
        transform: translate(100%, 0); 
    }
}

.blog-meta-top {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between; 
    z-index: 2;
    direction: rtl; 
}


.meta-badge {
    background: rgba(255, 255, 255, 0.95); 
    color: #333;
    padding: 6px 15px;
    border-radius: 50px; 
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    display: flex;
    align-items: center;
    gap: 5px; 
    transition: transform 0.3s;
}

.meta-badge:hover {
    transform: scale(1.05); 
    background: #fff;
}

.meta-badge i {
    color: #ff9800; 
    font-size: 0.9rem;
}


.blog-card {
    height: 100%;
}

.blog-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.blog-card {
    background: #fff;
    border: none;
    border-radius: 15px; 
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%; 
}


.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}


.blog-img-top {
    position: relative;
    overflow: hidden;
    height: 220px; 
}

.blog-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-top img {
    transform: scale(1.1); 
}


.date-badge {
    position: absolute;
    top: 15px;
    left: 15px; 
    background: #ff9800; 
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}


.blog-body {
    padding: 25px;
    text-align: right; 
}

.blog-category {
    color: #ff9800;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #ff9800;
}

.blog-text {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more-btn {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #ff9800;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    color: #ff9800;
    border-color: transparent;
}
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 100%; 
    position: relative;
}


.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.15); /* ظل برتقالي خفيف */
    border-color: #ff9800;
}


.news-img-box {
    position: relative;
    overflow: hidden;
    height: 180px; 
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.news-card:hover .news-img-box img {
    transform: scale(1.1);
}


.news-date-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 152, 0, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.news-date-tag span {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}


.news-body {
    padding: 20px;
    text-align: right;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #ff9800;
}

.news-excerpt {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    color: #ff9800;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    gap: 10px;
    transition: gap 0.3s;
}

.branch-card {
    background: rgba(255, 255, 255, 0.95); 
    border-radius: 15px; 
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-bottom: 4px solid #ff9800; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    height: 100%;
    display: block;
    text-decoration: none !important;
}


.branch-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #f8f9fa;
    color: #ff9800;
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}


.branch-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    transition: color 0.4s ease;
}


.branch-arrow {
    margin-top: 10px;
    font-size: 1rem;
    color: #ccc;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
}


.branch-card:hover {
    transform: translateY(-10px); /
    background: linear-gradient(135deg, #ff9800, #ffb74d); 
    border-bottom-color: #fff;
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.3);
}

.branch-card:hover .branch-icon {
    background: #fff;
    color: #ff9800;
    transform: scale(1.1); 
}

.branch-card:hover .branch-title {
    color: #fff;
}

.branch-card:hover .branch-arrow {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}


.login-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.login-modal-header {
    border-bottom: none;
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    position: relative;
}

.login-modal-title {
    color: #333;
    font-weight: 700;
    width: 100%;
    margin: 0;
}

.btn-close-custom {
    position: absolute;
    left: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    transition: color 0.3s;
}

.btn-close-custom:hover {
    color: #ff9800;
}


