/* Background image applied to the full page */
.body1 {
  background-image: url("arisen.png"); /* Use your actual image filename */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
}

.body2 {
  background-image: url("aboutusarise.png"); /* Use your actual image filename */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
}







/* Optional dark overlay to improve readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark transparent layer */
  z-index: 0;
}

/* Content that goes above the background + overlay */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px;
}

/* Style for the second section */
.container2 {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.3); /* optional transparent box */
  border-radius: 10px;
  color: white;
  text-align: center;
}


.features-section {
  background: #0e0e10;
  color: #f1f1f1;
  padding: 50px 20px;
  font-family: sans-serif;
}

.features-container {
  max-width: 900px;
  margin: 0 auto;
}

.features-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #00ffc6;
}

.feature {
  margin-bottom: 25px;
}

.feature h3 {
  color: #00ffc6;
  margin-bottom: 10px;
}



