@import url("https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");
* {
  font-family: "Roboto Serif", serif;
  margin:0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.icon i {
  color: #2df069;
}
.link i {
  color: white;
}
.after::after {
  content: "";
  margin-left: 8px;
  position: absolute;
  height: 20px;
  width: 1px;
  background: white;
}

.glow-button {
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}
@keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 #05bada66;
  }

  30% {
    box-shadow: 0 0 0 15px rgb(218 103 68 / 0%);
  }

  50% {
    box-shadow: 0 0 0 0px rgb(218 103 68 / 0%);
  }

  70% {
    box-shadow: 0 0 0 15px rgb(218 103 68 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: grab;
}

.btn-53,
.btn-53 *,
.btn-53 :after,
.btn-53 :before,
.btn-53:after,
.btn-53:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-53 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
}

.btn-53:disabled {
  cursor: default;
}

.btn-53:-moz-focusring {
  outline: auto;
}

.btn-53 svg {
  display: block;
  vertical-align: middle;
}

.btn-53 [hidden] {
  display: none;
}

.btn-53 {
  border-radius: 999px;
  box-sizing: border-box;
  display: block;
  font-weight: 900;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
}

.btn-53 .original {
  display: grid;
  inset: 0;
  place-content: center;
  position: absolute;
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.btn-53:hover .original {
  transform: translateY(100%);
}

.btn-53 .letters {
  display: inline-flex;
  height: 100%;
  width: 100%;
}

.btn-53 span {
  opacity: 0;
  transform: translateY(-15px);
  transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
  background-color: #2df069;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.btn-53:hover span {
  opacity: 1;
  transform: translateY(0);
}

.bg-grad {
  background-image: 
    url(./images/Background-nav.webp);
  background-blend-mode: overlay;
  background-color: transparent;
  background-position: center center;
  background-repeat: repeat-y;
  background-size: cover;
}
.rise {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease-in-out;
}
.riseup {
  opacity: 1;
  transform: translateY(0);
}

.disappear {
  opacity: 0;
  transition: all 1s ease;
}
.disappear.visible {
  opacity: 1;
}

.left {
  opacity: 0;
  transform: translateX(200px);
  transition: all 1s ease;
}

.leftmove {
  opacity: 1;
  transform: translateX(0);
}
.right {
  opacity: 0;
  transform: translateX(-200px);
  transition: all 1s ease;
}
.rightmove {
  opacity: 1;
  transform: translateX(0);
}
.Zoomin {
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease;
}
.zoom_in {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 640px) {
  .left {
    transform: translateX(-200px);
  }
  .leftmove {
    transform: translateX(0);
  }
}

@keyframes glitch {
      0% {
        transform: translate(0px, 0px);
      }
      20% {
        transform: translate(-5px, -5px);
      }
      40% {
        transform: translate(5px, 5px);
      }
      60% {
        transform: translate(-5px, -5px);
      }
      80% {
        transform: translate(5px, 5px);
      }
      100% {
        transform: translate(0px, 0px);
      }
    }

    .glitch {
      position: relative;
      display: inline-block;
      font-size: 3rem;
      color: #00ff99;
      animation: glitch 1s infinite;
    }

    .glitch:before {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      color: #00ffcc;
      animation: glitch 0.5s infinite reverse;
    }

    .card {
      width: 100%;
      max-width: 350px;
      padding: 1rem;
      background-color: #1D1D1D;
      border-radius: 1rem;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.05);
    }

    .card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 1rem;
      position: relative;
    }

    .card .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #00ff99, #00ffcc);
      opacity: 0.5;
      border-radius: 1rem;
    }

    .card .content {
      text-align: center;
      margin-top: 1rem;
    }

    .card h3 {
      font-size: 2rem;
      font-weight: bold;
      color: white;
      margin-bottom: 0.5rem;
    }

    .card h3.glitch {
      font-size: 2.5rem;
      animation: glitch 1s infinite;
    }

    .card h5 {
      font-size: 1.25rem;
      color: #00ff99;
    }

    .card p {
      color: #CCCCCC;
      margin-top: 1rem;
      font-size: 0.875rem;
    }

    .card .buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.25rem;
    }

    .card .buttons button {
      padding: 0.5rem 1rem;
      background-color: transparent;
      border: 2px solid #00ff99;
      color: #00ff99;
      font-size: 0.875rem;
      border-radius: 0.5rem;
      transition: all 0.2s ease;
    }

    .card .buttons button:hover {
      background-color: #00ff99;
      color: white;
    }


    
/* Hover effect for cards */
.plan-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



  /* Custom fade-in animation */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Apply the fadeIn animation to any element with this class */
  .fade-in {
    animation: fadeIn 0.8s ease-out;
  }


  .faq-item:hover {
    background-color: #1a1a1a; /* Darker gray on hover */
  }
