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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: linear-gradient(#1f1f1f, #2e2e2e);
  color: #f4f4f4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

header {
  background-color: #0d0d0d;
  padding: 10px 0;
  border-bottom: 3px solid #ffa500;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #ffa500;
  font-size: 24px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #ffa500;
}

#menu-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 24px;
  border: none;
}

.hero,
.about-section,
.services-section {
  padding: 60px 0;
}

.hero h1,
.about-section h1,
.services-section h1 {
  color: #ffa500;
  margin-bottom: 20px;
}
.hero h2,
.about-section h2,
.services-section h2 {
  color: #ffa500;
  margin-bottom: 20px;
}


.service-box {
  background-color: #262626;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #ffa500;
}

.choose-box {

  background-color: #262626;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #ffa500;

}

footer {
  background-color: #0d0d0d;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  color: #ccc;
}

.responsive-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
@media screen and (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  nav.active {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
}
