/* About HSE Cards */
.hse-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
}
.hse-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.hse-card .hse-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
}
.hse-icon-health  { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.hse-icon-safety  { background: linear-gradient(135deg, #f39c12, #e67e22); }
.hse-icon-env     { background: linear-gradient(135deg, #27ae60, #1e8449); }
.hse-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #170006;
    margin-bottom: 12px;
}
.hse-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}


.why-choose {
    background: #fff;
    padding: 100px 0;
}

/* Left Side */
.why-left-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.why-left-label span.slash {
    color: #170006;
    font-size: 18px;
    font-weight: 700;
}
.why-left-label span.text {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}
.why-big-title {
    font-size: 58px;
    font-weight: 800;
    color: #781921;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}
.why-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 35px;
}
.why-cta-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.why-cta-links a {
    font-size: 15px;
    font-weight: 700;
    color: #170006;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.why-cta-links a:hover {
    gap: 10px;
    color: #781921;

}
.why-cta-links a svg {
    transition: transform 0.2s;
}
.why-cta-links a:hover svg {
    transform: translateX(3px);
}

/* Divider Line */
.why-divider {
    width: 1px;
    background: #e0e0e0;
    align-self: stretch;
    margin: 0 20px;
}

/* Right Side Grid */
.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.why-feature-item {
    padding: 28px 24px;
    border-bottom: 1px solid #efefef;
    transition: background 0.2s;
}
.why-feature-item:hover {
    background: #fdf8f8;
}
/* Remove bottom border from last row */
.why-feature-item:nth-last-child(-n+2) {
    border-bottom: none;
}
/* Right column items get left border */
.why-feature-item:nth-child(even) {
    border-left: 1px solid #efefef;
}

.why-feature-icon {
    width: 52px;
    height: 52px;
    /* background: #F1F1E9; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background 0.3s;
}
/* .why-feature-item:hover .why-feature-icon {
    background: #fdb714;
} */
.why-feature-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #170006;
    margin-bottom: 8px;
}
.why-feature-item p {
    font-size: 13.5px;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .why-big-title { font-size: 40px; }
    .why-divider { display: none; }
    .why-left-side { margin-bottom: 50px; }
}
@media (max-width: 575px) {
    .why-features-grid { grid-template-columns: 1fr; }
    .why-feature-item:nth-child(even) { border-left: none; }
    .why-feature-item:nth-last-child(-n+2) { border-bottom: 1px solid #efefef; }
    .why-feature-item:last-child { border-bottom: none; }
    .why-big-title { font-size: 34px; }
}

/* FOOTER */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 0;
}
.xb-footer-wrap {
    padding-top: 0;
}
.footer-cta {
    padding: 40px 0 35px;
}
section.why-choose {
    position: relative;
    z-index: 1;
}