* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-1);
}
html {
  /* 1rem = 10px */
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body,
html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--black);
}

header,
section {
  font-size: 1.6rem;
}
@font-face {
  font-family: "jmb";
  src: url(assets/JandaManateeSolid.ttf);
}
:root {
  --font-1: "jmb";
  --white: #ffffff;
  --black: #000000;
}

.page {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.page::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(assets/bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
}
/* =========top-side======== */
.top-side {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  padding: 4rem 4% 6rem 0;
}
/* ========bottom-side======== */
.bottom-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 2rem 0 4rem 0;
  flex: 1;
}
.center-box {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  align-items: center;
  background-color: var(--black);
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 5;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.scrolling-content {
  display: flex;
  gap: 7rem;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}
.moving-text {
  font-weight: 400;
  font-size: 5rem;
  line-height: 100%;
  white-space: nowrap;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========heading section======== */
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 6;
}

.heading {
  font-weight: 400;
  text-align: center;
  line-height: 100%;
  letter-spacing: 0%;
  font-size: 10rem;
}

.heading2 {
  color: #78f0ff;
}
.heading3 {
  color: var(--black);
  font-size: 9rem;
}
.para {
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
  text-transform: capitalize;
}
.text-box {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(21, 209, 207, 0.66) 0%,
    rgba(20, 207, 205, 0.32) 102.42%
  );
  backdrop-filter: blur(20px);
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4% 4rem 4%;
}
/* ========btns section======== */
.btns-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.link-btn {
  padding: 0 1rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  z-index: 10;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid #070707;
  box-shadow: 0px 0.17rem 0.17rem #000000;
}

.link-btn:hover {
  transform: translateY(-8px);
  border-radius: 20px;
}

.link-btn img {
  width: 100%;
  height: auto;
}

/* ========copy btn section======== */

.copy-btn-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-shadow: 0px 0.182rem 0.182rem #000000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.copy-btn {
  background-color: var(--black);
  cursor: pointer;
  transition: all 0.4s;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.copy-btn img {
  width: 2.5rem;
  height: auto;
  cursor: pointer;
  transition: all 0.4s;
}
.copy-btn:hover .copy-img {
  transform: scale(1.06);
}
.copy-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white);
}

.copy-text p {
  color: var(--black);
  font-weight: 400;
  padding: 1rem;
  font-size: clamp(1rem, 1.3rem, 1.5rem);
}
.copy-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.copy-popup {
  text-align: center;
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50px;
  transform: translateX(-50%) scale(0.5);
  background: var(--black);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 2rem;
  opacity: 0;
  pointer-events: none;
}

.copy-popup.active {
  animation: popupAnim 1s ease-out forwards;
}

@keyframes popupAnim {
  0% {
    transform: translateX(-50%) translateY(20px) scale(0.5);
    opacity: 0;
  }
  30% {
    transform: translateX(-50%) translateY(-10px) scale(1.1);
    opacity: 1;
  }
  70% {
    transform: translateX(-50%) translateY(-20px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-40px) scale(0.8);
    opacity: 0;
  }
}
/* ========main-img section======== */

.side-img {
  height: auto;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
#side-img-1 {
  width: 100%;
  max-width: 65rem;
  position: relative;
 
}
#side-img-2 {
  width: 100%;
 height: auto;
}
#img1 {
  position: absolute;
  bottom: 0;
  width: 80%;
  height: auto;
  z-index: 2;


}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
}
.bg img,
.side-img .img {
  width: 100%;
  height: 100%;
}
.arrow {
  position: absolute;
  height: auto;
  max-width: 20rem;
  width: 15%;
}
#arrow-b {
  top: 18%;
  left: 0;
}
#arrow-w {
  bottom: 0;
  right: 0;
}
/* responsiveness */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 1300px) {
  #text1 .heading {
    font-size: 8rem;
  }
}
@media (max-width: 1200px) {
  #text1 .heading {
    font-size: 7rem;
  }
  .heading3 {
    font-size: 7.5rem;
  }
  .arrow {
    max-width: 12rem;
  }
}
@media (max-width: 900px) {
  .arrow {
    max-width: 20rem;
    width: 12%;
  }
}

@media (max-width: 860px) {
  .top-side {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
    padding-right: 0;
  }
  #text1 {
    padding-left: 4%;
    padding-right: 4%;
  }
  #text1 .heading {
    font-size: 9rem;
  }
  .scrolling-content {
    gap: 5rem;
  }
  #arrow-b {
    top: 12%;
  }
  #side-img-1 {
    margin-right: auto;
  }
}

@media (max-width: 810px) {
  #arrow-b {
    top: 3rem;
  }
}

@media (max-width: 700px) {
  .copy-text p {
    font-size: 1.8vmin;
  }
  #text1 .heading {
    font-size: 12vw;
  }
  .heading3 {
    font-size: 14vw;
  }
  .scrolling-content {
    gap: 4rem;
  }
  .moving-text {
    font-size: 4rem;
  }
  .arrow {
    max-width: 20rem;
    width: 20%;
  }
  #arrow-b {
    top: 5rem;
  }
}
@media (max-width: 400px) {
  .scrolling-content {
    gap: 3rem;
  }
  .moving-text {
    font-size: 3.5rem;
  }
  .para {
    font-size: 3.2rem;
  }
}
