/* ===================================================
   HIRE DEVELOPERS SECTION — tvi-hire-*
   =================================================== */

.tvi-hire-section {
    padding: 80px 0 70px;
    background: #0a0f1e;
    position: relative;
    overflow: hidden;
}

/* Grid pattern */
.tvi-hire-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,100,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,100,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
/* Glow orb bottom-left */
.tvi-hire-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0,120,255,0.10) 0%, transparent 65%);
    pointer-events: none;
}

/* ---- 2-col layout ---- */
.tvi-hire-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---- Left block ---- */
.tvi-hire-left {
    display: flex;
    flex-direction: column;
}

.tvi-hire-label {
    display: inline-block;
    background: rgba(0,100,255,0.15);
    border: 1px solid rgba(0,120,255,0.3);
    color: #5baaff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
}

.tvi-hire-heading {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.tvi-hire-heading span {
    background: linear-gradient(90deg, #4d9fff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tvi-hire-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Stats row */
.tvi-hire-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.tvi-hire-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.tvi-hire-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    background: linear-gradient(90deg, #4d9fff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tvi-hire-stat-lbl {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA button */
.tvi-hire-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #005ce6, #0099ff);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(0,100,255,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
    width: fit-content;
}
.tvi-hire-cta i { font-size: 13px; transition: transform 0.2s; }
.tvi-hire-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,100,255,0.45);
}
.tvi-hire-cta:hover i { transform: translateX(4px); }

/* ---- Right: tech cards grid ---- */
.tvi-hire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* Single tech card */
.tvi-hire-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-decoration: none !important;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.tvi-hire-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,100,255,0.12), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}
.tvi-hire-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(77,159,255,0.35);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,80,220,0.25);
}
.tvi-hire-card:hover::before { opacity: 1; }

/* Icon box */
.tvi-hire-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.tvi-hire-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: invert(1) brightness(1.5);
}
.tvi-hire-card:hover .tvi-hire-icon { transform: scale(1.1) rotate(-4deg); }

/* Text */
.tvi-hire-card-body { flex: 1; min-width: 0; }
.tvi-hire-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #f0f4ff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tvi-hire-card-tag {
    font-size: 11px;
    color: rgba(255,255,255,0.40);
    font-weight: 500;
    margin-top: 2px;
}

/* Arrow */
.tvi-hire-arrow {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}
.tvi-hire-card:hover .tvi-hire-arrow {
    color: #5baaff;
    transform: translateX(3px);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .tvi-hire-layout { gap: 40px; }
    .tvi-hire-heading { font-size: 36px; }
}
@media (max-width: 991px) {
    .tvi-hire-layout { grid-template-columns: 1fr; gap: 40px; }
    .tvi-hire-heading { font-size: 32px; }
    .tvi-hire-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .tvi-hire-section { padding: 50px 0; }
    .tvi-hire-heading { font-size: 28px; }
    .tvi-hire-grid { grid-template-columns: repeat(2, 1fr); }
    .tvi-hire-stats { gap: 20px; }
    .tvi-hire-stat-num { font-size: 26px; }
}
