/* Eşit yükseklikte kartlar için stiller */
.equal-height-cards {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.equal-height-cards > [class*='col-'] {
    display: flex;
    padding: 15px;
}

.service-nine__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 40px 30px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-nine__item .item-head {
    margin-bottom: 25px;
}

.service-nine__item .title {
    margin-bottom: 15px;
}

.service-nine__item p {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .service-nine__item {
        padding: 30px 20px;
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .equal-height-cards > [class*='col-'] {
        padding: 10px;
    }
    
    .service-nine__item {
        padding: 25px 15px;
        min-height: 250px;
    }
}

/* Logo boyutlandırma */
.header__main .logo img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.header-area.sticky .logo img {
    max-height: 50px;
}

.sidebar-area .logo img {
    max-height: 60px;
    width: auto;
}

.footer-area .logo img {
    max-height: 60px;
    width: auto;
}

@media (max-width: 991px) {
    .header__main .logo img {
        max-height: 50px;
    }
    
    .sidebar-area .logo img {
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .header__main .logo img {
        max-height: 40px;
    }
    
    .sidebar-area .logo img {
        max-height: 40px;
    }
    
    .footer-area .logo img {
        max-height: 50px;
    }
} 

        /* Slider hover efektleri başlangıç */
        .banner-four__item .content .btn {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .banner-four__item:hover .content .btn {
            opacity: 1;
            transform: translateY(0);
        }

        .banner-four__item .content p {
            transform: translateY(0);
            transition: all 0.3s ease;
            margin-bottom: 0;
        }

        .banner-four__item:hover .content p {
            transform: translateY(-10px);
        }
        /* Slider hover efektleri bitiş */

        .service-nine__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26,26,26,0.03) 0%, rgba(26,26,26,0) 100%);
            z-index: 0;
        }
        .service-nine__item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .service-nine__item .item-head {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .service-nine__item .icon {
            width: 80px;
            height: 80px;
            background: rgba(26,26,26,0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            padding-top: 20px;
            margin: 0 auto;
        }
        .service-nine__item:hover .icon {
            background: #1a1a1a;
        }
        .service-nine__item .icon i {
            font-size: 32px;
            color: #1a1a1a;
            transition: all 0.3s ease;
        }
        .service-nine__item:hover .icon i {
            color: #fff;
        }
        .service-nine__item .arry-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid rgba(26,26,26,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: absolute;
            top: 0;
            right: 0;
        }
        .service-nine__item:hover .arry-btn {
            background: #1a1a1a;
            border-color: #1a1a1a;
        }
        .service-nine__item .arry-btn i {
            font-size: 14px;
            color: #1a1a1a;
            transition: all 0.3s ease;
        }
        .service-nine__item:hover .arry-btn i {
            color: #fff;
        }
        .service-nine__item .title {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: #1a1a1a;
            position: relative;
            z-index: 1;
        }
        .service-nine__item p {
            color: #666;
            margin-bottom: 0;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        @media (max-width: 991px) {
            .service-nine__item {
                padding: 35px 25px;
            }
            .service-nine__item .icon {
                width: 70px;
                height: 70px;
            }
            .service-nine__item .icon i {
                font-size: 28px;
            }
        }
        .equal-height-cards {
            display: flex;
            flex-wrap: wrap;
        }
        .equal-height-cards > [class*='col'] {
            display: flex;
            flex-direction: column;
        }
        .equal-height-cards .service-nine__item {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

/* Slider Mobil Görünüm Düzenlemeleri */
@media (max-width: 768px) {
    .project__item .content {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        background: rgba(0, 0, 0, 0.7);
        padding: 20px;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10;
    }

    .project__item .content h4,
    .project__item .content p,
    .project__item .content .btn,
    .project__item .content span {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        color: #fff;
    }

    .project__item .content .btn {
        display: inline-block;
        margin-top: 10px;
    }

    .project__wrp {
        position: relative;
    }

    .project__image {
        height: 300px;
    }

    .project__image img {
        height: 100%;
        object-fit: cover;
    }

    .banner-four-area {
        padding: 0;
    }

    .project__item .content h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .project__item .content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .project__item .content .btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    /* Hover efektlerini mobilde devre dışı bırak */
    .banner-four__item .content .btn,
    .banner-four__item:hover .content .btn,
    .banner-four__item .content p,
    .banner-four__item:hover .content p {
        transform: none !important;
        opacity: 1 !important;
    }
}