.Blog-title{
    color: var(--subheading-color);
   font-family: var(--font-family-primary);


}
.blog-count{
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    color: var(--primary-color1);
}
.blog-inner-heading{
    color: var(--primary-color1);

    font-family: var(--font-family-primary);
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;


}
.blog-desc{
    color: var(--tertiary-color1);
    font-size: 16px;
    line-height: 29px;
    font-family: var(--font-family-primary);
    font-weight: 300;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* Blog Cards Container - Equal Height */
.blog-cards-container {
    display: flex;
    flex-wrap: wrap;
}

.blog-cards-container > div {
    display: flex;
}

.blog-card-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-wrapper .border-start {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-cards-container > div {
        margin-bottom: 30px;
    }
    
    .blog-desc {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 767px) {
    .blog-cards-container > div {
        margin-bottom: 25px;
    }
    
    .blog-desc {
        font-size: 14px;
        line-height: 24px;
        -webkit-line-clamp: 3;
    }
    
    .blog-inner-heading {
        font-size: 16px;
        line-height: 24px;
    }
}
.blog-readmore{
    text-decoration: none;
    cursor: pointer;
    color: var(--secondary-color1);
    fill: var(--secondary-color1);
    font-size: 14px;
}
.blog-readmore:hover {
    color: var(--primary-color1); /* Darker shade on hover */
 fill: var(--primary-color1);
  }

  .carousel-container-home{
    height: 100vh;
  }

  .bannerhometext{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }


  @media(max-width:554px)

  {
    .bannerhometext {
        position: absolute;
        top: 60%;
        left: 20%;
        transform: translate(-14%, -50%);
    }
  }
