:root {
    --bg-color: #050505;
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-blue: #0b2242;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    cursor: none;
    /* For custom cursor */
}

body {
    font-family: var(--font-body);
    background: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    
    /* Anti-Copy Measures */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}

/* Prevent Image Dragging */
img {
    -webkit-user-drag: none;
    pointer-events: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    cursor: none;
}

/* Custom Cursor (Dot & Outline) */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--neon-cyan);
    opacity: 0.5;
}

/* Cursor states on hover */
body:active .cursor-outline {
    transform: translate(-50%, -50%) scale(0.7);
    background-color: rgba(0, 243, 255, 0.1);
}


/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--neon-cyan);
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: loadBar 1.5s infinite ease-in-out;
}

@keyframes loadBar {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.grid-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px) translateZ(-200px);
    }
}

.blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--neon-cyan), transparent 70%);
    top: -20%;
    left: -10%;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--neon-purple), transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #0055ff, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5vw, -5vw) scale(1.1);
    }

    66% {
        transform: translate(-3vw, 8vw) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Glass Panel Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-panel:hover {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

/* Typography Utilities */
.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.glow-text {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.highlight {
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: inset 0 -4px 0 rgba(0, 243, 255, 0.3);
}

/* Header / Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5%;
    max-width: 1600px;
    margin: 0 auto;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.header__nav-links ul {
    display: flex;
    gap: 2.5rem;
}

.header__nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.header__nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.header__nav-links a:hover,
.header__nav-links a.active {
    color: var(--text-primary);
}

.header__nav-links a:hover::after,
.header__nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: none;
    background: transparent;
}

.btn-content {
    position: relative;
    z-index: 1;
}

.btn--primary {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

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

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

.btn--primary:hover::before {
    transform: translateX(100%);
}

.btn--outline {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.btn--outline:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 243, 255, 0.2);
}

.btn--small {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

/* Section Headers */
section {
    scroll-margin-top: 100px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-header h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
    margin-left: 1rem;
}

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

.hero__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero__content {
    flex: 1.2;
}

.hero__intro-title {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
}

.hero__intro-line {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: var(--neon-cyan);
    margin-right: 20px;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.hero__animated-alphabet-box {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.1;
}

.alphabet {
    display: inline-block;
    transition: var(--transition-smooth);
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.alphabet:hover {
    transform: translateY(-15px) scale(1.1);
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

.alphabet--last {
    margin-right: 0.3em;
}

.hero__description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    fill: var(--text-secondary);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
    fill: var(--neon-cyan);
}

.hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero__image-wrapper {
    position: relative;
    width: clamp(280px, 35vw, 450px);
    aspect-ratio: 1;
    border-radius: 50% !important;
    padding: 10px;
    background: transparent;
}

.hero__cyber-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(0, 243, 255, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition-smooth);
}

.hero__image-wrapper:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.02);
}

/* Works Section */
.works {
    padding: 8rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

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

.project-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.project-card__image-container {
    height: 200px;
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    position: relative;
    overflow: hidden;
}

.project-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMSIvPgo8cGF0aCBkPSJNMCAwbDhfOHptOCAwTDBfOHoiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIvPgo8L3N2Zz4=');
    opacity: 0.5;
}

/* Freelance Section Enhancements */
.freelance-section {
    position: relative;
}

.freelance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(188, 19, 254, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.freelance-card {
    border-color: rgba(188, 19, 254, 0.3);
}

.freelance-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 10px 40px rgba(188, 19, 254, 0.15);
    transform: translateY(-8px);
}

.glass-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

#devtools-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
    pointer-events: none;
}

.project-card__content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card__content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tech-stack {
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex: 1;
}

/* About Section */
.about {
    padding: 8rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.about__card {
    padding: 4rem;
}

.about__card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about__card p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
}

.about-list strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Timeline (Experience & Education) */
.timeline-section {
    padding: 8rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.timeline__grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; */
}

.timeline__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--neon-cyan);
}

.timeline__box {
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline__box::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: -20px;
    width: 20px;
    height: 2px;
    background: var(--neon-cyan);
    opacity: 0.5;
}

.timeline__box h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline__box h5 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.timeline__date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.timeline-list {
    color: var(--text-secondary);
    list-style: none;
}

.timeline-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.timeline-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* Skills Section */
.skill {
    padding: 8rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.skill__inner-container {
    padding: 4rem;
}

.skill__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.skill-group h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.8rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.glass-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.glass-tag:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.15);
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__details,
.contact__info {
    padding: 4rem;
}

.contact__form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.contact__form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}

.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    resize: none;
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.contact__form-group input:focus~.input-glow,
.contact__form-group textarea:focus~.input-glow {
    width: 100%;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
    border-color: rgba(0, 243, 255, 0.3);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.contact__send-btn {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact__send-btn.loading .btn-content {
    opacity: 0.5;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.contact__send-btn.loading .spinner {
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
}

.toast {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid var(--neon-cyan);
}

.toast.error {
    border-left: 4px solid #ff3366;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast.success .toast-icon {
    color: var(--neon-cyan);
}

.toast.error .toast-icon {
    color: #ff3366;
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.neon-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

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

.contact-item strong {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-item span {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer__content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer p {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.footer__glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: var(--neon-cyan);
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .timeline__grid,
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 6rem;
    }

    .hero__intro-title {
        justify-content: center;
    }

    .hero__animated-alphabet-box {
        justify-content: center;
    }

    .hero__description {
        margin: 1.5rem auto 3rem;
    }

    .hero__buttons,
    .social-icons {
        justify-content: center;
    }

    .about__card,
    .timeline__box,
    .skill__inner-container,
    .contact__details,
    .contact__info {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {

    html,
    body,
    a,
    button {
        cursor: auto;
        /* Disable custom cursor on mobile */
    }

    .cursor-glow {
        display: none;
    }

    .header__nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .header__nav-links.active {
        right: 0;
    }

    .header__nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .header__nav-links a {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero__image-wrapper {
        width: 250px;
    }
}

/* Dashboard Modal */
.dashboard-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.dashboard-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.dashboard-modal-content {
    width: 100%;
    max-width: 1600px;
    height: 90vh;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.1);
}

.modal-header {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
}

.close-modal {
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--neon-cyan);
    transform: rotate(90deg);
}

.modal-body {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
}

.dashboard-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Iframe Loader */
.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 243, 255, 0.1);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================================
   RESPONSIVE DESIGN ENHANCEMENTS
   ========================================= */

/* Global Container Improvements */
.hero__container,
.works__container,
.about__container,
.timeline__container,
.skill__main-container,
.contact__container {
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

/* Section Header Centering */
.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Hero Section Responsiveness */
.hero__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 80vh;
}

.hero__content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Timeline / Experience Enhancements */
.timeline__header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline__company {
    font-size: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
}

.timeline__description {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.skill-group-title {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Divider */
.gradient-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
    opacity: 0.5;
    margin: 4rem 0;
}

/* Freelance Tags */
.freelance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
    justify-content: center;
}

/* Works/Portfolio Grid */
.works__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.project-btn {
    width: 100%;
    margin-top: 1.5rem;
}

/* CTA Styles */
.cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.cta-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}
.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

/* Responsive Media Queries (Refined) */
@media (max-width: 1024px) {
    .hero__container {
        gap: 2rem;
    }
    
    .timeline__box {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hero__container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 6rem;
        gap: 3rem;
    }

    .hero__content {
        align-items: center;
        width: 100%;
    }

    .hero__description {
        text-align: center;
        margin: 1.5rem auto 3rem;
    }

    .hero__image {
        width: 100%;
        justify-content: center;
    }

    .hero__image-wrapper {
        width: 280px;
    }

    .hero__buttons, .social-icons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .timeline__box {
        padding: 2rem;
    }

    .timeline__header-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline__company {
        font-size: 1.6rem;
    }

    .timeline__date {
        margin-top: 1rem;
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact__details, .contact__info {
        padding: 2rem;
    }
    
    .whatsapp-chat {
        width: 90%;
        right: 5%;
        left: 5%;
    }

    .dashboard-modal {
        padding: 0;
    }

    .dashboard-modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        border: none;
    }

    .modal-header {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero__animated-alphabet-box {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }

    .contact__info-details ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-float {
    position: fixed;
    bottom: 100px; /* Moved up to make space for scroll button */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Scroll To Top Progress Button */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background: var(--bg-color);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    display: none;
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--neon-cyan);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-wrap .scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    color: var(--neon-cyan);
    z-index: 1;
}


.whatsapp-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 9998;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.whatsapp-chat.show {
    display: flex;
}

.whatsapp-header {
    background: #075e54;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.whatsapp-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.whatsapp-body {
    background: #e5ddd5;
    padding: 15px;
    height: 250px;
    overflow-y: auto;
}

.whatsapp-message {
    display: flex;
    gap: 10px;
}

.whatsapp-avatar {
    width: 35px;
    height: 35px;
    background: #128c7e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.whatsapp-bubble {
    background: #fff;
    padding: 10px;
    border-radius: 0 10px 10px 10px;
    max-width: 80%;
    position: relative;
}

.whatsapp-name {
    font-size: 12px;
    color: #128c7e;
    font-weight: bold;
    margin-bottom: 5px;
}

.whatsapp-bubble p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.whatsapp-time {
    font-size: 10px;
    color: #999;
    display: block;
    text-align: right;
    margin-top: 5px;
}

.whatsapp-footer {
    padding: 10px;
    background: #f0f0f0;
    display: flex;
    gap: 10px;
}

.whatsapp-footer input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}

.whatsapp-footer button {
    background: #128c7e;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}