/* Haberler Bölümü Düzeltmesi */
.home-blog {
    display: block !important;
    visibility: visible !important;
    margin: 40px 0;
}

.home-blog .news {
    margin-bottom: 20px;
}

.home-blog .news .title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.home-blog .news .title i {
    margin-right: 10px;
    color: #007bff;
}

.home-blog .content {
    position: relative;
}

.home-blog .owl-carousel {
    display: block !important;
}

.home-blog .item {
    padding: 10px;
    transition: all 0.3s ease;
}

.home-blog .item:hover {
    transform: translateY(-5px);
}

.home-blog .item .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.home-blog .item .image .img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.home-blog .item:hover .image .img {
    transform: scale(1.05);
}

.home-blog .item .image .date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.home-blog .item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
}

.home-blog .item:hover h4 {
    color: #007bff;
}

.home-blog .item .news-button {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-blog .item .news-button i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.home-blog .item:hover .news-button i {
    transform: translateX(5px);
}

/* Owl Carousel Navigasyon Düzeltmesi */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px !important;
    pointer-events: auto;
}

.owl-nav button:hover {
    background-color: #007bff !important;
}

.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc !important;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-dots .owl-dot.active {
    background-color: #007bff !important;
} 