* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: Arial, sans-serif;
      background: #222;
      color: #333;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }

    /* --- Navbar --- */
    header {
      background: linear-gradient(to right,rgb(0, 0, 255) ,rgb(255, 0, 0));
      padding: 15px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    header h1 {
      font-size: 1.5rem;
      color: #b9d6f6;
    }
    nav {
      display: flex;
      gap: 20px;
    }
    nav a {
      font-weight: 500;
      transition: color 0.3s;
    }
    nav a:hover { color: #007BFF; }

    /* Mobile Menu */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      /* color: white; */
    }
    nav a{
      color: white;
    }

    /* --- Hero --- */
    .hero {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(to right, red, blue);
      color: #fff;
    }
    .hero h2 { font-size: 2.5rem; margin-bottom: 15px; }
    .hero p { font-size: 1.1rem; margin-bottom: 25px; }
    .btn {
      display: inline-block;
      padding: 12px 25px;
      background: #fff;
      color: #007BFF;
      border-radius: 30px;
      font-weight: bold;
      /* box-shadow: 20px; */
      transition: background 0.3s;
    }
    .btn:hover { background: #f0f0f0; }

    /* --- Projects --- */
    .projects {
      /* background-color: #222; */
      max-width: 1100px;
      margin: 60px auto;
      padding: 0 20px;
    }
    #projects{
      color: white;
    }
    .projects h3 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .project-grid {
      /* background-color: black; */
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .project-card {
      background: #5e5c5c;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.914);
      padding: 20px;
      transition: transform 0.3s;
    }
    #para{
      color: white;
    }
    .project-card>button{
        width: 300px;
        height: 35px;
        background-color: #007BFF;
        border: none;
        border-radius: 5px;
    }
    .project-card>button>a{
        font-size: 15px;
        font-weight: bold;
        font-family:monospace;
    }
    .project-card:hover { transform: translateY(-5px); }
    .project-card .image {
      height: 150px;
      background: #131313;
      border-radius: 8px;
      margin-bottom: 15px;
    }
    .image>img{
        width: 300px;
        margin-top: 30px;
        transition: 1s;

    }
    .image>img:hover{
      transform: rotateY(180deg);
    }
    .project-card h4 { margin-bottom: 10px; font-size: 1.2rem; }
    .project-card p { font-size: 0.95rem; color: #666; }

    /* --- Footer --- */
    footer {
      background: #222;
      color: #aaa;
      text-align: center;
      padding: 40px 20px;
      margin-top: 50px;
    }
    footer a {
      display: inline-block;
      margin: 10px;
      color: #007BFF;
      font-weight: bold;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      nav { 
        display: none; 
        flex-direction: column; 
        background: #fff; 
        position: absolute; 
        top: 65px; 
        right: 8%; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 10px;
      }
      nav.show { display: flex; }
      .menu-toggle { display: block; }
      .hero h2 { font-size: 2rem; }
      .hero p { font-size: 1rem; }
    }

    @media (max-width: 480px) {
      header h1 { font-size: 1.2rem; }
      .hero h2 { font-size: 1.6rem; }
      .hero p { font-size: 0.95rem; }
      .btn { padding: 10px 18px; font-size: 0.9rem; }
    }