
    
    body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html, body {
      height: 100%;
      width: 100%;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background: #0a0e27;
      color: #e2e8f0;
    }

    /* ========================================
       LOADING SCREEN
    ======================================== */
    .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                  transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                  visibility 1.2s;
    }
    
    .loading-screen.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: scale(1.1);
    }
    
    .loading-screen.fade-out .loading-content {
      animation: contentFadeOut 1s ease forwards;
    }
    
    @keyframes contentFadeOut {
      0% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
      100% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
      }
    }
    
    body.loading {
      overflow: hidden;
    }
    
    body.loaded {
      animation: pageReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes pageReveal {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .loading-content {
      text-align: center;
      position: relative;
      z-index: 2;
    }
    
    .loader-logo {
      width: 150px;
      height: 150px;
      margin: 0 auto 40px;
      position: relative;
      animation: logoEntrance 1s ease-out;
    }
    
    @keyframes logoEntrance {
      0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
      }
      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }
    
    .loader-icon {
      width: 150px;
      height: 150px;
      background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: #fff;
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
      position: relative;
      animation: logoFloat 3s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
    }
    
    @keyframes logoFloat {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }
    
    @keyframes logoPulse {
      0%, 100% {
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
      }
      50% {
        box-shadow: 0 20px 80px rgba(236, 72, 153, 0.8), 0 0 100px rgba(245, 158, 11, 0.4);
      }
    }
    
    .loader-icon::before {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 35px;
      background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b, #10b981);
      opacity: 0.3;
      filter: blur(20px);
      animation: glowRotate 4s linear infinite;
    }
    
    @keyframes glowRotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    .loader-rings {
      position: absolute;
      inset: -20px;
    }
    
    .loader-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 3px solid transparent;
      animation: ringRotate 3s linear infinite;
    }
    
    .loader-ring:nth-child(1) {
      border-top-color: #6366f1;
      border-right-color: #6366f1;
      animation-duration: 2s;
    }
    
    .loader-ring:nth-child(2) {
      border-bottom-color: #ec4899;
      border-left-color: #ec4899;
      animation-duration: 3s;
      animation-direction: reverse;
      inset: -10px;
    }
    
    .loader-ring:nth-child(3) {
      border-top-color: #f59e0b;
      border-bottom-color: #f59e0b;
      animation-duration: 4s;
      inset: -20px;
    }
    
    @keyframes ringRotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    .loading-text {
      margin-top: 30px;
      animation: textFade 2s ease-in-out infinite;
    }
    
    .loading-text h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 15px;
      letter-spacing: 3px;
    }
    
    .loading-text p {
      color: #94a3b8;
      font-size: 0.95rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    
    @keyframes textFade {
      0%, 100% {
        opacity: 0.6;
      }
      50% {
        opacity: 1;
      }
    }
    
    .loading-bar-container {
      width: 400px;
      max-width: 90vw;
      height: 6px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      margin: 30px auto 0;
      overflow: hidden;
      position: relative;
      box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .loading-bar {
      height: 100%;
      background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b, #10b981);
      background-size: 200% 100%;
      border-radius: 10px;
      width: 0%;
      transition: width 0.3s ease;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
      animation: gradientSlide 2s linear infinite;
      position: relative;
    }
    
    .loading-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: shimmerMove 1.5s infinite;
    }
    
    @keyframes gradientSlide {
      0% {
        background-position: 0% 0%;
      }
      100% {
        background-position: 200% 0%;
      }
    }
    
    @keyframes shimmerMove {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(300%);
      }
    }
    
    .loading-percentage {
      margin-top: 15px;
      font-family: 'Orbitron', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #6366f1;
      text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }
    
    .loading-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 1;
    }
    
    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: #6366f1;
      border-radius: 50%;
      animation: particleFloat 8s linear infinite;
      opacity: 0;
      box-shadow: 0 0 10px currentColor;
    }
    
    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
      }
    }
    
    .particle:nth-child(1) { left: 10%; animation-delay: 0s; background: #6366f1; }
    .particle:nth-child(2) { left: 20%; animation-delay: 0.5s; background: #ec4899; animation-duration: 10s; }
    .particle:nth-child(3) { left: 30%; animation-delay: 1s; background: #f59e0b; animation-duration: 9s; }
    .particle:nth-child(4) { left: 40%; animation-delay: 1.5s; background: #10b981; animation-duration: 11s; }
    .particle:nth-child(5) { left: 50%; animation-delay: 2s; background: #6366f1; }
    .particle:nth-child(6) { left: 60%; animation-delay: 2.5s; background: #ec4899; animation-duration: 10s; }
    .particle:nth-child(7) { left: 70%; animation-delay: 3s; background: #f59e0b; animation-duration: 12s; }
    .particle:nth-child(8) { left: 80%; animation-delay: 3.5s; background: #10b981; animation-duration: 9s; }
    .particle:nth-child(9) { left: 90%; animation-delay: 4s; background: #6366f1; animation-duration: 11s; }
    .particle:nth-child(10) { left: 15%; animation-delay: 4.5s; background: #ec4899; }
    .particle:nth-child(11) { left: 25%; animation-delay: 5s; background: #f59e0b; animation-duration: 10s; }
    .particle:nth-child(12) { left: 35%; animation-delay: 5.5s; background: #10b981; animation-duration: 9s; }
    .particle:nth-child(13) { left: 45%; animation-delay: 6s; background: #6366f1; animation-duration: 11s; }
    .particle:nth-child(14) { left: 55%; animation-delay: 6.5s; background: #ec4899; }
    .particle:nth-child(15) { left: 65%; animation-delay: 7s; background: #f59e0b; animation-duration: 12s; }
    .particle:nth-child(16) { left: 75%; animation-delay: 0.3s; background: #10b981; animation-duration: 10s; }
    .particle:nth-child(17) { left: 85%; animation-delay: 1.3s; background: #6366f1; animation-duration: 9s; }
    .particle:nth-child(18) { left: 95%; animation-delay: 2.3s; background: #ec4899; animation-duration: 11s; }
    .particle:nth-child(19) { left: 5%; animation-delay: 3.3s; background: #f59e0b; }
    .particle:nth-child(20) { left: 50%; animation-delay: 4.3s; background: #10b981; animation-duration: 10s; }
    
    .loading-status {
      margin-top: 20px;
      font-size: 0.85rem;
      color: #64748b;
      font-style: italic;
      min-height: 20px;
      animation: statusFade 0.5s ease-in-out;
    }
    
    @keyframes statusFade {
      from { opacity: 0; transform: translateY(-5px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .loading-orbs {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }
    
    .loading-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.2;
      animation: orbFloat 15s ease-in-out infinite;
    }
    
    .loading-orb:nth-child(1) {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, #6366f1, transparent);
      top: 10%;
      left: -10%;
      animation-duration: 20s;
    }
    
    .loading-orb:nth-child(2) {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, #ec4899, transparent);
      bottom: 10%;
      right: -10%;
      animation-duration: 25s;
      animation-delay: 2s;
    }
    
    .loading-orb:nth-child(3) {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, #f59e0b, transparent);
      top: 50%;
      left: 50%;
      animation-duration: 18s;
      animation-delay: 1s;
    }
    
    @keyframes orbFloat {
      0%, 100% {
        transform: translate(0, 0) scale(1);
      }
      33% {
        transform: translate(50px, -50px) scale(1.2);
      }
      66% {
        transform: translate(-50px, 50px) scale(0.8);
      }
    }

    /* ========================================
       ANIMATED GRADIENT BACKGROUND WITH METEOR RAIN
    ======================================== */
    .bg-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2a2050 50%, #1a1f3a 75%, #0a0e27 100%);
      background-size: 400% 400%;
      animation: gradientShift 20s ease infinite;
      overflow: hidden;
    }
    
    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    
    .bg-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    
    /* Meteor Rain Effect */
    .meteor {
      position: absolute;
      width: 2px;
      height: 100px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
      animation: meteorFall linear infinite;
      opacity: 0;
    }
    
    @keyframes meteorFall {
      0% {
        opacity: 0;
        transform: translateX(0) translateY(0) rotate(45deg);
      }
      5% {
        opacity: 1;
      }
      95% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: translateX(-500px) translateY(500px) rotate(45deg);
      }
    }
    
    /* Multiple meteors with different timings and positions */
    .meteor:nth-child(1) {
      left: 10%;
      top: -100px;
      animation-duration: 3s;
      animation-delay: 0s;
      background: linear-gradient(to bottom, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.2));
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }
    
    .meteor:nth-child(2) {
      left: 25%;
      top: -100px;
      animation-duration: 4s;
      animation-delay: 1.5s;
      background: linear-gradient(to bottom, rgba(236, 72, 153, 0), rgba(236, 72, 153, 0.2));
      box-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
    }
    
    .meteor:nth-child(3) {
      left: 40%;
      top: -100px;
      animation-duration: 3.5s;
      animation-delay: 0.8s;
      background: linear-gradient(to bottom, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.2));
      box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    }
    
    .meteor:nth-child(4) {
      left: 55%;
      top: -100px;
      animation-duration: 4.5s;
      animation-delay: 2s;
      background: linear-gradient(to bottom, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.2));
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
    }
    
    .meteor:nth-child(5) {
      left: 70%;
      top: -100px;
      animation-duration: 3.8s;
      animation-delay: 1.2s;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    
    .meteor:nth-child(6) {
      left: 85%;
      top: -100px;
      animation-duration: 4.2s;
      animation-delay: 2.5s;
      background: linear-gradient(to bottom, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.2));
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    }
    
    .meteor:nth-child(7) {
      left: 15%;
      top: -100px;
      animation-duration: 3.2s;
      animation-delay: 3s;
      background: linear-gradient(to bottom, rgba(6, 182, 212, 0), rgba(6, 182, 212, 0.2));
      box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
    }
    
    .meteor:nth-child(8) {
      left: 35%;
      top: -100px;
      animation-duration: 4.8s;
      animation-delay: 0.5s;
      background: linear-gradient(to bottom, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.2));
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }
    
    .meteor:nth-child(9) {
      left: 50%;
      top: -100px;
      animation-duration: 3.6s;
      animation-delay: 1.8s;
      background: linear-gradient(to bottom, rgba(236, 72, 153, 0), rgba(236, 72, 153, 0.2));
      box-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
    }
    
    .meteor:nth-child(10) {
      left: 65%;
      top: -100px;
      animation-duration: 4.3s;
      animation-delay: 2.8s;
      background: linear-gradient(to bottom, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.2));
      box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    }
    
    .meteor:nth-child(11) {
      left: 80%;
      top: -100px;
      animation-duration: 3.9s;
      animation-delay: 0.3s;
      background: linear-gradient(to bottom, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.2));
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
    }
    
    .meteor:nth-child(12) {
      left: 95%;
      top: -100px;
      animation-duration: 4.6s;
      animation-delay: 3.5s;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    
    .meteor:nth-child(13) {
      left: 5%;
      top: -100px;
      animation-duration: 3.4s;
      animation-delay: 1s;
      background: linear-gradient(to bottom, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.2));
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    }
    
    .meteor:nth-child(14) {
      left: 30%;
      top: -100px;
      animation-duration: 4.1s;
      animation-delay: 2.2s;
      background: linear-gradient(to bottom, rgba(6, 182, 212, 0), rgba(6, 182, 212, 0.2));
      box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
    }
    
    .meteor:nth-child(15) {
      left: 45%;
      top: -100px;
      animation-duration: 3.7s;
      animation-delay: 0.7s;
      background: linear-gradient(to bottom, rgba(99, 102, 241, 0), rgba(99, 102, 241, 0.2));
      box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    }
    
    .meteor:nth-child(16) {
      left: 60%;
      top: -100px;
      animation-duration: 4.4s;
      animation-delay: 3.2s;
      background: linear-gradient(to bottom, rgba(236, 72, 153, 0), rgba(236, 72, 153, 0.2));
      box-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
    }
    
    .meteor:nth-child(17) {
      left: 75%;
      top: -100px;
      animation-duration: 3.3s;
      animation-delay: 1.5s;
      background: linear-gradient(to bottom, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.2));
      box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    }
    
    .meteor:nth-child(18) {
      left: 90%;
      top: -100px;
      animation-duration: 4.7s;
      animation-delay: 2.7s;
      background: linear-gradient(to bottom, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.2));
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
    }
    
    .meteor:nth-child(19) {
      left: 20%;
      top: -100px;
      animation-duration: 3.1s;
      animation-delay: 0.4s;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    
    .meteor:nth-child(20) {
      left: 38%;
      top: -100px;
      animation-duration: 4.9s;
      animation-delay: 3.8s;
      background: linear-gradient(to bottom, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.2));
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    }
    
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.35;
      pointer-events: none;
      z-index: -1;
    }
    
    .orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #6366f1, transparent);
      top: -300px;
      left: -300px;
      animation: float1 25s ease-in-out infinite;
    }
    
    .orb-2 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, #ec4899, transparent);
      bottom: -350px;
      right: -350px;
      animation: float2 30s ease-in-out infinite;
    }
    
    .orb-3 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, #f59e0b, transparent);
      top: 40%;
      right: 10%;
      animation: float3 35s ease-in-out infinite;
    }
    
    @keyframes float1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(150px, -100px) scale(1.1); }
      66% { transform: translate(-100px, 150px) scale(0.9); }
    }
    
    @keyframes float2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(-120px, 100px) scale(1.15); }
      66% { transform: translate(100px, -120px) scale(0.85); }
    }
    
    @keyframes float3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-100px, -100px) scale(1.2); }
    }

    /* ========================================
       TOP NAVIGATION
    ======================================== */
    .floating-nav {
      position: fixed;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      display: flex;
      gap: 15px;
      background: rgba(26, 31, 58, 0.85);
      backdrop-filter: blur(20px);
      padding: 15px 30px;
      border-radius: 60px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }
    
    .nav-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 24px;
      border-radius: 40px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      position: relative;
      overflow: hidden;
      background: transparent;
      border: 1px solid transparent;
    }
    
    .nav-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 40px;
    }
    
    .nav-item:hover::before,
    .nav-item.active::before {
      opacity: 1;
    }
    
    .nav-item:hover,
    .nav-item.active {
      border-color: rgba(99, 102, 241, 0.5);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }
    
    .nav-icon {
      font-size: 1.2rem;
      color: #6366f1;
      transition: all 0.3s ease;
      z-index: 1;
    }
    
    .nav-item:hover .nav-icon,
    .nav-item.active .nav-icon {
      color: #ec4899;
      transform: scale(1.2) rotate(10deg);
    }
    
    .nav-label {
      font-size: 0.95rem;
      font-weight: 600;
      color: #e2e8f0;
      white-space: nowrap;
      max-width: 0;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      opacity: 0;
      z-index: 1;
    }
    
    .nav-item:hover .nav-label {
      max-width: 200px;
      opacity: 1;
      margin-left: 5px;
    }
    
    .nav-item.active .nav-label {
      max-width: 200px;
      opacity: 1;
      margin-left: 5px;
    }

    /* ========================================
       SCROLL PROGRESS
    ======================================== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b, #10b981);
      transform-origin: left;
      transform: scaleX(0);
      z-index: 9999;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }

    /* ========================================
       CONTAINER & SECTIONS
    ======================================== */
    .main-container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }
    
    section {
      min-height: 100vh;
      padding: 100px 0;
      position: relative;
      display: flex;
      align-items: center;
    }
    
    .section-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      margin-bottom: 80px;
      text-align: center;
      background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      animation: titleFloat 3s ease-in-out infinite;
    }
    
    @keyframes titleFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 150px;
      height: 4px;
      background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b);
      border-radius: 10px;
      animation: lineGrow 2s ease-in-out infinite;
    }
    
    @keyframes lineGrow {
      0%, 100% { width: 150px; opacity: 1; }
      50% { width: 250px; opacity: 0.6; }
    }

    /* ========================================
       GLASS CARD
    ======================================== */
    .glass-card {
      background: rgba(26, 31, 58, 0.6);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 35px;
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      position: relative;
      overflow: hidden;
    }
    
    .glass-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transform: rotate(45deg);
      transition: all 0.6s ease;
    }
    
    .glass-card:hover::before {
      animation: shine 1.5s ease infinite;
    }
    
    @keyframes shine {
      0% { transform: rotate(45deg) translateY(-100%); }
      100% { transform: rotate(45deg) translateY(100%); }
    }
    
    .glass-card:hover {
      transform: translateY(-15px) scale(1.02);
      border-color: rgba(99, 102, 241, 0.5);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    }

    /* ========================================
       PROFILE SECTION
    ======================================== */
    .profile-section {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 60px;
      margin-bottom: 80px;
      align-items: center;
    }
    
    .profile-avatar-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .profile-avatar {
      position: relative;
      width: 320px;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .avatar-circle {
      width: 280px;
      height: 280px;
      background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
      color: #fff;
      box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
      position: relative;
      z-index: 2;
      animation: avatarFloat 4s ease-in-out infinite;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .avatar-circle:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 40px 100px rgba(236, 72, 153, 0.6);
    }
    
    @keyframes avatarFloat {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    .avatar-ring,
    .avatar-ring-2 {
      position: absolute;
      border-radius: 50%;
      border: 3px solid transparent;
      animation: ringRotate 20s linear infinite;
    }
    
    .avatar-ring {
      width: 100%;
      height: 100%;
      border-top-color: #6366f1;
      border-right-color: #ec4899;
      animation: ringRotate 15s linear infinite;
    }
    
    .avatar-ring-2 {
      width: 110%;
      height: 110%;
      border-bottom-color: #f59e0b;
      border-left-color: #10b981;
      animation: ringRotate 20s linear infinite reverse;
    }
    
    @keyframes ringRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .profile-bio h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 25px;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .profile-bio p {
      font-size: 1.15rem;
      line-height: 1.9;
      color: #cbd5e1;
      margin-bottom: 20px;
    }
    
    .profile-highlights {
      display: flex;
      gap: 40px;
      margin-top: 35px;
      flex-wrap: wrap;
    }
    
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 25px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 50px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .highlight-item:hover {
      background: rgba(99, 102, 241, 0.2);
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    }
    
    .highlight-item i {
      font-size: 1.8rem;
      color: #6366f1;
    }
    
    .highlight-item span {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 1rem;
    }

    /* ========================================
       HERO SECTION
    ======================================== */
    .hero-section {
      position: relative;
      text-align: center;
    }
    
    .hero-name {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 30px;
      background: linear-gradient(135deg, #fff, #6366f1, #ec4899, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: heroGlow 4s ease-in-out infinite;
      min-height: 1.2em;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .typing-cursor {
      display: inline-block;
      width: 4px;
      height: 0.9em;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      margin-left: 10px;
      animation: blink 1s infinite;
      vertical-align: middle;
    }
    
    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }
    
    @keyframes heroGlow {
      0%, 100% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)); }
      50% { filter: drop-shadow(0 0 40px rgba(236, 72, 153, 0.8)); }
    }
    
    .hero-title {
      font-size: clamp(1.3rem, 3vw, 2rem);
      color: #94a3b8;
      margin-bottom: 20px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      animation: fadeInUp 1s ease 0.3s backwards;
    }
    
    .hero-tagline {
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      color: #cbd5e1;
      margin-bottom: 50px;
      animation: fadeInUp 1s ease 0.6s backwards;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .hero-buttons {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease 0.9s backwards;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 40px;
      font-size: 1.1rem;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
      z-index: -1;
    }
    
    .btn:hover::before {
      transform: translateX(100%);
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: #fff;
      box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    }
    
    .btn-primary:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
    }
    
    .btn-secondary {
      background: transparent;
      color: #6366f1;
      border: 2px solid #6366f1;
    }
    
    .btn-secondary:hover {
      background: #6366f1;
      color: #fff;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    }

    /* ========================================
       TECH STACK MARQUEE
    ======================================== */
    .marquee {
      padding: 40px 0;
      overflow: hidden;
      position: relative;
      background: rgba(26, 31, 58, 0.4);
    }
    
    .marquee-content {
      display: flex;
      animation: marqueeScroll 60s linear infinite;
      width: max-content;
    }
    
    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .marquee:hover .marquee-content {
      animation-play-state: paused;
    }
    
    .tech-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 0 40px;
      font-size: 1.3rem;
      font-weight: 700;
      color: #6366f1;
      white-space: nowrap;
      transition: all 0.3s ease;
    }
    
    .tech-item i {
      font-size: 2rem;
      animation: iconBounce 2s ease-in-out infinite;
    }
    
    @keyframes iconBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    
    .tech-item:hover {
      color: #ec4899;
      transform: scale(1.2);
    }

    /* ========================================
       SKILLS GRID (100+ SKILLS)
    ======================================== */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .skill-category {
      position: relative;
    }
    
    .skill-category h3 {
      font-size: 1.5rem;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
    }
    
    .skill-category h3 i {
      font-size: 1.8rem;
      color: #6366f1;
      animation: iconRotate 4s ease-in-out infinite;
    }
    
    @keyframes iconRotate {
      0%, 100% { transform: rotate(0deg); }
      50% { transform: rotate(360deg); }
    }
    
    .skill-item {
      margin-bottom: 22px;
    }
    
    .skill-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-weight: 600;
    }
    
    .skill-name {
      color: #e2e8f0;
      font-size: 0.95rem;
    }
    
    .skill-percentage {
      color: #6366f1;
      font-weight: 800;
      font-size: 0.95rem;
    }
    
    .skill-bar {
      height: 12px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }
    
    .skill-fill {
      height: 100%;
      background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b);
      border-radius: 10px;
      transition: width 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      width: 0;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
      position: relative;
      overflow: hidden;
    }
    
    .skill-fill::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      animation: skillShine 2s infinite;
    }
    
    @keyframes skillShine {
      0% { left: -100%; }
      100% { left: 200%; }
    }

    /* ========================================
       TIMELINE STYLES
    ======================================== */
    .timeline {
      position: relative;
      padding: 40px 0;
    }
    
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, #6366f1, #ec4899, #f59e0b, #10b981);
      transform: translateX(-50%);
      border-radius: 10px;
    }
    
    .timeline-item {
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      gap: 40px;
      margin-bottom: 60px;
      align-items: center;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
      grid-column: 1;
      text-align: right;
    }
    
    .timeline-item:nth-child(even) .timeline-icon {
      grid-column: 2;
    }
    
    .timeline-item:nth-child(even)::after {
      grid-column: 3;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
      grid-column: 3;
      text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon {
      grid-column: 2;
    }
    
    .timeline-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #fff;
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
      position: relative;
      z-index: 2;
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .timeline-item:hover .timeline-icon {
      transform: scale(1.1);
      box-shadow: 0 25px 60px rgba(99, 102, 241, 0.5);
    }
    
    .timeline-content {
      padding: 0;
    }
    
    .timeline-date {
      display: inline-block;
      padding: 8px 20px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
      border: 1px solid rgba(99, 102, 241, 0.4);
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 700;
      color: #6366f1;
      margin-bottom: 20px;
    }
    
    .timeline-content h3 {
      font-size: 1.8rem;
      color: #fff;
      margin-bottom: 10px;
      font-weight: 800;
    }
    
    .timeline-content h4 {
      font-size: 1.2rem;
      color: #6366f1;
      margin-bottom: 15px;
      font-weight: 600;
    }
    
    .timeline-content p {
      color: #cbd5e1;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    
    /* ========================================
       TESTIMONIALS
    ======================================== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .testimonial-card {
      padding: px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 20px;
      min-height: 380px;
    }

    //Testimonial Star effect here
    
    .testimonial-text {
      flex: 1;
      font-size: 1rem;
      line-height: 1.75;
      color: #cbd5e1;
      font-style: italic;
      position: relative;
      min-height: 120px;
    }
    
    .testimonial-text::before {
      content: '"';
      font-size: 4rem;
      color: rgba(99, 102, 241, 0.2);
      position: absolute;
      top: -20px;
      left: -10px;
      font-family: Georgia, serif;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: auto;
    }
    
    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      flex-shrink: 0;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }
    
    .testimonial-author h4 {
      color: #fff;
      margin: 0 0 5px 0;
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.3;
    }
    
    .testimonial-author p {
      color: #94a3b8;
      margin: 0;
      font-size: 0.88rem;
      line-height: 1.4;
    }
    
    /* ========================================
       PROJECTS GRID
    ======================================== */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }
    
    .project-card {
      height: 100%;
      min-height: 450px;
      position: relative;
      cursor: pointer;
    }
    
    .project-icon {
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      margin: -35px -35px 25px -35px;
      border-radius: 24px 24px 0 0;
      position: relative;
      overflow: hidden;
      transition: all 0.5s ease;
    }
    
    .project-card:hover .project-icon {
      transform: scale(1.1);
    }
    
    .project-icon::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
    }
    
    .project-icon i {
      position: relative;
      z-index: 1;
      color: #fff;
      animation: projectIconFloat 3s ease-in-out infinite;
    }
    
    @keyframes projectIconFloat {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(10deg); }
    }
    
    .project-card h3 {
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 15px;
    }
    
    .project-card p {
      color: #cbd5e1;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    
    .tech-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .tech-badge {
      padding: 8px 16px;
      background: rgba(99, 102, 241, 0.2);
      border: 1px solid rgba(99, 102, 241, 0.4);
      border-radius: 20px;
      font-size: 0.85rem;
      color: #6366f1;
      font-weight: 700;
      transition: all 0.3s ease;
    }
    
    .tech-badge:hover {
      background: #6366f1;
      color: #fff;
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }

    /* ========================================
       STATS SECTION
    ======================================== */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .stat-card {
      text-align: center;
      padding: 40px;
      position: relative;
      cursor: pointer;
    }
    
    .stat-number {
      font-family: 'Orbitron', sans-serif;
      font-size: 4rem;
      font-weight: 900;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-bottom: 15px;
      animation: statPulse 2s ease-in-out infinite;
    }
    
    @keyframes statPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }
    
    .stat-label {
      font-size: 1rem;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
    }

    /* ========================================
       CONTACT SECTION
    ======================================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 50px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 25px;
      padding: 25px;
      background: rgba(99, 102, 241, 0.1);
      border-radius: 20px;
      border: 1px solid rgba(99, 102, 241, 0.3);
      text-decoration: none;
      color: inherit;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      margin-bottom: 20px;
    }
    
    .contact-item:hover {
      background: rgba(99, 102, 241, 0.2);
      transform: translateX(15px) scale(1.02);
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    }
    
    .contact-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      flex-shrink: 0;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
      transition: all 0.4s ease;
    }
    
    .contact-item:hover .contact-icon {
      transform: rotate(360deg) scale(1.2);
    }
    
    .contact-details h4 {
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 5px;
    }
    
    .contact-details p {
      color: #94a3b8;
      margin: 0;
    }
    
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .form-group label {
      font-weight: 700;
      color: #e2e8f0;
      font-size: 0.95rem;
    }
    
    .form-control {
      padding: 16px 22px;
      background: rgba(26, 31, 58, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: #e2e8f0;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
      transform: translateY(-2px);
    }
    
    textarea.form-control {
      resize: vertical;
      min-height: 160px;
    }

    /* ========================================
       CERTIFICATIONS
    ======================================== */
    .cert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .cert-card {
      text-align: center;
      padding: 40px 30px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .cert-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: #fff;
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
      transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .cert-card:hover .cert-icon {
      transform: scale(1.2) rotate(360deg);
      box-shadow: 0 30px 80px rgba(99, 102, 241, 0.6);
    }
    
    .cert-card h3 {
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 10px;
      font-weight: 700;
    }
    
    .cert-card p {
      color: #94a3b8;
      margin-bottom: 15px;
    }
    
    .cert-date {
      display: inline-block;
      padding: 6px 18px;
      background: rgba(99, 102, 241, 0.2);
      border: 1px solid rgba(99, 102, 241, 0.4);
      border-radius: 20px;
      font-size: 0.85rem;
      color: #6366f1;
      font-weight: 700;
    }
    
    /* ========================================
       BLOG SECTION
    ======================================== */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 35px;
      margin-top: 50px;
    }
    
    .blog-card {
      padding: 0;
      overflow: hidden;
      cursor: pointer;
    }
    
    .blog-image {
      width: 100%;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: rgba(255, 255, 255, 0.9);
      position: relative;
      overflow: hidden;
      transition: all 0.5s ease;
    }
    
    .blog-card:hover .blog-image {
      transform: scale(1.1);
    }
    
    .blog-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
    }
    
    .blog-image i {
      position: relative;
      z-index: 1;
    }
    
    .blog-content {
      padding: 30px;
    }
    
    .blog-category {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(99, 102, 241, 0.2);
      border: 1px solid rgba(99, 102, 241, 0.4);
      border-radius: 20px;
      font-size: 0.8rem;
      color: #6366f1;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }
    
    .blog-content h3 {
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 15px;
      font-weight: 700;
      line-height: 1.4;
    }
    
    .blog-content p {
      color: #cbd5e1;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    
    .blog-meta {
      display: flex;
      gap: 25px;
      color: #94a3b8;
      font-size: 0.9rem;
    }
    
    .blog-meta span {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .blog-meta i {
      color: #6366f1;
    }
    
    /* ========================================
       FOOTER
    ======================================== */
    .footer-section {
      background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.98) 100%);
      border-top: 1px solid rgba(99, 102, 241, 0.2);
      margin-top: 100px;
      padding: 80px 0 0;
      position: relative;
      overflow: hidden;
    }
    
    .footer-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #6366f1, #ec4899, #f59e0b, #10b981, #6366f1);
      background-size: 200% 100%;
      animation: gradientMove 3s linear infinite;
    }
    
    @keyframes gradientMove {
      0% { background-position: 0% 0%; }
      100% { background-position: 200% 0%; }
    }
    
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 2fr;
      gap: 80px;
      margin-bottom: 60px;
    }
    
    .footer-brand .footer-logo {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 25px;
    }
    
    .logo-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #fff;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
      animation: logoFloat 3s ease-in-out infinite;
    }
    
    @keyframes logoFloat {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-8px) rotate(5deg); }
    }
    
    .logo-text h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
      margin: 0;
      line-height: 1.2;
    }
    
    .logo-text p {
      font-size: 0.95rem;
      color: #94a3b8;
      margin: 5px 0 0;
      font-weight: 600;
      letter-spacing: 1px;
    }
    
    .footer-tagline {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #cbd5e1;
      margin-bottom: 30px;
      max-width: 500px;
    }
    
    .footer-stats-mini {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
    }
    
    .mini-stat {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 30px;
      transition: all 0.3s ease;
    }
    
    .mini-stat:hover {
      background: rgba(99, 102, 241, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    }
    
    .mini-stat i {
      color: #6366f1;
      font-size: 2.5rem;
    }
    
    .mini-stat span {
      color: #e2e8f0;
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    .footer-links {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    
    .footer-column h4 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    
    .footer-column h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, #6366f1, #ec4899);
      border-radius: 10px;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 12px;
    }
    
    .footer-column ul li a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }
    
    .footer-column ul li a i {
      font-size: 0.7rem;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }
    
    .footer-column ul li a:hover {
      color: #6366f1;
      transform: translateX(5px);
    }
    
    .footer-column ul li a:hover i {
      opacity: 1;
      transform: translateX(0);
    }
    
    .footer-newsletter {
      background: rgba(99, 102, 241, 0.08);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 24px;
      padding: 40px;
      margin-bottom: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .footer-newsletter::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
      border-radius: 50%;
    }
    
    .newsletter-content {
      display: flex;
      gap: 25px;
      align-items: center;
      flex: 1;
    }
    
    .newsletter-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #fff;
      flex-shrink: 0;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
      animation: newsletterPulse 2s ease-in-out infinite;
    }
    
    @keyframes newsletterPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }
    
    .newsletter-text h4 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    
    .newsletter-text p {
      color: #94a3b8;
      margin: 0;
      font-size: 0.95rem;
    }
    
    .newsletter-form {
      display: flex;
      gap: 15px;
      flex: 1;
      max-width: 500px;
      position: relative;
      z-index: 1;
    }
    
    .newsletter-form input {
      flex: 1;
      padding: 18px 25px;
      background: rgba(26, 31, 58, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      color: #e2e8f0;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
      background: rgba(26, 31, 58, 0.95);
    }
    
    .newsletter-form button {
      padding: 18px 35px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border: none;
      border-radius: 50px;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }
    
    .newsletter-form button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
    }
    
    .newsletter-form button i {
      transition: transform 0.3s ease;
    }
    
    .newsletter-form button:hover i {
      transform: translateX(5px);
    }
    
    .footer-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
      margin: 50px 0 40px;
    }
    
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 40px;
      flex-wrap: wrap;
      gap: 30px;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .social-icon {
      width: 50px;
      height: 50px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6366f1;
      text-decoration: none;
      font-size: 1.2rem;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      position: relative;
    }
    
    .social-icon::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }
    
    .social-icon:hover {
      color: #fff;
      transform: translateY(-5px) scale(1.15) rotate(10deg);
      box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    }
    
    .social-icon:hover::before {
      opacity: 1;
    }
    
    .footer-copyright {
      text-align: center;
      flex: 1;
    }
    
    .footer-copyright p {
      color: #94a3b8;
      margin: 5px 0;
      font-size: 0.95rem;
    }
    
    .footer-copyright .highlight {
      color: #6366f1;
      font-weight: 700;
    }
    
    .footer-love {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    
    .footer-love i {
      color: #ec4899;
      animation: heartBeat 1.5s ease-in-out infinite;
    }
    
    @keyframes heartBeat {
      0%, 100% { transform: scale(1); }
      10%, 30% { transform: scale(1.2); }
      20%, 40% { transform: scale(1); }
    }
    
    .footer-badges {
      display: flex;
      gap: 15px;
    }
    
    .badge {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .badge::before {
      content: attr(data-tooltip);
      position: absolute;
      bottom: 120%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(26, 31, 58, 0.95);
      color: #e2e8f0;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.85rem;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }
    
    .badge:hover::before {
      opacity: 1;
      bottom: 130%;
    }
    
    .badge:hover {
      background: rgba(99, 102, 241, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    }
    
    .badge i {
      color: #6366f1;
      font-size: 1.1rem;
    }
    
    .badge i.fa-circle {
      color: #10b981;
      animation: statusBlink 2s ease-in-out infinite;
    }
    
    @keyframes statusBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
    
    .badge span {
      color: #e2e8f0;
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    .back-to-top {
      position: fixed;
      bottom: 40px;
      right: 40px;
      width: 55px;
      height: 55px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 1.3rem;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      z-index: 1000;
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      transform: translateY(-10px) scale(1.15);
      box-shadow: 0 20px 50px rgba(99, 102, 241, 0.6);
    }
    
    .back-to-top i {
      animation: arrowBounce 2s ease-in-out infinite;
    }
    
    @keyframes arrowBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 1024px) {
      .main-container {
        padding: 0 30px;
      }
      
      .floating-nav {
        right: 20px;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .profile-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
      
      .profile-bio {
        text-align: left;
      }
      
      .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      
      .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
      
      .footer-newsletter {
        flex-direction: column;
        text-align: center;
      }
      
      .newsletter-content {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
    
    @media (max-width: 768px) {
      .main-container {
        padding: 0 20px;
      }
      
      section {
        padding: 80px 0;
      }
      
      .floating-nav {
        bottom: 20px;
        top: auto;
        padding: 12px 20px;
        gap: 8px;
      }
      
      .nav-item {
        padding: 10px 15px;
      }
      
      .nav-icon {
        font-size: 1rem;
      }
      
      .nav-item .nav-label {
        display: none;
      }
      
      .timeline::before {
        left: 40px;
      }
      
      .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 30px;
      }
      
      .timeline-item:nth-child(even) .timeline-content,
      .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 2;
        text-align: left;
      }
      
      .timeline-item:nth-child(even) .timeline-icon,
      .timeline-item:nth-child(odd) .timeline-icon {
        grid-column: 1;
      }
      
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      
      .skills-grid,
      .projects-grid {
        grid-template-columns: 1fr;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
      
      .profile-highlights {
        justify-content: center;
      }
      
      .footer-links {
        grid-template-columns: 1fr;
      }
      
      .newsletter-form {
        flex-direction: column;
        max-width: 100%;
      }
      
      .newsletter-form button {
        width: 100%;
        justify-content: center;
      }
      
      .footer-social {
        justify-content: center;
      }
      
      .back-to-top {
        bottom: 100px;
        right: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .hero-name {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .tech-item {
        font-size: 1rem;
        padding: 0 25px;
      }
      
      .tech-item i {
        font-size: 1.5rem;
      }
    }
  
@view-transition { navigation: auto; }

        @keyframes pulse {
          0%, 100% { transform: scale(1); }
          50% { transform: scale(1.05); }
        }
      

        @keyframes slideIn {
          from {
            width: 0;
            opacity: 0;
          }
          to {
            opacity: 1;
          }
        }
      

        @keyframes shimmer {
          0%, 100% { transform: translateX(-100%); }
          50% { transform: translateX(400%); }
        }
        
        @keyframes spin {
          from { transform: rotate(0deg); }
          to { transform: rotate(360deg); }
        }
        
        @keyframes bounce {
          0%, 100% { transform: translateY(0); }
          50% { transform: translateY(-15px); }
        }
        
        @keyframes float {
          0%, 100% { transform: translateY(0); }
          50% { transform: translateY(-10px); }
        }
        
        @keyframes blink {
          0%, 50%, 100% { opacity: 1; }
          25%, 75% { opacity: 0.3; }
        }
      

      @keyframes floatSlow {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(30px, -30px); }
      }
      
      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      
      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      
      .contact-item:hover .contact-icon > div {
        transform: translateX(100%);
      }
      
      .contact-form button:hover > div {
        transform: translateX(100%);
      }
    