/* General */
/* body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
} */

/* Hero Section with Parallax */
.hero {
    background: url("/assests/image/Contact_us.jpg") no-repeat center center/cover;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
    /* Parallax Effect */
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-text p {
    margin-top: 30px;
    font-size: 1.2rem;
}

/* Blog Layout */
.blog-container {
    display: flex;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.blog-posts {
    flex: 3;
}

.sidebar {
    flex: 1;
}

/* Blog Card */
.blog-card {
    background: white;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    border-radius: 6px;
}

.blog-meta {
    font-size: 0.9rem;
    color: gray;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-card h2 {
    margin: 10px 0;
}

.blog-card p {
    font-size: 1rem;
    color: #555;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #eb5e28;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Sidebar */
.widget {
    background: white;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.widget h4 {
    margin-bottom: 15px;
    text-align: center;
}

.widget p {
    font-size: 12px;
    margin-bottom: 15px;
}

.widget ul li {
    font-size: 12px;
    margin-bottom: 10px;
    margin-left: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery img {
    width: 100%;
    /* height: 50px; */
    border-radius: 4px;
}

.tags a {
    display: inline-block;
    background: #eee;
    margin: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.pagination a {
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
}

.pagination a.active {
    background: #eb5e28;
    color: white;
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-container {
        flex-direction: column;
    }

    .sidebar {
        order: -1;
    }
}