/* General Styling */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #E0E0E0; /* Light gray for readability */
    background-color: #0a0a0a; /* Dark background */
  }
  
  .content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(10, 10, 10, 0.9); /* Semi-transparent dark background */
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2); 
    /* Neon blue shadow */
  }
  
  /* Headings */
  h1 {
    font-size: 2.5rem;
    color: #8a2be2; /* Purple for headings */
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.7); /* Glow effect */
  }
  
  h2 {
    font-size: 2rem;
    color: #8a2be2; /* Purple for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #8a2be2; /* Purple border */
    padding-bottom: 5px;
    text-shadow: 0 0 8px rgba(138, 43, 226, 0.5); /* Subtle glow */
  }
  
  /* Content Sections */
  .ml-section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.8); /* Slightly lighter dark background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid #8a2be2; /* Purple border */
    text-align: left; /* Align text to the left */
    width: 100%; /* Ensure full width */
  }

 
  
  
  .ml-section p {
    font-size: 1.6rem;
    color: #E0E0E0; /* Light gray for readability */
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .intro {
    font-size: 1.2rem;
    color: #E0E0E0; /* Light gray for readability */
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Image Container */
  .image-container {
    text-align: center; /* Center the image horizontally */
    margin-top: 20px; /* Space between paragraph and image */
    width: 100%; /* Ensure full width */
  }
  
  /* Image Styling */
  .section-image {
    max-width: 60%; /* Smaller image size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.5); /* Purple shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    display: block; /* Ensure the image behaves as a block element */
    margin: 0 auto; /* Center the image horizontally */
    border: 2px solid #8a2be2; /* Purple border */
  }
  
  /* Hover Effect for Image */
  .section-image:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 20px 10px rgba(138, 43, 226, 0.7); /* Brighter glow on hover */
  }
  
  /* Strong Text */
  strong {
    color: #8a2be2; /* Purple for strong text */
    font-size: 1.6rem;
  }
  
  /* Comment Section */
  .comment-box {
    margin-top: 40px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.8); /* Dark background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .comment-box h3 {
    font-size: 1.5rem;
    color: #8a2be2; /* Purple for headings */
    margin-bottom: 15px;
  }
  
  .comment-form {
    margin-top: 20px;
  }
  
  .comment-form h3 {
    font-size: 1.5rem;
    color: #8a2be2; /* Purple for headings */
    margin-bottom: 15px;
  }
  
  .comment-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #8a2be2; /* Purple border */
    background: rgba(20, 20, 20, 0.8); /* Dark background */
    color: #E0E0E0; /* Light gray text */
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .comment-form button {
    background-color: #8a2be2; /* Purple button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .comment-form button:hover {
    background-color: #6a1b9a; /* Darker purple on hover */
  }
  
  /* Footer */
  .footer {
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent black background */
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #8a2be2; /* Purple border */
    margin-top: 50px;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .social-media {
    margin-bottom: 20px;
  }
  
  .social-media .social-link {
    color: #ffffff;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-media .social-link:hover {
    color: #8a2be2; /* Purple on hover */
    transform: translateY(-5px);
  }
  
  .footer-links {
    margin-bottom: 20px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #8a2be2; /* Purple on hover */
  }
  
  .copyright {
    font-size: 14px;
    color: #cccccc;
    margin-top: 20px;
  }


  /* Sidebar Open Effect */
body.sidebar-open {
    margin-left: 250px; /* Shift the main content to the right */
    transition: margin-left 0.3s ease; /* Smooth transition */
  }
  
  /* Sidebar Styling */
  .sidebar {
    width: 250px; /* Sidebar width */
    height: 100%;
    position: fixed;
    top: 0;
    left: -250px; /* Hide sidebar by default */
    background-color: rgba(10, 10, 10, 0.9); /* Dark background */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease; /* Smooth transition */
    z-index: 1000; /* Ensure sidebar is above other content */
  }
  
  .sidebar-toggle {
    display: block; /* Ensure the toggle button is visible by default */
  }

  