/* ==========================================================================
   WHY HIRE ME SECTION
   ========================================================================== */
.why-hire-section {
    padding: 100px 0;
    position: relative;
    background: #09090b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-hire-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-hire-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-hire-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.why-hire-title span {
    color: #3b82f6;
}

.why-hire-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.why-hire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Value Cards */
.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #3b82f6;
    font-size: 24px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-box {
    background: #3b82f6;
    color: #fff;
    transform: scale(1.1) rotate(3deg);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .why-hire-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .why-hire-section {
        padding: 60px 0;
    }

    .why-hire-title {
        font-size: 32px;
    }

    .why-hire-subtitle {
        font-size: 16px;
    }

    .why-hire-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .why-hire-section {
        padding: 40px 0;
    }

    .why-hire-header {
        margin-bottom: 40px;
    }

    .why-hire-title {
        font-size: 28px;
    }

    .why-hire-subtitle {
        font-size: 14px;
    }

    .value-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .value-icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .value-card p {
        font-size: 14px;
    }
}