/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: black;
    color: white;
    height: 100vh;
    overflow: hidden;
  }
  
  .full-height {
    height: 100vh;
  }
  
  .black-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  }
  
  .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  h1.name {
    font-size: 2.5rem;
    margin: 15px 0;
  }
  
  .bio {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .options a {
    margin: 5px;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
  }
  
  .options a:hover {
    background: #ff6f61;
    color: white;
    transform: scale(1.05);
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Make the container full height */
.full-height {
  height: 100vh;
}

/* Black box styling */
.black-box {
  background-color: black;
  color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Section title */
.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Text styling */
.section-text {
  font-size: 1.2rem;
  list-style: none;
  padding-left: 0;
}

/* Customize back button */
.btn-outline-light {
  margin-top: 20px;
  font-size: 1.1rem;
  padding: 10px 20px;
}

/* Particles background */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* Ensure full height for the container */
.full-height {
  min-height: 100vh;
}

/* Background image styling */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/OK.jpeg');
  background-size: cover;
  background-position: center;
  z-index: -1;  /* To place it behind content */
  opacity: 0.7; /* Adjust the opacity for subtle visibility */
}

/* Content Box Styling */
.content-box {
  position: relative;
  z-index: 1;
  padding: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5); /* Slight dark overlay for better text contrast */
  border-radius: 10px;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
}

.section-text {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* Illustration image styling */
.illustration-image {
  text-align: center;
  margin-top: 40px;
}

.illustration-image img {
  max-width: 80%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Ensure responsiveness */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .illustration-image img {
    max-width: 90%;
  }
}

/* Full height container */
.full-height {
  height: 100vh; /* Full viewport height */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa; /* Light background for content */
}

/* Content box */
.content-box {
  padding: 20px;
  color: #fff;
  z-index: 1; /* Ensure the text appears on top of the background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

/* Section Title */
.section-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Section Text */
.section-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Button Style */
.btn-outline-light {
  color: #fff;
  border-color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Illustration Image */
.illustration-image {
  margin-top: 30px;
  text-align: center;
}

.illustration-image img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .illustration-image img {
    max-width: 100%;
  }
}
