    :root {
      --bg: #030712;
      --card: rgba(17, 24, 39, 0.7);
      --text: #f3f4f6;
      --muted: #9ca3af;
      --accent: #38bdf8;
      --border: rgba(255, 255, 255, 0.1);
      --glow: 0 0 25px rgba(56, 189, 248, 0.2);
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Background Shrink & Animation */
    body::before {
      content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 60%);
      z-index: -1;
      animation: shrinkBg 8s infinite alternate ease-in-out;
    }

    @keyframes shrinkBg {
      0% { transform: scale(1.2); opacity: 0.8; }
      100% { transform: scale(1); opacity: 0.4; }
    }

    /* Gradient Orbs */
    .orb {
      position: fixed;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
      z-index: -1;
      filter: blur(60px);
    }
    .orb-1 { top: -100px; left: -100px; }
    .orb-2 { bottom: -100px; right: -100px; }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0; width: 100%;
      background: rgba(3, 7, 18, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      z-index: 2000;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo { font-size: 1.2rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
    
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
    .nav-links a:hover { color: var(--accent); }

    /* Mobile Menu Toggle */
    .menu-btn { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

    .container { max-width: 1100px; margin: auto; padding: 0 24px; }

    /* Hero - Desktop Side-by-Side */
    .hero { 
      padding: 180px 0 100px; 
      display: grid; 
      grid-template-columns: 1.2fr 0.8fr; 
      gap: 40px; 
      align-items: center; 
    }
    .hero-content { text-align: left; }
    .hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -2px; }
    .hero-content .subtitle { font-size: 1.2rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 600px; }
    .highlight { color: var(--accent); background: linear-gradient(90deg, #38bdf8, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

    .hero-img {
      position: relative; width: 320px; height: 320px; margin: auto;
    }
    .hero-img img { 
      width: 100%; height: 100%; object-fit: cover; 
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      border: 2px solid var(--border);
      animation: morphing 10s infinite alternate;
    }
    @keyframes morphing {
      0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
      100% { border-radius: 50%; }
    }

    /* Stats Grid */
    .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; }
    .stat-card { text-align: center; padding: 20px 10px; background: rgba(255,255,255,0.03); border-radius: 16px; border: 1px solid var(--border); }
    .stat-card h4 { font-size: 1.5rem; color: var(--accent); margin-bottom: 5px; }
    .stat-card p { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; }

    /* Section Styling */
    section { padding: 80px 0; }
    h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent); margin-bottom: 2.5rem; display: flex; align-items: center; gap: 15px; }
    h2::after { content: ""; height: 1px; background: var(--border); flex: 1; }

    .card {
      background: var(--card); backdrop-filter: blur(10px);
      border: 1px solid var(--border); border-radius: 24px;
      padding: 30px; transition: 0.4s ease;
    }
    .card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--glow); }

    /* Skills */
    .skill-tag {
      display: inline-block; padding: 8px 16px; background: rgba(56, 189, 248, 0.1);
      border: 1px solid rgba(56, 189, 248, 0.2); border-radius: 8px;
      font-size: 0.85rem; margin: 4px; color: var(--accent);
    }

    /* Experience */
    .timeline { border-left: 1px solid var(--border); padding-left: 30px; }
    .milestone { position: relative; margin-bottom: 50px; }
    .milestone::before {
      content: ""; position: absolute; left: -36px; top: 5px;
      width: 10px; height: 10px; background: var(--accent); border-radius: 50%;
      box-shadow: 0 0 10px var(--accent);
    }

    /* Blogs */
    .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .blog-card { overflow: hidden; height: 100%; display: flex; flex-direction: column; }
    .blog-img-box { height: 200px; overflow: hidden; position: relative; }
    .blog-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
    .blog-card:hover .blog-img-box img { transform: scale(1.1); }

    /* Responsive Logic */
    @media (max-width: 992px) {
      .hero { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
      .hero-img { margin: 0 auto 40px; width: 280px; height: 280px; order: -1; }
      .hero-content { text-align: center; }
      .stats-grid { gap: 10px; }
    }

    @media (max-width: 768px) {
      .menu-btn { display: block; }
      .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        flex-direction: column; background: var(--bg); padding: 20px;
        text-align: center; border-bottom: 1px solid var(--border);
      }
      .nav-links.active { display: flex; }
      .stats-grid { grid-template-columns: 1fr; }
      h1 { font-size: 2.5rem; }
      section { padding: 50px 0; }
    }

    footer { text-align: center; padding: 60px 0; color: var(--muted); font-size: 0.8rem; border-top: 1px solid var(--border); }
