* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      cursor: none;
    }

    :root {
      --black: #0a0a0a;
      --black-light: #111111;
      --black-card: #141414;
      --lime: #ccff00;
      --lime-glow: rgba(204, 255, 0, 0.4);
      --lime-dark: #a3d100;
      --white: #ffffff;
      --gray: #b0b0b0;
      --dark-gray: #1e1e1e;
    }

    body {
      background-color: var(--black);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* Custom Cursor - Yellow Dot */
    .cursor-dot {
      width: 12px;
      height: 12px;
      background-color: #ffea00;
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.08s ease-out;
      box-shadow: 0 0 12px rgba(255, 234, 0, 0.8);
      transform: translate(-50%, -50%);
    }

    a, button, .card, .skill-item, .testimonial-card, .social-icon {
      cursor: none;
    }

    html {
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    section {
      padding: 100px 0;
      border-bottom: 1px solid rgba(204, 255, 0, 0.1);
    }

    h1 {
      font-size: 4.5rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
    }

    h2:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70%;
      height: 4px;
      background: var(--lime);
      border-radius: 4px;
      box-shadow: 0 0 12px var(--lime-glow);
    }

    .highlight {
      color: var(--lime);
      text-shadow: 0 0 8px var(--lime-glow);
    }

    /* Header / Navbar */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(204, 255, 0, 0.2);
      padding: 18px 0;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .logo span {
      color: var(--lime);
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .nav-links a:hover {
      color: var(--lime);
      text-shadow: 0 0 6px var(--lime-glow);
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: none;
      z-index: 1100;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--lime);
      border-radius: 3px;
      transition: 0.25s;
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        z-index: 1050;
        border-left: 2px solid var(--lime);
        box-shadow: -5px 0 30px rgba(0,0,0,0.8);
      }
      .nav-links.active {
        right: 0;
      }
      .hamburger {
        display: flex;
      }
      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
      h1 {
        font-size: 2.5rem;
      }
      h2 {
        font-size: 2rem;
      }
      section {
        padding: 70px 0;
      }
      .hero-grid {
        flex-direction: column;
        text-align: center;
      }
      .hero-left p {
        max-width: 100%;
      }
      .btn-group {
        justify-content: center;
      }
    }

    /* Hero Section - Split Layout */
    .hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
    }

    .hero-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .hero-left {
      flex: 1.2;
    }

    .hero-right {
      flex: 0.9;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(204, 255, 0, 0.15);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--lime);
      margin-bottom: 24px;
      border: 1px solid rgba(204, 255, 0, 0.3);
    }

    .hero-left p {
      font-size: 1.2rem;
      color: var(--gray);
      margin: 24px 0 32px;
      max-width: 90%;
    }

    .btn-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--lime);
      color: var(--black);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(204, 255, 0, 0.5);
      background: #e0ff2e;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--lime);
      color: var(--lime);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-outline:hover {
      background: var(--lime);
      color: var(--black);
      transform: translateY(-3px);
    }

    /* Animated Circular Image */
    .image-circle {
      position: relative;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      overflow: hidden;
      animation:borderGlow 3s ease-in-out infinite;
      border: 3px solid var(--lime);
      box-shadow: 0 0 30px rgba(204, 255, 0, 0.3);
    }

    .image-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .image-circle:hover img {
      transform: scale(1.05);
    }

    @keyframes floatImage {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(2deg);
      }
    }

    @keyframes borderGlow {
      0%, 100% {
        border-color: var(--lime);
        box-shadow: 0 0 20px rgba(204, 255, 0, 0.3);
      }
      50% {
        border-color: #ffea00;
        box-shadow: 0 0 40px rgba(204, 255, 0, 0.7);
      }
    }

    @media (max-width: 968px) {
      .image-circle {
        width: 280px;
        height: 280px;
      }
      .hero-left p {
        max-width: 100%;
      }
    }

    /* About Section */
    .about-grid {
      display: flex;
      gap: 4rem;
      align-items: center;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1.5;
    }

    .about-text p {
      color: var(--gray);
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .about-highlight {
      color: var(--lime);
      font-weight: 600;
    }

    .about-stats {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.8rem;
    }

    .stat-card {
      background: var(--black-card);
      padding: 1.8rem 1rem;
      text-align: center;
      border-radius: 24px;
      border: 1px solid rgba(204, 255, 0, 0.2);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-8px);
      border-color: var(--lime);
      box-shadow: 0 10px 25px rgba(204, 255, 0, 0.15);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--lime);
    }

    /* Skills Section */
    .skills-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .skill-category {
      background: var(--black-card);
      border-radius: 28px;
      padding: 2rem;
      border: 1px solid rgba(204, 255, 0, 0.15);
      transition: 0.3s;
    }

    .skill-category:hover {
      border-color: var(--lime);
      transform: translateY(-5px);
    }

    .skill-category h3 {
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
      color: var(--lime);
    }

    .skill-items {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .skill-item {
      background: rgba(204, 255, 0, 0.08);
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 500;
      transition: 0.2s;
      border: 1px solid rgba(204, 255, 0, 0.2);
    }

    .skill-item:hover {
      background: var(--lime);
      color: var(--black);
      transform: scale(1.05);
      border-color: var(--lime);
    }

    /* Testimonials Grid */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .testimonial-card {
      background: var(--black-card);
      padding: 2rem;
      border-radius: 28px;
      border: 1px solid rgba(204, 255, 0, 0.2);
      transition: 0.3s;
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      border-color: var(--lime);
      box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    }

    .testimonial-text {
      font-size: 1rem;
      color: var(--gray);
      margin: 1rem 0;
      font-style: italic;
    }

    .client-name {
      font-weight: 700;
      color: var(--lime);
      margin-top: 1rem;
    }

    .client-title {
      font-size: 0.8rem;
      color: #6c6c6c;
    }

    /* Contact Section */
    .contact-wrapper {
      display: flex;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .contact-info {
      flex: 1;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .contact-details {
      margin-top: 2rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.8rem;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(204, 255, 0, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--lime);
    }

    .contact-form {
      flex: 1;
      background: var(--black-card);
      padding: 2rem;
      border-radius: 32px;
      border: 1px solid rgba(204, 255, 0, 0.2);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid #2a2a2a;
      padding: 14px 18px;
      border-radius: 20px;
      color: white;
      font-size: 1rem;
      transition: 0.2s;
      font-family: 'Inter', sans-serif;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--lime);
      box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.2);
    }

    .submit-btn {
      background: var(--lime);
      color: var(--black);
      font-weight: 700;
      padding: 14px 28px;
      border: none;
      border-radius: 50px;
      width: 100%;
      font-size: 1rem;
      transition: 0.2s;
    }

    .submit-btn:hover {
      background: #e0ff2e;
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 2rem;
      color: var(--gray);
      border-top: 1px solid rgba(204, 255, 0, 0.1);
      background: var(--black);
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .social-icon {
      color: var(--gray);
      font-size: 1.4rem;
      transition: 0.3s;
    }

    .social-icon:hover {
      color: var(--lime);
      transform: translateY(-4px);
    }

    .footer-text {
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .animate-on-scroll.reveal {
      opacity: 1;
      transform: translateY(0);
    }