* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.navbar .logo {
  font-weight: 800;
  font-size: 1.5rem;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.navbar a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 2rem;
  align-items: center;
  gap: 2rem;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.btn.primary {
  background-color: #111;
  color: #fff;
  margin-right: 1rem;
}
.btn.primary:hover {
  background-color: #333;
}
.btn.secondary {
  background-color: transparent;
  border: 2px solid #111;
  color: #111;
}
.btn.secondary:hover {
  background-color: #111;
  color: #fff;
}
.hero-media img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}
section {
  padding: 4rem 2rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.project {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.project img {
  max-width: 100%;
  border-radius: 10px;
}
.project-details {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
}
ul li {
  margin-bottom: 0.5rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin-bottom: 2rem;
}
input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
button {
  padding: 0.75rem;
  border: none;
  background-color: #111;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}
button:hover {
  background-color: #333;
}
.footer {
  text-align: center;
  padding: 2rem;
  background-color: #f2f2f2;
  font-size: 0.9rem;
}
.whatsapp {
  background-color: #25d366;
  color: white;
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

.portfolio-section {
  padding: 40px;
  text-align: center;
  background-color: #f9f9f9;
}

.projects-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.project-box {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.project-box:hover {
  transform: translateY(-5px);
}

.project-box img {
  width: 100%;
  height: auto;
}

.project-details {
  padding: 15px;
  text-align: left;
}

.project-details h3 {
  margin: 10px 0 5px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.btn.small {
  font-size: 12px;
  padding: 6px 10px;
}

.btn.secondary {
  background-color: transparent;
  color: #0077cc;
  border: 1px solid #0077cc;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-media img {
    margin: 0 auto;
  }
  .navbar ul {
    flex-direction: column;
    display: none;
  }
}
