/*
================================================
TABLE OF CONTENTS
================================================
1.  GLOBAL STYLES & VARIABLES
2.  HELPER CLASSES & KEYFRAMES
3.  CUSTOM CURSOR
4.  HEADER & NAVIGATION
5.  HERO SECTION
6.  MARQUEE SECTION
7.  PROCESS SECTION
8.  SERVICES SECTION
9.  INDUSTRY SECTION
10. TESTIMONIALS SECTION
11. FAQ SECTION
12. CTA SECTION
13. FOOTER
14. PAGE-SPECIFIC STYLES (LEGAL, CONTACT)
15. CONTACT FORM & POPUP
16. MISC COMPONENTS (BACK TO TOP, BUTTONS)
17. RESPONSIVE DESIGN (MEDIA QUERIES)
================================================
*/

/* 1. GLOBAL STYLES & VARIABLES
------------------------------------------------*/
:root {
  --primary-color: #00a896; /* A vibrant teal for accents */
  --primary-dark: #007f71;
  --secondary-color: #02c39a;
  --background-light: #f8f9fa;
  --background-dark: #ffffff;
  --text-dark: #121212;
  --text-light: #4a4a4a;
  --border-color: #eaecef;
  --white: #ffffff;
  --black: #000000;

  --font-primary: "Inter", sans-serif;
  --font-secondary: "Fira Code", monospace;

  --header-height: 80px;
  --border-radius: 8px;
  --transition-fast: 0.2s ease-in-out;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  --box-shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--background-light);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

/* 2. HELPER CLASSES & KEYFRAMES
------------------------------------------------*/
.section-padding {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.text-center {
  text-align: center;
}

.subtitle {
  font-family: var(--font-secondary);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
}

.section-header.text-center .section-description {
  margin-left: auto;
  margin-right: auto;
}

.link-hover {
  position: relative;
  display: inline-block;
}

.link-hover::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.link-hover:hover::after {
  width: 100%;
}

@keyframes glitch {
  2%,
  64% {
    transform: translate(2px, 0) skew(0deg);
  }
  4%,
  60% {
    transform: translate(-2px, 0) skew(0deg);
  }
  62% {
    transform: translate(0, 0) skew(5deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


/* 4. HEADER & NAVIGATION
------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(248, 249, 250, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-bottom-color: var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-logo img {
  width: 160px;
  margin-right: 10px;
}

.nav-logo::after {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.nav-link span {
  color: var(--primary-color);
  margin-right: 5px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-color);
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

/* 5. HERO SECTION
------------------------------------------------*/
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
}

.hero-title .highlight {
  color: var(--primary-color);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0, 168, 150, 0.1);
  filter: blur(100px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: 5%;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  left: 10%;
}

.shape-3 {
  width: 200px;
  height: 200px;
  bottom: 5%;
  right: 25%;
  background-color: rgba(2, 195, 154, 0.1);
}

/* 6. MARQUEE SECTION
------------------------------------------------*/
.marquee-section {
  padding: 30px 0;
  background-color: var(--background-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  width: fit-content;
  animation: marquee 40s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 50px;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--text-light);
  white-space: nowrap;
  padding: 0 25px;
}

.marquee-content .separator {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* 7. PROCESS SECTION
------------------------------------------------*/
.process-section {
  background-color: var(--background-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.process-card {
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-color);
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--border-color);
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 0;
  transition: color var(--transition-smooth);
}

.process-card:hover .process-number {
  color: var(--primary-color);
}

.process-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.process-card p {
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

/* 8. SERVICES SECTION
------------------------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--background-dark);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: all var(--transition-smooth);
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.service-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
  transform: translateX(5px);
}

.service-link i {
  margin-left: 5px;
}

.service-card::after {
  display: none;
}

/* 9. INDUSTRY SECTION
------------------------------------------------*/
.industry-section {
  background-color: var(--background-dark);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.industry-item {
  padding: 15px 30px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.industry-item:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: scale(1.05);
}
.industry-item::after {
  display: none;
}

/* 10. TESTIMONIALS SECTION
------------------------------------------------*/
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--background-dark);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.author-title {
  color: var(--text-light);
}

/* 11. FAQ SECTION
------------------------------------------------*/
.faq-section {
  background-color: var(--background-dark);
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  
}

.faq-question i {
  transition: transform var(--transition-smooth);
  color: var(--primary-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-question::after {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-smooth),
    padding var(--transition-smooth);
}

.faq-answer p {
  color: var(--text-light);
  padding: 0 10px 25px 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* 12. CTA SECTION
------------------------------------------------*/
.cta-section {
  background-color: var(--text-dark);
  color: var(--white);
}
.cta-content {
  text-align: center;
  padding: 80px 0;
}
.cta-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* 13. FOOTER
------------------------------------------------*/
.footer {
  background-color: var(--background-dark);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-about .footer-logo img {
  width: 160px;
  margin-right: 10px;
}

.footer-logo::after {
  display: none;
}

.footer-about p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.footer-social a::after {
  display: none;
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links ul a,
.footer-contact ul a {
  color: var(--text-light);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
}

.footer-contact ul i {
  margin-top: 5px;
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  color: var(--text-light);
}

.footer-legal span {
  color: var(--border-color);
}

/* 14. PAGE-SPECIFIC STYLES (LEGAL, CONTACT)
------------------------------------------------*/
.page-header {
  padding: 160px 0 80px;
  background-color: var(--background-dark);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-title {
  font-family: var(--font-secondary);
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.legal-content .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-dark);
  padding: 50px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content p,
.legal-content ul li {
  color: var(--text-light);
  margin-bottom: 20px;
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
}

/* 15. CONTACT FORM & POPUP
------------------------------------------------*/
.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 60px;
}

.contact-info-block {
  background-color: var(--background-dark);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.contact-info-block h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-info-block p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.info-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.info-text p,
.info-text a {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form-block {
  background-color: var(--background-dark);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--background-light);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.2);
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 450px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.popup.show .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-light);
}

.popup-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.popup-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.popup-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

/* 16. MISC COMPONENTS (BACK TO TOP, BUTTONS)
------------------------------------------------*/
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}
.btn-secondary i {
  margin-left: 8px;
}
.btn-secondary::after {
  display: none;
}

.glitch {
  position: relative;
}
.glitch span {
  position: relative;
  z-index: 2;
}
.glitch:hover {
  animation: glitch 1s linear infinite;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* 17. RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------*/
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--background-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    transition: right var(--transition-smooth);
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-link {
    font-size: 1.5rem;
  }
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
  .contact-page-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
  .process-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .legal-content .content-wrapper {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
  body {
    cursor: auto;
  }
  a {
    cursor: pointer;
  }
  .hamburger {
    cursor: pointer;
  }
  .btn {
    cursor: pointer;
  }
  .faq-question {
    cursor: pointer;
  }
  .page-title {
    font-size: 2.2rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    align-items: center;
  }
  .footer-links ul,
  .footer-contact ul {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact ul li {
    justify-content: center;
  }
}
