@font-face {
    font-family: 'Noto Kufi Arabic';
    src: url('/fonts/NotoKufiArabic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

/* Apply RTL and custom font */
body {
    direction: rtl;
    text-align: right;
    font-family: 'Noto Kufi Arabic', sans-serif;
    background: linear-gradient(135deg, #e0f0ff, #ffffff);
   
}

h1, h2, h3 {
    font-family: 'Noto Kufi Arabic', serif;
}

p {
    font-family: 'Noto Kufi Arabic', serif;
}

.filter-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-badge {
    padding: 6px 14px;
    background: #f1f1f1;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid #ddd;
    transition: 0.2s;
    user-select: none;
}

    .filter-badge:hover {
        background: #e5e5e5;
    }

    .filter-badge.active {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }

.filter-box {
    background: #ffffff;
    border: 1px solid #e2e2e2;
}
/*css for details image gallary*/
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
}

.gallery-img {
    transition: transform .4s ease, filter .3s ease;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(85%);
}

.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,.55);
    color: #fff;
    padding: 6px 9px;
    border-radius: 50%;
    font-size: 14px;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-item:hover .zoom-icon {
    opacity: 1;
}

/*End css for details image gallary*/