/* --- Skills Section Container --- */
.skills-container {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.skills-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px 0; /* Pushes content below your fixed navbar */
    z-index: 3;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* --- Left Side: Bars --- */
.skills-bars-card {
    background: rgba(10, 12, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.skills-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.skill-name {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-name i {
    font-size: 1.1rem;
}

.skill-percentage {
    color: #a855f7;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ec4899 0%, #a855f7 50%, #00A8FB 100%);
    border-radius: 10px;
}

/* --- Right Side: Services Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    background: rgba(10, 12, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.08);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-card p {
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsiveness --- */
@media screen and (max-width: 992px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .skills-bars-card {
        padding: 30px 20px;
    }
}
/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Updated to Light Blue Gradient */
.text-gradient {
    background: linear-gradient(135deg, #00A8FB 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #a1a1aa;
    font-size: 1.05rem;
}