@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=New+Rocker&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}

.rocker {
  font-family: "New Rocker", system-ui;
}

nav {
  background: #192932;
}

.up {
  background: var(
    --Linear,
    linear-gradient(
      270deg,
      #f7eea6 0%,
      #fcb236 31.01%,
      #f3808e 64.1%,
      #78aac5 100%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad2 {
  background: linear-gradient(
    131deg,
    #78aac5 40.24%,
    #bf606c 53.62%,
    #d79628 70.57%,
    #e7dd85 84.38%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SECTION */
.sec_1 {
  background: url("https://fastcdn.leadsmateai.com/megabundle/assets/mega-sec1bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.sec_3 {
  background: url("https://fastcdn.leadsmateai.com/megabundle/assets/mega-sec3bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.sec_5 {
  background: url("https://fastcdn.leadsmateai.com/megabundle/assets/mega-sec5bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

footer {
  background: url("https://fastcdn.leadsmateai.com/megabundle/assets/footer.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.text-grad1 {
  background: linear-gradient(
    270deg,
    #f7eea6 -15.67%,
    #fcb236 20.2%,
    #f3808e 58.47%,
    #78aac5 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-grad2 {
  background: linear-gradient(
    270deg,
    #fcb236 32.47%,
    #f7445a 57.47%,
    #339dd6 84.6%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grad1 {
  border-radius: 25.507px;
  border: 0.779px solid rgba(255, 255, 255, 0.35);
  background: var(
    --Linear,
    linear-gradient(
      270deg,
      #f7eea6 0%,
      #fcb236 31.01%,
      #f3808e 64.1%,
      #78aac5 100%
    )
  );
}

@media (max-width: 640px) {
  .border_line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.ac-btn {
  border-radius: 13.737px;
  border: 1.618px solid #fff;
  background: linear-gradient(
    154deg,
    #78aac5 12.18%,
    #f3808e 34.87%,
    #fcb236 63.61%,
    #f7eea6 87.03%
  );
  box-shadow: 0px 24.275px 48.55px 0px rgba(252, 178, 54, 0.4);
}

@keyframes bounce-smooth {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    left: 50%;
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
    left: 50%;
  }
}

.animate-bounce-smooth {
  animation: bounce-smooth 1.5s ease-in-out infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-10px) rotate(-3deg);
  }
  30% {
    transform: translateX(8px) rotate(3deg);
  }
  45% {
    transform: translateX(-6px) rotate(-2deg);
  }
  60% {
    transform: translateX(4px) rotate(2deg);
  }
  75% {
    transform: translateX(-2px) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes hinge {
  0% {
    transform: rotate(0); /* Start from the original position */
    opacity: 1;
  }
  20% {
    transform: rotate(80deg); /* Hinge towards 80 degrees */
    opacity: 1;
  }
  60% {
    transform: rotate(60deg); /* Swing back a bit */
    opacity: 1;
  }
  100% {
    transform: translateY(100%) rotate(90deg); /* Drop down */
    opacity: 0; /* Fade out */
  }
}

/* General animated box styles */
.animated-box {
  transition: all 0.3s ease-in-out;
  margin: 10px;
}

.animated-box.pulse {
  animation: pulse 1.5s ease-in-out;
}

.animated-box.wobble {
  animation: wobble 1s ease-in-out;
}

.animated-box.hinge {
  animation: hinge 2s ease-in-out;
  transform-origin: top left;
}

html,
body {
  overflow-x: hidden;
}
.megaimg {
    width: 80%;
    border: 12px solid #5a6a78;
    border-radius: 30px;
}
@media (max-width:580px){
    .rounded-full {
        border-radius: 20px !Important;
    }
    .megaimg {
        width: 100%;
        border: 5px solid #5a6a78;
        border-radius: 12px;
    }
}