
/* Base Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f4f4;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #ff4e50, #f9d423);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero .btn {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #fff;
  background: #000;
  border-radius: 5px;
  display: inline-block;
}

/* About Section */
.about {
  padding: 2rem 0;
  background: #f4f4f4;
  text-align: center;
}

/* Services Section */
.services {
  padding: 2rem 0;
}
.services-grid {
  display: flex;
  gap: 1rem;
}
.service {
  flex: 1;
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Experience */
.experience-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.job ul {
  padding-left: 1rem;
}

/* Contact Section */
.contact {
  padding: 2rem 0;
  text-align: center;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact form input, .contact form textarea, .contact form button {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}


/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

@media screen and (max-width: 1024px) {
    .container {
        background-size: contain;
        background-position-y: center;
    }
}

@media screen and (max-width: 600px) {

.container{
    background-size: contain;
    background-position-y: center;
    }
  pre {
    font-size: 0.8rem;
    padding: 8px 12px;
    width: 100%;
  }

  body {
    width: 100vw;
  }

  .header img {
    margin-left: 0;
  }

  .installation-steps {
    width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6rem;
  }

  ol {
    padding-left: 20px;
  }

  li {
    margin-bottom: 5px;
  }
}

