/* ==================== WHAT-WE-DO.CSS ==================== */

.what-we-do {
    padding: 30px 0;
    background-color: white;
    position: relative;
    margin-top: 0;
    scroll-margin-top: 70px;
}

.what-we-do::before {
    content: 'WHAT WE DO';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    letter-spacing: 3px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.what-we-do .container {
    padding-top: 60px;
}

.what-we-do .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.what-we-do .section-subtitle {
    margin-bottom: 60px;
    color: #666;
    font-size: 1rem;
}

.what-we-do-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* Skill Section Cards */
.skill-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 45px 40px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(31, 182, 232, 0.1);
    border-left: 5px solid var(--primary-blue);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(31, 182, 232, 0.18);
}

.skill-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.skill-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 10px;
    width: 0;
    transition: none !important;
    animation: none !important;
    /* width is animated via JavaScript for perfect sync with counter */
    box-shadow: 0 0 10px rgba(31, 182, 232, 0.4);
}

.skill-percent {
    display: block;
    text-align: right;
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 1.6rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.percent-value {
    display: inline-block;
}

.skill-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .what-we-do-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 30px 0;
        margin-top: 0;
    }

    .what-we-do::before {
        font-size: 0.75rem;
        top: 25px;
    }

    .what-we-do .container {
        padding-top: 50px;
    }

    .what-we-do .section-title {
        font-size: 2rem;
    }

    .what-we-do .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .what-we-do-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }

    .skill-section {
        padding: 35px 25px;
    }

    .skill-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .skill-percent {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .skill-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .what-we-do {
        padding: 60px 0;
    }

    .what-we-do::before {
        top: 20px;
    }

    .what-we-do .container {
        padding-top: 40px;
    }

    .what-we-do .section-title {
        font-size: 1.6rem;
    }

    .what-we-do-content {
        gap: 25px;
        margin-top: 40px;
    }

    .skill-section {
        padding: 30px 20px;
    }

    .skill-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .skill-bar {
        margin-bottom: 12px;
    }

    .skill-percent {
        font-size: 1.3rem;
    }

    .skill-section p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}