.sec-ourGallary .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

 
.sec-ourGallary .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec-ourGallary .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* تنسيق زر Show */
.sec-ourGallary .btn-show {
    background-color: #6f42c1;
    transition: all 0.3s ease;
}

.sec-ourGallary .btn-show:hover {
    background-color: #5a32a3;
    transform: scale(1.05);
}

/* تحسين شكل النافبار */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* جعل الكاروسيل متجاوب أكثر */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px !important;
    }

    .sec-ourGallary .card-img-top {
        height: 180px;
    }
}

a {
    transition: .4s;
}

a:hover {
    text-decoration: underline !important;
}

/* scroll */
.scroll{
    width: 50px;
    height: 50px;
    background-color: rgb(155, 162, 143);
    border: 1px solid #6f42c1;
    text-align: center;
    line-height: 50px;
    position: fixed;
    
    bottom: 5%;
    color: azure;
cursor: pointer;
border-radius: 50% ;
  right: -100%;
    bottom: 5%;
    z-index: 99;/

}
.scroll i{ 
    font-size: 22px;
    padding: 5px;
    /* text-align: center; */
}
.scroll.show{
    right: 3%;
}