 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background: #0b0d15;
      color: #f0f4ff;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: default;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    ul {
      list-style: none;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    /* ===== CUSTOM CURSOR (light) ===== */
    body {
      cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="30" viewBox="0 0 24 30"><circle cx="12" cy="12" r="10" fill="rgba(120,80,255,0.3)" stroke="%239f7aff" stroke-width="2"/></svg>') 12 12, auto;
    }
    /* ===== LOADING ===== */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #0b0d15;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s;
    }
    #loader.hide {
      opacity: 0;
      visibility: hidden;
    }
    .loader-ring {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 6px solid transparent;
      border-top: 6px solid #8b5cf6;
      border-right: 6px solid #3b82f6;
      animation: spin 1s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    /* ===== FLOATING SHAPES ===== */
    .floating-shapes {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    .shape {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59,130,246,0.15), rgba(139,92,246,0.05));
      filter: blur(40px);
      animation: floatShape 18s infinite alternate ease-in-out;
    }
    .shape:nth-child(1) { width: 300px; height: 300px; top: 10%; left: -5%; }
    .shape:nth-child(2) { width: 400px; height: 400px; bottom: 10%; right: -8%; animation-duration: 22s; }
    .shape:nth-child(3) { width: 200px; height: 200px; top: 50%; left: 60%; animation-duration: 14s; }
    @keyframes floatShape {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(40px, -30px) scale(1.2); }
    }
    /* ===== GLASSMORPHISM UTILITY ===== */
    .glass {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 24px;
    }
    /* ===== NAV ===== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 14px 0;
      background: rgba(11, 13, 21, 0.7);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.03);
      transition: 0.3s;
    }
    nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .nav-links a {
      transition: 0.3s;
      opacity: 0.7;
    }
    .nav-links a:hover {
      opacity: 1;
      color: #a78bfa;
    }
    .hamburger {
      display: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: #f0f4ff;
    }
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(11,13,21,0.95);
        backdrop-filter: blur(20px);
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-120%);
        transition: 0.4s;
        border-bottom: 1px solid rgba(255,255,255,0.05);
      }
      .nav-links.open {
        transform: translateY(0);
      }
      .hamburger {
        display: block;
      }
    }
    /* ===== SECTIONS ===== */
    section {
      position: relative;
      z-index: 2;
      padding: 90px 0 70px;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 40px;
      background: linear-gradient(135deg, #c4b5fd, #818cf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .hero-content h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .hero-content h1 span {
      background: linear-gradient(135deg, #a78bfa, #60a5fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-content .tagline {
      font-size: 1.2rem;
      opacity: 0.8;
      margin: 10px 0 20px;
    }
    .hero-typed {
      font-size: 1.6rem;
      font-weight: 500;
      color: #a78bfa;
      min-height: 50px;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 25px;
    }
    .btn {
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
      background: rgba(255,255,255,0.05);
      color: #f0f4ff;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .btn-primary {
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
      border: none;
      color: #fff;
      box-shadow: 0 8px 20px rgba(59,130,246,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(59,130,246,0.5);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.08);
    }
    .hero-image {
      display: flex;
      justify-content: center;
    }
    .profile-img {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid rgba(255,255,255,0.1);
      box-shadow: 0 25px 50px -12px rgba(59,130,246,0.4);
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    }
    @media (max-width: 768px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-content h1 { font-size: 2.5rem; }
      .hero-buttons { justify-content: center; }
      .profile-img { width: 200px; height: 200px; }
    }
    /* ===== ABOUT ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
    }
    .about-text p {
      opacity: 0.85;
      margin-bottom: 16px;
    }
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .info-item {
      background: rgba(255,255,255,0.03);
      padding: 12px 16px;
      border-radius: 16px;
      border-left: 3px solid #8b5cf6;
    }
    .info-item i { color: #8b5cf6; margin-right: 10px; width: 20px; }
    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
      .info-grid { grid-template-columns: 1fr; }
    }
    /* ===== SKILLS ===== */
    .skills-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .skill-card {
      padding: 16px 20px;
      background: rgba(255,255,255,0.03);
      border-radius: 20px;
      transition: 0.3s;
    }
    .skill-card:hover {
      background: rgba(255,255,255,0.07);
      transform: translateY(-4px);
    }
    .skill-info {
      display: flex;
      justify-content: space-between;
      font-weight: 500;
      margin-bottom: 6px;
    }
    .skill-bar {
      height: 8px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      overflow: hidden;
    }
    .skill-fill {
      height: 100%;
      border-radius: 10px;
      background: linear-gradient(90deg, #8b5cf6, #3b82f6);
      width: 0%;
      transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    /* ===== SERVICES ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      padding: 28px 20px;
      text-align: center;
      background: rgba(255,255,255,0.02);
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.04);
      transition: 0.3s;
    }
    .service-card:hover {
      background: rgba(255,255,255,0.06);
      transform: translateY(-6px);
      border-color: rgba(139,92,246,0.3);
    }
    .service-card i {
      font-size: 2.8rem;
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }
    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 500px) {
      .services-grid { grid-template-columns: 1fr; }
    }
    /* ===== EXPERIENCE & EDUCATION ===== */
    .exp-edu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .timeline-card {
      background: rgba(255,255,255,0.02);
      padding: 24px;
      border-radius: 24px;
      border-left: 4px solid #8b5cf6;
    }
    .timeline-card h3 { font-size: 1.3rem; }
    .timeline-card .sub { opacity: 0.7; font-size: 0.9rem; }
    .timeline-card ul { margin-top: 12px; padding-left: 18px; list-style: disc; opacity: 0.8; }
    .timeline-card ul li { margin-bottom: 4px; }
    @media (max-width: 768px) {
      .exp-edu-grid { grid-template-columns: 1fr; }
    }
    /* ===== PROJECTS ===== */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 50px;
    }
    .project-card {
      background: rgba(255,255,255,0.02);
      border-radius: 24px;
      padding: 24px 20px;
      border: 1px solid rgba(255,255,255,0.04);
      transition: 0.3s;
    }
    .project-card:hover {
      background: rgba(255,255,255,0.06);
      transform: translateY(-8px);
      border-color: rgba(139,92,246,0.3);
    }
    .project-card h4 { font-size: 1.3rem; margin-bottom: 6px; }
    .project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
    .project-tags span {
      background: rgba(139,92,246,0.15);
      padding: 4px 14px;
      border-radius: 30px;
      font-size: 0.7rem;
      font-weight: 500;
      color: #c4b5fd;
    }
    .project-img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #1e1b2e, #2a2640);
      border: 1px solid rgba(255,255,255,0.04);
    }
    .project-btns{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.btn{
    flex:1;
    text-align:center;
    padding:12px 18px;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
    font-size:15px;
    }

    .live-btn{
        background:#7c5cff;
        color:#fff;
    }

    .live-btn:hover{
        background:#9d85ff;
        transform:translateY(-3px);
    }

    .code-btn{
        border:2px solid #7c5cff;
        color:#7c5cff;
        background:transparent;
    }

    .code-btn:hover{
        background:#7c5cff;
        color:#fff;
        transform:translateY(-3px);
    }
    @media (max-width: 768px) {
      .projects-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 500px) {
      .projects-grid { grid-template-columns: 1fr; }
    }
    /* ===== CONTACT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255,255,255,0.02);
      padding: 16px 20px;
      border-radius: 20px;
      margin-bottom: 14px;
      transition: 0.2s;
    }
    .contact-item i { font-size: 1.6rem; width: 40px; color: #8b5cf6; }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 14px 18px;
      margin-bottom: 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 20px;
      color: #f0f4ff;
      font-family: 'Poppins', sans-serif;
      transition: 0.3s;
    }
    .contact-form input:focus, .contact-form textarea:focus {
      outline: none;
      border-color: #8b5cf6;
      background: rgba(255,255,255,0.07);
    }
    .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 20px;
    }
    .social-icons a {
      background: rgba(255,255,255,0.04);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      transition: 0.3s;
    }
    .social-icons a:hover {
      background: rgba(139,92,246,0.2);
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; }
    }
    /* ===== FOOTER ===== */
    footer {
      padding: 30px 0;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.04);
      opacity: 0.6;
      font-size: 0.9rem;
    }
    /* ===== BACK TO TOP ===== */
    #backTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      background: linear-gradient(135deg, #8b5cf6, #3b82f6);
      color: #fff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      font-size: 1.4rem;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(59,130,246,0.4);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    #backTop.show {
      opacity: 1;
      visibility: visible;
    }