* {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden !important;
}

body {
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}


/* Navbar */
.navbar {
    padding: 0.5rem 1rem;
    background: #dc3545;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.navbar-brand {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
}

.navbar-brand img {
    height: 40px !important;
    width: auto !important;
    object-fit: contain;
    margin-right: 10px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-collapse {
    text-align: center;
}

.nav-link {
    font-weight: 500;
    color: #ffffff !important;
}

.nav-link:hover {
    color: #000 !important;
    transition: 0.3s;
}

/* Blog Cards */
.blog-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Image zoom on hover */
.blog-card:hover .blog-img {
    transform: scale(1.05);
}


/* footer style */
footer {
    background: #212529;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}