@font-face {
  font-family: 'Arista';
  src: url('fonts/z-arista/Arista2.0 light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Arista';
  src: url('fonts/z-arista/Arista2.0.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arista';
  src: url('fonts/z-arista/Arista2.0_fat.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Arista Alternate';
  src: url('fonts/z-arista/Arista2.0 Alternate light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Arista Alternate';
  src: url('fonts/z-arista/Arista2.0Alternate.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arista Alternate';
  src: url('fonts/z-arista/Arista2.0Alternate_full.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/*// Border Box //*/

.ai-animated-border-box-3{
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden; 
  z-index: 0;
  border-radius: 10px;
}

.ai-animated-border-box-3:after {
  content: '';
  position: absolute;
  z-index: -1;
  /* border width */
  /* left: 15px;
  top: 15px; */
  /* double the px from the border width left */
  height: 100%;
  width: 100%;
  /*bg color*/
  background: #292a2e;
  /*box border radius*/
  border-radius: 20px;
}

/*// Border Box END//*/

.ai-content-container-3 {
  width: 100%;
height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* width: calc(100% - 30px);
  height: calc(100% - 30px); */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.ai-content-container-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.ai-content-container-3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ai-hover-container-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.ai-hover-container-3:hover {
  transform: scale(1.05);
}

.ai-logo-container-3 {
  position: absolute;
  z-index: 2;
  margin-top: -10px;
  margin-left: -8px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.ai-logo-container-3:hover {
  transform: scale(1.1);
  opacity: 1;
}

.ai-logo-3 {
  width: 105px;
  height: auto;
  max-width: 100%;
}

.ai-action-link-3 {
  display: flex;
  align-items: center;
  gap: 0px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  font-family: 'Arista', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 0 6px 12px 6px;
  opacity: 0.7;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0px;
  z-index: 2;
  margin-bottom: -5px;
  cursor: pointer;
}

.ai-action-link-3:hover {
  transform: scale(1.1);
  opacity: 1;
}

.ai-text-container-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  z-index: 2;
  padding-left: 4px;
  left: 0;
  top: 0;
}

.ai-content-text-3 {
  color: white;
  font-size: 0.95rem;
  font-weight: 200;
  text-align: left;
  line-height: 1.4;
  font-family: 'Arista', -apple-system, BlinkMacSystemFont, sans-serif;
  transform: translateX(-50px);
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease;
}

.ai-content-text-3:nth-child(1) {
  transition-delay: 0s;
  padding-left: 20px;
}

.ai-content-text-3:nth-child(2) {
  transition-delay: 0.1s;
  padding-left: 10px;
}

.ai-content-text-3:nth-child(3) {
  transition-delay: 0.2s;
  padding-left: 0px;
}

.ai-content-text-3:nth-child(4) {
  transition-delay: 0.3s;
  padding-left: 0px;
}

.ai-logo-container-3:hover ~ .ai-text-container-3 .ai-content-text-3 {
  transform: translateX(0);
  opacity: 1;
}

/*// Ignore This //*/
body {
  margin: 0px;
}

.ai-center-box-3 {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #9575cd; */
  padding: 0px;
  box-sizing: border-box;
}

.ai-arrow-icon-3 {
    height: auto;
    width: 20px;
    margin-left: 6px;
    margin-top: 3px;
}

html{
  overflow: hidden;
}


@media (hover: none) and (pointer: coarse) {
  .ai-logo-container-3:hover {
    transform: none;
  }
}

/* Remove mobile tap highlight */
.ai-logo-container-3,
.ai-action-link-3 {
  -webkit-tap-highlight-color: transparent;
}

/* Optional: keep click scaling stable */
.ai-logo-container-3:active {
  transform: none; /* prevent jump */
}
