    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      min-height: 100vh;
      scroll-behavior: smooth;
    }

    /* NAVIGATION */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent;
      backdrop-filter: blur(20px);
      z-index: 1000;
    }

    .social-wrapper {
      background-color: #f5f3ff;
      height: 50px;
      width: 20px;
      background-origin: 2px solid black;
      position: fixed;
      top: 500px;
      right: 0px;
      margin: 30px;
      padding: 60px;

    }

    .social-link {
      list-style: none;

    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: "Dancing Script", cursive;
      font-optical-sizing: auto;
      font-weight: 700;
      font-style: normal;
      font-size: 2rem;
      font-weight: bold;
    }

    .logo span {
      color: #a78bfa;
      font-size: 2rem;
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-link {
      position: relative;
      color: white;
      text-decoration: none;
      font-size: 1rem;
      padding: 0.5rem 0;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 50%;
      width: 0;
      height: 2px;
      background: white;
      transform: translateX(-50%);
      transition: width 0.3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 80%;
    }

    /* SECTIONS */
    section {
      min-height: 100vh;
      padding: 6rem 2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    section h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: bold;
    }

    section p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 1.5rem;
      opacity: 0.9;
    }

    .social-bar {
      position: fixed;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 9999;
      background: transparent;
      backdrop-filter: blur(10px);
    }

    .social-bar a {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      color: #fff;
      /* background: #3b5998; */
      text-decoration: none;
      border-radius: 8px 0 0 8px;
      /* right edge se flush */
      transition: background 0.2s, transform 0.2s;
    }

    .social-bar a:hover {
      background: #0a66c2;
      transform: translateX(-2px);
    }

    .social-bar i {
      font-size: 18px;
    }

    /* HOME */
    #home h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
      font-family: "Playwrite CA", cursive;
      font-optical-sizing: auto;
      font-weight: weight;
      font-style: normal;
    }

    #home p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
    }

    .btn-group {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
      padding: 0.8rem 2rem;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-primary {
      background: white;
      color: #6d28d9;
    }

    .btn-primary:hover {
      background: #f5f3ff;
    }

    .btn-outline {
      border: 2px solid white;
      color: white;
    }

    .btn-outline:hover {
      background: white;
      color: #6d28d9;
    }

    /* TEXT SLIDER */
    .text-slider {
      margin: 1rem 0 2rem;
      height: 40px;
      overflow: hidden;
      position: relative;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .text-slider span {
      display: block;
      height: 40px;
      line-height: 40px;
      animation: slideText 12s infinite;
    }

    /* Animation Keyframes */
    @keyframes slideText {
      0% {
        transform: translateY(0%);
      }

      20% {
        transform: translateY(0%);
      }

      25% {
        transform: translateY(-100%);
      }

      45% {
        transform: translateY(-100%);
      }

      50% {
        transform: translateY(-200%);
      }

      70% {
        transform: translateY(-200%);
      }

      75% {
        transform: translateY(-300%);
      }

      95% {
        transform: translateY(-300%);
      }

      100% {
        transform: translateY(0%);
      }
    }


    /* ABOUT */
    #about .content {
      max-width: 900px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      text-align: left;
    }

    #about .card {
      background: rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 1rem;
    }

    #about h2 {
      font-size: 1.7rem;
      margin-bottom: 1rem;
      font-family: "Playwrite CA", cursive;
      font-optical-sizing: auto;
      font-weight: weight;
      font-style: normal;
    }


    .skills-section {
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .skills-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .title {
      font-size: 24px;
      font-weight: 600;
      color: #aab4c8;
    }

    .subtitle {
      font-size: 30px;
      font-weight: bold;
      margin: 10px 0 30px;
      font-family: "Playwrite CA", cursive;
      font-optical-sizing: auto;
      font-weight: weight;
      font-style: normal;
    }

    .skills-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .skills-icons img {
      width: 50px;
      height: 50px;
      filter: drop-shadow(0px 0px 10px rgba(0, 255, 255, 0.4));
      transition: transform 0.3s;
    }

    .skills-icons img:hover {
      transform: scale(1.2);
    }

    .skills-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 16px;
      line-height: 1.8;
      text-align: left;
      max-width: 700px;
      margin: 0 auto;
    }

    .skills-list li {
      margin-bottom: 10px;
    }

    /* SERVICES */
    #services .service-grid {
      max-width: 1000px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 1rem;
      transition: transform .3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: #a78bfa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
    }

    .services-h3 {
      margin-bottom: 1rem;
      font-family: "Playwrite CA", cursive;
      font-optical-sizing: auto;
      font-weight: weight;
      font-style: normal;
    }

    #projects {
      text-align: center;
      padding: 50px 0;
    }

    #projects h2 {
      font-size: 32px;
      margin-bottom: 40px;
      font-family: "Playwrite CA", cursive;
      font-optical-sizing: auto;
      font-weight: weight;
      font-style: normal;
    }

    .projects-container {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      width: 90%;
      flex-wrap: wrap;
    }

    .project-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 20px;
      transition: transform 0.3s ease, background 0.3s ease;
      flex: 1 1 calc(50% - 20px);
      /* har line mein do card */
      max-width: calc(50% - 20px);
      width: 400px;
      height: 400px;
    }

    .project-card:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.2);
    }

    .project-card img {
      width: 180px;
      height: 180px;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .project-card h3 {
      margin: 10px 0;
      font-size: 20px;
      color: #fff;
    }

    .project-card p {
      font-size: 14px;
      color: #ddd;
      margin-bottom: 15px;
    }

    .project-card a {
      display: inline-block;
      padding: 10px 15px;
      background: #a78bfa;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .project-card a:hover {
      background: #8b5cf6;
    }


    /* CONTACT */
    #contact .contact-grid {
      max-width: 900px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      text-align: left;
    }

    #contact form input,
    #contact form textarea {
      width: 100%;
      padding: 0.8rem;
      border-radius: 0.5rem;
      border: none;
      margin-bottom: 1rem;
      background: rgba(255, 255, 255, 0.2);
      color: white;
    }

    #contact form button {
      width: 100%;
      padding: 0.8rem;
      border: none;
      border-radius: 0.5rem;
      font-weight: bold;
      background: #a78bfa;
      color: white;
      cursor: pointer;
      transition: 0.3s;
    }

    #contact form button:hover {
      background: #7c3aed;
    }


    .contact-icon {
      flex: 1;
    }

    .contact-iconp {
      margin: 15px 0;
      font-size: 16px;
      display: flex;
      align-items: center;
    }

    .contact-icon i {
      margin-right: 10px;
      font-size: 18px;
      color: #fff;
    }

    .contact-form {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    #contact h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-family: "Playwrite CA", cursive;
      font-optical-sizing: auto;
      font-weight: weight;
      font-style: normal;
    }

    footer {
      width: 100%;
      height: 13%;
      backdrop-filter: blur(10px);
    }


    /* Floating animation */
    @keyframes float {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }

      100% {
        transform: translateY(0);
      }
    }

    /* Footer */
    .footer-icon {
      display: none;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      border-top: 1px solid #fff;
      padding: 20px;
      color: #fff;
      font-family: "Dancing Script", cursive;
      font-optical-sizing: auto;
      font-weight: 700;
      font-style: normal;
      font-size: 20px;
      font-weight: bold;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #fff;
      border-radius: 3px;
    }

    .close-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.2rem;
      color: #fff;
      position: absolute;
      top: 15px;
      left: 15px;
      cursor: pointer;
    }



    /* ================= RESPONSIVE STYLES ================= */

    /* Tablet (max-width: 992px) */
    @media (max-width: 992px) {
      section {
        padding: 5rem 1.5rem 2rem;
      }

      #about .content {
        grid-template-columns: 1fr;
        /* ek column me */
        text-align: center;
      }

      #contact .contact-grid {
        grid-template-columns: 1fr;
        /* ek column */
        text-align: center;
      }

      .skills-icons {
        gap: 15px;
      }

      .projects-container {
        justify-content: center;
      }
    }

    /* Mobile (max-width: 768px) */
    @media (max-width: 768px) {

      /* NAVIGATION */
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 60vh;
        width: 100vw;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        transition: right 0.3s ease-in-out;
        z-index: 9999;
        padding: 50px;
        border-bottom: 2px solid #0dcaf0;
      }

      .nav-links.show {
        right: 0;
      }

      .close-btn {
        display: block;
      }


      .hamburger {
        display: flex;
      }

      .nav-container {
        padding: 1rem;
      }

      .logo {
        font-size: 1.6rem;
      }

      /* HOME */
      #home h1 {
        font-size: 2rem;
      }

      #home p {
        font-size: 1rem;
      }

      .btn-group {
        flex-direction: column;
      }

      /* ABOUT */
      #about .content {
        grid-template-columns: 1fr;
      }

      /* SERVICES */
      #services .service-grid {
        grid-template-columns: 1fr;
      }

      /* PROJECTS */
      .projects-container {
        flex-direction: column;
        align-items: center;
      }

      .project-card {
        width: 100%;
        max-width: 320px;
      }

      /* CONTACT */
      #contact .contact-grid {
        grid-template-columns: 1fr;
      }

      /* FOOTER */
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .social-bar {
        display: none;
      }

      .footer-icon {
        transform: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 8px 8px;
        backdrop-filter: blur(8px);
        position: relative;
        bottom: 0px;
        margin: 0px auto;
        width: 50px;
        height: 45px;
      }

      .footer-icon a {
        border-radius: 45%;
        border: 2px solid rgba(255, 255, 255, 0.2);
        padding: 10px;
        color: #fff;
      }

      .footer-icon a:hover {
        color: #0dcaf0;
      }
    }
