* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    background-color: #fcfcfc;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Hero Section */
.blog-hero {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1542332213-9b5a5a3fad35?w=1200') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: white;
    font-size: 3rem;
    letter-spacing: 2px;
}

/* Layout Split */
.blog-layout {
    display: flex;
    gap: 40px;
}

.posts-column {
    flex: 3;
}

.sidebar {
    flex: 1;
}

/* Post Cards */
.category-tag {
    background: #ff8c32; /* Orange from image */
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 20px;
}

.post-card {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    border-left: 0px solid #005a8d;
    transition: all 0.3s ease;
}

.post-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.post-title {
    color: #005a8d;
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.post-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}

.read-more:hover {
    border-bottom: 1px solid #005a8d;
    color: #005a8d;
}

/* Sidebar Styling */
.widget {
    margin-bottom: 40px;
}

.widget-title {
    color: #005a8d;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff8c32; /* Orange line */
}

.widget-text {
    font-size: 0.85rem;
    color: #777;
    text-align: justify;
}

.recent-list {
    list-style: none;
}

.recent-list li {
    margin-bottom: 15px;
}

.recent-list a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.recent-list a:hover { color: #005a8d; }

/* Sidebar Promo Box */
.promo-box {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./images/gallery10.jpeg');
    background-size: cover;
    height: 350px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.promo-content h4 {
    color: white;
    margin-bottom: 15px;
}

.promo-btn {
    background: #ff8c32;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-layout { flex-direction: column; }
    .hero-overlay h1 { font-size: 2rem; }
}
.gallery-hero {
    height: 350px;
    background: url('./images/contactus.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed; /* Parallax effect */
}

.gallery-hero .overlay {
    background: rgba(0, 30, 60, 0.6); /* Deep blue overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}