/* News and Events Section Custom Styles */
.service-style4 .single-service-style4 {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 30px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-style4 .single-service-style4:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-style4 .single-service-style4 .title-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.service-style4 .single-service-style4 .title-box h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-style4 .single-service-style4 .title-box h3 a {
    color: #1a2b5e;
    transition: color 0.3s ease;
}

.service-style4 .single-service-style4 .title-box h3 a:hover {
    color: var(--thm-base);
}

.service-style4 .single-service-style4 .meta-info {
    font-size: 14px;
    color: #666;
    line-height: 22px;
}

.service-style4 .single-service-style4 .meta-info span {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.service-style4 .single-service-style4 .meta-info span:last-child {
    margin-bottom: 0;
}

.service-style4 .single-service-style4 .meta-info span [class^="icon-"] {
    margin-right: 12px;
    font-size: 16px;
    color: var(--thm-base);
    width: 20px;
    text-align: center;
}

.service-style4 .single-service-style4 .img-box {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-style4 .single-service-style4 .img-box img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-style4 .single-service-style4:hover .img-box img {
    transform: scale(1.1);
}