.neu-card {
    background: #f0f2f5;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 8px 8px 15px #d1d9e6, -8px -8px 15px #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e0e5ec;
    height: 100%;
}

.neu-card:hover {
    transform: translateY(-8px);
    box-shadow: 4px 4px 10px #d1d9e6, -4px -4px 10px #ffffff;
}

.neu-icon {
    width: 65px;
    height: 65px;
    background: #f0f2f5;
    box-shadow: inset 6px 6px 10px #d1d9e6, inset -6px -6px 10px #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fa923d;
    font-size: 26px;
    margin: 0 auto 20px;
}

.neu-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.neu-description {
    color: var(--gray);
    line-height: 1.6;
}

.equal-height-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.equal-height-row > div {
    display: flex;
    flex-direction: column;
}

.travel-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(15, 35, 66, 0.1),
        0 2px 8px rgba(15, 35, 66, 0.06);
    padding: 26px 26px 84px;
    isolation: isolate;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: default;
}

.travel-card::after {
    content: "";
    position: absolute;
    inset: -40px auto auto -40px;
    width: 160px;
    height: 160px;
    background: conic-gradient(
        from 220deg,
        rgba(15, 179, 154, 0.15),
        rgba(15, 179, 154, 0)
    );
    border-radius: 28px;
    transform: rotate(45deg);
    z-index: -1;
    filter: blur(0.2px);
    opacity: 0.6;
}

.travel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(15, 35, 66, 0.14),
        0 2px 10px rgba(15, 35, 66, 0.08);
}

.travel-card h5 {
    /* font-size: clamp(18px, 3vw, 24px); */
    font-weight: 600;
    margin-bottom: 14px;
}

.travel-card p {
    color: var(--gray);
    line-height: 1.5;
    margin: 0 0 8px;
}

.col-lg-4:nth-child(2) .ring {
    box-shadow: 0 12px 30px rgba(15, 35, 66, 0.1),
        0 2px 8px rgba(15, 35, 66, 0.06), 0 0 0 4px rgba(25, 135, 84, 0.12);
    color: #198754;
}

.col-lg-4:nth-child(3) .ring {
    box-shadow: 0 12px 30px rgba(15, 35, 66, 0.1),
        0 2px 8px rgba(15, 35, 66, 0.06), 0 0 0 4px rgba(111, 66, 193, 0.12);
    color: #6f42c1;
}

.equal-height-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 30px 25px;
    transition: 0.3s ease;
}

.equal-height-card .card-body {
    flex-grow: 1;
}

.equal-height-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.equal-height-card .card-title {
    /* font-size: 18px; */
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.equal-height-card .card-text {
    /* font-size: 15px; */
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .equal-height-card {
        padding: 20px;
    }
}
