@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-base: #030303;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --accent-cyan: #00E5FF;
    --accent-violet: #9D4EDD;
    --font-headings: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Fluid Background Animation */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-base);
}

.mesh-blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.4;
    border-radius: 50%;
    animation: floatBlob 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.mesh-blob.cyan {
    background: rgba(0, 229, 255, 0.25);
    width: 40vw;
    height: 40vw;
    top: -10vw;
    left: -10vw;
}

.mesh-blob.violet {
    background: rgba(157, 78, 221, 0.2);
    width: 50vw;
    height: 50vw;
    bottom: -20vw;
    right: -10vw;
    animation-delay: -5s;
}

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

    50% {
        transform: translate(5vw, 10vh) scale(1.1);
    }

    100% {
        transform: translate(-10vw, 5vh) scale(0.9);
    }
}

/* Shared Typography & Utilities */
h1,
h2,
h3,
h4,
.nav-logo {
    font-family: var(--font-headings);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Scroll Animations */
.hide-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show-animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-cyan) 0%, var(--accent-violet) 100%);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero-avatar {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 520px;
    margin: 0;
    border-radius: 24px;
    z-index: 10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    background: var(--bg-surface);
    transform: scale(1.05);
    transform-origin: top center;
    transition: transform 0.5s ease;
}

.hero-avatar:hover img {
    transform: scale(1.1);
}

/* Floating Nav */
header {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 90%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: navFadeDown 1s ease-out forwards;
    opacity: 0;
    transform: translate(-50%, -20px);
}

@keyframes navFadeDown {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--text-main);
    text-decoration: none;
}

/* Logo image sizing + responsive adjustments */
.logo-image {
    height: 2.5em;
    width: auto;
    display: block;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

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

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

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

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 2rem;
    margin-top: 1rem;
    gap: 4rem;
}

.hero-text-content {
    flex: 1.1;
    text-align: left;
}

.hero-image-content {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-name {
    font-size: 0.85em;
}

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

.hero-subtitle strong {
    color: var(--text-main);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--accent-cyan);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-social a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
}

.hero-social a:hover {
    color: var(--accent-cyan);
    transform: translateY(-4px);
    filter: drop-shadow(0 4px 10px rgba(0, 229, 255, 0.3));
}

.hero-social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 2.5rem 5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-num {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sections General */
.section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.sec-num {
    font-family: var(--font-headings);
    color: var(--accent-cyan);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
}

.sec-title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Experience Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-violet), transparent);
    opacity: 0.5;
}

.exp-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.exp-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: var(--bg-surface-hover);
    transform: translateY(10px);
}

.exp-card::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 3rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: all 0.3s ease;
}

.exp-card:hover::before {
    background: var(--accent-cyan);
    transform: scale(1.2);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.exp-role {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.exp-company {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

.exp-date {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.exp-desc {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exp-desc li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.exp-desc li::before {
    content: "▹";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon {
    background: var(--accent-cyan);
    color: var(--bg-base);
}

.service-title {
    font-size: 1.3rem;
    font-family: var(--font-headings);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.skill-level {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;

    /* Default Glow Variables */
    --hover-brand: var(--accent-cyan);
    --hover-brand-rgb: 0, 229, 255;
}

/* Brand Colors */
.project-card.brand-green {
    --hover-brand: #10B981;
    --hover-brand-rgb: 16, 185, 129;
}

.project-card.brand-gold {
    --hover-brand: #eab308;
    --hover-brand-rgb: 234, 179, 8;
}

.project-card.brand-blue {
    --hover-brand: #3B82F6;
    --hover-brand-rgb: 59, 130, 246;
}

.project-card.brand-pink {
    --hover-brand: #EC4899;
    --hover-brand-rgb: 236, 72, 153;
}

.project-card.brand-orange {
    --hover-brand: #F97316;
    --hover-brand-rgb: 249, 115, 22;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--hover-brand-rgb), 0.5);
    box-shadow: 0 20px 50px rgba(var(--hover-brand-rgb), 0.15);
}

.project-card:hover .project-title {
    color: var(--hover-brand);
}

.project-card:hover .tech-tag {
    border-color: rgba(var(--hover-brand-rgb), 0.3);
    color: var(--hover-brand);
}

.project-card:hover .card-actions a {
    border-color: rgba(var(--hover-brand-rgb), 0.4);
}

.project-card:hover .card-actions a:hover {
    background: rgba(var(--hover-brand-rgb), 0.15);
    color: var(--hover-brand);
}

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

.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ADE80;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-blob {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ADE80;
}

.project-links a {
    color: var(--text-muted);
    transition: color 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 0.75rem;
}

.project-links a:hover {
    color: var(--accent-cyan);
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.tech-tag {
    font-family: var(--font-headings);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--accent-cyan);
}

.card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.card-actions a {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s;
}

.card-actions a:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(12px);
}

.contact-text h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--text-main);
    color: var(--bg-base);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-headings);
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    padding: 3rem 0 4rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    background: rgba(3, 3, 3, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-info,
.footer-credits {
    display: flex;
    flex-direction: column;
}

.footer-credits {
    text-align: right;
    align-items: flex-end;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.2rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-social-icons a {
    color: var(--text-muted);
    transition: all 0.3s;
    display: flex;
}

.footer-social-icons a:hover {
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem;
    }

    .nav-links {
        display: none;
    }

    header {
        width: 95%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .exp-card {
        padding: 1.5rem;
    }

    .exp-card::before {
        display: none;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }




}

/* Smaller logo sizes on narrow screens */
@media (max-width: 900px) {
    .logo-image {
        height: 32px;
    }
}

@media (max-width: 600px) {
    .logo-image {
        height: 28px;
    }

    header {
        padding: 0.5rem 1rem;
    }
}

/* About Section */
.about-card {
    /* padding: 3rem; */
    padding: 2.5rem;
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    /* margin-bottom: 2rem; */
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.about-card strong {
    color: var(--text-main);
    font-weight: 600;
}

.about-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: var(--bg-surface-hover);
    transform: translateY(10px);
    box-shadow: 0 20px 50px rgba(var(--accent-cyan), 0.15);
}

/* .about-card::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 3rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: all 0.3s ease;
} */

.about-card:hover::before {
    background: var(--accent-cyan);
    transform: scale(1.2);

}

/* About Section Responsive */
@media (max-width: 900px) {
    .about-card {
        padding: 2.5rem;
    }

    .about-card p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .about-card {
        padding: 1.75rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }
}