/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation Bar */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #343a40;
  color: #fff;
}

.desktop-nav .logo img {
  height: 50px;
}

.desktop-nav-items ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.desktop-nav-items ul a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.desktop-nav-items ul a:hover {
  color: #007bff;
}

/* Hero Section */
.container-fluid.home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.home .text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.home .text p {
  font-size: 1.2rem;
  color: #555;
}

.home .image img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.projects .project img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.projects .project img:hover {
  transform: scale(1.05);
}

/* About Section */
#about {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

#about p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Contact Section */
#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact button {
  background-color: #343a40;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact button:hover {
  background-color: #007bff;
}

/* Footer */
footer {
  background-color: #343a40;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav-items ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .container-fluid.home {
    flex-direction: column;
    text-align: center;
  }

  .projects {
    grid-template-columns: 1fr;
  }

  .home .image img {
    max-width: 100%;
  }
}
