/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --purple-primary: #7C3AED;
    --purple-light: #A855F7;
    --purple-dark: #5B21B6;
    --purple-gradient: linear-gradient(to right, #7C3AED, #A855F7, #C084FC);
    --text-main: #e0e0e0;
    --text-muted: #999999;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography & Global Styles
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

/* Gradient Text Utility */
.purple-text {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title span {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--purple-gradient);
    color: #000;
    border: none;
    padding: 14px 32px; /* compensate for no border */
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--purple-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.logo span {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.nav-links ul {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #b3b3b3;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-gradient);
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--purple-primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 5%;
    font-size: 2rem;
    cursor: pointer;
    color: var(--purple-primary);
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: #ffffff;
}

.mobile-menu a:hover {
    color: var(--purple-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.06) 0%, rgba(10,10,10,0) 70%);
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 50px;
    margin-top: 40px;
}

.hero-content {
    flex: 1;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .purple-text {
    font-style: italic;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.8));
    text-shadow: 0 0 40px rgba(124, 58, 237, 0.4), 0 0 80px rgba(124, 58, 237, 0.2);
}

.typewriter-wrapper {
    display: inline;
    white-space: nowrap;
}


.cursor {
    display: inline-block;
    width: 6px;
    height: 0.9em;
    background-color: #ffffff;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
    margin-left: 5px;
}

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 35px 0;
    max-width: 600px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.hero-image {
    flex: 1;
    order: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image img {
    width: 420px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    animation: morphProfile 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 420px;
    max-height: 420px;
    background: var(--purple-gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: 1;
    animation: morphProfile 8s ease-in-out infinite reverse;
}

@keyframes morphProfile {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    filter: grayscale(100%);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-img:hover img {
    filter: grayscale(0%);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--purple-gradient);
    color: #000;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.experience-badge h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.experience-badge p {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.about-content {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.about-content:hover {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.05);
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-primary);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--purple-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(124, 58, 237, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    font-size: 2.5rem;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-link {
    transform: translateY(0);
}

.portfolio-link:hover {
    box-shadow: 0 0 15px var(--purple-primary);
}

.portfolio-info {
    padding: 25px 20px;
}

.portfolio-info span {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.portfolio-info h3 {
    margin-top: 8px;
    font-size: 1.3rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(124, 58, 237, 0.05);
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item > div:not(.icon) {
    flex: 1;
    min-width: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    word-break: break-all;
    overflow-wrap: break-word;
}

.email-link {
    white-space: nowrap;
    overflow: visible;
    word-break: normal;
    overflow-wrap: normal;
}

@media screen and (max-width: 640px) {
    .email-link {
        font-size: clamp(0.75rem, 3.3vw, 0.95rem) !important;
    }
}

@media screen and (max-width: 360px) {
    .email-link {
        white-space: normal;
        word-break: break-all;
    }
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--purple-gradient);
    color: #000;
    border-color: transparent;
}

.contact-form {
    flex: 1.5;
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
    background: rgba(124, 58, 237, 0.05);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--bg-primary);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.linkedin-float, .whatsapp-float, .scroll-top-float {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.linkedin-float {
    background-color: #0A66C2;
    color: #ffffff;
    animation: floatBounce 4s ease-in-out infinite;
}

.linkedin-float:hover {
    background-color: #0077b5;
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

.whatsapp-float {
    background-color: #25D366;
    color: #ffffff;
    animation: floatBounce 4s ease-in-out infinite 1.5s;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.scroll-top-float {
    background: var(--purple-gradient);
    color: #000000;
    opacity: 0;
    visibility: hidden;
    font-size: 1.2rem;
}

.scroll-top-float.show {
    opacity: 1;
    visibility: visible;
    animation: floatBounce 4s ease-in-out infinite 3s;
}

.scroll-top-float:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.linkedin-float:hover, .whatsapp-float:hover, .scroll-top-float:hover {
    animation-play-state: paused;
    transform: scale(1.1) translateY(-10px) !important;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1);
    }
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

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

/* ==========================================================================
   Deepinder's Custom Sections (Badge, Stats, Skills, Experience)
   ========================================================================== */


.personal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.info-box {
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--purple-primary);
    font-size: 0.95rem;
}

.info-box span {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.education-box {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.education-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.education-box h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.education-box p {
    color: var(--text-muted);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.skill-category-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    transform-style: preserve-3d;
    will-change: transform;
}

.skill-category-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(124, 58, 237, 0.08) !important;
    border-color: rgba(124, 58, 237, 0.2);
}

.skill-category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.skill-tags span {
    background: rgba(124, 58, 237, 0.1);
    color: var(--text-main);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.skill-tags span:hover {
    background: var(--purple-gradient);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* Experience & Hire Me Section */
.experience-container {
    display: flex;
    flex-direction: column;
}

.experience-list .section-title,
.why-hire-me .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.experience-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.15); /* Thin purple accent border */
    border-left: 5px solid var(--purple-primary);
    margin-bottom: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.experience-card:last-child {
    margin-bottom: 0;
}

.emp-type {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.exp-header h3 {
    font-size: 1.6rem; /* Larger job title */
}

.exp-date {
    background: rgba(255,255,255,0.05);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--purple-primary);
}

.exp-tasks {
    list-style: none;
}

.exp-tasks li {
    margin-bottom: 14px; /* Better spacing between bullet points */
    display: flex;
    align-items: flex-start; /* Better vertical alignment for multi-line bullets */
    gap: 12px;
    color: var(--text-muted);
}

.exp-tasks li i {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 0.8rem;
    margin-top: 5px; /* Aligns bullet icon with first line of text */
}

/* Why Hire Me Section Grid */
.why-hire-me {
    margin-top: 90px; /* Consistent spacing (80–100px) between sections */
}

.why-hire-me-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.hire-me-card {
    background: var(--bg-primary);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    height: 100%;
}

.hire-me-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(124, 58, 237, 0.05);
}

.hire-me-card i {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
}

/* ==========================================================================
   Enhanced Features - Unique Design Elements
   ========================================================================== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #A855F7, #C084FC, #7C3AED, #A855F7);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    z-index: 10000;
    transition: width 0.05s linear;
}

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

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: #A855F7;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
    display: none;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    display: none;
}

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
}

/* Animated Gradient Text */
.hero-title .purple-text {
    background: linear-gradient(135deg, #A855F7, #C084FC, #7C3AED, #A855F7, #C084FC);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease infinite;
}

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

/* Hero Badge Enhancement */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    color: #A855F7;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.badge-sep {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

.hero-badge .highlight-skill {
    -webkit-text-fill-color: #A855F7;
    color: #A855F7;
    background: none;
}

.highlight-skill {
    position: relative;
    display: inline-block;
    padding: 0 4px;
    z-index: 1;
}


/* Skill Progress Bars */
.skill-bars {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-bar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.skill-bar > span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.skill-bar .bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.skill-bar .fill {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #A855F7, #C084FC);
    border-radius: 10px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Stats Counter Enhancement */
.counter {
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: inherit;
    font-weight: inherit;
}

/* Portfolio Section */
.portfolio-section {
    background: var(--bg-primary);
}

.portfolio-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(124, 58, 237, 0.15);
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
    line-height: 1.5;
}

/* 3D Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    will-change: transform;
}

/* Floating Decorative Orbs */
.floating-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    filter: blur(60px);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #A855F7, transparent);
    top: -100px;
    right: -100px;
    animation: floatSlow 15s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #C084FC, transparent);
    bottom: -50px;
    left: -50px;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #7C3AED, transparent);
    top: 50%;
    left: 50%;
    animation: floatSlow 18s ease-in-out infinite 3s;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.02); }
}

/* Service Card Tilt + Glow */
.service-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.1) !important;
}

/* Section Positioning */
section {
    position: relative;
    z-index: 1;
}

/* About Image Glow */
.about-img:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.2);
}

/* Contact Form Input Glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

/* Enhanced Scroll Reveal */
.reveal {
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Magnetic Button */
.btn {
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    will-change: transform;
}

/* Animated Hero Background */
.hero::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.06) 0%, rgba(10, 10, 10, 0) 75%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

/* Experience Card Timeline Pulse */
.experience-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

.experience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: 100%;
    background: var(--purple-gradient);
    animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor, .cursor-follower {
        display: none !important;
    }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .experience-badge {
        right: 10px;
        bottom: 10px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .experience-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .floating-orb {
        display: none !important;
    }

    .hero::before {
        display: none !important;
    }

    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
    }

    .hero-content {
        order: 2;
        align-items: center;
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 30px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        order: 1;
        justify-content: center;
    }
    
    .hero-image img {
        width: 240px;
    }
    
    .hero-image::after {
        max-width: 240px;
        max-height: 240px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .personal-info-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.5rem;
    }

    .services-grid,
    .skills-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        padding: 25px 20px;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .linkedin-float, .whatsapp-float, .scroll-top-float {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .experience-card {
        padding: 30px;
    }
}

@media screen and (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item h2 {
        font-size: 2.2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }

    .exp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .experience-card {
        padding: 25px 20px;
    }

    .why-hire-me-grid {
        grid-template-columns: 1fr;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 5px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-primary);
}
