/* Your Original CSS - Unchanged (with duplicates merged) */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1f2734;
  color: #fff;
  padding: 60px;
}

.details-container {
  max-width: 800px;
  margin: auto;
  background: #2c3e50;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px #00ffff;
}

h1 {
  text-align: center;
  color: #00ffff;
  margin-bottom: 20px;
}

p {
  line-height: 1.8;
  font-size: 18px;
}

.back-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 25px;
  background-color: #00ffff;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 15px #00ffff;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background-color: #01c8c8;
}

/* Extra Enhancements for a More Polished About Section */
body {
  /* Add a gradient background for more visual interest */
  background: linear-gradient(135deg, #1f2734, #2a3441);
  /* Ensure smooth scrolling and transitions */
  transition: all 0.3s ease;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.details-container {
  /* Enhanced shadow and border for a glowing effect */
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  /* Add a subtle animation on load */
  animation: fadeInUp 1s ease-out;
  /* Smooth transitions for hover */
  transition: all 0.3s ease;
}

.details-container:hover {
  /* Lift effect and stronger glow on hover */
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  /* Add text shadow for a glowing title effect */
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  /* Slight letter spacing for elegance */
  letter-spacing: 1px;
  /* Animation for the heading */
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  }
  to {
    text-shadow: 0 0 25px rgba(0, 255, 255, 1);
  }
}

p {
  /* Add subtle margin and color variation for readability */
  margin-bottom: 20px;
  color: #e0e0e0; /* Slightly off-white for contrast */
  /* Smooth transition if needed for future interactions */
  transition: color 0.3s ease;
}

.back-btn {
  /* Enhanced hover with scale and pulsing shadow */
  transition: all 0.3s ease;
  position: relative;
}

.back-btn:hover,
.back-btn:focus {
  background-color: #01c8c8;
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffff, 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  body {
    padding: 40px 20px;
  }
  .details-container {
    max-width: 90%;
    padding: 30px;
  }
  h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  p {
    font-size: 16px;
    line-height: 1.6;
  }
  .back-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }
  .details-container {
    padding: 20px;
    border-radius: 10px;
  }
  h1 {
    font-size: 24px;
  }
  p {
    font-size: 14px;
  }
}
