:root {
  --primaryColor: #4600aa !important;
  --secondarycolor: #4600aa !important;
  --color-primary: #4600aa !important;
  --color-secondary: #4600aa !important;
}

body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0e0e0e;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
  position: relative;
}

/* Scrolling Text Styles */
.scrolling-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scrollingText {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: scroll 20s linear infinite;
}

.title {
  color: #ffffff;
  font-size: 12.5rem; /* 200px */
  line-height: 1.1em;
  padding: 0;
  margin: 0 !important;
}

.scrolling-text-container .title span {
  -webkit-text-stroke-width: 0.0625rem; /* 1px */
  -webkit-text-stroke-color: #74787c;
  color: #0e0e0e;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Card Styles */
.card-container {
  perspective: 62.5rem; /* 1000px */
  width: 37.5rem; /* 600px */
  height: 43.75rem; /* 700px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 100%;
  height: 120%;
  min-height: 31.25rem; /* 500px */
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  cursor: pointer;
}

.card.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1.25rem; /* 20px */
  overflow: hidden;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3); /* 10px 30px */
}

.card-front {
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 0.9375rem; /* 20px 15px */
  box-sizing: border-box;
}

.card-back {
  background: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #141414;
}

.card h2 {
  margin: 0 0 1.25rem 0; /* 20px */
  color: #333;
}

.card p {
  color: #666;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.icon {
  width: 1.875rem; /* 30px */
  height: 1.875rem; /* 30px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #141414;
}

.profile-img {
  width: 12.5rem; /* 200px */
  height: 14.375rem; /* 230px */
  margin-bottom: 1.5rem;
  object-fit: contain;
  padding: 0;
}

.link-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.5rem); /* 8px */
  border-radius: 0.9375rem; /* 15px */
  margin: 1rem 0;
  padding: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0.0625rem solid rgba(0, 0, 0, 0.1); /* 1px */
  display: flex;
  align-items: center;
  gap: 1rem;
}

a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
}

button {
  background-color: #4500a9;
  padding: 1.25rem 2.5rem; /* 20px 40px */
  font-size: 1rem; /* 16px */
  font-weight: 600;
  color: #ffffff;
  border-style: none;
  border-radius: 0.3125rem; /* 5px */
  box-shadow: none;
  width: 100%;
  max-width: 32.5rem; /* 520px */
  display: block;
  margin-top: 0.625rem; /* 10px */
  margin-bottom: 0.1875rem; /* 3px */
  transition: all 0.3s ease;
  cursor: pointer;
}

button a {
  color: #ffffff;
  font-weight: 600;
}

button:hover {
  background-color: #38008a;
  transform: translateY(-0.125rem); /* 2px */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2); /* 4px 8px */
}

.creators-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 2.5rem 0; /* 40px */
  text-align: center;
}

.creators-slider-track {
  display: flex;
  gap: 1.25rem; /* 20px */
  width: max-content;
  animation: scroll 20s linear infinite;
  padding: 0.625rem 0; /* 10px */
  margin-bottom: 5rem; /* 80px */
}

.creator-square {
  width: 18.75rem; /* 300px */
  height: 15.625rem; /* 250px */
  flex-shrink: 0;
  border-radius: 0.5rem; /* 8px */
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* 4px 8px */
  transition: transform 0.3s ease;
}

.creator-square:hover {
  transform: scale(1.05);
}

.creator-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creators-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-top: 0.9375rem; /* 15px */
}

.contact-container {
  width: 80%;
  padding: 1.875rem; /* 30px */
  align-items: center;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 1.875rem; /* 30px */
  font-size: 1.75rem; /* 28px */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  color: #4500a9;
  margin-top: 1.5625rem; /* 25px */
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem; /* 20px */
  padding: 0.9375rem; /* 15px */
  background-color: #141414;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem; /* 10px */
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(0.3125rem); /* 5px */
  background: rgba(255, 255, 255, 0.15);
}

.contact-info {
  display: block;
  flex-direction: column;
}

.value {
  font-size: 1rem; /* 16px */
  font-weight: 500;
  color: #141414;
}

.review-section {
  margin-top: 2.5rem; /* 40px */
  text-align: center;
}

.review-section p {
  margin-bottom: 0.9375rem; /* 15px */
  font-size: 0.875rem; /* 14px */
  opacity: 0.9;
}

.review-btn {
  display: inline;
}

.contact-item i {
  font-size: 1.5rem; /* 24px */
  margin-right: 0.9375rem; /* 15px */
  width: 2.5rem; /* 40px */
  height: 2.5rem; /* 40px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.services-row {
  display: flex;
  align-items: center;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  gap: 3.75rem; /* 60px */
}

.left-column {
  flex: 1;
}

.right-column {
  flex: 1;
}

.services-container {
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.875rem; /* 30px */
}

.text-section {
  flex: 1;
  max-width: 100%;
  width: 100%;
  margin-bottom: 2.5rem; /* 40px */
}

.circle-section {
  margin-left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.section-title {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  margin-bottom: 1.25rem; /* 20px */
  line-height: 1.2;
  color: var(--text-color);
}

.service-description {
  font-size: 1.125rem; /* 18px */
  color: var(--light-text);
  margin-bottom: 1.875rem; /* 30px */
  max-width: 31.25rem; /* 500px */
}

.service-description {
  font-size: 1rem; /* 16px */
  max-width: 100%;
}

.circle-button {
  font-weight: 400;
  font-size: 0.875rem; /* 14px */
  line-height: 1.125rem; /* 18px */
  color: #141414;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem; /* 10px */
}

.circle-button i {
  margin-left: 0;
  height: 5rem; /* 80px */
  width: 5rem; /* 80px */
  border: 0.0625rem solid #141414; /* 1px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem; /* 20px */
  transition: 0.3s;
}

.circle-button:hover i {
  transform: scale(1.2);
  box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.15); /* 6px 20px */
  background: #141414;
  border: transparent;
  color: #fff;
}

/* Tablet and Desktop Styles */
@media (min-width: 48rem) { /* 768px */
  .services-container {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .text-section {
    max-width: 43.75rem; /* 700px */
    margin-bottom: 0;
  }

  .circle-section {
    margin-left: 2.5rem; /* 40px */
    width: auto;
    justify-content: flex-end;
  }

  .service-description {
    font-size: 1.125rem; /* 18px */
    max-width: 31.25rem; /* 500px */
  }

  .circle-button {
    flex-direction: row;
    align-items: center;
  }

  .circle-button i {
    height: 6.25rem; /* 100px */
    width: 6.25rem; /* 100px */
    margin-left: 1.875rem; /* 30px */
  }
}

@media (max-width: 47.9375rem) { /* 767px */
  .card-container {
    width: 90%;
    height: auto;
    margin: 1.25rem auto; /* 20px */
  }

  .card {
    height: auto;
    min-height: 37.5rem; /* 600px */
  }

  .card-front {
    overflow: auto;
    height: -webkit-fill-available;
  }

  .title {
    font-size: 5rem; /* 80px */
  }

  .creator-square {
    width: 12.5rem; /* 200px */
    height: 11.25rem; /* 180px */
  }

  .services-container {
    flex-direction: row;
    padding: 0.9375rem; /* 15px */
    margin-bottom: -4rem;
  }

  .circle-section {
    margin-top: 1.25rem; /* 20px */
    margin-left: 0;
  }

  .contact-container {
    width: 90%;
    padding: 0.9375rem; /* 15px */
    height: -webkit-fill-available;
    overflow-y: auto;
  }

  .contact-item {
    padding: 0.625rem; /* 10px */
  }

  button {
    padding: 0.9375rem 1.875rem; /* 15px 30px */
    font-size: 0.875rem; /* 14px */
  }

  body {
    padding: 1.25rem 0; /* 20px */
  }
  .service-description{
    display: none;
  }
  .circle-button i {
    height: 2rem;
    width: 2rem;
    font-size: 1rem;
  }
  .profile-img{
    margin-bottom: -3.5rem;
  }
  .creators-slider-track{
    margin-bottom: 2rem;
  }
  .icon{
    font-size: 1rem;
  }
  .section-title{
    font-size: 1.5rem;
  }
}