/* Stats Item Hover Effects */
.stats-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
    background-color: #f7f7f7;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stats-item i {
    font-size: 40px;
    margin-right: 15px;
    transition: transform 0.4s ease;
}

.stats-item:hover i {
    transform: scale(1.2);
}

.stats-item span {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.stats-item p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

/*  */


/* HVD Green */
:root {
    --hvd-green: #ff4a17;
}

/* Main Service Card */
.hvd-service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease-in-out;
}

.hvd-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image wrapper with icon overlaid */
.hvd-service-img-wrapper {
    position: relative;
}

.hvd-service-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--hvd-green);
    color: #fff;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hvd-service-card:hover .hvd-service-icon {
    transform: translateX(-50%) scale(1.2) rotate(5deg);
    background: #ff4a17;
}

/* HVD Button style */
.btn-outline-hvd {
    border: 2px solid var(--hvd-green);
    color: var(--hvd-green);
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline-hvd:hover {
    background: var(--hvd-green);
    color: #fff;
}

/*  */
.hvd-tab-pane h3 {
    font-size: 1.5rem;
    color: #333;
}

.hvd-tab-pane p {
    font-size: 0.95rem;
}

.hvd-tab-pane ul li {
    font-size: 0.9rem;
    color: #555;
}

.hvd-tab-btn {
    border: none;
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    transition: 0.3s ease;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hvd-tab-btn.active,
.hvd-tab-btn:hover {
    background-color: #ff4a17;
    color: #fff;
}

.hvd-tab-btn span {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0.2rem;
}

.hvd-tab-content .hvd-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.hvd-tab-content .hvd-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*  */
#hvd-services .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#hvd-services .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Contact */
.info-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.info-item i {
    font-size: 2rem;
    color: #dc3545;
    /* Bootstrap danger color */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.info-item:hover i {
    color: #b02a37;
    /* Slightly darker red */
}