/* Skill Development Page Styles */

.skill-development-main {
    padding: 40px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-hero {
    background: linear-gradient(135deg, #0d3b66, #0B3954);
    color: white;
    padding: 60px 0;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.skill-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.3;
}

.skill-hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    text-align: center;
}

.skill-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.skill-icon {
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.skill-icon:hover {
    transform: scale(1.1);
}

.skill-categories-nav {
    margin-bottom: 50px;
}

.skill-categories-nav h2 {
    text-align: center;
    color: #06283D;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.categories-grid > * {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.categories-grid > *:nth-child(1) { animation-delay: 0.1s; }
.categories-grid > *:nth-child(2) { animation-delay: 0.2s; }
.categories-grid > *:nth-child(3) { animation-delay: 0.3s; }
.categories-grid > *:nth-child(4) { animation-delay: 0.4s; }
.categories-grid > *:nth-child(5) { animation-delay: 0.5s; }

.category-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    display: block;
    transform: translateY(0);
}

.category-btn:hover,
.category-btn.active {
    border-color: #0d3b66;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 59, 102, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-btn h3 {
    color: #06283D;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.category-btn p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.back-link {
    display: inline-block;
    color: #0d3b66;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #06283D;
    text-decoration: underline;
}

.skill-programs {
    margin-bottom: 60px;
}

.skill-category {
    display: none;
}

.skill-category.active {
    display: block;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h2 {
    color: #06283D;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.category-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.programs-grid > * {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.programs-grid > *:nth-child(1) { animation-delay: 0.1s; }
.programs-grid > *:nth-child(2) { animation-delay: 0.2s; }
.programs-grid > *:nth-child(3) { animation-delay: 0.3s; }
.programs-grid > *:nth-child(4) { animation-delay: 0.4s; }
.programs-grid > *:nth-child(5) { animation-delay: 0.5s; }
.programs-grid > *:nth-child(6) { animation-delay: 0.6s; }

.program-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.program-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #0d3b66, #0B3954);
    color: white;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-header h3 {
    color: #06283D;
    font-size: 1.4rem;
    margin: 0;
    flex: 1;
}

.program-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.duration,
.level {
    background: #f3f4f6;
    color: #0B3954;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    background: #dbeafe;
    color: #0B3954;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.enroll-btn,
.learn-more-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.enroll-btn::before,
.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.enroll-btn:hover::before,
.learn-more-btn:hover::before {
    left: 100%;
}

.enroll-btn {
    background: linear-gradient(135deg, #0d3b66, #0B3954);
    color: white;
}

.enroll-btn:hover {
    background: linear-gradient(135deg, #0B3954, #06283D);
    transform: translateY(-2px);
}

.learn-more-btn {
    background: #f3f4f6;
    color: #0B3954;
    border: 2px solid #d1d5db;
}

.learn-more-btn:hover {
    background: #e5e7eb;
    border-color: #0d3b66;
}

.success-stories {
    margin-bottom: 60px;
}

.success-stories h2 {
    text-align: center;
    color: #06283D;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-image {
    flex-shrink: 0;
}

.story-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #0d3b66, #0B3954);
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    color: #06283D;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.story-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.story-author strong {
    color: #06283D;
    display: block;
    font-size: 1rem;
}

.story-author span {
    color: #64748b;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #0d3b66, #0B3954);
    color: white;
    padding: 60px 0;
    border-radius: 16px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: white;
    color: #0B3954;
    border: 2px solid white;
}

.cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .skill-hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .program-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .skill-hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .skill-categories-nav h2 {
        font-size: 2rem;
    }

    .category-btn {
        padding: 20px 15px;
    }

    .program-card {
        padding: 20px;
    }

    .story-card {
        padding: 20px;
    }
}
