  :root {
    --bg: #080b10;
    --surface: #0d1117;
    --surface2: #131920;
    --accent: #00e5ff;
    --accent2: #7c3aed;
    --accent3: #f59e0b;
    --text: #e8edf5;
    --muted: #6b7a99;
    --border: rgba(0,229,255,0.12);
    --glow: 0 0 40px rgba(0,229,255,0.15);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 40px; height: 40px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.5;
  }

  /* NOISE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 20px 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(8,11,16,0.7);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }
  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    padding: 8px 22px;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    border-radius: 4px;
    font-size: 0.78rem !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent); color: var(--bg) !important; }
  .nav-cta::after { display: none !important; }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 6vw 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,229,255,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124,58,237,0.08) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  }
  .hero-content { position: relative; z-index: 2; max-width: 800px; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    background: rgba(0,229,255,0.05);
    animation: fadeSlideUp 0.8s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }
  .hero-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    animation: fadeSlideUp 0.8s 0.1s ease both;
  }
  .hero-name .line1 { display: block; color: var(--text); }
  .hero-name .line2 {
    display: block;
    -webkit-text-stroke: 1.5px var(--accent);
    color: transparent;
    position: relative;
  }
  .hero-title {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s 0.2s ease both;
  }
  .hero-title strong { color: var(--accent); font-weight: 500; }
  .hero-desc {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.8s 0.3s ease both;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.4s ease both;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(0,229,255,0.3);
    cursor: none;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0,229,255,0.5);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: border-color 0.2s, transform 0.2s;
    cursor: none;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeSlideUp 1s 0.8s ease both;
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  .hero-float {
    position: absolute;
    right: 6vw;
    top: 50%;
    transform: translateY(-50%);
    display: none;
  }
  @media(min-width: 1024px) { .hero-float { display: block; } }

  .float-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    backdrop-filter: blur(20px);
    animation: float 4s ease-in-out infinite;
    min-width: 200px;
  }
  .float-card:nth-child(2) { animation-delay: -2s; margin-left: 40px; }
  .float-card:nth-child(3) { animation-delay: -1s; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .float-label { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
  .float-value { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--accent); }
  .float-sub { font-size: 0.8rem; color: var(--muted); }

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

  /* SECTIONS */
  section { padding: 100px 6vw; }
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .section-title em {
    font-style: normal;
    -webkit-text-stroke: 1px var(--accent);
    color: transparent;
  }

  /* ABOUT */
  #about { background: var(--surface); position: relative; overflow: hidden; }
  #about::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media(max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
  .about-img-wrap {
    position: relative;
  }
  .about-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 360px;
    background: linear-gradient(135deg, var(--surface2) 0%, rgba(0,229,255,0.05) 100%);
    border-radius: 20px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, transparent 40%, rgba(0,229,255,0.04) 100%);
  }
  .about-avatar-icon {
    font-size: 5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }
  .about-avatar-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    position: relative;
    z-index: 1;
  }
  .about-avatar-role {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    margin-top: 4px;
  }
  .about-corner {
    position: absolute;
    width: 60px; height: 60px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  .about-corner.tl { top: -20px; left: -20px; }
  .about-corner.br { bottom: -20px; right: -20px; }

  .about-text .section-desc {
    color: var(--muted);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .stat-box {
    text-align: center;
    padding: 20px;
    background: var(--surface2);
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
  }
  .stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }

  /* SKILLS */
  #skills { background: var(--bg); }
  .skills-intro {
    max-width: 550px;
    margin-bottom: 60px;
  }
  .skills-intro p { color: var(--muted); line-height: 1.8; margin-top: 16px; }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  .skill-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
  }
  .skill-pill:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,229,255,0.1);
  }
  .skill-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
  .skill-name { font-size: 0.85rem; font-weight: 500; color: var(--text); display: block; }
  .skill-level {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    display: block;
    margin-top: 4px;
  }

  .skills-bars { margin-top: 60px; }
  .skills-bars-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text);
  }
  .bar-item { margin-bottom: 20px; }
  .bar-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
  .bar-name { font-size: 0.85rem; color: var(--text); font-weight: 500; }
  .bar-pct { font-size: 0.8rem; color: var(--accent); font-family: 'Syne', sans-serif; font-weight: 700; }
  .bar-track {
    height: 4px;
    background: var(--surface2);
    border-radius: 100px;
    overflow: hidden;
  }
  .bar-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.23,1,0.32,1);
  }
  .bar-fill.animated { transform: scaleX(1); }

  /* PROJECTS */
  #projects { background: var(--surface); }
  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
  }
  @media(max-width: 480px) { .projects-grid { grid-template-columns: 1fr; } }

  .project-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,229,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,229,255,0.08);
  }
  .project-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .project-thumb-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s;
  }
  .project-card:hover .project-thumb-bg { transform: scale(1.05); }
  .project-thumb-label {
    position: relative;
    z-index: 2;
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    opacity: 0.9;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }
  .project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
  }
  .project-card:hover .project-overlay { opacity: 1; }
  .project-link-btn {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: transform 0.2s;
  }
  .project-link-btn:hover { transform: scale(1.05); }
  .plb-live { background: var(--accent); color: var(--bg); }
  .plb-code { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); }

  .project-body { padding: 24px; }
  .project-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
  .tag {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
    background: rgba(0,229,255,0.08);
    color: var(--accent);
    border: 1px solid rgba(0,229,255,0.15);
  }
  .project-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
  }
  .project-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

  /* CONTACT */
  #contact { background: var(--bg); position: relative; overflow: hidden; }
  #contact::before {
    content: '';
    position: absolute;
    bottom: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, transparent 70%);
  }
  .contact-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .contact-inner .section-tag { justify-content: center; }
  .contact-inner .section-tag::before { display: none; }
  .contact-inner .section-tag::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  .contact-inner .section-title { margin-bottom: 16px; }
  .contact-inner p { color: var(--muted); max-width: 500px; margin: 0 auto 50px; line-height: 1.8; }

  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
  }
  .contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: none;
  }
  .contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0,229,255,0.1);
  }
  .cc-icon { font-size: 1.8rem; }
  .cc-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
  .cc-value { font-size: 0.9rem; font-weight: 500; color: var(--text); }

  .contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  @media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .form-group input, .form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
  }
  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
  }
  .form-group textarea { height: 120px; }
  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: none;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }
  .form-submit:hover { box-shadow: 0 0 40px rgba(0,229,255,0.4); transform: translateY(-1px); }
  .form-success {
    display: none;
    text-align: center;
    padding: 20px;
    color: var(--accent);
    font-weight: 500;
  }

  /* FOOTER */
  footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 30px 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
  }
  .footer-logo span { color: var(--accent); }
  footer p { font-size: 0.8rem; color: var(--muted); }
  .footer-socials { display: flex; gap: 16px; }
  .footer-socials a {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.2s, color 0.2s;
    cursor: none;
  }
  .footer-socials a:hover { border-color: var(--accent); color: var(--accent); }

  /* REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* MOBILE NAV */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s;
  }
  @media(max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 100px; }

  /* TYPED */
  .typed-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--accent);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 1s infinite;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }





  .project-card {
  position: relative;
}

 


.project-link-btn {
  cursor: pointer;
}




a, button {
  cursor: pointer !important;
}








.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

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

.project-link-btn {
  cursor: pointer;
}


.project-card {
  position: relative;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

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

.project-link-btn {
  padding: 10px 20px;
  cursor: pointer;
}




.about-avatar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ya contain use kar sakte ho */
}



.about-avatar-icon {
  width: 270px;
  height: 350px;
  overflow: hidden;
}