.why-us-card {
    padding: 30px;
    background: rgba(12, 11, 9, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-us-card:hover {
    transform: translateY(-10px);
    background: #c71212;
    border-color: #c71212;
}

.why-us-card:hover .why-us-number {
    color: rgba(255, 255, 255, 0.3);
}

.why-us-card:hover h4 {
    color: #fff;
}

.why-us-card:hover p {
    color: #fff;
}

.why-us-number {
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 100px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    z-index: 1;
    transition: color 0.3s;
}

.why-us-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: #c71212;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}
