/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f7f9fc;
    color: #333;
  }
  
/* .navbar {
    width: 100%;
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
  } */

  /* .nav-links a {
    text-decoration: none;
    color: #02066F;
    font-weight: 500;
  } */
/* 
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #02066F;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 1rem 2rem;
    }

    .nav-links.show {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }
  } */
  
  /* .nav-links a:hover {
    color: #0077cc;
  } */

  
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(2, 6, 111, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 1.5em;
  height: 1.5em;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
}

  
  .hero {
    background: linear-gradient(to right, #0077cc, #00c6ff);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #0077cc;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .cta:hover {
    background-color: #e6f7ff;
  }
  
  .section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
  }
  
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.project-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.project-card p {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.project-card a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
}

.project-card a:hover {
  border-bottom: 1px solid var(--primary-color);
}

  
 .skills-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skills-list li {
  background-color: #e4e8ff;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.skills-list li:hover {
  transform: translateY(-2px);
}
  .project-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #0077cc;
  }
  
  .contact-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .contact-button:hover {
    background-color: #005fa3;
  }
  
  .footer {
    text-align: center;
    padding: 2rem;
    background-color: #f0f0f0;
    color: #555;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      display: none;
    }
    .nav-links.active {
      display: flex;
    }
  }
  

      .experience-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .experience-item {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .experience-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .experience-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }

  .experience-item p,
  .experience-item ul {
    margin: 0.25rem 0;
  }

  .experience-item ul {
    padding-left: 1.2rem;
    list-style: disc;
  }