/* Global dark theme */
body {
    background-color: #121212; /* Dark background */
    color: white;
    font-family: Arial, sans-serif;
}

/* Green border utility */
.border-green {
    border: 7px solid #4CAF50;
    padding: 10px;
}

/* Section backgrounds */
header,
.services,
.blog-header,
.sidebar {
    background-color: #1e1e1e; /* Darker section */
    padding: 20px;
    border-radius: 10px;
}

/* Blog header specifics */
.blog-header {
    padding: 60px 0;
    text-align: center;
    border-bottom: 5px solid #4CAF50;
}
.blog-header h1 {
    color: #ffffff;
    font-weight: bold;
}

/* Cards (services + blog posts) */
.service-item,
.post-card {
    background: #222; /* Dark card background */
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
    transition: 0.3s;
}
.post-card:hover {
    background: #333;
    transform: scale(1.02);
}

/* FontAwesome icons */
.fa-stack-2x {
    color: #4CAF50; /* Green icons */
}

/* Blog post links */
.post-card a,
.post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    font-weight: bold;
}

/* Sidebar links */
.sidebar a {
    color: #4CAF50;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}
