.blog-card {
    transition: all 0.3s ease;
}

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

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

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

@media (max-width: 768px) {
    .carousel-content {
        text-align: center;
    }
    
    .carousel-item img {
        height: 250px !important;
        margin-top: 20px;
    }
}

/* Blog Details Styling */
.blog-description {
    text-align: justify;
}

.blog-description h1,
.blog-description h2,
.blog-description h3,
.blog-description h4,
.blog-description h5,
.blog-description h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-description p {
    margin-bottom: 1.5rem;
}

.blog-description img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-description ul,
.blog-description ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-description blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

/* Sidebar Widgets */
.sidebar-widget .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-widget .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.category-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    background-color: #f8f9fa;
    padding-left: 1.5rem !important;
}

.category-item a {
    transition: color 0.3s ease;
}

.category-item:hover a {
    color: #667eea !important;
}

.latest-blog-item {
    transition: all 0.3s ease;
}

.latest-blog-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.latest-blog-item img {
    transition: transform 0.3s ease;
}

.latest-blog-item:hover img {
    transform: scale(1.1);
}

.tag-badge {
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-badge:hover {
    background-color: #667eea !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Share Buttons */
.blog-share .btn {
    transition: all 0.3s ease;
}

.blog-share .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 1.8rem !important;
    }
    
    .blog-featured-image img {
        height: 300px !important;
    }
    
    .blog-meta {
        justify-content: center;
    }
}
