@font-face {
  font-family: 'MontserratBold';
  src: url('../fonts/static/Montserrat-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/static/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../fonts/static/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-ExtraBoldItalic';
  src: url('../fonts/static/Montserrat-ExtraBoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.animate-from-left {
opacity: 0;
transform: translateX(-100px);
transition: all 1s ease-out;
}

.animate-from-right {
opacity: 0;
transform: translateX(100px);
transition: all 1s ease-out;
}

.animate-from-top {
opacity: 0;
transform: translateY(-50px);
transition: all 1s ease-out;
}

.animate-from-left.animated,
.animate-from-right.animated,
.animate-from-top.animated {
opacity: 1;
transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

.animate-from-right {
transition-delay: 0.2s;
}

.header_button {
  font-family: 'Montserrat-SemiBold';
  font-size: 25px;
  color: #FFFFFF;
  line-height: 60px;
  text-align: center;
  font-style: normal;
  border-radius: 999px;
  letter-spacing: 3px;
  background-color: #D01A1B;
  min-width: 400px;
}

.header_button:hover {
  background-color: #D01A1B !important;
}

.power-section, .power-section1 {
  position: relative;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  padding: 0px;
  overflow: hidden;
  z-index: 1;
}

.power-section::before {
  content: "";
  position: absolute;
  top: 16%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/moving_bg.png');
  background-size: cover;
  z-index: -2;
  animation: moveBackground 30s linear infinite;
}

.power-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(208, 26, 27, 0.7) 0%, rgba(5, 5, 7, 0) 25%);
  z-index: -1;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.power-section1::before {
  content: "";
  position: absolute;
  top: 16%;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/moving_bg.png');
  background-size: cover;
  z-index: -2;
  animation: moveBackground 30s linear infinite;
}

.power-section1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(208, 26, 27, 0.7) 0%, rgba(5, 5, 7, 0) 25%);
  z-index: -1;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

@keyframes moveBackground {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.image-hover-container {
display: inline-block;
overflow: hidden;
transition: transform 0.3s ease;
padding: 15px;
}

.power-img {
max-width: 300px;
height: auto;
transition: transform 0.5s ease;
}

.image-hover-container:hover .power-img {
transform: scale(1.1);
}

.power-img-mobile {
max-width: 184px;
height: auto;
margin-bottom: 20px;
margin-top: -90px;
}

.mobile-text-left {
text-align: left !important;
}

@media (max-width: 768px) {
  .power-section {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 40px 0;
    overflow: visible;
  }

  .power-on-section-title {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .power-on-p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
  }
}



h1 {
  font-family: 'MontserratBold';
  font-size: 10rem;
}

.header_p1 {
  font-family: 'MontserratBold';
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 3.93rem;
}

.header_p2 {
  font-family: 'Montserrat-SemiBold';
  font-weight: bold;
  font-size: 1.75rem;
  color: #9D9D9D;
  line-height: 33px;
  text-shadow: 0px 0px 14px #000000;
  text-align: center;
  font-style: normal;
  /* letter-spacing: 2px; */
  line-height: 2.06rem;
}


.hero-section {
position: relative;
overflow: hidden;
min-height: 100vh;
display: flex;
align-items: center;
padding: 40px 0;
}

.hero-video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}

.hero-video {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.7;
}

.logo-container {
  position: absolute;
  top: 25px;
  left: 30px;
  z-index: 2;
}

.top-left-logo {
max-width: 250px;
height: auto;
}

.hero-section .container {
position: relative;
z-index: 1;
}

@media (max-width: 768px) {
.hero-section {
  min-height: 80vh;
}

.top-left-logo {
  max-width: 150px;
}
}

.power-img {
  max-width: 360px;
  height: auto;
}

@media (max-width: 768px) {
  .power-section {
      text-align: center;
  }
}

.power-on-section-title {
  font-family: 'Montserrat-SemiBold';
  font-weight: bold;
  font-size: 3rem;
  color: #FFFFFF;
  margin-top: -40px;
  text-transform: uppercase;
}

.power-on-p {
  font-family: 'Montserrat-Regular';
  font-size: 1.425rem;
  color: #FFFFFF;
}


.ecosystem-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.ecosystem-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.ecosystem-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.ecosystem-item:hover {
  transform: translateX(10px);
}

.ecosystem-item:hover h6 {
  color: #fff;
  transform: scale(1.05);
}

.ecosystem-item:hover .icon {
  transform: scale(1.2);
}

.ecosystem-item:hover .item-p {
  transform: scale(1.05);
}

.icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.ecosystem-pyramid {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pyramid-layer {
  position: absolute;
  transition: transform 0.4s ease;
  z-index: 1;
  transform-origin: center;
}

.layer1 { z-index: 3; }
.layer2 { z-index: 2; }
.layer3 { z-index: 1; }

.pyramid-layer.active {
  transform: scale(1.1);
}

.ecosystem-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.ecosystem-bg-image {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('../images/moving_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.9;
  animation: floatBackground 15s ease-in-out infinite;
}

@keyframes floatBackground {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5%); }
  100% { transform: translateY(0); }
}

.echo-section-title {
  font-family: 'Montserrat-SemiBold';
  font-weight: bold;
  font-size: 3rem;
  color: #FFFFFF;
  margin-top: 20px;
  text-transform: uppercase;
}

.echo-section-title2 {
  font-family: 'Montserrat-SemiBold';
  font-weight: bold;
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.item-title {
  font-family: 'Montserrat-SemiBold';
  font-size: 1.875rem;
  transition: transform 0.3s ease, color 0.3s ease;
  margin-bottom: 0px;
}

.item-p {
  font-family: 'Montserrat-Regular';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.echo-section-title, 
.echo-section-title2, 
.item-title, 
.item-p {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.roadmap-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.road-title {
  font-family: 'MontserratBold';
  font-size: 3.2rem;
  color: #FFFFFF;
  text-transform: uppercase;
}

.red-highlight {
  color: #D01A1B;
  font-weight: bold;
}

.road_p1 {
  font-family: 'Montserrat-Regular';
  font-size: 1.8rem;
}

.road_p2 {
  font-family: 'Montserrat-Regular';
  font-size: 1.375rem;
  color: #9D9D9D;
}

.roadmap-card {
  background: linear-gradient( 180deg, #050507 60%, #CF191A 100%);
  border-radius: 17px;
  border: 1px solid #313131;
  padding: 30px 20px;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.roadmap-card:hover {
  transform: translateY(-10px);
}

.roadmap-icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.roadmap-icon img {
  max-width: 100%;
  max-height: 220px;
  border-color: #9D9D9D;
}

.roadmap-title {
  font-family: 'Montserrat-SemiBold', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.roadmap-text {
  color: #9D9D9D;
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  
}

.roadmap-content {
  position: relative;
  padding-top: 15px;
}

.roadmap-content:before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 58, 68, 0.3) 0%, rgba(255, 58, 68, 0) 70%);
  filter: blur(15px);
  z-index: 1;
  pointer-events: none;
}

@keyframes textGlow {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

.roadmap-content:before {
  animation: textGlow 3s infinite alternate;
}

.roadmap-card:hover .roadmap-content:before {
  width: 80%;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .road-title {
      font-size: 32px;
  }
  
  .road_p1 {
      font-size: 20px;
  }
  
  .road_p2 {
      font-size: 16px;
  }
  
  .roadmap-card {
      margin-bottom: 30px;
  }
}

.about-section {
  position: relative;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding-bottom: 30px;
  z-index: 5;
}

.about-title {
  font-family: 'Montserrat-SemiBold', sans-serif;
  font-weight: bold;
  font-size: 3.125rem;
  color: #FFFFFF;
  text-transform: uppercase;
}

.about-text {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: 1.125rem;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.social-icon {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #1A1A1A;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-circle:hover {
  background-color: #FF3A44;
  border-color: #FF3A44;
}

.social-img {
  height: 65px;
  object-fit: contain;
}

.privacy-policy-link {
  font-size: 1rem;
  color: #777777;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: right;
}

.privacy-policy-link:hover {
  color: #FF3A44;
}

.red-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #FF3A44, #800000);
}

@media (max-width: 992px) {
  .about-title {
      font-size: 36px;
  }
  
  .about-text {
      font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about-title {
      font-size: 32px;
  }
  
  .social-links {
      margin-top: 30px;
      justify-content: center;
      margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  h1 {
      font-size: 60px;
  }
  
  .header_p1 {
      font-size: 22px;
      letter-spacing: 1px;
  }
  
  .header_p2 {
      font-size: 16px;
      line-height: 22px;
      padding: 0 15px;
  }
  
  .header_button {
      font-size: 18px;
      line-height: 40px;
      padding: 5px 20px !important;
      min-width: 300px;
  }
  
  .power-section {
      border-top-left-radius: 40px;
      border-top-right-radius: 40px;
      padding: 40px 0px;
  }
  
  .power-img {
      max-width: 180px;
  }
  
  .power-on-section-title {
      font-size: 32px;
      margin-top: 15px;
  }
  
  .power-on-p {
      font-size: 16px;
      line-height: 24px;
  }
  
  .ecosystem-section {
      padding: 40px 0px;
  }
  
  .echo-section-title {
      font-size: 32px;
      text-align: left;
  }
  
  .echo-section-title2 {
      font-size: 24px;
      text-align: left;
      margin-bottom: 30px;
  }
  
  .item-title {
      font-size: 20px;
  }
  
  .item-p {
      font-size: 16px;
  }
  
  .road-title {
      font-size: 32px;
      text-align: left;
  }
  
  .road_p1 {
      font-size: 20px;
      text-align: left;
  }
  
  .road_p2 {
      font-size: 16px;
      text-align: left;
      padding: 0;
  }
  
  .roadmap-card {
      min-height: 280px;
      margin-bottom: 20px;
  }
  
  .roadmap-icon {
      height: 120px;
  }
  
  .about-title {
      font-size: 32px;
      text-align: left;
  }
  
  .about-text {
      font-size: 16px;
      text-align: left;
      margin: 0 auto;
  }
  
  .social-links {
      justify-content: left;
      margin-top: 20px;
      margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .social-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  .icon-circle {
    width: 50px;
    height: 50px;
  }
  
  .social-img {
    height: 50px;
  }
  
  .footer-info {
    text-align: center;
    margin-top: 30px;
  }

  .privacy-policy-link {
    text-align: center;
    color: #999999;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 48px;
  }
  
  .header_p1 {
      font-size: 18px;
      line-height: 23px;
  }
}

@media (max-width: 992px) {
  .ecosystem-pyramid {
      display: none !important;
  }
  
  .mobile-ecosystem-section {
      background-color: #0a0a0a;
      padding: 30px 0px;
      position: relative;
      margin-bottom: 40px;
  }
  
  .mobile-ecosystem-section .echo-section-title {
      font-family: 'Montserrat-SemiBold', sans-serif;
      font-weight: bold;
      font-size: 32px;
      color: #FFFFFF;
      text-align: left;
      margin-bottom: 5px;
  }
  
  .mobile-ecosystem-section .echo-section-title2 {
      font-family: 'Montserrat-SemiBold', sans-serif;
      font-weight: bold;
      font-size: 24px;
      color: #FFFFFF;
      text-align: left;
      margin-bottom: 30px;
  }
  
  .mobile-ecosystem-content {
      display: flex;
      flex-direction: column;
      width: 100%;
      background-image: url(../images/half_pyramid.png);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: right;
  }

  .half-pyramid {
      width: 35%;
  }
  
  .mobile-ecosystem-item {
      display: flex;
      flex-direction: column;
      align-items: left;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 15px;
      transition: all 0.3s ease;
  }
  
  .mobile-ecosystem-item:last-child {
      border-bottom: none;
  }

  .mobile-ecosystem-item:hover {
      transform: translateX(5px);
  }

  .mobile-ecosystem-item:hover .mobile-item-title {
      transform: scale(1.05);
  }
  
  .mobile-icon-container {
      width: 50px;
      height: 50px;
      background-color: #FF3A44;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s ease;
  }

  .mobile-ecosystem-item:hover .mobile-icon-container {
      transform: scale(1.1);
  }
  
  .mobile-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
  }
  
  .mobile-item-title {
      font-family: 'Montserrat-SemiBold', sans-serif;
      font-size: 22px;
      color: #D01A1B;
      margin-bottom: 2px;
      transition: transform 0.3s ease;
      text-align: left;
  }
  
  .mobile-item-text {
      font-family: 'Montserrat-Regular', sans-serif;
      font-size: 16px;
      color: #FFFFFF;
      margin-bottom: 0;
      transition: transform 0.3s ease;
      text-align: left;
  }

  .mobile-ecosystem-item:hover .mobile-item-text {
      transform: scale(1.05);
  }
  
  .mobile-pyramid-img {
      margin: 0 81px;
      display: block;
      transition: transform 0.4s ease;
  }

  .mobile-pyramid-img:hover {
      transform: scale(1.05);
  }
  
  @media (min-width: 992px) {
      .mobile-ecosystem-section {
          display: none !important;
      }
  }
}


.privacy-title1 {
  font-family: 'MontserratBold';
  font-size: 3.125rem;
  color: #fff;
  text-align: left;
  margin-bottom: 2rem;
}

.privacy_p1 {
  margin-bottom: 2.5rem;
}

#privacy-policy p {
  font-size: 1rem;
  font-family: 'Montserrat-Regular';
}

.privacy-title2 {
  font-family: 'MontserratBold';
  font-size: 2.563rem;
  text-align: left;
  color: #D01A1B;
  margin-bottom: 2rem;
}

.privacy-title3 {
  font-family: 'MontserratBold';
  font-size: 1.25rem;
  text-align: left;
  color: #D01A1B;
}

#privacy-policy li::marker {
  color: #D01A1B;
}

.section1-privacy {
  padding: 0rem 3rem;
  margin-bottom: 2rem;
}

.email-link {
  font-family: 'MontserratBold' !important;
  color: #D01A1B;
  margin-bottom: 40px;
}


@media (max-width: 768px) {
  .privacy-social {
    text-align: center;
  }

  .email-link {
    font-family: 'MontserratBold' !important;
    color: #D01A1B;
    margin-bottom: 25px;
  }

  .privacy-title1 {
    font-family: 'MontserratBold';
    font-size: 1.625rem;
    color: #fff;
    text-align: left;
    margin-bottom: 1rem;
  }
  
  #privacy-policy p {
    font-size: 0.875rem;
    font-family: 'Montserrat-Regular';
  }

  .privacy_p1 {
    margin-bottom: 1rem;
  }
  
  .privacy-title2 {
    font-family: 'MontserratBold';
    font-size: 1.25rem;
    text-align: left;
    color: #D01A1B;
    margin-bottom: 1rem;
  }
  
  .privacy-title3 {
    font-family: 'MontserratBold';
    font-size: 1rem;
    text-align: left;
    color: #D01A1B;
  }
  
  #privacy-policy li::marker {
    color: #D01A1B;
  }
  
  .section1-privacy {
    padding: 0rem;
  }
  
  .email-link {
    font-family: 'MontserratBold' !important;
    color: #D01A1B;
  }
}