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

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #111212;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#popup-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#popup {
  background: #ffffff;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
#popup h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #22182b;
}
#popup p {
  margin-bottom: 20px;
  color: black;
}
#popup #close-popup {
  padding: 10px 20px;
  background-color: #4a90e2;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
#popup #close-popup:hover {
  background-color: #2275d7;
}

section {
  width: 100%;
  margin: 40px 0;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

@property --rotate_banner {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}
#hero {
  margin: 0px;
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: conic-gradient(from var(--rotate_banner) at 75% 58%, #b8b9c1 40%, #22182b);
  image-rendering: optimizeQuality;
  will-change: transform;
  background-position: left;
  animation: rotate_banner_animation 17s linear infinite;
  align-content: center;
  padding-left: 20%;
}
@keyframes rotate_banner_animation {
  from {
    --rotate_banner: 0deg;
  }
  to {
    --rotate_banner: -360deg;
  }
}
#hero h1 {
  font-size: xxx-large;
  margin-bottom: 20px;
  background-image: linear-gradient(to top right, #000fff, #fb611a);
  font-size: 3rem;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#hero p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 40px;
  width: 600px;
}
#hero .cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  border-radius: 20px;
  color: #22182b;
  text-decoration: none;
  border-radius: 5px;
  border: #22182b 2px solid;
  font-weight: bold;
}
#hero .cta-button:hover {
  background-color: #f7f7f7;
}

#introduction {
  font-size: 1rem;
  color: #111212;
  text-align: left;
}

#services {
  text-align: left;
}
#services h2 {
  font-size: 1.8rem;
  color: #4a90e2;
  margin-bottom: 20px;
}
#services .toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
#services .toggle-buttons .toggle-button {
  width: 50%;
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #cee1f7;
  border: none;
  color: #111212;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
#services .toggle-buttons .toggle-button.active {
  background-color: #4a90e2;
  color: #ffffff;
}
#services .toggle-buttons .toggle-button:hover:not(.active) {
  background-color: #a2c6f0;
}
#services .content {
  padding: 10px;
  font-size: 1rem;
  color: #111212;
}
#services .content ul {
  list-style: none;
  padding: 0;
}
#services .content ul li {
  margin-bottom: 10px;
}
#services .content.hidden {
  display: none;
}
#services .service {
  margin-bottom: 20px;
  padding: 10px;
  border-left: 4px solid #4a90e2;
}
#services .service h3 {
  font-size: 1.3rem;
  color: #111212;
  margin-bottom: 5px;
}
#services .service p {
  font-size: 1rem;
  color: black;
  text-align: left;
}
#services #contact h2 {
  font-size: 1.8rem;
  color: #4a90e2;
  margin-bottom: 20px;
  text-align: center;
}
#services #contact p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
}
#services #contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#services #contact form label {
  font-size: 1rem;
  color: #111212;
}
#services #contact form input,
#services #contact form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #747b7b;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
}
#services #contact form input:focus,
#services #contact form textarea:focus {
  border-color: #4a90e2;
}
#services #contact form button {
  padding: 10px;
  font-size: 1rem;
  background-color: #4a90e2;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
#services #contact form button:hover {
  background-color: #2275d7;
}
#services #contact a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: bold;
}
#services #contact a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */