 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background-color: #0a0a12;
      color: #f5f5f5;
      scroll-behavior: smooth;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #111;
      padding: 15px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      color: #56d1ff;
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 1px;
      transition: 0.3s ease;
    }

    .logo span {
      color: #ff77b7;
    }
    .nav-links span {
      color: #f58bbc;
    }

    .logo:hover {
      text-shadow: 0 0 10px #56d1ff, 0 0 20px #ff77b7;
      transform: scale(1.05);
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    .nav-links a {
      color: #f5f5f5;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      background: #ff77b7;
      left: 0;
      bottom: -4px;
      transition: 0.3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: #56d1ff;
    }


    .menu-icon {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .bar {
      width: 25px;
      height: 3px;
      background-color: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    #menu-toggle {
      display: none;
    }

    .hero {
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: linear-gradient(120deg, #0a0a12, #1b1b25);
    }

    .hero h2 {
      color: #56d1ff;
      font-size: 2.4rem;
      margin-bottom: 10px;
    }

    .hero h2 span {
      color: #ff77b7;
    }

    .hero p {
      color: #f9c5bd;
      margin: 15px 0;
      font-size: 1.1rem;
    }

    .btn {
      background-color: #ff77b7;
      color: #000;
      padding: 12px 30px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s ease;
    }

    .btn:hover {
      background-color: #56d1ff;
      color: #000;
      box-shadow: 0 0 15px #56d1ff;
      transform: scale(1.05);
    }

    section {
      padding: 70px 40px;
      text-align: center;
    }

    section h2 {
      color: #56d1ff;
      margin-bottom: 20px;
      font-size: 2rem;
    }

    section h2 span {
      color: #ff77b7;
    }

    .about p {
      color: #f9c5bd;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
      font-size: 1rem;
    }

    
    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .card {
      background-color: #1a1a22;
      border-radius: 10px;
      overflow: hidden;
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 20px rgba(86, 209, 255, 0.3);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card h3 {
      color: #56d1ff;
      margin: 15px 0 10px;
    }

    .card p {
      color: #f9c5bd;
      padding: 0 15px 20px;
      font-size: 0.95rem;
    }

  
    .contact form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact input,
    .contact textarea {
      background-color: #1b1b25;
      color: #f5f5f5;
      border: 1px solid #333;
      border-radius: 8px;
      padding: 12px;
      transition: 0.3s ease;
    }

    .contact input:focus,
    .contact textarea:focus {
      outline: none;
      border-color: #56d1ff;
      box-shadow: 0 0 8px #56d1ff;
    }

    footer {
      background-color: #0c0c12;
      text-align: center;
      padding: 20px;
      color: #f9c5bd;
      font-size: 0.9rem;
      border-top: 1px solid #222;
    }

   
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 0;
        background-color: #111;
        width: 200px;
        padding: 15px;
        border-left: 2px solid #56d1ff;
        border-bottom: 2px solid #56d1ff;
      }

      #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
      }

      .menu-icon {
        display: flex;
      }

      
      #menu-toggle:checked + .menu-icon .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      #menu-toggle:checked + .menu-icon .bar:nth-child(2) {
        opacity: 0;
      }

      #menu-toggle:checked + .menu-icon .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    }