
      @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

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

      body {
        font-family: "Inter", sans-serif;
        overflow-x: hidden;
        background: linear-gradient(
          135deg,
          #0f0f23 0%,
          #1a1a2e 50%,
          #16213e 100%
        );
        color: white;
      }

      html{
        max-width: 100vw;
        overflow-x: hidden;
      }

      .gradient-text {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .glass-effect {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
      }

      .shape {
        position: absolute;
        opacity: 0.1;
      }

      .shape-1 {
        width: 200px;
        height: 200px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        border-radius: 50%;
        top: 10%;
        left: 10%;
      }

      .shape-2 {
        width: 150px;
        height: 150px;
        background: linear-gradient(45deg, #f093fb, #f5576c);
        border-radius: 30%;
        top: 60%;
        right: 10%;
      }

      .shape-3 {
        width: 100px;
        height: 100px;
        background: linear-gradient(45deg, #4facfe, #00f2fe);
        border-radius: 20%;
        bottom: 20%;
        left: 20%;
      }

      .data-visualization {
        position: relative;
        overflow: hidden;
      }

      .chart-bar {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 4px;
        margin: 2px 0;
      }

      .skill-orbit {
        position: relative;
        width: 300px;
        height: 300px;
        margin: 0 auto;
      }

      .orbit-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
      }

      .orbit-item {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
      }

      .typewriter {
        border-right: 2px solid #667eea;
        animation: blink 1s infinite;
      }

      @keyframes blink {
        0%,
        50% {
          border-color: transparent;
        }
        51%,
        100% {
          border-color: #667eea;
        }
      }

      .progress-ring {
        transform: rotate(-90deg);
      }

      .progress-ring-circle {
        stroke-dasharray: 251.2;
        stroke-dashoffset: 251.2;
        transition: stroke-dashoffset 0.5s ease-in-out;
      }

      .card-hover {
        transition: all 0.3s ease;
      }

      .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
      }

      .parallax-bg {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      }

      .custom-scrollbar::-webkit-scrollbar {
        width: 8px;
      }

      .custom-scrollbar::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
      }

      .custom-scrollbar::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 4px;
      }
    

      @media (max-width: 375px){
        .contact-form{
          max-width: 330px;
        }

        .gmail-styling{
          font-size: 14px;
        }
      }

      
      @media (max-width: 425px){
        .contact-form{
          max-width: 330px;
        }

        .gmail-styling{
          font-size: 14px;
        }
      }

      @media (max-width: 768px){
        .contact-form{
          max-width: 375px;
        }

        .gmail-styling{
          font-size: 14px;
        }
      }