/* Teknolojiler Sayfası Stilleri */

.tech-item-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tech-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tech-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-item-card:hover .tech-img-box img {
    transform: scale(1.1);
}

.tech-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: var(--doruk-accent) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tech-title {
    color: var(--doruk-primary);
    font-weight: 700;
}

.tech-desc {
    font-size: 14px;
    line-height: 1.6;
}

.btn-tech-detail {
    text-decoration: none;
    color: var(--doruk-accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-tech-detail:hover {
    gap: 12px;
    color: var(--doruk-primary);
}

/* Stats Section */
.tech-stats {
    background: #081D39 !important; /* Bir tık daha koyu lacivert */
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--doruk-accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .stat-number {
        font-size: 2.2rem;
    }
}
