@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #ffffff;
  background-color: #1d1d1d;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar .logo {
  display: flex;
  align-items: center;
}
.navbar .logo img {
  width: 50px;
  height: 50px;
}
.navbar .logo span {
  color: #e4b94f;
  font-size: 1.2rem;
  margin-left: 10px;
}
.navbar .nav-links {
  display: flex;
  list-style: none;
}
.navbar .nav-links li {
  margin-left: 2rem;
  position: relative;
}
.navbar .nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.navbar .nav-links li a:hover {
  color: #e4b94f;
}
.navbar .nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  list-style: none;
  padding: 1rem;
  border-radius: 5px;
  z-index: 1000;
  min-width: 200px;
  max-height: 200px;
  overflow-y: auto;
}
.navbar .nav-links li ul li {
  padding: 0.5rem 0;
}
.navbar .nav-links li ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.navbar .nav-links li ul li a:hover {
  color: #e4b94f;
}
.navbar .nav-links li:hover ul {
  display: block;
}
.navbar .burger-menu {
  display: none;
  cursor: pointer;
}
.navbar .burger-menu div {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .navbar .nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
  }
  .navbar .nav-links li {
    margin: 1rem 0;
    width: 100%;
  }
  .navbar .nav-links li a {
    font-size: 1.2rem;
    display: block;
    padding: 1rem;
  }
  .navbar .nav-links li ul {
    display: none;
    position: relative;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 0.5rem 0;
    max-height: 200px;
    overflow-y: auto;
  }
  .navbar .nav-links li:hover ul {
    display: block;
  }
  .navbar .burger-menu {
    display: block;
  }
  .navbar.active .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .navbar.active .nav-links ul {
    display: block;
  }
}
.hero {
  height: 70vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}
.hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: 0;
}
.hero .hero-content {
  z-index: 1;
  color: #ffffff;
}
.hero .hero-content p {
  font-size: 1.2rem;
  color: #e4b94f;
  margin-bottom: 0.5rem;
}
.hero .hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
.services-section {
  padding: 3rem 2rem;
  background-color: #ffffff;
}
.services-section .services-content {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.services-section .services-content .services-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.services-section .services-content .services-details {
  text-align: left;
}
.services-section .services-content .services-details h2 {
  font-size: 2.5rem;
  color: #1d3a4f;
  margin-bottom: 1rem;
}
.services-section .services-content .services-details p {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}
.services-section .services-content .services-details ul {
  list-style-type: none;
  margin-bottom: 2rem;
}
.services-section .services-content .services-details ul li {
  font-size: 1rem;
  color: #1d1d1d;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.services-section .services-content .services-details ul li::before {
  content: "•";
  color: #0096c7;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
}
.services-section .services-content .services-details .btn-primary {
  background-color: #e4b94f;
  color: #1d1d1d;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.services-section .services-content .services-details .btn-primary:hover {
  background-color: #dda723;
}

@media (max-width: 768px) {
  .services-section {
    padding: 2rem 1rem;
  }
  .services-content {
    padding: 1.5rem;
  }
  .services-content .services-details h2 {
    font-size: 2rem;
  }
  .services-content .services-details p {
    font-size: 1rem;
  }
  .services-content .services-details ul li {
    font-size: 0.9rem;
  }
  .services-content .services-details .btn-primary {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
}
.footer {
  background-color: #1d1d1d;
  padding: 1.5rem 0;
  text-align: center;
}
.footer .footer-content p {
  color: #ffffff;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 1rem 0;
  }
  .footer .footer-content p {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=styles.css.map */