/* Ürünlerimiz Sayfası Özel Stilleri */

/* Ana Container - section-full.content-inner-2 wrapper'ı için */
.content-inner-2 {
    padding: 80px 0;
    background: #fff;
}

/* Ürün Kartları */
.content-inner-2 .dlab-box.project-bx {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.content-inner-2 .dlab-box.project-bx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.content-inner-2 .dlab-box.project-bx:hover::before {
    transform: scaleX(1);
}

.content-inner-2 .dlab-box.project-bx:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(240, 87, 26, 0.15);
    border-color: rgba(240, 87, 26, 0.2);
}

/* Resim Container */
.content-inner-2 .dlab-media {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    /* aspect-ratio: 4/3; */
    display: block;
}

.content-inner-2 .dlab-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1);
}

.content-inner-2 .dlab-box.project-bx:hover .dlab-media img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* Overlay Efekti */
.content-inner-2 .dlab-img-overlay1 {
    position: relative;
}

.content-inner-2 .dlab-img-overlay1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(240, 87, 26, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.content-inner-2 .dlab-box.project-bx:hover .dlab-img-overlay1::after {
    opacity: 1;
}

/* Zoom Efekti */
.content-inner-2 .dlab-img-effect.zoom {
    overflow: hidden;
}

/* İçerik Bölümü */
.content-inner-2 .dlab-info {
    padding: 25px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    position: relative;
    z-index: 1;
}

/* Başlık */
.content-inner-2 .dlab-title {
    margin: 0;
    padding: 0;
}

.content-inner-2 .dlab-title a {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-color);
    text-decoration: none;
    line-height: 1.4;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 15px;
}

.content-inner-2 .dlab-title a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--theme-color);
    transition: width 0.3s ease;
}

.content-inner-2 .dlab-box.project-bx:hover .dlab-title a {
    color: var(--theme-color);
}

.content-inner-2 .dlab-box.project-bx:hover .dlab-title a::after {
    width: 100%;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .content-inner-2 {
        padding: 60px 0;
    }
    
    .content-inner-2 .dlab-info {
        padding: 20px 25px 25px;
    }
    
    .content-inner-2 .dlab-title a {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .content-inner-2 {
        padding: 50px 0;
    }
    
    .content-inner-2 .dlab-box.project-bx {
        margin-bottom: 25px;
    }
    
    .content-inner-2 .dlab-info {
        padding: 18px 20px 22px;
    }
    
    .content-inner-2 .dlab-title a {
        font-size: 16px;
        padding-bottom: 12px;
    }
}

/* Grid Düzeni İyileştirmeleri */
.content-inner-2 .row {
    margin: 0 -15px;
}

.content-inner-2 .col-md-4,
.content-inner-2 .col-lg-4 {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Hover Animasyonu İyileştirmesi */
.content-inner-2 .dlab-box.project-bx {
    cursor: pointer;
}

.content-inner-2 .dlab-box.project-bx:active {
    transform: translateY(-5px);
}

/* Erişilebilirlik İyileştirmeleri */
.content-inner-2 .dlab-title a:focus {
    outline: 2px solid var(--theme-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Yüklenme Animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-inner-2 .dlab-box.project-bx {
    animation: fadeInUp 0.6s ease-out;
}

.content-inner-2 .dlab-box.project-bx:nth-child(1) {
    animation-delay: 0.1s;
}

.content-inner-2 .dlab-box.project-bx:nth-child(2) {
    animation-delay: 0.2s;
}

.content-inner-2 .dlab-box.project-bx:nth-child(3) {
    animation-delay: 0.3s;
}

.content-inner-2 .dlab-box.project-bx:nth-child(4) {
    animation-delay: 0.4s;
}

.content-inner-2 .dlab-box.project-bx:nth-child(5) {
    animation-delay: 0.5s;
}

.content-inner-2 .dlab-box.project-bx:nth-child(6) {
    animation-delay: 0.6s;
}

