/* Modern Portfolio Style 3.0 */
:root {
    /* Core Colors */
    --background: #0a0a0a;
    --surface: #151515;
    --neon-pink: #ff2d95;
    --neon-blue: #00eeff;
    --neon-purple: #bc13fe;
    --neon-green: #0fff50;
    --text: #ffffff;
    --text-secondary: #b3b3b3;
    
    /* Neon Gradients */
    --gradient-1: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    --gradient-2: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    --gradient-3: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    
    /* Neon Effects */
    --neon-glow-pink: 0 0 10px rgba(255, 45, 149, 0.5),
                      0 0 20px rgba(255, 45, 149, 0.3),
                      0 0 30px rgba(255, 45, 149, 0.2);
    --neon-glow-blue: 0 0 10px rgba(0, 238, 255, 0.5),
                      0 0 20px rgba(0, 238, 255, 0.3),
                      0 0 30px rgba(0, 238, 255, 0.2);
    --glass: rgba(15, 15, 15, 0.95);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 45, 149, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(0, 238, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 45, 149, 0.2);
    box-shadow: 0 4px 20px rgba(255, 45, 149, 0.15);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-decoration: none;
    text-shadow: var(--neon-glow-pink);
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    color: var(--neon-blue);
    text-shadow: var(--neon-glow-blue);
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: var(--neon-glow-pink);
    transform: translateY(-2px);
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.show {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideIn 0.4s ease forwards;
    }

    .nav-links.show li:nth-child(1) { animation-delay: 0.2s; }
    .nav-links.show li:nth-child(2) { animation-delay: 0.3s; }
    .nav-links.show li:nth-child(3) { animation-delay: 0.4s; }
    .nav-links.show li:nth-child(4) { animation-delay: 0.5s; }
    .nav-links.show li:nth-child(5) { animation-delay: 0.6s; }

    .nav-links a {
        color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    }
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--neon-blue);
    text-shadow: var(--neon-glow-blue);
    margin-bottom: 1.5rem;
    animation: neonPulse 2s infinite;
}

.hero h2 {
    font-size: 4.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: neonTextPulse 3s infinite;
    position: relative;
}

.hero h2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: var(--neon-pink);
    filter: blur(15px);
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.hire-me {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--surface);
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hire-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.hire-me:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hire-me:hover::before {
    left: 100%;
}

.hire-me:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.hire-me span {
    position: relative;
    z-index: 1;
}

/* Animations for name and button */
@keyframes glow {
    0% { text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 30px var(--accent); }
    50% { text-shadow: 0 0 20px var(--accent), 0 0 30px var(--accent), 0 0 40px var(--accent); }
    100% { text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 30px var(--accent); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
}

/* Section Common Styles */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.content {
    max-width: 1400px;
    margin: 0 auto;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--neon-pink);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.profile-image:hover::before {
    transform: translateX(100%);
}

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

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

.about-content {
    padding: 2rem;
    background: var(--surface);
    border-radius: 20px;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

.skill-category {
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.skill-item {
    text-align: center;
    padding: 1rem;
    background: rgba(110, 0, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(110, 0, 255, 0.2);
}

/* Projects Section */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.project-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

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

.project-card:hover {
    transform: translateY(-10px);
}

.project-header {
    padding: 2rem;
}

.project-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text);
}

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

.tag {
    padding: 0.3rem 1rem;
    border-radius: 50px;
    background: rgba(110, 0, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.project-description {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
}

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

.contact-info {
    background: var(--surface);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    color: var(--text);
    font-size: 1.2rem;
}

/* Contact Section Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--neon-pink);
}

.contact-label {
    font-weight: 600;
    margin-right: 1rem;
    min-width: 80px;
    color: var(--text);
}

.contact-item a,
.contact-item span:not(.contact-label) {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-pink);
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text);
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: var(--neon-pink);
    color: var(--surface);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .nav-content {
        justify-content: flex-start;
        padding-left: 1rem;
    }

    

    .menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        background: var(--neon-pink);
        border: none;
        color: var(--surface);
        font-size: 1.5rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none; /* Hide on mobile initially */
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--surface);
        width: 70%;
        padding: 1rem;
        text-align: center;
        border-radius: 10px;
        transition: right 0.4s ease-in-out;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        width: 100%;
    }
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        animation: mobileGradientFlow 8s ease-in-out infinite;
    }

    .hero h1 {
        animation: mobileGlow 3s ease-in-out infinite;
    }
}

/* Mobile-optimized animations */
@keyframes mobileGradientFlow {
    0% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.4));
    }
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
    }
}

@keyframes mobileGlow {
    0% {
        text-shadow: 0 0 10px var(--neon-pink),
                    0 0 20px var(--neon-pink);
    }
    50% {
        text-shadow: 0 0 15px var(--neon-pink),
                    0 0 30px var(--neon-pink);
    }
    100% {
        text-shadow: 0 0 10px var(--neon-pink),
                    0 0 20px var(--neon-pink);
    }
}

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

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    75% {
        transform: translateY(4px) rotate(-1deg);
    }
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.3))
               drop-shadow(0 0 40px rgba(219, 39, 119, 0.2))
               drop-shadow(0 0 60px rgba(245, 158, 11, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.5))
               drop-shadow(0 0 60px rgba(219, 39, 119, 0.3))
               drop-shadow(0 0 90px rgba(245, 158, 11, 0.2));
    }
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Canvas */
#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000000;
    pointer-events: none;
}

#about {
    padding-top: 2rem;
}

#projects {
    padding-top: 2rem;
}

#skills {
    padding-top: 2rem;
}

#education {
    padding-top: 2rem;
}

#contact {
    padding-top: 2rem;
}

/* Footer */
footer {
    background: var(--surface);
    padding: 2rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-1);
}

.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links-footer a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links-footer a:hover {
    transform: translateY(-5px);
    background: var(--neon-pink);
    color: var(--surface);
    box-shadow: 0 5px 15px rgba(var(--neon-pink), 0.3);
}

/* Card Grid Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

.info-card {
    background: rgba(21, 21, 21, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: cardEntrance 0.8s ease-out backwards;
    z-index: 1;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 238, 255, 0.15);
}

.info-card::before,
.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 238, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.info-card::after {
    background: linear-gradient(45deg, 
        transparent, 
        rgba(0, 238, 255, 0.1), 
        transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.info-card:hover::before {
    opacity: 1;
    animation: pulseGlow 2s infinite;
}

.info-card:hover::after {
    transform: translateX(100%);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 238, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.info-card:hover .card-icon {
    transform: scale(1.2) rotate(360deg);
    color: var(--neon-blue);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.info-card:hover h3 {
    color: var(--neon-blue);
    transform: scale(1.05);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.info-card:hover p {
    color: var(--text);
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
        filter: blur(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Skill Tags */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.skill-tag {
    background: rgba(var(--neon-pink), 0.1);
    color: var(--neon-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--neon-pink);
    color: var(--background);
}

/* Project Cards */
.project-card {
    display: flex;
    flex-direction: column;
}

.project-card .skill-tags {
    margin-top: auto;
}

/* Profile Image in About Section */
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(var(--neon-pink), 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Links */
.info-card a {
    color: var(--neon-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--text);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h2 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        padding: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .contact-label {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% { text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink); }
    50% { text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 40px var(--neon-pink); }
    100% { text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink); }
}

/* Smooth Transitions */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Neon Portfolio Style */
:root {
    /* Core Colors */
    --background: #0a0a0a;
    --surface: #151515;
    --neon-pink: #ff2d95;
    --neon-blue: #00eeff;
    --neon-purple: #bc13fe;
    --neon-green: #0fff50;
    --text: #ffffff;
    --text-secondary: #b3b3b3;
    
    /* Neon Gradients */
    --gradient-1: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    --gradient-2: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    --gradient-3: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    
    /* Neon Effects */
    --neon-glow-pink: 0 0 10px rgba(255, 45, 149, 0.5),
                      0 0 20px rgba(255, 45, 149, 0.3),
                      0 0 30px rgba(255, 45, 149, 0.2);
    --neon-glow-blue: 0 0 10px rgba(0, 238, 255, 0.5),
                      0 0 20px rgba(0, 238, 255, 0.3),
                      0 0 30px rgba(0, 238, 255, 0.2);
    --glass: rgba(15, 15, 15, 0.95);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 45, 149, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(0, 238, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 45, 149, 0.2);
    box-shadow: 0 4px 20px rgba(255, 45, 149, 0.15);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-decoration: none;
    text-shadow: var(--neon-glow-pink);
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover {
    color: var(--neon-blue);
    text-shadow: var(--neon-glow-blue);
    transform: scale(1.05);
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: var(--neon-glow-pink);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: 2.2rem;
    color: var(--neon-blue);
    text-shadow: var(--neon-glow-blue);
    margin-bottom: 1.5rem;
    animation: neonPulse 2s infinite;
}

.hero h2 {
    font-size: 4.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: neonTextPulse 3s infinite;
    position: relative;
}

.hero h2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: var(--neon-pink);
    filter: blur(15px);
    opacity: 0.8;
}

/* Button Styles */
.btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--neon-pink);
    background: transparent;
    color: var(--neon-pink);
    border-radius: 50px;
    font-weight: 600;
    text-shadow: var(--neon-glow-pink);
    box-shadow: var(--neon-glow-pink);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--neon-pink);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--neon-pink);
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .section {
        padding: 5rem 1.5rem;
    }
    
    .about-container {
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    .hero h2 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .card-grid,
    .projects-grid,
    .skills-container {
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .card-grid,
    .projects-grid,
    .skills-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .info-card {
        padding: 1.8rem 1.2rem;
    }
    
    .about-container {
        padding: 1rem;
    }
    
    .contact-container {
        padding: 1rem;
    }
}

/* Navigation Responsive */
@media (max-width: 768px) {
    .nav-content {
        padding: 0.8rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}
