@import url('https://fonts.googleapis.com/css2?family=SUSE:ital,wght@0,100..900;1,100..900&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SUSE', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
             background-image: url("images/cover-f.png");
            background-repeat:no-repeat;
            background-position: right top;
            background-size: 785px;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #9d51e3;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.15s ease;
            transform: translate(-50%, -50%);
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            outline-color: #fff1;
            outline-offset: 0px;
            background-color: #0000;
            outline-width: 1px;
            outline-style: solid;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -1px;
            img{
               width: 38px;
            }
        }

        nav ul {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #9d51e3;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            max-width: 100% !important;
        }

        .hero h1 {
            font-size: clamp(40px, 8vw, 120px);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            /* background: linear-gradient(45deg, #9d51e3, #9d51e3); */
            /* -webkit-background-clip: text; */
            /* -webkit-text-fill-color: transparent; */
            /* background-clip: text; */
        }

        .hero p {
            font-size: clamp(24px, 2vw, 28px);
            color: #d4d4d4;
            max-width: 600px;
            margin-bottom: 40px;
        }       
        .cta-wrapper{
          display:flex;
          gap: 20px;
        }

        .cta-btn {
            padding: 16px 40px;
            background: #9d51e3;
            color: #fff;
            opacity:1!important;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px #00f2ff2b;
        }
        a.cta-btn.linked {
            background: #110b0e8a;
            border: 1px solid #9d51e3;
      }
        a.cta-btn.resume {
            background: #110b0e8a;
            border: 1px solid #00f2ff;
      }
        /* Floating Elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            /* opacity: 0.5; */
            /* animation: float 20s infinite ease-in-out; */
        }

        .shape1 {
            width: 680px;
            height: 80px;
            background: #9d51e3;
            top: 10%;
            left: 10%;
        }

        .shape2 {
          width: 300px;
          height: 100px;
          background: #00f2ff;
          bottom: 40%;
          right: 12%;
          animation-delay: -2s;
        }
              
        .shape3 {
          width: 400px;
          height: 100px;
          background: #00f2ff;
          bottom: 50%;
          right: 25%;
          animation-delay: -4s;
        }
       

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        /* Section Styling */
        section {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }
        section#feedback{
          text-align:center;
        }

        h2 {
            font-size: clamp(40px, 6vw, 80px);
            font-weight: 900;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #fff, #a3a3a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
       .mobileonly { 
            display:none;
          }
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text p {
            font-size: 20px;
            line-height: 1.8;
            color: #a3a3a3;
            margin-bottom: 20px;
        }
        .intro {
          img {
           width: 40px;
        margin-bottom: -13px;
          }
          em{
            font-weight: 200;
          }
        }
        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .skill-tag {
          padding: 10px 20px;
          background: rgba(99, 102, 241, 0.1);
          border: 1px solid #9d51e3;
          border-radius: 30px;
          font-size: 16px;
          color: #9d51e3;
        }
        .tag2{
             transform: translate(0px, 0px);
              opacity: 1;
              font-weight:bold;
              color: #0A0A0A;
              text-transform: uppercase;
              background-color: #9d51e3;
              border: 1px solid #0A0A0A;
        }
        .tag6{ scale: 143%;
              transform: translate(0px, 0px);
              transform: rotate(20deg);
              font-weight: bold;
            }
        .tag7{ padding: 10px 30px;}
        .tag8{
            }
        .tag9{
              color: #0A0A0A; 
              background-color: #9d51e3;
            }

          .profile-container {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            /* Initial state for GSAP */
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            border: 3px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            position: relative;
            background-color: #000; /* Prevents background bleed during scale */
            transform-style: preserve-3d; /* Helps with smoother rendering */
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.0);
            /* filter: grayscale(30%) brightness(0.9); */
            /* will-change: transform, filter; */
        }
        .about-image {
            width: 307px;
            height: 303px;
            background-image: url(images/logo-f20.svg);
            background-size: 428px;
            border-radius: 100% 100% 0 100% ;
            position: relative;
            background-position: bottom;
            overflow: hidden;
            background-repeat: no-repeat;   
            border: 10px solid transparent; 
            background: 
              linear-gradient(#0a0a0a, #0a0a0a) padding-box, /* Top layer (content bg) */
              linear-gradient(45deg, #a15ce1, #9d51e3) border-box; /* Bottom layer (border) */         
                  }

        .about-image::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.03) 10px,
                rgba(255,255,255,0.03) 20px
            ); 
            animation: slide 20s linear infinite;
        }

        @keyframes slide {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50%, 50%); }
        }

        /* Projects Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
            gap: 40px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s;
            opacity: 0;
        }

        .project-card:hover {
            transform: translateY(-10px);
            border-color: #9d51e3;
            box-shadow: 0 20px 60px #9d51e338;
        }

        .project-image {
            background: linear-gradient(135deg, #1e293b, #334155);
            position: relative;
            overflow: hidden;
            img{
              width:630px;
            }
        }

        .project-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, #9d51e3, #9d51e3);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .project-card:hover .project-image::after {
            opacity: 0.3;
        }
        .project-tags {
              display: flex;
              gap: 8px;
              flex-wrap: wrap;
              margin: 20px 0;
          }
        .project-tag {
            padding: 6px 12px;            
            border: 1px solid #ffffff99;
            border-radius: 6px;
            font-size: 12px;
            color: #fff;
                  }
        .project-info {
            padding: 30px;
        }

        .project-info h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .project-info p {
            color: #a3a3a3;
            line-height: 1.6;
            min-height:120px;
        }
          
        /* Feedback Section */
        .feedback-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .feedback-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            transition: all 0.4s;
            opacity: 0;
        }

        .feedback-card:hover {
            transform: translateY(-5px);
            border-color: #00f2ff;
            box-shadow: 0 20px 60px rgba(0, 242, 255, 0.2);
        }

        .quote-icon {
          font-family: arial;
          font-size: 71px;
          color: #00f2ff;
          opacity: 0.5;
          position: absolute;
          top: 27px;
          left: 21px;
        }

        .feedback-text {
            font-size: 16px;
            line-height: 1.4;
            color: #d4d4d4;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            text-align: left;
        }

        .feedback-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {

        }
        .author-info {  text-align:left;}
        .author-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
          
        }

        .author-info p {
            font-size: 14px;
            color: #737373;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer p {
            color: #737373;
            font-size:12px;
        }

        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #9d51e3, #9d51e3);
            z-index: 9999;
            transform-origin: left;
        }
       /* marquee */
          .marquee {
            height: 30px;
            overflow: hidden;
            position: relative;
            background: #fefefe;
            color: #333;
            border: 1px solid #4a4a4a;
            background-color: #9d51e3;
            color: #fff;
            font-size: 12px; 
            }
            .marquee p {
            position: absolute;
            width: 100%;
            height: 100%;
            margin: 0;
            line-height: 28px;
            text-align: center;
            transform: translateX(100%);
            animation: scroll-left 60s linear infinite;
            }
            @keyframes scroll-left {
            0% { transform: translateX(-40%); }
            100% { transform: translateX(100%); }
            }
        /* Mobile Responsive */
        @media (max-width: 768px) {
          body {
            /* background-image: none; */
          }
          section#top{
            padding:0px;
          }
          .hero h1{margin-top:-30px;}
          .logo {
            img {
                width: 30px;
              }
            }
            nav {
                padding: 20px 30px;
                max-width:390px;
            }

            nav ul {
                gap: 20px;
            }

            section {
                padding: 80px 20px;
            }
             h2{    margin-bottom: 30px;}
            .about-content {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .feedback-container {
                grid-template-columns: 1fr;
            }
            .cursor, .cursor-follower {
                display: none;
            }
            .skills{
              margin-top: 55px;
            }
            p.intro, .hero p{
              padding: 0px 45px !important;
              color:#fff;
            }
            .mobileonly { display:block;}
            .hero .mobileonly { margin-top: -22px;}
            .cta-wrapper {gap: 10px; display:flex; flex-direction: column;
            }
            .cta-btn { padding: 16px 30px;}
            .tag1,.tag2, .tag3,.tag6,.tag7, .tag8, .tag9  { transform:none !important; }
            .about-image {
              background-position: top center;
              background-size: contain;
              width: 250px;
              height: 250px;
              margin:0 auto;
            }
            .project-image{
                position: relative;
                overflow: hidden;
                width: 456px;
                height: 500px;
              img{
                  width: 635px;
                  position: absolute;
                  top: 50%;
                  left: 50%;
                  transform: translate(-50%, -50%);
              }
            }
        }
