:root {
    --neon-pink: #ff6ec7;
    --neon-blue: #00f2ff;
    --neon-purple: #b400ff;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text);
    overflow-x: hidden;
}

html, body, * {
    cursor: none !important;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    position: fixed; /* Changed from absolute to fixed */
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.1s;
    opacity: 0;
    transform: translate(-50%, -50%);
    left: 0;
    top: 0;
}

header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--neon-pink);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transition: width 0.3s;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

main {
    padding-top: 100px;
}

section {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

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

.hero h1 span {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 110, 199, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.social-links a {
    color: var(--text);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--neon-pink);
    transform: translateY(-3px);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-pink);
    top: 10%;
    right: 10%;
    animation: float 8s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    bottom: 10%;
    left: 10%;
    animation: float 10s infinite ease-in-out;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--neon-purple);
    top: 50%;
    left: 50%;
    animation: float 12s infinite ease-in-out;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
    border: 1px solid var(--neon-blue);
}

.skill-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.project-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 110, 199, 0.1);
    border: 1px solid var(--neon-pink);
}

.project-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

.tag {
    background-color: rgba(0, 242, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 110, 199, 0.2);
}

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

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    margin-top: 5rem;
}

.footer-text {
    opacity: 0.7;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
}

/* Add to your existing CSS */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-image {
    position: relative;
    width: 350px;
    height: 350px;
    flex-shrink: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--neon-pink);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
    transition: all 0.5s ease;
}

.hero-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.hero-image:hover .image-border {
    transform: rotate(5deg) scale(1.02);
    border-color: var(--neon-blue);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Resume Section Styles */
.resume-section {
    background-color: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
}

.resume-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.resume-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.resume-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
    border: 1px solid var(--neon-blue);
}

.resume-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
}

.btn-outline:hover {
    background: var(--neon-pink);
    color: white;
}


.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 300px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 110, 199, 0.2);
}

/* Resume Section Styles */
.resume-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(18, 18, 18, 0.9));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.resume-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 110, 199, 0.1) 0%, 
        rgba(0, 242, 255, 0.05) 50%, 
        transparent 70%);
    z-index: -1;
    animation: float 15s infinite alternate;
}

.resume-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.resume-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.resume-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transition: all 0.4s ease;
}

.resume-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
    border: 1px solid rgba(0, 242, 255, 0.3);
}

.resume-card:hover::after {
    height: 8px;
}

.resume-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.4s ease;
}

.resume-card:hover i {
    transform: scale(1.1);
}

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

.resume-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.resume-card .btn {
    margin-top: 1rem;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.resume-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resume-card .btn:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .resume-section {
        padding: 3rem 1.5rem;
    }
    
    .resume-card {
        padding: 2rem 1.5rem;
    }
    
    .resume-card i {
        font-size: 3rem;
    }
    
    .resume-card h3 {
        font-size: 1.5rem;
    }
}