body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
  }
  
  #background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .content {
    position: relative;
    z-index: 1;
  }
  
  .skill-item {
    transition: all 0.3s ease;
  }
  
  .skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .social-icon {
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.2);
  }
   /* Language Circles */
   .language-circle {
    position: relative;
    width: 120px;
    height: 120px;
  }
  
  .outer-circle {
    width: 120px;
    height: 120px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #2A2A2E;
  }
  
  .inner-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1F1F23;
  }
  
  .language-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  
  .language-percent {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
  }
  
  .language-name {
    font-size: 12px;
    color: white;
  }
  
  .language-level {
    font-size: 10px;
    color: #999;
  }
  
  .language-svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
  }
  
  .language-circle-bg {
    fill: none;
    stroke: #333;
    stroke-width: 10;
  }
  
  .language-circle-progress {
    fill: none;
    stroke: url(#GradientBangla);
    stroke-width: 10;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease;
  }
  
  .bangla-circle {
    stroke-dashoffset: 0; /* 100% */
  }
  
  .english-circle {
    stroke: #4FC3F7;
    stroke-dashoffset: 50.894; /* 85% */
  }
  
  .hindi-circle {
    stroke: #7E57C2;
    stroke-dashoffset: 135.717; /* 60% */
  }
  
  /* Skill Bars */
  .skill-bar {
    width: 100%;
  }
  
  .skill-progress {
    height: 100%;
    background: linear-gradient(to right, #FFD700, #FFA500);
    width: 0%;
    transition: width 1.5s ease-in-out;
  }
  
  .python-progress {
    width: 90%;
  }
  
  .erpnext-progress {
    width: 85%;
  }
  
  .flutter-progress {
    width: 75%;
  }
  
  /* Profile Image */
  .profile-image {
    position: relative;
    z-index: 10;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
  
  /* Name Animation */
  .hero-name {
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
  }
  
  .hero-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #FFD700, #FFA500);
    transition: width 0.5s ease;
  }
  
  .hero-name:hover::after {
    width: 100%;
  }
  
  /* Animation for skill bars */
  @keyframes fillBar {
    0% { width: 0%; }
    100% { width: 100%; }
  }
  
  /* Social Icons */
  .social-icon {
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-5px);
  }
  /* Circular profile image with animation */
  .profile-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(234, 179, 8, 0.3);
    transition: transform 0.5s ease;
  }
  
  .profile-container:hover {
    transform: scale(1.05);
  }
  
  .profile-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 4px solid #eab308;
    animation: glowPulse 3s infinite;
  }
  
  @keyframes glowPulse {
    0% { box-shadow: 0 0 15px rgba(234, 179, 8, 0.5); }
    50% { box-shadow: 0 0 30px rgba(234, 179, 8, 0.8); }
    100% { box-shadow: 0 0 15px rgba(234, 179, 8, 0.5); }
  }
  
  /* Language circle styling */
  .language-circle {
    position: relative;
    width: 120px;
    height: 120px;
  }
  
  .outer-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .inner-circle {
    width: 80%;
    height: 80%;
    background-color: #1F1F23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .language-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .language-percent {
    font-size: 1.2rem;
    font-weight: bold;
    color: #eab308;
  }
  
  .language-name {
    font-size: 0.8rem;
    font-weight: bold;
  }
  
  .language-level {
    font-size: 0.6rem;
    color: #9ca3af;
  }
  
  .language-svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .language-circle-bg {
    fill: none;
    stroke: #4b5563;
    stroke-width: 7px;
  }
  
  .language-circle-progress {
    fill: none;
    stroke: url(#GradientBangla);
    stroke-width: 7px;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2s ease;
  }
  
  /* Skill bar styling */
  .skill-bar {
    margin-bottom: 1.5rem;
  }
  
  .skill-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #eab308, #f59e0b);
    transition: width 1.5s ease-out;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column-reverse;
      padding: 2rem 1rem;
    }
    
    .profile-container {
      width: 250px;
      height: 250px;
      margin-bottom: 2rem;
    }
    
    .language-section {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
  }