/* CSS Variables for Theme */
:root {
    --bg-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --bg-secondary: rgba(22, 33, 62, 0.5);
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-primary: #00d9ff;
    --accent-secondary: #ff006e;
    --accent-tertiary: #8338ec;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --navbar-bg: rgba(26, 26, 46, 0.95);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    --bg-secondary: rgba(248, 249, 250, 0.8);
    --bg-card: rgba(255, 255, 255, 0.9);
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --accent-primary: #0066cc;
    --accent-secondary: #dc3545;
    --accent-tertiary: #6f42c1;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --navbar-bg: rgba(255, 255, 255, 0.95);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00d9ff, #ff006e, #8338ec);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, #00d9ff, #ff006e, #8338ec);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #888;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Theme Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--accent-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.theme-toggle:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.typing-container {
    height: 60px;
    margin-bottom: 2rem;
}

.typing-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #00d9ff;
}

.cursor {
    font-size: 1.8rem;
    color: #00d9ff;
    animation: blink 1s infinite;
}

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

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00d9ff;
}

.btn-secondary:hover {
    background: #00d9ff;
    color: #1a1a2e;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    position: relative;
    width: 350px;
    height: 350px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid;
    border-image: linear-gradient(135deg, #00d9ff, #ff006e, #8338ec) 1;
    position: relative;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    animation: floatAround 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: 10%;
}

.floating-icon:nth-child(2) {
    bottom: 20%;
    left: 5%;
}

.floating-icon:nth-child(3) {
    top: 30%;
    left: -10%;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: -5%;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(20px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(0px) rotate(180deg); }
    75% { transform: translateY(20px) translateX(-20px) rotate(270deg); }
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="13" fill="%23ffffff10" font-family="monospace">{ code }</text></svg>') repeat;
    animation: rain 20s linear infinite;
    opacity: 0.1;
}

@keyframes rain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* GitHub Stats Section */
.github-stats {
    padding: 100px 0;
    background: var(--bg-primary);
}

.stats-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.github-summary h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-primary);
    text-align: center;
}

.github-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.github-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.github-card:hover {
    transform: translateY(-5px);
}

.github-card img {
    width: 100%;
    border-radius: 10px;
}

.github-card.languages {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.github-activity h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-secondary);
    text-align: center;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.achievement-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.achievement-content h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.achievement-count {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
}

.achievement-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.github-trophies {
    text-align: center;
}

.github-trophies img {
    max-width: 100%;
    border-radius: 10px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00d9ff;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.fun-facts {
    margin-bottom: 2rem;
}

.fun-facts h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff006e;
}

.fun-facts ul {
    list-style: none;
    padding-left: 0;
}

.fun-facts li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #cccccc;
    padding-left: 1.5rem;
    position: relative;
}

.fun-facts li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.philosophy blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #8338ec;
    border-left: 4px solid #8338ec;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #00d9ff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Skills Section */
.skills {
    padding: 100px 0;
}

.skills-content {
    display: grid;
    gap: 3rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.skill-category h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #00d9ff;
    text-align: center;
}

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

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: #ff006e;
    background: rgba(255, 0, 110, 0.1);
}

.skill-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00d9ff;
}

.skill-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.skill-level {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.skill-level::after {
    content: '';
    height: 100%;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    border-radius: 3px;
    width: 0;
    display: block;
    transition: width 2s ease;
}

.skill-item:hover .skill-level::after {
    width: var(--level, 50);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--bg-primary);
}

.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.blog-filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--accent-primary);
    background: transparent;
    color: var(--accent-primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.blog-filter-btn.active,
.blog-filter-btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-post {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.blog-post.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.blog-post:hover {
    transform: translateY(-10px);
    border-color: var(--accent-secondary);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.blog-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    min-width: 50px;
}

.blog-post-date .day {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
}

.blog-post-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-post-meta .category {
    background: rgba(var(--accent-primary), 0.2);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-post-meta .read-time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.blog-post h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-post p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-tags span {
    color: var(--accent-tertiary);
    font-size: 0.8rem;
    background: rgba(var(--accent-tertiary), 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.read-more {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.blog-cta {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.blog-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-signup {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-signup input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-signup input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.newsletter-signup input::placeholder {
    color: var(--text-muted);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #00d9ff;
    background: transparent;
    color: #00d9ff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #00d9ff;
    color: #1a1a2e;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.project-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #ff006e;
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

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

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

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

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

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

.project-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tech span {
    background: rgba(0, 217, 255, 0.2);
    color: #00d9ff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00d9ff;
}

.contact-info p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #00d9ff;
    text-decoration: none;
}

.contact-item span {
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.social-link.linkedin {
    border-color: #0077b5;
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.github {
    border-color: #333;
}

.social-link.github:hover {
    background: #333;
}

.social-link.twitter {
    border-color: #1da1f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram {
    border-color: #e4405f;
}

.social-link.instagram:hover {
    background: #e4405f;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d9ff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Enhanced Contact Form Styles */
.contact-options {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-options h4 {
    color: #00d9ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-method-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 5px;
    gap: 5px;
    margin-bottom: 2rem;
}

.contact-tab {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #888;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #00d9ff;
}

.contact-tab.active {
    background: #00d9ff;
    color: #000;
    font-weight: 600;
}

.contact-method {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.contact-method.active {
    display: block;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.form-actions .btn {
    width: 100%;
    max-width: 300px;
}

.form-help {
    color: #888;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* Form Success Styles */
.form-success {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.form-success.hidden {
    display: none;
}

.success-content h4 {
    color: #00d9ff;
    margin: 0.5rem 0 1rem;
}

.success-content i {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.send-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.manual-email {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.email-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.email-copy span {
    color: #00d9ff;
    font-weight: 500;
}

/* Email Method Styles */
.email-options h4 {
    color: #00d9ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.email-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 217, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.email-display:hover {
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.1);
}

.email-text {
    color: #00d9ff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: rgba(0, 217, 255, 0.15);
    border: 2px solid rgba(0, 217, 255, 0.4);
    color: #00d9ff;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(0, 217, 255, 0.25);
    border-color: #00d9ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 217, 255, 0.2);
}

.email-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.email-buttons .btn {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.email-buttons .btn-primary {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    border: none;
    color: #ffffff;
}

.email-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.5);
    color: #00d9ff;
}

.email-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0099cc, #007aa3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
}

.email-buttons .btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
}

/* Social Contact Method Styles */
.social-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.social-contact-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d9ff;
}

.social-contact-card i {
    font-size: 1.5rem;
    color: #00d9ff;
    width: 30px;
    text-align: center;
}

.social-contact-card h5 {
    margin: 0 0 0.25rem;
    color: #fff;
    font-size: 1rem;
}

.social-contact-card p {
    margin: 0;
    color: #888;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text p {
    color: #888;
}

.footer-text .quote {
    font-style: italic;
    color: #00d9ff;
    margin-top: 0.5rem;
}

.scroll-top button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 217, 255, 0.3);
}

/* Responsive Design */
@media (min-width: 769px) {
    /* Desktop-specific enhancements for email buttons */
    .email-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .email-buttons .btn {
        min-width: 150px;
        max-width: none;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .email-display {
        max-width: 500px;
        margin: 0 auto;
        padding: 24px;
    }
    
    .email-text {
        font-size: 1.3rem;
    }
    
    .copy-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Better desktop spacing for contact form */
    .contact-method-tabs {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .form-actions .btn {
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .theme-toggle {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--navbar-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 2rem 0;
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px var(--shadow-medium);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(var(--accent-primary), 0.2);
    }
    
    /* GitHub Stats Mobile */
    .stats-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .github-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .achievement-card {
        padding: 1rem;
    }
    
    .achievement-count {
        font-size: 1.5rem;
    }
    
    /* Blog Mobile */
    .blog-filter {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .blog-filter-btn {
        width: 150px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .newsletter-signup {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-signup input {
        border-radius: 12px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 80px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .typing-container {
        height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .typing-text {
        font-size: 1.4rem;
    }
    
    .cursor {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .profile-card {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .fun-facts {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .philosophy {
        text-align: center;
    }
    
    .philosophy blockquote {
        font-size: 1.1rem;
        margin: 2rem auto;
        max-width: 350px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Skills Section Mobile */
    .skills {
        padding: 80px 0;
    }
    
    .skill-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .skill-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .skill-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .skill-item {
        padding: 1rem;
    }
    
    .skill-item i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .skill-item span {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    /* Projects Section Mobile */
    .projects {
        padding: 80px 0;
    }
    
    .projects-filter {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        max-width: 100%;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
    
    .project-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .project-tech {
        gap: 0.4rem;
    }
    
    .project-tech span {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-items {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .contact-form .btn {
        width: 100%;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    /* Enhanced Contact Form Mobile */
    .contact-method-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-tab {
        padding: 15px;
        font-size: 1rem;
    }
    
    .form-actions {
        gap: 1.5rem;
    }
    
    .send-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .send-options .btn {
        width: 100%;
        min-width: auto;
    }
    
    .email-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-buttons .btn {
        width: 100%;
        min-width: auto;
        max-width: none;
    }
    
    .social-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-contact-card {
        padding: 1.25rem;
    }
    
    .email-display {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .copy-btn {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-text p {
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .typing-text {
        font-size: 1.2rem;
    }
    
    .cursor {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 5px;
        line-height: 1.6;
    }
    
    .btn {
        width: 180px;
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .profile-card {
        width: 240px;
        height: 240px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* About Section */
    .about {
        padding: 60px 0;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .fun-facts h4 {
        font-size: 1.2rem;
    }
    
    .fun-facts li {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .philosophy blockquote {
        font-size: 1rem;
        padding-left: 1rem;
        border-left-width: 3px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    /* Skills Section */
    .skills {
        padding: 60px 0;
    }
    
    .skill-category {
        padding: 1.2rem;
    }
    
    .skill-category h3 {
        font-size: 1.3rem;
    }
    
    .skill-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skill-item {
        padding: 1.2rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .skill-item i {
        font-size: 2.2rem;
    }
    
    .skill-item span {
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Projects Section */
    .projects {
        padding: 60px 0;
    }
    
    .projects-filter {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        width: 150px;
        padding: 10px 20px;
    }
    
    .project-content {
        padding: 1.2rem;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .project-tech {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .project-tech span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-item {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-text p {
        font-size: 0.85rem;
    }
    
    .footer-text .quote {
        font-size: 0.8rem;
    }
    
    .scroll-top button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Improved spacing for small screens */
    .hero-container,
    .container {
        max-width: 100%;
    }
    
    /* Better touch targets */
    .nav-menu a {
        padding: 12px 25px;
        margin: 5px 0;
    }
    
    .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improved readability */
    .hero-description br {
        display: none;
    }
    
    .hero-description::after {
        content: " ";
        white-space: pre;
    }
}

/* Additional Mobile Enhancements */
@media (max-width: 768px) {
    /* Smooth scrolling optimization for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on form inputs */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Better touch scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: none;
    }
    
    /* Optimize animations for mobile */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Mobile-specific hover states */
    .project-card:active,
    .skill-item:active,
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Improved mobile navigation */
    .nav-menu a:active {
        background: rgba(0, 217, 255, 0.3);
    }
    
    /* Better mobile spacing */
    .hero-content {
        padding: 1rem 0;
    }
    
    /* Mobile-optimized gradients */
    .gradient-text,
    .section-title {
        background-attachment: scroll;
    }
    
    /* Reduced motion for better performance */
    @media (prefers-reduced-motion: reduce) {
        .floating-icon,
        .card-inner,
        .code-rain {
            animation: none !important;
        }
        
        .typing-text {
            animation: none !important;
        }
        
        .cursor {
            animation: none !important;
        }
    }
    
    /* Mobile-specific loading improvements - moved to HTML attribute */
    
    /* Better mobile form experience */
    .form-group input:focus,
    .form-group textarea:focus {
        transform: none;
        box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.5);
    }
    
    /* Mobile-optimized notifications */
    .notification {
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        max-width: none !important;
        transform: translateY(-100px) !important;
    }
    
    .notification.show {
        transform: translateY(0) !important;
    }
    
    /* Improved mobile stats layout */
    .about-stats {
        padding: 1rem 0;
    }
    
    /* Better mobile project cards */
    .project-card {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .project-card:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile-optimized background effects */
    .hero-background {
        opacity: 0.3;
    }
    
    .code-rain {
        animation-duration: 30s;
    }
    
    /* Improved mobile contact section */
    .social-links {
        flex-wrap: wrap;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Better mobile skills presentation */
    .skill-level {
        margin-top: 0.8rem;
    }
    
    /* Mobile-specific utility classes */
    .mobile-center {
        text-align: center;
    }
    
    .mobile-full-width {
        width: 100%;
    }
    
    .mobile-hidden {
        display: none;
    }
    
    /* Performance optimizations */
    .floating-elements {
        will-change: transform;
    }
    
    .profile-img {
        will-change: transform;
    }
    
    /* Mobile accessibility improvements */
    .btn:focus,
    .filter-btn:focus,
    .social-link:focus {
        outline: 2px solid #00d9ff;
        outline-offset: 2px;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.fade-in {
    animation: slideInUp 0.6s ease forwards;
}

/* Skill Level Bars */
.skill-item[data-level="95"] .skill-level::after { width: 95%; }
.skill-item[data-level="93"] .skill-level::after { width: 93%; }
.skill-item[data-level="92"] .skill-level::after { width: 92%; }
.skill-item[data-level="91"] .skill-level::after { width: 91%; }
.skill-item[data-level="90"] .skill-level::after { width: 90%; }
.skill-item[data-level="89"] .skill-level::after { width: 89%; }
.skill-item[data-level="88"] .skill-level::after { width: 88%; }
.skill-item[data-level="87"] .skill-level::after { width: 87%; }
.skill-item[data-level="86"] .skill-level::after { width: 86%; }
.skill-item[data-level="85"] .skill-level::after { width: 85%; }
.skill-item[data-level="83"] .skill-level::after { width: 83%; }
.skill-item[data-level="82"] .skill-level::after { width: 82%; }
.skill-item[data-level="80"] .skill-level::after { width: 80%; }
.skill-item[data-level="78"] .skill-level::after { width: 78%; }
.skill-item[data-level="75"] .skill-level::after { width: 75%; }
