:root {
  --primary: #0d6efd;
  --dark: #0b0c10;
  --light: #f9f9f9;
  --text: #333;
  --radius: 12px;
}

.no-style-link {
  color: var(--primary);
  text-decoration: none; /* Remove underline */
  cursor: pointer;       /* Optional: makes it feel clickable */
}

.no-style-link:hover {
  text-decoration:underline;
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: color 0.3s ease;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      position: sticky;
      top: 0;
      background: var(--dark);
      color: white;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 100;
    }

    header h1 {
      font-size: 1.5rem;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav ul li a {
      color: white;
      text-decoration: none; /* Remove underline */
      cursor: pointer;       /* Optional: makes it feel clickable */
    }

    nav ul li a:hover {
      color: dodgerblue;

    }

    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      height: 80vh;
      background: linear-gradient(135deg, var(--primary), blue);
      color: white;
      padding: 2rem;
    }

    .hero h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.25rem;
      max-width: 600px;
    }

    .container {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 1.5rem;
    }

    h2.section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      position: relative;
    }

    h2.section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: var(--primary);
      margin: 0.5rem auto 0;
      border-radius: 2px;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .project-card {
      background: white;
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .project-card h3 {
      margin-bottom: 0.5rem;
    }

    #contact p {
      text-align: center;
      margin: 0.5rem 0;
    }

    #contact a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
    }

    #contact a:hover {
      text-decoration: underline;
    }

    footer {
      background: var(--dark);
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 3rem;
    }

    @media (max-width: 768px) {
      .hero h2 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      nav ul {
        gap: 1rem;
      }
    }