/* Vertical skills layout and bar fixes */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.skill-category {
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.skill-category h3 {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
}

.skill-item {
    margin-bottom: 1rem;
}

.skill-item span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #e0e0e0;
}

.skill-bar {
    height: 8px;
    background-color: rgba(30, 30, 50, 0.5);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
    border-radius: 4px;
    width: 0; /* Initial width */
    transition: width 1s ease-in-out;
}

/* Enhanced 2050-style skills section */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
}

.skill-category {
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 247, 255, 0.3);
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 247, 255, 0.05), transparent);
    z-index: -1;
}

.skill-category h3 {
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.7);
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.2rem;
}

.skill-item {
    margin-bottom: 1.2rem;
    position: relative;
}

.skill-item span {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background-color: rgba(30, 30, 50, 0.5);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.skill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
    border-radius: 5px;
    width: 0; /* Initial width */
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

/* Add futuristic data points to skill bars */
.skill-progress::before,
.skill-progress::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.skill-progress::before {
    right: 10px;
}

.skill-progress::after {
    right: 20px;
}

/* Add percentage display */
.skill-item::after {
    content: attr(data-percent);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.skill-item:hover::after {
    opacity: 1;
}

/* Add glowing effect on hover */
.skill-bar:hover .skill-progress {
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.8);
}

/* Force skill bars to be filled */
.skill-progress {
    animation: fillBars 1.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes fillBars {
    from { width: 0; }
    to { width: var(--percent); }
}

/* Project cards styling */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tags span {
    background: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.project-description {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.project-links {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.upcoming {
    background: rgba(10, 15, 30, 0.2);
    border: 1px dashed rgba(0, 247, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.neo-badge {
    background: rgba(0, 247, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
}

/* Extras section styling */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.extra-card {
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.extra-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.extra-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.extra-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Languages section */
.languages-section {
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.languages-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.languages-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
}

.languages-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.language-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-item span {
    color: #e0e0e0;
}

.language-level {
    display: flex;
    gap: 0.3rem;
}

.level-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.level-dot.active {
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
}

/* Motto section */
.motto-section {
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.motto-section h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.motto-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00f7ff, #ff00a0);
}

.motto {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: italic;
    position: relative;
    padding: 1rem 2rem;
}

.motto::before,
.motto::after {
    content: '"';
    font-size: 2rem;
    color: rgba(0, 247, 255, 0.3);
    position: absolute;
}

.motto::before {
    top: 0;
    left: 0;
}

.motto::after {
    bottom: 0;
    right: 0;
}

/* Profile image fixes */
.profile-image-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 200px !important;
    height: auto !important;
    overflow: visible !important;
    margin: 0 auto !important;
}

.profile-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.7) !important;
    margin-top: 20px !important; /* Move image down to show full head */
}

/* Fix nested skill categories */
#skills > .skills-container > .skill-category > .skill-category {
    margin-top: 1rem;
    padding: 0;
    border: none;
    background: transparent;
}

/* Notification styling */
.neo-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

.neo-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.neo-notification i {
    color: #00f7ff;
    font-size: 1.2rem;
}

.neo-notification span {
    color: #fff;
    font-size: 0.9rem;
}