/* Skills Page Styles */
.skill-page {
    background-color: #f8f9fa;
}

/* Hero Section */
.skill-hero {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.skill-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.skill-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Skills Grid */
.skills-grid {
    padding: 3rem 0;
}

.skills-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

/* Skill Cards */
.skill-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #6366f1;
    transition: color 0.3s ease;
}

.skill-card:hover .skill-icon {
    color: white;
}

.skill-card h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.skill-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.skill-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-content ul li {
    color: #6b7280;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

/* Hover states for text elements */
.skill-card:hover h2,
.skill-card:hover .skill-content p,
.skill-card:hover .skill-content ul li {
    color: white;
}

.skill-content ul li:before {
    content: "•";
    color: #6366f1;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Call to Action Section */
.skill-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 3rem;
}

.skill-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.skill-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
}

.btn-outline-primary {
    color: white;
    border-color: white;
}

.btn-outline-primary:hover {
    background-color: white;
    color: #3b82f6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .skill-hero h1 {
        font-size: 2.5rem;
    }
    
    .skills-grid .container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .skill-cta h2 {
        font-size: 2rem;
    }
}