/* Blog Page Styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.blog-header {
    background: linear-gradient(135deg, #1a1a1a, #343a40);
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: bold;
}

.blog-header p {
    font-size: 1.2rem;
}

/* Filter Buttons */
.filter-buttons .btn {
    transition: all 0.3s ease;
}

.filter-buttons .btn:hover,
.filter-buttons .btn.active {
    background-color: #007bff;
    color: #fff;
}

/* Blog Card Styling */
.blog-card {
    background: #fff;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.blog-card .card-text {
    color: #666;
}

.blog-card .btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.blog-card .btn-primary:hover {
    background-color: #0056b3;
}

/* Comments Section */
.comments-section {
    margin-top: 1rem;
    padding: 1rem;
    background: #f1f3f5;
    border-radius: 5px;
}

.comments-section textarea {
    width: 100%;
    border-radius: 5px;
    padding: 0.5rem;
}

/* Social Share Buttons */
.social-share a {
    margin: 0 0.5rem;
    font-size: 1.2rem;
    color: #007bff;
    transition: color 0.3s ease;
}

.social-share a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }
}

/* Footer Styling */
footer {
    background-color: #1a2526; /* Matches the dark background in the image */
}

footer h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer .footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-link:hover {
    color: #007bff;
}

footer .footer-link i {
    margin-right: 8px;
}

footer p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer .col-md-3 {
        margin-bottom: 2rem;
    }
}
/* Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    background: #1a2526;
    color: #ffd700; /* Yellow text on dark background */
    padding: 1.5rem 1;
    font-size: 4.5rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.footer-marquee .marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 13s linear infinite; /* Slower speed */
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}