/* Common CSS */
.button-padding{
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 8px;
}

/* Section Reveal Animation */
.reveal-animation {
  opacity: 0;
  transform: translateY(250px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-animation.active {
  opacity: 1;
  transform: translateY(0);
}

.content-bottom-margin {
  margin-bottom: 100px;
}

/* Icon CSS */

.icon-section-container {
  max-width: 1200px;
  margin: auto;
}

.icon-font-size {
  font-size: 72px;
}

.icon-heading-font {
  font-size: 24px;
}

/* Hero Section */

.hero-section-container {
  position: relative;
  overflow: hidden;
  background-color: black;
  z-index: 1;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

#hero-video.fade-out {
  opacity: 0;
}

.hero-section-container .hero-heading {
  font-size: 80px;
  font-weight: 900;
  color: white;
}

.hero-section-container .hero-description {
  margin-bottom: 36px;
  color: white;
}

@media (max-width: 1400px) {
  .hero-section-container .hero-heading {
    font-size: 72px;
  }
}

@media (max-width: 991px) {
  .hero-section-container .hero-heading {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero-section-container .hero-heading {
    text-align: center;
  }
  .hero-section-container .hero-description {
    text-align: center;
  }
  .hero-section-container .hero-button-container {
    justify-content: center;
  }
}

.section-box {
  display: block;
  width: 100%;
  overflow: hidden;
}

.hero-5 .banner-image-main {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 58%;
  height: 100%;
}

.hero-5 .banner-image-main .img-bg {
  /* background: url(../images/hero-image.png) no-repeat bottom right; */
  background-size: auto;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-size: 80%;
  background-position: center;
}

@media (max-width: 1400px) {
  .hero-5 .banner-image-main .img-bg {
    background-position: center right;
    background-size: 60%;
  }
}

.blur-move {
  animation: blur-move 10s ease infinite;
}

.hero-5 .banner-image-main .blur-bg {
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 10%;
  left: -20%;
  background-size: unset;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .hero-5 .banner-image-main .img-bg {
    display: none;
  }
  .hero-5 .banner-image-main .blur-bg {
    background-size: 300px;
  }
}

.hero-5 .banner-inner-top {
  /* background-color: #090203; */
  padding-top: 250px;
  padding-bottom: 50px;
}

@media (max-width: 1200px) {
  .hero-5 .banner-inner-top {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  .hero-5 .banner-inner-top {
    padding-top: 110px;
  }
}

.hero-5 .box-banner-left {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 4;
}

@media (max-width: 1400px) {
  .hero-5 .banner-inner-top {
    padding-top: 150px;
  }
}

.hero-5 .box-banner-left {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 4;
}

@media (max-width: 1400px) {
  .hero-5 .banner-inner-top {
    padding-top: 150px;
  }
}

@media (max-width: 1200px) {
  .hero-5 .box-banner-left {
    max-width: 600px;
    width: 60%;
  }
}

@media (max-width: 992px) {
  .hero-5 .box-banner-left {
    max-width: unset;
    width: 45vw;
  }
}

@media (max-width: 767px) {
  .hero-5 .box-banner-left {
    max-width: unset;
    width: 100%;
  }
}

/* CTA section */

.cta-section-container {
  padding-top: 112px;
  padding-bottom: 112px;
  background: linear-gradient(to bottom, #2227a6, #175de4);
}

.cta-btn {
  font-size: 18px;
  border-radius: 4px;
  
  min-width: 168px;
}

.cta-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

.cta-text {
  font-size: 18px;
}

/* Ecosystem section */
.ecosystem-item {
  max-width: 1000px;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.ecosystem-item-reverse {
  max-width: 1000px;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.ecosystem-btn {
  border-radius: 4px;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
}

.ecosystem-item .first-item {
  width: 50%;
}
.ecosystem-item .second-item {
  width: 50%;
}

.ecosystem-item-reverse .first-item {
  width: 50%;
}
.ecosystem-item-reverse .second-item {
  width: 50%;
}

@media (max-width: 991px) {
  .ecosystem-item {
    flex-direction: column;
  }

  .ecosystem-item-reverse {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .ecosystem-item .first-item {
    width: auto;
  }
  .ecosystem-item .second-item {
    width: auto;
  }
  .ecosystem-item-reverse .first-item {
    width: auto;
  }
  .ecosystem-item-reverse .second-item {
    width: auto;
  }
}

/* Ecosystem Animation section */
.left-element-animation,
.right-element-animation {
  flex: 1;

  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease, transform 1s ease;
}

.right-element-animation {
  transform: translateX(100%);
}

.reveal-left,
.reveal-right {
  opacity: 1;
  transform: translateX(0);
}

/* Ensure elements remain static after being revealed */
.static {
  transition: none; /* Remove transition after being revealed */
}

@media (max-width: 1100px) {
  .left-element-animation,
  .right-element-animation {
    transform: translateX(0); /* Reset transform for mobile view */
  }
}

/* Ecosystem Opacity animation */
.opacity-animation {
  /* flex: 1; */
}

.opacity-animation {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.opacity-animation.visible {
  opacity: 1;
  transform: translateX(0);
}

/* About Page */

.about-hero-container {
  min-height: 90vh;
}

.about-hero-content {
  padding-top: 148px;
  max-width: 1400px;
  margin: auto;
}

.about-hero-heading {
  font-size: 60px;
  line-height: 64px;
  font-weight: 900;
  max-width: 632px;
  word-break: keep-all;
  text-transform: uppercase;
  margin: 24px 0px;
}

.about-hero-tagline {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.about-hero-description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.about-hero-image {
  width: 500px;
}

@media (max-width: 1100px) {
  .about-hero-image {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .about-hero-heading {
    font-size: 36px;
  }
}

/* Contact Page */

.box-content-contact {
  margin-top: 200px;
  margin-bottom: 200px;
  padding-right: 60px;
  padding-left: 60px;
}

.contact-page-tag {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-page-heading {
  font-size: 80px;
  line-height: 80px;
  color: #dc3444;
  margin: 24px 0px 0px;
}

.contact-page-description {
  font-size: 24px;
  line-height: 28px;
  margin: 24px 0px 0px;
  font-weight: 900;
}

.contact-page-description span {
  color: #dc3444;
}

.contact_button_container {
  max-width: 1200px;
  margin: 80px auto 0px;
}

.contact_page_button {
  min-height: 72px;
  background: #dc3444;

  padding: 8px 24px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0px 32px 24px;
}

.contact_page_button a {
  color: rgb(255, 255, 255);
}
.contact_page_button svg {
  margin-right: 16px;
}

.contact_page_button i {
  font-size: 26px;
  color: rgb(255, 255, 255);
  margin-right: 16px;
  cursor: text;
}

.cursor-text {
  cursor: text;
}

.contact_page_button:hover {
  background: #b02936;
  transition-timing-function: ease-in-out;
  transition-duration: 200ms;
}

@media (max-width: 1024px) {
  .contact-page-description {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .box-content-contact {
    padding: 160px 40px;
  }
  .contact_page_button {
    margin-right: 0px;
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .contact-page-heading {
    font-size: 36px;
    line-height: 40px;
    color: #dc3444;
    margin: 24px 0px 0px;
  }
}

@media (max-width: 480px) {
  .box-content-contact {
    padding: 80px 20px;
  }
}
