* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Host Grotesk", sans-serif;
}

body {
  background-color: #0a0a0a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  perspective: 1000px;
}

nav {
  /* position: fixed; */
  width: 100%;
  
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: #f1db32;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  z-index: 101;
}

.logosize {
  width: 160px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}

.nav-links a {
  color: #171829;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #171828;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 101;
}

.hero {
  display: none;
  height: 800px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(45deg, #1a1a1a, #2a2a2a); */
  background-color: #201d1d;
  padding: 1rem;
  background-image: url("/assets/img/logo_3d.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -5;
}

.bgVideo{
  
  
  position: absolute;
  top: -20;
  /* left: 0; */
  z-index: -1;
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
}

@media (orientation: landscape) {
  .bgVideo {
    height: 100%;
    width: auto;
  }
}

@media (orientation: portrait) {
  .bgVideo {
    height: auto;
    width: 100%;
  }
}

.img3d{
  max-width: 100%;
  height: auto;
}

.content {
  /* text-align: center; */
  z-index: 1;
  transform-style: preserve-3d;
  background-color: #13131f9b;
  border-radius: 5px;
  padding: 1rem;
  transform: skew(-20deg); /* SKEW */
}

.titlea {
  font-size: 5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  line-height: 1;
  transform: skew(20deg); /* SKEW */
}

.title {
  font-size: 5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  line-height: 1;
 
}


.text-wrapper {
  width: 400px;
  height: 80px;
  overflow: hidden;
  position: relative;
  margin: auto;
  transform: skew(20deg); /* SKEW */
}

.neon-container {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.neon-number {
  position: relative;
  font-size: 20rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 2px #f1db32;
  filter: drop-shadow(0 0 20px #f1db32);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}

.neon-number:hover {
  color: #f1db32;
  filter: drop-shadow(0 0 30px #f1db32) drop-shadow(0 0 60px #f1db32);
  transform: scale(1.05) translateZ(50px);
}

.social-icons {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icons a:hover {
  border-color: #f1db32;
  background: #f1db32;
  transform: translateY(-5px);
}

.page-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.2rem;
}

.project-section {

  margin: 0 auto;
  padding: 6rem 2rem;
  background-color: #13131f;
  max-width: 1400px;
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: #f1db32;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    z-index: 9;
  }

  .nav-links.active {
    right: 0;
  }

  .title {
    font-size: 3rem;
  }

  .neon-number {
    font-size: 10rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2.5rem;
  }

  .project-section {
    
    padding: 6rem 0rem;

  }

  .neon-number {
    font-size: 8rem;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 320px) {
  .title {
    font-size: 2rem;
  }

  
  .project-section {
    
    padding: 6rem 0rem;

  }
  .neon-number {
    font-size: 6rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .title {
    font-size: 2rem;
  }

  .neon-number {
    font-size: 6rem;
  }

  .social-icons {
    bottom: 1rem;
  }

  
  .project-section {
    
    padding: 6rem 0rem;

  }
}




.bg{
  background-color: #13131f;
}
/* SERVICES SECTION */

.services-section {

  margin: 0 auto;
  padding: 6rem 2rem;
  background-color: #13131f;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.service-card-empty {
  position: relative;
  background-color: #13131f;
  padding: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;
  border: solid;
  border-top-width: medium;
  border-top-color: currentcolor;
  border-right-width: medium;
  border-right-color: currentcolor;
  border-bottom-width: medium;
  border-bottom-color: currentcolor;
  border-left-width: medium;
  border-left-color: currentcolor;
  border-width: 1px;
  border-color: #2b2742;
}

.section-title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-label {
  display: inline-block;
  color: #f1db32;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0 4rem;
}

.featured-label::before,
.featured-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 1px;
  background-color: #f1db32;
}

.featured-label::before {
  left: 0;
}

.featured-label::after {
  right: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background-color: #1f1f2f;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background-color: #13131f;
  padding: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border: solid;

  border-width: 1px;
  border-color: #2b2742;
  transition-duration: 0.7s;
}

.service-card:hover {
  scale: 1.02;
  background-color: #1a1a2f;
  border: 2px solid #f1db32;
  z-index: 10;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent 45%,
      rgba(255, 107, 43, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background-color: #1a1a2f;
  border: 2px solid #f1db32;
  z-index: 10;
}

.service-number {
  font-size: 0.875rem;
  color: #312c4b;
  margin-bottom: 0.1rem;
}

.service-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 0.95;
  color: #bfb8e4;
}

.service-stats {
  font-size: 3.5rem;
  font-weight: 800;
  color: #312c4b;
  transition: color 0.3s ease;
  letter-spacing: -0.25rem;
}

.service-card:hover .service-stats {
  color: #444;
}

.service-card:hover .service-title {
  color: #ffffff;
}

.awards-label {
  color: #f1db32;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.projects-count {
  font-size: 2rem;
  color: #312c4b;
}

.diagonal-stripes {
  /* background: repeating-linear-gradient(
             -45deg,
             #1f1f2f,
             #1f1f2f 3px,
             #2B2742 3px,
             #2B2742 8px
           ); */

  background: repeating-linear-gradient(-45deg,
      #1e1b2e,
      #1e1b2e 3px,
      #13131f 3px,
      #13131f 8px);
}

/* .diagonal-stripes .service-stats {
            color: white;
           }  */

.diagonal-stripes .service-number {
  color: #f1db32;
}



/* Collaborate */

.story-section {
  position: relative;
  background-color: #1a1a2f;
  color: white;
  padding: 8rem 2rem;
  min-height: 10vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.background-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  pointer-events: none;
}

.background-text {
  font-weight: 900;
  font-size: 18.4vw;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  line-height: 1;
  transform-origin: left center;
  position: relative;
  left: -2%;
  /* Initial size - will be adjusted by JS */
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.story-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 1rem;
  color: #fff;
}

.form-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

.my-btn {
  background-color: #25d366;
  color: rgb(0, 0, 0);
  border: none;
  padding: 0rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  
  height: 55px;
  
}

.my-btn:hover {
  background-color: #16ab4d;
  color: rgb(255, 255, 255);
}

.submit-btn {
  /* background-color: #25d366; */
  background: rgb(141,106,200);
background: linear-gradient(165deg, rgba(141,106,200,1) 0%, rgba(70,55,96,1) 50%);
  color: white;
  border: none;
  padding: 0rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 55px;
  padding-top: 16px;
}

.submit-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #f1db32;
  transition: all 0.3s ease;
}

.submit-btn:hover::after {
  width: 8px;
}

.submit-btn:hover {
  font-weight: bold;
  /* color: #f1db32; */
}


/* Form validation styles */
.form-input:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
}

.form-input:valid:not(:placeholder-shown) {
  border-color: #44ff44;
}

.serviceDescription {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

.serviceDescription p {
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffa666;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.tag::before {
  content: "×";
}

.tag::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  background: #ffa666;
  margin-left: 4px;
}

.title {
  font-size: 3.5rem;
  line-height: 1.2;
}

.title span {
  color: #ffa666;
}

.currency-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  background: #13131f;
  padding: 0.5rem;
  border-radius: 8px;
  width: fit-content;
  margin: 2rem auto;
}

.currency-btn {
  background: none;
  border: none;
  color: #8a8aa0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.currency-btn.active {
  background: #1e1e2d;
  color: white;
}

.pricing-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.connector {
  position: absolute;
  top: -30px;
  left: 15%;
  right: 15%;
  height: 30px;
  border-top: 1px solid #1e1e2d;
  border-left: 1px solid #1e1e2d;
  border-right: 1px solid #1e1e2d;
}

.price-card {
  background: #13131f;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #1e1e2d;
  position: relative;
}

.price-card.featured {
  background: #16161f;
}

.card-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 500;
}

.pro-tag {
  background: #ffa666;
  color: #0b0b13;
}

.bot-tag {
  background: #3d8dff;
  color: white;
}

.staking-tag {
  background: #6b6cff;
  color: white;
}

.icon {
  width: 48px;
  height: 48px;
  margin: 2rem 0;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

.price-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.price-description {
  color: #8a8aa0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  min-height: 80px;
}

.price {
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #fff;
}

.price.featured {
  background: transparent;
  border: 1px solid #ffa666;
  color: #ffa666;
  padding: 0.875rem 2rem;
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    
    grid-template-columns: repeat(2, 1fr);
  
  }

  .connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    
    grid-template-columns: repeat(1, 1fr);
  
  }

  
  .project-section {
    
    padding: 6rem 0rem;

  }

  .service-card-empty {
    display: none;
  }


  .title {
    font-size: 2.5rem;
  }

  .price-description {
    min-height: auto;
  }
}

/* New currency dropdown styles */
.currency-dropdown {
  position: relative;
  width: 120px;
  margin: 2rem auto;
}

.selected-currency {
  background: #13131f;
  border: 1px solid #1e1e2d;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.selected-currency::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffa666;
  border-bottom: 2px solid #ffa666;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.currency-dropdown.open .selected-currency::after {
  transform: rotate(-135deg);
}

.currency-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #13131f;
  border: 1px solid #1e1e2d;
  border-radius: 8px;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.currency-dropdown.open .currency-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8a8aa0;
  transition: all 0.3s ease;
}

.currency-option:hover {
  background: #1e1e2d;
  color: white;
}

.currency-option.selected {
  color: #ffa666;
  background: #1e1e2d;
}

.currency-symbol {
  color: #ffa666;
  font-size: 0.75rem;
}

a {
  text-decoration: none !important;
}

.descriptio {
  font-size: 1.2rem;
  color: #bfb8e4;
}

.description {
  padding: 0.8rem;
  font-size: 1.2rem;
  color: #bfb8e4;
}

.pricing {
  align-items: center;
}

/* WORK SECTION */

.work-section {
  margin: 0 auto;
  padding: 6rem 2rem;
  background-color: #13131f;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #13131f;
  max-width: 1400px;
  margin: 0 auto;
}

.work-card {

  position: relative;
  background-color: #1a1a2f;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border: solid;
  border-width: 1px;
  border-color: #2b2742;
  transition-duration: 0.7s;
}

.work-card:hover {
  scale: 1.02;
  background-color: #1a1a2f;
  border: 2px solid #f1db32
  ;
  z-index: 10;
}

.work-stats {
  font-size: 2rem;
  font-weight: 800;
  transition: color 0.3s ease;
  color: #bfb8e4;
  
  padding-top: .1rem;

padding-bottom: .5rem;
padding-left: 1rem;
}

.work-stats:hover {

  color: #f5f5f5;

}
.work-number {
  padding-left: 1rem;
  transition: color 0.3s ease;
  color: #f1db32;
}

.work-thumb{
  width: 100%;
}




.selected-label {
  display: inline-block;
  color: #f1db32;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0 4rem;
}

.selected-label::before,
.selected-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 1px;
  background-color: #f1db32;
}

.selected-label::before {
  left: 0;
}

.selected-label::after {
  right: 0;
}


.tags{
  background-color: #f1db32;
  padding-top: .1rem;
  font-weight: 200;
  padding-bottom: .1rem;
  padding-left: .5rem;
  padding-right: .5rem;
  color: #171829;
  font-size: 0.7rem;
  border-radius: 3px;
  float:right;
  vertical-align: middle;
  margin-top: 15px;
  margin-right: 15px;
}



.txtwhite{
  color: #fff;
}


.logo-text {
  font-size: 1rem;
  color: #6e6e8a;
  /* background-color: #1a1a2f; */
  padding: 0.5rem;
  min-height: 80px;
  line-height: 1.4;
  margin-top: 0.5rem;
  height: 100%;
}




@media (max-width: 768px) {


  .navigation {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {

  
  .project-section {
    
    padding: 6rem 0rem;

  }

  .navigation {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }

  .service-title {
    font-size: 2rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
  .service-stats {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .service-card-empty {
    display: none;
  }

  .projects-section {
    padding: 4rem 1rem;
  }

  .featured-label {
    padding: 0 2rem;
  }

  .featured-label::before,
  .featured-label::after {
    width: 1.5rem;
  }
}

.hero-module {
  overflow: hidden;
  height: 18rem;
}

.hero-module-mainImage {
  height: 45.5rem;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: blur(15px);
  -webkit-filter: blur(15px);
}

.txt-card {
  position: relative;
  background-color: #1a1a2f;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
 
  overflow: hidden;
  border: solid;
  border-width: 1px;
  border-color: #2b2742;
  
}

.txt-card-strip {
  position: relative;
  /* background-color: #1a1a2f; */
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  
  overflow: hidden;
  border: solid;
  border-width: 1px;
  border-color: #2b2742;
  
  background: repeating-linear-gradient(-45deg,
  #1e1b2e,
  #1e1b2e 3px,
  #13131f 3px,
  #13131f 8px);
}

.img-card {

  position: relative;
  background-color: #1a1a2f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: solid;
  border-width: 1px;
  border-color: #2b2742;
  transition-duration: 0.7s;
}
.centerize{
  width: 100%;
  height: 100%;
  margin: auto;
}

.message-form {
  max-width: 800px;
  margin: 0 auto;
  
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
.message-form {
  padding: 0 1rem;
  
}

  .services-grid {
    
    grid-template-columns: repeat(1, 1fr);
  
  }
  .work-section {
    
    padding: 0rem 0rem;
    
  }

  .services-section {
    padding: 1rem 1rem;
  }

  .story-section {
    padding: 6rem 1rem;
  }
}


/* FOOTER */

.footer {
  color: #171829;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  padding: 2rem 4rem;
  position: relative;
  background: #f1db32;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Background Image Setup */
.footer::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  

  z-index: -1;
  opacity: 0.2;
}

.top-section {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  margin-bottom: 4rem;
}

.left-section {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.logo-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #b080ff;
}

.logo-text {
  font-size: 0.75rem;
  color: #6e6e8a;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.right-section {
  display: flex;
  gap: 1rem;
}

.icon {
  width: 44px;
  height: 44px;
  border: 1px solid #2a2a3a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon:hover {
  border-color: #b080ff;
}

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -4rem;
}

.title {
  /* font-size: clamp(4rem, 12vw, 7rem); */
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-size: 4rem;
}





.submit-button {
  padding: 1.2rem 2rem;
  background: #b080ff;
  border: none;
  color: white;
  font-weight: 500;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.submit-button:hover {
  background-color: #9060df;
}

.navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100%;
  margin-top: 4rem;
  background: #ffffff;
}

.nav-item {
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  background: #f1db32;
  color: #171829;
}

/* .nav-item:hover {
  background-color: #1a1a24;
} */

.nav-item.active {
  border-top: 2px solid #b080ff;
  background-color: #1a1a24;
}

@media (max-width: 768px) {
  .footer {
      padding: 1rem;
  }

  .right-section {
      display: none;
  }

  .contact-form {
      flex-direction: column;
      padding: 0 1rem;
  }

  .email-input {
      border-radius: 4px;
      border-right: 1px solid #2a2a3a;
      margin-bottom: 1rem;
  }

  .submit-button {
      border-radius: 4px;
      width: 100%;
  }

  .navigation {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .title {
      font-size: 3rem;
  }

  .navigation {
      grid-template-columns: 1fr;
  }
}




.text-scroll {
  position: absolute;
  width: 100%;
  animation: scroll 8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  display: flex;
  flex-direction: column;
}

.scroll-item {
  height: 80px;
  color: white;
  font-size: 48px;
  font-weight: 700;
  font-family: "Host Grotesk", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

@keyframes scroll {
  0%, 19% {
      transform: translateY(0);
  }
  25%, 44% {
      transform: translateY(-80px);
  }
  50%, 69% {
      transform: translateY(-160px);
  }
  75%, 94% {
      transform: translateY(-240px);
  }
  100% {
      transform: translateY(-320px);
  }
}

/*  LANCHUING SOON */


.visual-section {
  background-color: #0a0a14;
  color: white;
  min-height: 60vh;
  display: grid;
  grid-template-columns: minmax(600px, 1fr) 1fr;
  gap: 4rem;
  padding: 4rem;
  align-items: center;
}

.visual-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  cursor: grab;
  /* background: radial-gradient(circle, #1a1a2f 0%, #13131f 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition: transform 0.3s ease; */
  box-shadow: 0 0 100px rgba(0, 191, 255, 0.1);
}



.neon-play {
  position: relative;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid transparent;
  border-radius: 50%;
  animation: rotateCircle 10s linear infinite;
}

.play-circle.outer {
  border-top-color: #ffd700;
  border-right-color: #ffd700;
}

.play-circle.inner {
  width: 90%;
  height: 90%;
  border-bottom-color: #00bfff;
  border-left-color: #00bfff;
  animation-direction: reverse;
}

.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 52px;
  border-color: transparent transparent transparent #ff69b4;
  filter: drop-shadow(0 0 10px #ff69b4);
  transition: transform 0.3s ease;
}

.visual-container:hover .play-triangle {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px #ff69b4);
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 600px;
}

.subtitle {
  color: #8e8eb2;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.tab.active {
  border-color: #ff69b4;
  background: rgba(255, 107, 185, 0.1);
}

.description {
  color: #8e8eb2;
  line-height: 1.6;
  /* margin-bottom: 3rem; */
}

.project-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.info-label {
  color: #8e8eb2;
  font-size: 0.875rem;
}

.info-value {
  color: white;
  font-size: 0.875rem;
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Large screens */
@media (min-width: 1440px) {
  .visual-section {
      gap: 6rem;
      padding: 6rem;
  }
  
  .visual-container {
      min-width: 700px;
  }
}

/* Medium screens */
@media (max-width: 1200px) {
  .visual-section {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }

  .visual-container {
      min-width: auto;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .visual-section {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem;
  }

  .visual-container {
      width: min(80vw, 600px);
      margin: 0 auto;
  }

  .content-container {
      margin: 0 auto;
      padding: 1rem;
  }

  .tabs {
      flex-wrap: wrap;
      justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .visual-container {
      width: min(90vw, 400px);
  }

  .play-triangle {
      border-width: 20px 0 20px 35px;
  }

  .tabs {
      flex-direction: column;
  }

  .project-info {
      grid-template-columns: 1fr;
      gap: 1rem;
  }

  .title {
      font-size: 2rem;
      text-align: center;
  }

  .subtitle {
      text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .visual-section {
      padding: 1rem;
  }

  .visual-container {
      width: 95vw;
  }

  .content-container {
      padding: 1rem;
  }
}

table {

  width: 100%;
}

.next-card {
  /* position: relative; */
  background-color: #13131f;
  padding: 1rem;
  
  display: flex;
  /* flex-direction: column; */
  justify-content: right;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border: solid;

  border-width: 1px;
  border-color: #2b2742;
  transition-duration: 0.7s;
}

.next-card:hover {
  scale: 1.02;
  background-color: #1a1a2f;
  border: 2px solid #f1db32;
  z-index: 10;
}

.back-card {
  /* position: relative; */
  background-color: #13131f;
  padding: 1rem;
  
  display: flex;
  /* flex-direction: column; */
  /* justify-content: space-between; */
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border: solid;

  border-width: 1px;
  border-color: #2b2742;
  transition-duration: 0.7s;
}

.back-card:hover {
  scale: 1.02;
  background-color: #1a1a2f;
  border: 2px solid #f1db32;
  z-index: 10;
}

.next-number{
  display:flex;
  font-size: 0.875rem;
  
  margin-bottom: 0.1rem;
  color: #f1db32;;
  justify-content: right;
}

.service-desc {
  position: relative;
  background-color: #13131f;
  padding: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;

  overflow: hidden;
  border: solid;

  border-width: 1px;
  border-color: #2b2742;
  transition-duration: 0.7s;
}