section.architectBanner .bannerTop .middle .imgArea img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
    display: block;
}


.mt-5{
    margin-top: 50px;
}

.mb-5{
    margin-bottom: 50px;
}

.mr-5{
    margin-right: 50px;
}

.ml-5{
    margin-left: 50px;
}

.gallery-img {
    aspect-ratio: 348 / 341;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out; /* Geçiş süresi ayarlandı */
}
.gallery-img:hover {
    transform: scale(1.05) rotate(1deg);
    
    
    transition: all 0.3s ease-in-out; /* Geçişin pürüzsüz olması için */
}

/* Ana nav yapısı */
.navs {
    display: flex;
    justify-content: center;
}

/* Sayfalama listesi */
.pagination {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
}

/* Sayfa elemanları */
.page-item {
    border: 1px solid #ddd;
    border-radius: 0px;
}

.page-link {
    display: inline-block;
    padding: 12px 16px;
    text-decoration: none;
    color: #716050;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

/* Aktif ve devre dışı elemanlar */
.page-item.active .page-link {
    background-color: #716050;
    color: white;
}

/* Devre dışı olan elemanlarda sınırı kaldır */
.page-item.disabled {
    border: none;
}

.page-item.disabled .page-link {
    color: #aaa;
    pointer-events: none;
}

/* Hover ve odak efekti */
.page-link:hover,
.page-link:focus {
    background-color: #f0f0f0;
    color: #716050;
}

