body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
}
.blog_content h1, h2 {
  color: #0b8780;
}
h1{
  font-size: 2.2rem;
}
h2{
  font-size: 1.5rem;
}
h3{
  font-size: 1.17rem;
}

.blog-banner {
  display: flex;
  justify-content: center;   /* centers horizontally */
  align-items: center;       /* centers vertically */
  width: 100%;
  height: auto;             /* adjust banner height */
  
  background-size: cover;    /* makes the image cover the entire area */
  padding-right: 0px;
  padding-left: 0px;
}
.blog-banner img{
  width: 100%;
  height: 80vh;
}
.categories-box li{
  font-size: 14px;
}


.blog_content h3, h4, h5{
    color: #000;
}
.blog_content{
  /*padding: 5px 140px;*/
  padding-top: 5px;
}
.blog_content_main{
  padding: 0px 100px;
}

.blog_content p{
  text-align: justify;
}    



/* Sidebar Column */
/* Common Card Box */
.sidebar-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  /*box-shadow: 0 2px 6px rgba(0,0,0,0.08);*/
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
}

/* Section Headings */
.sidebar-box h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* Categories */
.categories-box .list-group-item {
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.categories-box .list-group-item:hover {
  background-color: #f8f9fa;
  color: #0d6efd;
  transform: translateX(4px);
}

.categories-box span {
  font-size: 13px;
  color: #6c757d;
}

/* Recent Vacancies */
.recent-vacancies li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
}
.sidebar-box ul{
  padding-left: 0px;
}

.recent-vacancies li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.recent-vacancies img {
  border-radius: 6px;
  object-fit: cover;
  margin-right: 12px;
}

.recent-vacancies a {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-vacancies a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

/* Recent Vacancies Heading */
.recent-heading {
  font-size: 16px;
  font-weight: 600;
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  color: #333;
}
#blogContent ul,
#blogContent ol{
  padding-left: 42px;
}

/*mobile view */

@media (max-width: 768px){
  .blog-banner img{
    height: auto;
  }
  .blog_content{
    padding: 5px 20px;
  }
  
  .blog_content_main{
    padding: 10px 20px;
  }
  .categories-box .list-group-item{
    font-size: 16px;
  }  
}

