
/* Blog Slider Styles */
.blog-slider {
    position: relative;
    padding: 40px 0 !important;
    background-color: #2794bc3b;
}

.section-title {
    margin-bottom: 50px;
}

.section-title__title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-title__text {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-slider__wrapper {
    position: relative;
    margin-bottom: 40px;
}

.blog-slider__container {
    padding: 0 15px;
}

.blog-slider__item {
    padding: 0 15px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card__overlay {
    opacity: 1;
}

.blog-card__link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gotur-primary, #ff6b6b);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.blog-card__link-btn:hover {
    transform: scale(1.1);
    background: #1c89b1;
}

.blog-card__date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 5px;
    border-radius: 30px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    z-index: 1;
}
.blog-card__date {
    max-width: 135px !important;
    width: 100%;
    height: 35px !important;
    display: flex;
    align-items: center;
    flex-direction: initial !important;
    justify-content: center;
    background-color:white !important;
}

.blog-card__date i {
    margin-right: 5px;
    color: var(--gotur-primary, #ff6b6b);
}

.blog-card__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,107,107,0.1);
    color: var(--gotur-primary, #ff6b6b);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-card__title {
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card__title a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--gotur-primary, #ff6b6b);
}

.blog-card__excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-card__author {
    color: #666;
    font-size: 14px;
}

.blog-card__author i {
    margin-right: 5px;
    color: var(--gotur-primary, #ff6b6b);
}

.blog-card__read-more {
    color: var(--gotur-primary, #ff6b6b);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.blog-card__read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-card__read-more:hover {
    gap: 10px;
}

.blog-card__read-more:hover i {
    transform: translateX(3px);
}

.blog-slider__nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.blog-slider__prev,
.blog-slider__next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    color: #333;
    font-size: 16px;
}

.blog-slider__prev:hover,
.blog-slider__next:hover {
    background: var(--gotur-primary, #ff6b6b);
    color: #fff;
    transform: scale(1.1);
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav {
    display: none;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    background: var(--gotur-primary, #ff6b6b);
    width: 25px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-card__title a {
        font-size: 20px;
    }
    
    .blog-card__content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .section-title__title {
        font-size: 28px;
    }
    
    .blog-card__image {
        height: 200px;
    }
    
    .blog-card__title a {
        font-size: 18px;
    }
    
    .blog-slider__nav {
        display: none;
    }
}
