/* Global Styles */
:root {
    --primary-color: #7b68ee; /* Purple */
    --secondary-color: #00bfff; /* Light blue */
    --accent-color: #ffd700; /* Gold */
    --gradient-start: #7b68ee;
    --gradient-end: #00bfff;
    --dark-color: #121212;
    --dark-bg: #121212;
    --light-dark-bg: #1e1e1e;
    --light-color: #f5f5f5;
    --text-color: #f5f5f5;
    --border-radius: 6px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    position: relative;
    overflow-x: hidden;
}

/* Particles background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.imgur.com/3TA5uUB.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -2;
}

/* Particles JS */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--dark-bg);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(123, 104, 238, 0.5);
}

.section {
    padding: 100px 0;
    position: relative;
}

.alt-bg {
    background-color: rgba(30, 30, 30, 0.4);
    position: relative;
}

.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(123, 104, 238, 0.05), rgba(0, 191, 255, 0.05));
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: white;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Header Styles */
header {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.15), rgba(0, 191, 255, 0.15));
    z-index: -1;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    animation: fadeIn 0.8s ease-out forwards;
}

.profile-img {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.profile-img::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0.7;
    filter: blur(20px);
    animation: pulse 3s infinite alternate;
}

.profile-img img {
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    width: 440px;
    height: 440px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.profile-img:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(123, 104, 238, 0.4);
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-shadow: 0 0 15px rgba(123, 104, 238, 0.7);
    position: relative;
    display: inline-block;
}

.profile-info h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.profile-info:hover h1::after {
    width: 100%;
}

.profile-info h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--accent-color);
    opacity: 0.9;
}

.profile-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.4);
}

.header-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--secondary-color);
    background: rgba(123, 104, 238, 0.1);
}

.location-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.location-indicator i {
    color: var(--accent-color);
}

/* Navigation */
nav {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 104, 238, 0.1);
}

nav.scrolled {
    padding: 10px 0;
    background-color: rgba(18, 18, 18, 0.95);
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin: 0 20px;
    position: relative;
}

nav a {
    color: white;
    font-weight: 500;
    padding: 8px 5px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
    background-color: transparent;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--primary-color);
}

nav a.active::after {
    width: 100%;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    color: #e0e0e0;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content p {
    margin-bottom: 20px;
}

/* Experience Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 120px;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 20px 40px 20px 160px;
    position: relative;
    margin-bottom: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    position: absolute;
    width: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 500;
    border-radius: var(--border-radius);
    left: 25px;
    top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-content p {
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
}

.timeline-content ul {
    padding-left: 20px;
}

.timeline-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: #000000;
    font-weight: 600;
}

.timeline-content ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(123, 104, 238, 0.2);
    backdrop-filter: blur(5px);
}

.project-card.visible {
    animation: fadeIn 0.5s ease-out forwards;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

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

.project-img::before {
    content: 'View Project';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.project-card:hover .project-img::before {
    opacity: 1;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.project-info p {
    margin-bottom: 15px;
    color: #666;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background-color: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.skill-category {
    background-color: rgba(30, 30, 30, 0.7);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    border: 1px solid rgba(123, 104, 238, 0.2);
    backdrop-filter: blur(5px);
}

.skill-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(123, 104, 238, 0.2);
    border-color: rgba(123, 104, 238, 0.5);
}

.skill-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.skill-category:hover h3::after {
    width: 100%;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags span {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.skill-tags span:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(123, 104, 238, 0.5);
}

/* Remove the before pseudo-element and its hover effect since we're making the gradient visible permanently */
.skill-tags span::before {
    display: none;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    font-size: 1.1rem;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.contact-info.visible {
    opacity: 1;
}

.contact-form {
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.contact-form.visible {
    opacity: 1;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-method:hover i {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(360deg);
}

.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(123, 104, 238, 0.3);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(30, 30, 30, 0.7);
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(123, 104, 238, 0.3);
    background-color: rgba(40, 40, 40, 0.7);
}

.contact-form button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form button::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: all 0.6s ease;
    z-index: -1;
}

.contact-form button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background-color: rgba(18, 18, 18, 0.95);
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(123, 104, 238, 0.3);
}

footer::before,
footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(var(--primary-color), transparent 70%);
    opacity: 0.1;
}

footer::before {
    top: -100px;
    left: -100px;
}

footer::after {
    bottom: -100px;
    right: -100px;
}

/* Animations for Scroll */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(123, 104, 238, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(123, 104, 238, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .profile-info p {
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .header-buttons {
        justify-content: center;
    }
    
    .profile-info h1 {
        font-size: 3rem;
    }
    
    .profile-info h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .profile-info h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    nav li {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    nav li {
        margin: 0 8px;
    }
    
    nav a {
        font-size: 0.8rem;
        padding: 6px 4px;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-info h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mouse Scroll Indicator */
.mouse-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s infinite;
}

.mouse-text {
    font-size: 0.8rem;
    margin-top: 10px;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes mouseScroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* About Highlights */
.about-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.highlight {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: none;
}

.highlight:nth-child(1) {
    border-color: #FF7043;
}

.highlight:nth-child(2) {
    border-color: #29B6F6;
}

.highlight:nth-child(3) {
    border-color: #66BB6A;
}

.highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-width: 3px;
}

.highlight i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight:nth-child(1) i {
    background: linear-gradient(135deg, #FF5722, #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight:nth-child(2) i {
    background: linear-gradient(135deg, #2196F3, #00BCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight:nth-child(3) i {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 700;
}

.highlight p {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.6;
    font-weight: 600;
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-project {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-card:hover .btn-project {
    transform: translateY(0);
}

.btn-project:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Skill Meters */
.skill-meter-container {
    max-width: 700px;
    margin: 40px auto 0;
}

.skill-meter {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.skill-meter-label {
    width: 180px;
    font-weight: 600;
    color: white;
}

.skill-meter-bar {
    flex: 1;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 15px;
}

.skill-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    position: relative;
    width: 100%;
    transition: none;
}

.skill-meter.visible .skill-meter-fill {
    width: 100%;
    animation: none;
}

.skill-meter-percentage {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: white;
}

/* Contact Availability */
.contact-availability {
    margin-top: 40px;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(123, 104, 238, 0.2);
    backdrop-filter: blur(5px);
}

.contact-availability h4 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.2rem;
}

.availability-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.availability-item i {
    color: var(--secondary-color);
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.7;
}

.footer-social a:hover {
    transform: translateY(-5px);
    opacity: 1;
}

/* Typed cursor color */
.typed-cursor {
    color: var(--accent-color);
    font-size: 1.8rem;
    opacity: 1;
    animation: blink 0.7s infinite;
}

/* Calligraphy Section */
.calligraphy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.calligraphy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(123, 104, 238, 0.1), rgba(0, 191, 255, 0.1));
    z-index: -1;
}

.calligraphy-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    filter: hue-rotate(225deg) saturate(1.2);
}

.calligraphy-image:hover {
    transform: scale(1.02);
}

.calligraphy-description {
    text-align: center;
    margin-top: 20px;
}

.calligraphy-description h3 {
    color: #4a90e2;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.calligraphy-description h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.calligraphy-description p {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 20px;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Add styles for View More buttons */
.btn-view-more {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.view-more {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.hidden-skills {
    flex-wrap: wrap;
    justify-content: center;
    transition: all 0.3s ease;
} 