/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #333;
  color: #fff;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #00adb5;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("images/bg.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h1 span {
  color: #00adb5;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background: #00adb5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #007b80;
}

/* About */
.about {
  padding: 60px 20px;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: auto;
}

.about-content img {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Projects */
.projects {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.project-card img {
  width: 100%;
  border-radius: 5px;
}

/* Contact */
.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background: #00adb5;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background: #007b80;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* Responsive */
@media(max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #333;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .navbar ul.show {
    display: flex;
  }
}