.blog-card {
    border: none !important;
    background: linear-gradient(145deg, #0d0d0d, #111);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
    padding-bottom: 10px;
}

/* subtle glow border */
.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    opacity: 0;
    transition: 0.4s;
}


.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* zoom effect */
.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* hover highlight */
.blog-card:hover h3 {
    color: #33e014;
}

.blog-content p {
    color: #9a9a9a;
    font-size: 0.92rem;
    line-height: 1.6;
}

.read-more {
    position: absolute !important;
    bottom: 10px !important;
    gap: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(6px);
}

.blog-content {
    padding: 20px;
}

.blog-grid {
    gap: 28px;
}

.blog-card:hover{
    box-shadow: 0 3px 1px rgb(31, 107, 12) !important;
}

/* .blog-badge{
    display: inline-block;
    border: 1px solid #33e014;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 13px !important;
} */
 @media (max-width:390px) {
    .container{
        padding: 0 7px;
    }
 }

 @media (max-width:768px) {
    .section-header h1{
        margin-top: 23px;
    }
 }

 @media (max-width: 441px) {
  .blog-grid{
    padding: 0 5px !important;
  }
}