 /* Custom styles for the scrolling container */
 .blog-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
}

.blog-card {
  width:100%;
    padding: 10px;
}
.blog-card .card-title {
  color: #e87a06;
font-size: 1.2rem;
font-family: 'opensans-semibold';
}
.blog-card .card-text {
  font-size: 0.87rem;
color: #8a8a8a;
line-height: 1.5;
}
/* Style for the navigation dots */
.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #007bff;
}

/* Style for the prev and next buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    transform: translateY(-50%);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
