* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section2 {
  background-image: url(../assets/index-page/Lines.svg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-height: 598px;
  height: 100vh !important;
  overflow-y: hidden;
}

.hero-section-second {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* margin-top: 80px; */
}

.loading-text-hero-section2 span {
  background-image: linear-gradient(90deg, #00FFD0 -207.81%, #00BBFF 710.59%);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: 70px;
  font-family: "Orbitron", sans-serif;
  text-align: center;
}

.hero-section-second-content h2 {
  color: #fff;
  font-weight: 800;
  font-size: 70px;
  font-family: "Orbitron", sans-serif;
  text-align: center;
  display: inline-block;
}

.hero-section-second-content p {
  color: #FFFFFFBF;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-bottom: 0px;

}

.hero-section-second-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.hero-section-btn {
  justify-content: center !important;
}

.loading-text-hero-section2 {
  /* display: inline-block; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-self: center;
}

.char-hero-section2-text {
  opacity: 0;
  /* Initially invisible */
  display: inline-block;
  animation: scrollEffect 3s infinite;
}

/* Individual delays for each char-hero-section2acter */
.char-hero-section2-text:nth-child(1) {
  animation-delay: 0.6s;
}

.char-hero-section2-text:nth-child(2) {
  animation-delay: 0.7s;
}

.char-hero-section2-text:nth-child(3) {
  animation-delay: 0.8s;
}

.char-hero-section2-text:nth-child(4) {
  animation-delay: 0.9s;
}

.char-hero-section2-text:nth-child(5) {
  animation-delay: 1s;
}

.char-hero-section2-text:nth-child(6) {
  animation-delay: 1.1s;
}

.char-hero-section2-text:nth-child(7) {
  animation-delay: 1.2s;
}

.char-hero-section2-text:nth-child(8) {
  animation-delay: 1.3s;
}

.char-hero-section2-text:nth-child(9) {
  animation-delay: 1.4s;
}

.char-hero-section2-text:nth-child(10) {
  animation-delay: 1.5s;
}

@keyframes scrollEffect {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  50% {
    opacity: 1;
    transform: translateY(0%);
  }

  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/*  */
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(5px, 5px);
  }

  50% {
    transform: translate(0, 0);
  }

  75% {
    transform: translate(-5px, -5px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.shake-image {
  display: inline-block;
  animation: shake 1s infinite;
}

/*  */
.hero-section-second-content h2 img {
  width: 63px;
  height: 76px;
}

@keyframes heartbeat {
  0% {
    transform: scale(0.5) translate(0, 0);
    /* Image starts small */
  }

  25% {
    transform: scale(1) translate(2px, 2px);
    /* Image scales up to normal size */
  }

  50% {
    transform: scale(0.5) translate(0, 0);
    /* Image shrinks again */
  }

  75% {
    transform: scale(1) translate(-2px, -2px);
    /* Image scales up again */
  }

  100% {
    transform: scale(0.5) translate(0, 0);
    /* Image ends smaller */
  }
}

.heartbeat-image {
  display: inline-block;
  animation: heartbeat 8s infinite;
  /* Slowed down to 2 seconds */
}

/*  */
@keyframes moveY {
  0% {
    transform: translateY(0);
    /* Start at the original position */
  }

  50% {
    transform: translateY(10px);
    /* Move 10px down at the midpoint */
  }

  100% {
    transform: translateY(0);
    /* Return to the original position */
  }
}

.translate-image {
  animation: moveY 2s infinite;
  /* 1s duration, infinite loop */
}

/* HERO SECTION 3 START HERE */
#hero-section3 {
  max-height: 598px;
  height: 100vh;
  overflow-y: hidden;

}

.hero-section3-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-sec3-content-section h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 45px;
  color: #FFFFFF;
  text-transform: uppercase;

}

.hero-sec3-content-section p {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: #FFFFFF;
  text-transform: uppercase;

}

.hero-section3-word-container {
  display: flex;
  gap: 15px;
  font-family: "Orbitron", sans-serif !important;
  font-weight: 900;
  font-size: 50px;
  text-transform: uppercase;
  color: rgba(0, 255, 208, 1);

}

.hero-section3-word-container span {
  font-family: "Orbitron", sans-serif !important;
}

.hero-section3-word {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Orbitron", sans-serif !important;
}

.char {
  opacity: 0;
  animation: typing 0.3s forwards;
}

@keyframes typing {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* HERO SECTION third end */
/* HERO SECTION fourth */
#hero-section4 {
  width: 100%;
  max-height: 478px;
  height: 100%;
  border-radius: 20px;
  background: #FFFFFF0D;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow-y: hidden;
}

.hero-section4-full-container {
  background-image: url(../assets/index-page/hero-section4-bg-gif.gif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 598px;
  height: 100vh !important;
}

.hero-sec4-content-heading h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 45px;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 60px;
}

.hero-sec4-content-heading h2 span {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 45px;
  background: linear-gradient(90deg, #00FFD0 0%, #00BBFF 100%);
  -webkit-background-clip: text;
  /* Clip the background to the text */
  -webkit-text-fill-color: transparent;
  /* Make the text color transparent */
  text-transform: uppercase;
}

.hero-sec4-content-section p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

.box-shadow-animation {
  animation: blink-shadow 3.5s infinite ease-in-out;
}

@keyframes blink-shadow {

  0%,
  100% {
    box-shadow: 0 0 15px #00FFD0, 0 0 10px #00B2FF;
  }

  50% {
    box-shadow: 0 0 5px #00FFD0, 0 0 10px #00B2FF;
  }
}

.hero-sec4-img-section {
  /* width: 510px; */
  height: 478px;
  padding-top: 15px;
}

.hero-sec4-img-section img {
  width: 100%;
  height: 100%;
}

.hero-sec4-content-section-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  padding-left: 40px;
}

.hero-section-4-btn2nd button {
  background-color: transparent !important;
  border: 2px solid;
  border-image-source: linear-gradient(90deg, #00B2FF 0%, #00FFD0 52.5%, #00B2FF 100%);
  border-image-slice: 1;
}

.hero-section-4-btn2nd {
  background: transparent !important;
  border: 2px solid #00D4E8 !important;
}

/* TOOLS AND TECHNOLGY SECTION */
.cmn-section.cmn-section-second {
  background: #00FFD00D !important;
  backdrop-filter: blur(40px) !important;
}

.tools-and-technology-btn {
  width: 459px;
  display: flex;
  justify-content: space-evenly;
  background: #2F2F2F99;
  color: #fff;
  border-radius: 45px;
  padding: 12px;
  margin: 0 auto;
}

.tab-button {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  padding: 8px 40px;
  background: transparent;
  border-radius: 59px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 195px;
  height: 50px;
}

.tab-button.active {
  background: #00FFD0;
  font-weight: 600;
  color: #000 !important;
}

.tab-content {
  display: none;
  margin-top: 20px;
  font-size: 18px;
}

.tab-content.active {
  display: block;
}

/* PLANS SECTION */
/* .full-section-border-plans{
  position: relative;
  border-width: 2px !important;
  border-style: solid !important;
  border-image-source: linear-gradient(90deg, #000000 0%, #FFFFFF 24.67%, #FFFFFF 78.67%, #000000 100%) !important;
  border-image-slice: 1 !important;
  padding: 20px; 
  background: #f9f9f9; 
} */
.full-section-border-plans {
  position: relative;
  padding: 20px;
  /* Space for content inside the border */
  background: #f9f9f9;
  /* Background color of the section */
  z-index: 1;
  /* Keep content above the pseudo-element */
}

.full-section-border-plans::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  /* Place behind the content */
  background: linear-gradient(90deg, #000000 0%, #FFFFFF 24.67%, #FFFFFF 78.67%, #000000 100%);
  -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
  mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border: 2px solid transparent;
  /* Adjust thickness of the border */
}

/* Custom Button Styles */

/* MEDIA QUERY | MEDIA QUERY | MEDIA QUERY  */

@media screen and (max-width: 1200px) and (min-width: 992px) {
  /* .hero-section-second {
    margin-top: 60px;
  } */

  .loading-text-hero-section2 span {
    font-size: 48px;
  }

  .hero-section-second-content h2 {
    font-size: 48px;
  }

  /* HERO SECTION THIRD */
  .hero-sec3-content-section h2 {
    font-size: 32px;
  }

  .hero-section3-word-container {
    font-size: 32px;
  }

  .hero-sec3-content-section p {
    font-size: 16px;
    line-height: 25px;
  }
}

@media screen and (max-width:991.98px) {
  .hero-section-second-img {
    width: 150px;
    height: 150px;
  }

  .hero-section-second-img img {
    width: 100%;
    height: 100%;
  }

  /* .hero-section-second {
    margin-top: 60px;
  } */

  .loading-text-hero-section2 span {
    font-size: 42px;
  }

  .hero-section-second-content h2 {
    font-size: 32px;
  }

  /* .hero-section-btn {
    padding-bottom: 40px !important;
  } */

  /* #hero-section3 {
    margin-top: 60px;
  } */
  .hero-sec3-content-section {
    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: column;
  }

  .hero-section3-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-sec3-img-section {
    width: 50%;
    margin: 0 auto;
  }

  .hero-sec3-content-section h2 {
    font-size: 32px;
  }

  .hero-section3-word-container {
    font-size: 32px;
  }

  .hero-sec3-content-section p {
    font-size: 18px;
    line-height: 20px;
    text-align: center;
  }

  /* HERO SECTION FOURTH */
  .hero-sec4-content-section-col {
    padding-left: 100px;
  }

  .hero-sec4-content-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-sec4-content-heading h2 span {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-sec4-content-section p {
    font-size: 14px;
  }
}



@media screen and (max-width:767.98px) {

  .hero-section2 {
    display: flex;
    align-items: center;
    justify-self: center;
  }

  .hero-sec3-img-section {
    width: 50% !important;
    margin: 0 auto;
  }

  .loading-text-hero-section2 span {
    font-size: 28px;
  }

  .hero-section-second-content h2 {
    font-size: 28px;
  }

  .hero-section-second-content h2 img {
    width: 40px;
    height: 40px;
  }

  /* HERO SECTION FOURTH */
  .hero-section4-full-container {
    background-image: none;
  }
  #hero-section4 {
    background: transparent;
    max-height: unset;
  }

  .hero-section4-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-sec4-img-section {
    width: 70%;
    height: auto;
    margin: 0 auto;
    padding-top: 2px;
  }

  .hero-sec4-content-section-col {
    padding-left: unset;
    text-align: center;
  }

  .hero-sec4-content-heading h2 {
    margin-top: 18px;
    font-size: 20px;
    line-height: 30px;
  }

  .hero-sec4-content-heading h2 span {
    font-size: 20px;
    line-height: 30px;
  }

}

@media screen and (max-width:576px) {
  .hero-section2 {
    height: 80vh !important;
  }

  .hero-sec3-img-section {
    width: 70%;
    margin: 0 auto;
  }

  #hero-section3 {
    height: 80vh;
    margin-top: 2px;
  }

  .hero-section-second-img {
    width: 125px;
    height: 125px;
  }

  .loading-text-hero-section2 span {
    font-size: 22px;
  }

  .hero-section-second-content h2 {
    font-size: 22px;
  }

  /* .hero-section-second-content h2 img{
    width: 50px;
    height: 50px;
  } */
  .hero-section-second-content p {
    font-size: 14px;

  }

  .hero-sec3-content-section h2 {
    font-size: 20px;
  }

  .hero-section3-word-container {
    font-size: 20px;
  }

  .hero-sec3-content-section p {
    font-size: 10px;
    text-align: center;
    line-height: 20px;
    margin-bottom: unset;
  }

  /* HERO SECTION FOURTH */
  .hero-section4-full-container {
    height: 80vh !important;
  }

  .hero-sec4-img-section {
    width: 60%;
  }

  /* Tools and technology */
  .tools-and-technology-btn {
    width: 300px;
  }

  .tab-button.active {
    width: 160px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
  }

  .tab-button {
    font-size: 18px;
  }
}

@media screen and (max-width:376px) {
  .hero-section-second-img {
    width: 100px;
    height: 100px;
  }

  .hero-section-second-content p {
    font-size: 12px;
  }

  /* .hero-section-second-content h2 img {
  width: 35px;
  height: 35px;
} */
}

@media screen and (max-width:321px) {
  .loading-text-hero-section2 span {
    font-size: 18px;
  }

  .hero-section-second-content h2 {
    font-size: 18px;
  }

  .hero-section-second-content p {
    font-size: 10px;
  }
}

#hero-section-first-section {
  /* position: relative; */
  background-image: url(../assets/index-page/hero-section.gif);
  width: 100%;
  background-size: cover;
  background-position: center;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  /* margin-top: 80px; */
}

.hero-section-first-row {
  margin-top: 80px;
}

#hero-section-first-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-sec-first-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sec-first-content h1 {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: #FFFFFF;
  text-transform: uppercase
}

.hero-sec-first-content p {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  line-height: 38px;
}