.blog-card-new {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transition: 0.5s;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #bb873d;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.blog-body {
    padding: 20px;
}

.blog-body h5 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-link {
    font-size: 20px;
    color: #bb873d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-link{
    color: black;
}
.blog-link:hover{
    color: #bb873d;
}
.blog-link i {
    transition: 0.3s;
}
.read-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #bb873d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background: rgba(250, 170, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.arrow-circle i {
    font-size: 12px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.read-arrow:hover .arrow-circle {
    background: #bb873d;
}

.read-arrow:hover .arrow-circle i {
    color: #ffffff;
}
/* HOVER */
.blog-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-card-new:hover img {
    transform: scale(1.08);
}

.blog-detail-vision {
    background: #f9fafb;
}

.blog-title-main {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-meta-box {
    border-left: 4px solid #bb873d;
    padding-left: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.meta-item i {
    color: #bb873d;
    font-size: 16px;
}


.blog-content-vision p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.blog-content-vision h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
}

.blog-content-vision h2::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #bb873d;
    display: block;
    margin-top: 6px;
}

.vision-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.vision-list li {
    position: relative;
    padding-left: 25px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.vision-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #bb873d;
    font-weight: bold;
}

.blog-feature-img-vision {
    margin: 30px 0 40px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.blog-feature-img-vision img {
    width: 100%;
    border-radius: 18px;
    transition: transform 0.6s ease;
}

/* subtle zoom on hover */
.blog-feature-img-vision:hover img {
    transform: scale(1.03);
}

/* soft gradient overlay (premium feel) */
.blog-feature-img-vision::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    border-radius: 18px;
}

.blog-inline-link {
    color: #bb873d;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* underline animation */
.blog-inline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #bb873d;
    transition: 0.3s;
}

/* hover */
.blog-inline-link:hover::after {
    width: 100%;
}

.blog-inline-link:hover {
    color: #d98e00;
}

.vision-table {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.vision-table thead {
    background: #bb873d;
    color: #000;
}

.vision-table th {
    font-weight: 600;
    padding: 14px;
    font-size: 15px;
}

.vision-table td {
    padding: 14px;
    vertical-align: middle;
    font-size: 14px;
    color: #444;
}

.vision-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.vision-table tbody tr:hover {
    background: rgba(250,170,19,0.05);
}

/* first column highlight */
.vision-table td:first-child {
    font-weight: 600;
    color: #000;
}
.vision-table td {
    word-wrap: break-word;
}
/* .blog-content-vision {
    max-width: 900px;
    margin: auto;
} */
.vision-table {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* header */
.vision-table thead {
    background: #bb873d;
}

/* vertical divider */
.vision-table th,
.vision-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

/* 👇 THIS IS THE IMPORTANT PART */
.vision-table th:not(:last-child),
.vision-table td:not(:last-child) {
    border-right: 1px solid #ddd;
}

/* optional clean look */
.vision-table tbody tr:last-child td {
    border-bottom: none;
}