* {
  margin: 0;
  padding: 0;
  
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
}




header {
  background-color: #111;
  padding: 30px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

/* Navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  color: white;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style-type: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* For mobile view */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    z-index: 100;
  }

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

  .hamburger {
    display: block;
  }
}

/*nav a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

nav a:hover {
  color: #fff;
}
*/
.content-section {
  display: none;
  padding: 3rem 5%;
}

.active {
  display: block;
}

h1, h2, h3 {
  margin-bottom: 1rem;
}

.project-flex {
  background: white;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-image {
  flex: 1 1 300px;
}

.project-image img {
  width: 100%;
  border-radius: 8px;
}

.project-details {
  flex: 2 1 400px;
}

.project-details h3 {
  margin-top: 0;
}

.project-details p {
  margin: 0.5rem 0 1rem 0;
}


/*@media (max-width: 768px) {
  nav {
    flex-direction: column;
    text-align: center;
  }
}*/

.contact-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .social-icons a {
      margin: 0 10px;
    }
   

footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #fff;
  z-index: 99;
}
