@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Source+Code+Pro:wght@400;700&display=swap");

:root {
  --primary-color: #00ffaa;
  --secondary-color: #33ccff;
  --background-color: #0a0a0a;
  --secondary-background: #1a1a1a;
  --text-color: #ffffff;
  --header-gradient: linear-gradient(90deg, #0a0a0a, #1a1a1a);
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  background: linear-gradient(45deg, var(--background-color), #1a1a1a, #2a2a2a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

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

header {
  background: transparent;
  padding: 10px 0;
  height: 85px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

header.scrolled {
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.9),
    rgba(26, 26, 26, 0.9)
  );
}

header .logo {
  float: left;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

header nav {
  float: right;
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
}

header nav ul li {
  margin-left: 30px;
}

header nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  padding: 5px 8px;
  line-height: 20px;
  position: relative;
  transition: color 0.3s ease;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  bottom: -10px;
  left: 0;
  width: 0%;
  transition: all 0.3s ease;
}

header nav ul li a:hover::after {
  width: 100%;
}

header nav ul li a:hover {
  color: var(--primary-color);
}

.hero {
  background: url("ai-background.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
}

.hero p {
  font-size: 22px;
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero .btn {
  background: linear-gradient(90deg, #00ffaa, #33ccff, #00ffaa);
  background-size: 200% 200%;
  color: #0a0a0a;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  border: 2px solid transparent;
  animation: gradientMove 4s linear infinite, pulseGlow 2s ease-in-out infinite,
    fadeInUp 1s ease-out 1.5s both;
  box-shadow: 0 0 15px rgba(0, 255, 170, 0.5), 0 0 30px rgba(51, 204, 255, 0.7);
}

.hero .btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 10%,
    transparent 10%
  );
  background-size: 5px 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(0.5);
}

.hero .btn:hover::before {
  opacity: 1;
  transform: scale(1.5);
  animation: shineEffect 1s ease-out;
}

.hero .btn:hover {
  background-position: 100% 0;
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.7), 0 0 40px rgba(51, 204, 255, 0.9);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shineEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 8px rgba(0, 255, 170, 0.4), 0 0 16px rgba(51, 204, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 16px rgba(0, 255, 170, 0.6),
      0 0 24px rgba(51, 204, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 170, 0.4), 0 0 16px rgba(51, 204, 255, 0.6);
  }
}

section {
  padding: 100px 0;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      var(--background-color) 25%,
      transparent 25%,
      transparent 75%,
      var(--background-color) 75%,
      var(--background-color)
    ),
    linear-gradient(
      45deg,
      var(--background-color) 25%,
      transparent 25%,
      transparent 75%,
      var(--background-color) 75%,
      var(--background-color)
    );
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.05;
  z-index: -1;
}

.about,
.services,
.contact {
  text-align: center;
}

.about h2,
.services h2,
.contact h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.about h2::after,
.services h2::after,
.contact h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.services .service-item p,
.contact p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
}

.contact p {
  text-align: justify !important;
}

.about p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.8;
  text-align: justify !important;
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.services .service-item {
  background: var(--secondary-background);
  padding: 40px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-color) 10%, transparent 10%),
    radial-gradient(circle, var(--primary-color) 10%, transparent 10%);
  background-size: 20px 20px;
  opacity: 0.1;
  transition: all 0.6s;
  transform: rotate(45deg);
}

.services .service-item:hover::before {
  top: -75%;
  left: -75%;
}

.services .service-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 255, 170, 0.1);
}

.services .service-item i {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.services .service-item:hover i {
  transform: scale(1.2) rotate(360deg);
}

.services .service-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 24px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background: var(--secondary-background);
  color: var(--text-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-color);
}

.contact form button {
  background: var(--primary-color);
  color: #333;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s;
}

.contact form button:hover::before {
  left: 100%;
}

.contact form button:hover {
  background: #00cc88;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 170, 0.3);
}

footer {
  background: var(--secondary-background);
  color: var(--text-color);
  text-align: center;
  padding: 30px 0;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-color) 10%, transparent 10%),
    radial-gradient(circle, var(--primary-color) 10%, transparent 10%);
  background-size: 20px 20px;
  opacity: 0.1;
  animation: footerAnimation 10s linear infinite;
}

.glitch-effect {
  position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-effect::before {
  left: 2px;
  text-shadow: -2px 0 var(--secondary-color);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-effect::after {
  left: -2px;
  text-shadow: -2px 0 var(--primary-color);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.code-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.code-line {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  color: rgba(0, 255, 170, 0.2);
  white-space: nowrap;
  animation: code-rain 10s linear infinite;
}

.btn,
.contact form button {
  position: relative;
  overflow: hidden;
}

.btn::before,
.contact form button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 10%,
    transparent 10%
  );
  background-size: 5px 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before,
.contact form button:hover::before {
  opacity: 1;
  animation: sparkle 2s linear infinite;
}

.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 170, 0.2);
}

.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.service-item:hover::after {
  opacity: 0.1;
}

.contact {
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--secondary-background);
  color: var(--text-color);
  padding: 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.7);
  position: relative;
  animation: fadeIn 0.5s ease;
  overflow-y: auto;
  max-height: 90vh;
  animation: smokeEffect 3s ease-in-out infinite;
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.modal-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
  columns: 2;
  column-gap: 20px;
}

.modal-content ul li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  break-inside: avoid-column;
}

.modal-content ul li i {
  margin-right: 10px;
  color: var(--primary-color);
}

.modal-content ul li::before {
  content: "-";
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 14px;
}

.modal-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  margin: 0px auto;
}

.modal-content .demos-button {
  background: var(--primary-color);
  color: #333;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: all 0.3s ease;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.modal-content .demos-button i {
  margin-right: 10px;
  color: #333;
}

.modal-content .demos-button:hover {
  background: #00cc88;
  box-shadow: 0 10px 20px rgba(0, 255, 170, 0.5);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  top: 15px;
  right: 25px;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #ffffff;
}

footer .footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

footer .footer-wave svg {
  position: relative;
  display: block;
  width: calc(300% + 1.3px);
  height: 150px;
}

footer .footer-wave .shape-fill {
  fill: var(--background-color);
}

footer .footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

footer .footer-info,
footer .footer-links,
footer .footer-social {
  flex: 1;
  margin-bottom: 30px;
  min-width: 250px;
  text-align: center;
}

footer .footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

footer .footer-logo .logo-img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

footer .footer-logo h2 {
  font-size: 24px;
  color: var(--primary-color);
}

footer .footer-info p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto;
}

footer .footer-links h3,
footer .footer-social h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

footer .footer-links ul {
  list-style: none;
  padding: 0;
}

footer .footer-links ul li {
  margin-bottom: 10px;
}

footer .footer-links ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-links ul li a:hover {
  color: var(--primary-color);
}

footer .footer-links ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

footer .footer-links ul li a:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

footer .footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

footer .footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

footer .footer-social .social-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

footer .footer-social .social-icon:hover {
  background: var(--primary-color);
  color: var(--background-color);
  transform: translateY(-3px);
}

footer .footer-social .social-icon:hover::after {
  top: -10%;
  left: -10%;
}

footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
  position: relative;
}

footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-color),
    transparent
  );
}

footer .footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

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

header .logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.5);
}

.modern-footer {
  position: relative;
  background: linear-gradient(45deg, var(--background-color), #1a1a1a);
  color: var(--text-color);
  padding: 100px 0 30px;
  overflow: hidden;
}

.footer-logo .logo-img {
  animation: float 3s ease-in-out infinite;
}

.social-icon {
  position: relative;
  overflow: hidden;
}

.social-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.social-icon:hover::after {
  top: -10%;
  left: -10%;
}

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

@keyframes glitch-anim {
  0% {
    clip: rect(17px, 9999px, 94px, 0);
  }
  20% {
    clip: rect(33px, 9999px, 150px, 0);
  }
  40% {
    clip: rect(70px, 9999px, 130px, 0);
  }
  60% {
    clip: rect(90px, 9999px, 50px, 0);
  }
  80% {
    clip: rect(120px, 9999px, 80px, 0);
  }
  100% {
    clip: rect(105px, 9999px, 10px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(50px, 9999px, 100px, 0);
  }
  20% {
    clip: rect(15px, 9999px, 80px, 0);
  }
  40% {
    clip: rect(60px, 9999px, 120px, 0);
  }
  60% {
    clip: rect(30px, 9999px, 70px, 0);
  }
  80% {
    clip: rect(100px, 9999px, 40px, 0);
  }
  100% {
    clip: rect(75px, 9999px, 110px, 0);
  }
}

@keyframes footerAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes code-rain {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}

@keyframes sparkle {
  0% {
    transform: scale(0) rotate(0deg);
  }
  100% {
    transform: scale(3) rotate(360deg);
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes smokeEffect {
  0% {
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.7), 0 0 10px rgba(0, 255, 170, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 170, 0.9), 0 0 20px rgba(0, 255, 170, 0.7);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.7), 0 0 10px rgba(0, 255, 170, 0.5);
  }
}

@media (max-width: 1024px) {
  .services .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  footer .footer-info,
  footer .footer-links,
  footer .footer-social {
    margin-bottom: 20px;
    min-width: auto;
  }
  footer .footer-info p,
  footer .footer-links ul li a {
    margin: 0 auto;
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
  }

  header .logo {
    float: none;
    text-align: center;
    margin-bottom: 0;
  }

  header nav {
    float: none;
    text-align: center;
  }

  header nav ul {
    flex-direction: column;
    background: var(--background-color);
    position: fixed;
    top: 70px;
    right: -200px;
    width: 200px;
    height: 100vh;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    padding-top: 30px;
  }

  header nav ul.show {
    right: 0;
  }

  header nav ul li {
    margin: 20px 0;
    text-align: center;
  }

  header nav ul li a::after {
    width: 100%;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 90%;
    border-radius: 10px;
    height: auto;
    max-height: 90vh;
    padding-bottom: 20px;
  }

  .modal {
    padding: 20px 0;
  }

  .modal-content h2 {
    font-size: 18px;
  }

  .modal-content ul li {
    font-size: 13px;
  }

  .modal-content .demos-button {
    margin-bottom: 0;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
    padding: 0 10px;
  }

  .about h2,
  .services h2,
  .contact h2 {
    font-size: 32px;
  }

  .about p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
    text-align: justify !important;
  }

  .services .service-item i {
    font-size: 40px;
  }

  .services .service-item h3 {
    font-size: 20px;
  }

  .contact form {
    width: 90%;
    margin: 0 auto;
  }

  .contact form input,
  .contact form textarea {
    font-size: 16px;
    padding: 10px;
  }

  .contact form button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

.service-item {
  position: relative;
}

.service-item .click-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px !important;
  color: var(--primary-color);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.service-item:hover .click-icon {
  opacity: 0.6;
}

.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .button-group {
    flex-direction: column;
  }
  .button-group .btn {
    margin-bottom: 15px;
  }
}

.catalogo-btn {
  background: linear-gradient(
    90deg,
    #ff7e00,
    #ff006e,
    #ff7e00
  ); /* Colores que combinan */
  background-size: 200% 200%;
  color: #fff;
}

.catalogo-btn:hover {
  background-position: 100% 0;
  color: #fff;
  border-color: #ff7e00;
  box-shadow: 0 0 20px rgba(255, 126, 0, 0.7), 0 0 40px rgba(255, 0, 110, 0.9);
}

@media (max-width: 480px) {
  .hero .btn {
      padding: 10px 20px;
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .button-group {
      flex-direction: column;
  }
  .button-group .btn {
      margin-bottom: 15px;
  }
}

.hero .btn.catalogo-btn {
  background: linear-gradient(90deg, #ff7e00, #ff006e, #ff7e00); /* Colores que combinan */
  background-size: 200% 200%;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  animation: gradientMove 4s linear infinite, pulseGlow 2s ease-in-out infinite, fadeInUp 1s ease-out 1.5s both;
  box-shadow: 0 0 15px rgba(255, 126, 0, 0.5), 0 0 30px rgba(255, 0, 110, 0.7);
}

.hero .btn.catalogo-btn:hover {
  background-position: 100% 0;
  color: #fff;
  border-color: #ff7e00;
  box-shadow: 0 0 20px rgba(255, 126, 0, 0.7), 0 0 40px rgba(255, 0, 110, 0.9);
}
