.highlight-cards-section {
    padding: 4rem 0;
}

/* Ortak Kart Stilleri */
.highlight-card {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.highlight-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 2;
}

.highlight-card-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
}

.highlight-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.highlight-card-description {
    font-size: 1rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-card-1 .highlight-card-main-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    z-index: 3;
    line-height: 1;
}
        
.highlight-card-1 .highlight-card-main-number::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-image: url('assets/img/wheel-icon.png'); /* İkonunuzun yolu */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
}
        

/* Responsive Ayarlar */
@media (max-width: 991.98px) {
    .highlight-card {
        height: 380px;
    }
    .highlight-card-title {
        font-size: 1.3rem;
    }
    .highlight-card-description {
        font-size: 0.85rem;
    }
    .highlight-card-1 .highlight-card-main-number {
        font-size: 4.5rem;
    }
    .highlight-card-1 .highlight-card-main-number::after {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 767.98px) {
    .highlight-card {
        margin-bottom: 1.5rem;
        height: 350px;
    }
    .highlight-card-title {
        font-size: 1.2rem;
    }
    .highlight-card-description {
        font-size: 0.8rem;
    }
    .highlight-cards-section .col-md-4:last-child .highlight-card {
            margin-bottom: 0;
    }
    .highlight-card-1 .highlight-card-main-number {
        font-size: 4rem;
    }
    .highlight-card-1 .highlight-card-main-number::after {
        width: 80px;
        height: 80px;
    }
}