html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ff00ff;
  color: #000000;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

body {
  background: #0a0a0a;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.header_div {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  width: 80px;
  filter: drop-shadow(0 0 10px #00ffff);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #00ffff;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.cookies-section {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  text-align: center;
}

.cookies-div p {
  font-size: 1.2rem;
  color: #00ffff;
}

#acceptButton {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

#acceptButton:hover {
  background: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 1);
}

.footer {
  background: #080808;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 80px;
  filter: drop-shadow(0 0 10px #00ffff);
}

.footer-container h3 {
  font-size: 1.4rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.footer-container p {
  font-size: 1.1rem;
  color: #00ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.footer-links ul {
  display: flex;
  gap: 15px;
  justify-content: center;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #00ffff;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

a {
  position: relative;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

.hero_section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url("assets/images/neon-background.jpg") no-repeat center
    center/cover;
}

.hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.hero_content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  animation: fadeIn 1.2s ease-in-out;
}

.hero_content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff;
  margin-bottom: 15px;
}

.hero_content p {
  font-size: 1.5rem;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  margin-bottom: 20px;
}

.hero_button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero_button::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-out;
}

.hero_button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.hero_button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero_content {
    padding: 30px;
  }

  .hero_content h1 {
    font-size: 2.5rem;
  }

  .hero_content p {
    font-size: 1.2rem;
  }

  .hero_button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

.gallery_section {
  position: relative;
  padding: 100px 20px;
  background: #0a0a0a;
  text-align: center;
  overflow: hidden;
}

.gallery_section h2 {
  font-size: 3rem;
  color: #ff00ff;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-shadow: 0 0 20px #ff00ff;
}

.gallery_wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
  padding: 20px 0;
}

.gallery_track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 25s linear infinite;
}

.gallery_track img {
  width: 400px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.gallery_track img:hover {
  transform: scale(1.1);
  filter: brightness(1.4);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

@media (max-width: 768px) {
  .gallery_track img {
    width: 90%;
  }

  .gallery_section h2 {
    font-size: 2.5rem;
  }
}

.about_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808, #0d0d0d);
  text-align: center;
  overflow: hidden;
}

.about_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  animation: fadeIn 1.2s ease-in-out;
}

.about_container h2 {
  font-size: 3rem;
  color: #ff00ff;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #ff00ff;
}

.about_intro {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00ffff;
}

.about_content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about_image {
  flex: 1;
  max-width: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  transition: transform 0.5s ease-in-out;
}

.about_image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.about_image:hover img {
  transform: scale(1.05);
}

.about_text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.about_text h3 {
  font-size: 2.5rem;
  color: #ff00ff;
  margin-bottom: 15px;
  text-shadow: 0 0 15px #ff00ff;
}

.about_text p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ccc;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.about_list {
  list-style: none;
  padding: 0;
}

.about_list li {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s ease, transform 1s ease;
}

.about_list li span {
  font-size: 2rem;
  margin-right: 15px;
  color: #ff00ff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .about_content {
    flex-direction: column;
    text-align: center;
  }

  .about_image {
    max-width: 100%;
  }

  .about_text {
    max-width: 100%;
    text-align: center;
  }

  .about_list li {
    justify-content: center;
  }
}

.services_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808, #0d0d0d);
  text-align: center;
  overflow: hidden;
}

.services_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  animation: fadeIn 1.2s ease-in-out;
}

.services_container h2 {
  font-size: 3rem;
  color: #ff00ff;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #ff00ff;
}

.services_intro {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00ffff;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.service_card {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service_card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.service_icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff;
}

.service_card h3 {
  font-size: 1.8rem;
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff;
  margin-bottom: 10px;
}

.service_card p {
  font-size: 1.2rem;
  color: #ccc;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .services_grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .services_container h2 {
    font-size: 2.5rem;
  }
}

.advantages_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808, #0d0d0d);
  text-align: center;
  overflow: hidden;
}

.advantages_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  animation: fadeIn 1.2s ease-in-out;
}

.advantages_container h2 {
  font-size: 3rem;
  color: #ff00ff;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #ff00ff;
}

.advantages_intro {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00ffff;
}

.advantages_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.advantage_card {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.advantage_card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.advantage_icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff00ff;
  text-shadow: 0 0 15px #ff00ff;
}

.advantage_card h3 {
  font-size: 1.8rem;
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff;
  margin-bottom: 10px;
}

.advantage_card p {
  font-size: 1.2rem;
  color: #ccc;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.advantages_gallery {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.advantages_gallery img {
  width: 40%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.advantages_gallery img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .advantages_grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .advantages_gallery {
    flex-direction: column;
    align-items: center;
  }

  .advantages_gallery img {
    width: 80%;
  }

  .advantages_container h2 {
    font-size: 2.5rem;
  }
}

.contact_section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808, #0d0d0d);
  text-align: center;
  overflow: hidden;
}

.contact_container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  animation: fadeIn 1.2s ease-in-out;
}

.contact_container h2 {
  font-size: 3rem;
  color: #ff00ff;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 0 20px #ff00ff;
}

.contact_intro {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form_group label {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #00ffff;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact_form input:focus,
.contact_form textarea:focus {
  border: 2px solid #7a9e7e;
  box-shadow: 0 0 15px rgba(122, 158, 126, 0.7);
}

.submit_button {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.submit_button::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-out;
}

.submit_button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.submit_button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact_container {
    padding: 30px;
  }

  .contact_container h2 {
    font-size: 2.5rem;
  }

  .contact_intro {
    font-size: 1.3rem;
  }

  .submit_button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

.about_extended {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808, #0d0d0d);
  text-align: center;
  overflow: hidden;
}

.about_extended_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  animation: fadeIn 1.2s ease-in-out;
}

.about_extended_container h2 {
  font-size: 3rem;
  color: #ff00ff;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #ff00ff;
}

.about_extended_intro {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00ffff;
}

.about_extended_content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about_values {
  list-style: none;
  padding: 0;
}

.about_values li {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s ease, transform 1s ease;
}

.about_values li span {
  font-size: 2rem;
  margin-right: 15px;
  color: #ff00ff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .about_extended_content {
    flex-direction: column;
    text-align: center;
  }

  .about_image {
    max-width: 100%;
  }

  .about_text {
    max-width: 100%;
    text-align: center;
  }

  .about_values li {
    justify-content: center;
  }
}

.services_extended {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #080808, #0d0d0d);
  text-align: center;
  overflow: hidden;
}

.services_extended_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  animation: fadeIn 1.2s ease-in-out;
}

.services_extended_container h2 {
  font-size: 3rem;
  color: #ff00ff;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #ff00ff;
}

.services_extended_intro {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #00ffff;
}

.services_extended_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.service_block {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service_block:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

.service_block h3 {
  font-size: 1.8rem;
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff;
  margin-bottom: 10px;
}

.service_block p {
  font-size: 1.2rem;
  color: #ccc;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.service_features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.service_features li {
  font-size: 1.2rem;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s ease, transform 1s ease;
}

.services_extended_gallery {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.services_extended_gallery img {
  width: 22%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.services_extended_gallery img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .services_extended_grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .services_extended_gallery {
    flex-direction: column;
    align-items: center;
  }

  .services_extended_gallery img {
    width: 80%;
  }

  .services_extended_container h2 {
    font-size: 2.5rem;
  }
}
