body {
  background-color: white;
}


.footer {
    background-color: black;
    color: azure;
    height: auto;
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);

}


.section-1 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: rgb(255, 102, 0); /* blueviolet transparent */
    color: white;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }


    
.section-2 {
    height: 350px;
    border-radius: 10px;
    border-width: 1px; 
    border-color: black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
   }   


   .section-3 {
    border-width: 1px;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    background-color: rgb(255, 102, 0);  
}


.section-4 {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 10px;
    }  


.section-5 {
  width: 100%;
    height: auto;
    border-radius: 0px;
    border-width: 0px; 
    background-color: white;
    }   


  .section-6 {
width: 100%;
  height: 130px;
  border-radius: 0px;
  border-width: 0px; 
  background-color: white;
  }   


  .section-7 {
width: 100%;
  height: 300px;
  border-radius: 0px;
  border-width: 0px; 
  background-color: rgba(14, 13, 13, 0.6);
  }   
  

  
  








.notification {
      position: fixed;
      bottom: 70px;
      right: 20px;
      background: white;
      border: 2px solid rgb(255, 102, 0);
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
      color: #000;
      font-size: 14px;
      max-width: auto;
      height: auto;
      opacity: 0;
      pointer-events: none;
      transition: opacity 1s ease-in-out;
    }

    .notification.show {
      opacity: 1;
      pointer-events: auto;
      animation: fadeIn 1s forwards;
    }

    .notification.hide {
      animation: fadeOut 1s forwards;
    }

    .notification b {
      font-weight: bold;
    }

    .notification .amount {
      color: rgb(255, 102, 0);
      font-weight: bold;
      display: block;
      margin-top: 5px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeOut {
      from { opacity: 1; transform: translateY(0); }
      to { opacity: 0; transform: translateY(20px); }
    }




    



.features-section {
  background: 
    linear-gradient(rgba(245, 124, 0, 0.7), rgba(240, 98, 146, 0.7)), 
    url('images/forex.jpg') center/cover no-repeat;
  padding: 60px 20px;
  color: #fff;
  text-align: left;
}

.features-intro h4 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
  gap: 20px;
  justify-content: center;
}

.feature-box {
  background: #ffe8c7;
  color: #333;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box .icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  color: rgb(255, 102, 0);
}

.feature-box h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-box p {
  font-size: 12px;
  line-height: 1.6;
}




section.bg-light {
  background: #f8f9fa;
}






.mining-wrapper {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.mining-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mining-underline {
  width: 30px;
  height: 2px;
  background-color: rgb(255, 102, 0);
  margin: 0 auto 40px auto;
}

.mining-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: left;
}

.mining-left img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  width: 600px;
}

.mining-right {
  max-width: 600px;
}

.mining-block {
  margin-bottom: 30px;
}

.mining-block h4 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.mining-block p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}







 


  .bubble {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(194, 84, 20, 0.397); /* translucent bubble */
    animation: bounce 2s ease-in-out infinite;
  }

  .bubble.big {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 20%;
    transform: translateX(-50%);
  }

  .bubble.small {
    width: 150px;
    height: 150px;
    bottom: 5%;
    left: 30%;
    animation-delay: 1s;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-10px) scale(1.02);
    }
  }

  

  
  



  