/* seo.css - Clean and Neon-Themed Design with Animations */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
  }
  
  /* Header and Logo Styling */
  .header-logo {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .neon-text {
    color: #00e6e6;
    text-shadow: 0 0 20px #00e6e6, 0 0 30px #ff00ff;
    animation: neon-glow 1.5s infinite alternate;
  }
  
  .neon-pink {
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff, 0 0 30px #00e6e6;
    animation: neon-glow 1.5s infinite alternate;
  }
  
  /* Neon Glow Animation */
  @keyframes neon-glow {
    from {
      text-shadow: 0 0 15px #00e6e6, 0 0 25px #ff00ff;
    }
    to {
      text-shadow: 0 0 30px #00e6e6, 0 0 40px #ff00ff;
    }
  }
  
  /* Heading Styling */
  h1 {
    color: #00e6e6;
    text-shadow: 0 0 20px #00e6e6, 0 0 30px #ff00ff;
    text-align: center;
    margin-top: 40px;
    animation: float-text 3s infinite ease-in-out;
  }
  
  /* Floating Text Animation */
  @keyframes float-text {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
  /* Section Styling */
  section {
    background-color: rgba(30, 42, 56, 0.9);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 230, 230, 0.3), 0 0 25px rgba(255, 0, 255, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  /* Section Hover Effect */
  section:hover {
    transform: scale(1.03);
    background-color: rgba(30, 42, 56, 1);
  }
  
  /* Section Heading Animation */
  section h2 {
    color: #00e6e6;
    text-shadow: 0 0 20px #00e6e6, 0 0 30px #ff00ff;
    transition: transform 0.3s ease;
  }
  
  section h2:hover {
    transform: scale(1.1);
  }
  
  /* Paragraph Styling */
  p {
    font-size: 18px;
    line-height: 1.8;
  }
  
  /* List Styling */
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    background: rgba(0, 230, 230, 0.2);
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  /* List Hover Effect */
  li:hover {
    background-color: rgba(255, 0, 255, 0.3);
    transform: scale(1.05);
  }
  
  /* Navigation Styling */
  nav ul {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  
  nav li {
    list-style: none;
    margin: 0 20px;
  }
  
  nav a {
    text-decoration: none;
    color: #00e6e6;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  /* Navigation Hover Effect */
  nav a:hover {
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    transform: translateY(-5px);
  }
  
  /* Back to Top Button */
  .back-to-top {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #00e6e6;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .back-to-top:hover {
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
  }
  
  /* Responsive Design for Mobile */
  @media (max-width: 768px) {
    section {
      padding: 20px;
    }
    h1 {
      font-size: 32px;
    }
    .header-logo {
      font-size: 36px;
    }
  }
  
  /* Improve Footer Font Style */
  footer {
    background-color: #0f2027;
    color: #00e6e6;
    font-weight: bold;
    text-shadow: 0 0 10px #00e6e6;
  }
  
  /* Improve SEO Page Link Style */
  .seo-link {
    color: #ff00ff;
    font-weight: bold;
    text-shadow: 0 0 15px #ff00ff;
    transition: all 0.3s ease;
  }
  
  .seo-link:hover {
    color: #00e6e6;
    text-shadow: 0 0 20px #00e6e6;
  }
  
  /* Floating Effect for Footer */
  footer:hover {
    transform: translateY(-5px);
  }
  .seo-buttons {
    text-align: center; 
    margin-top: 30px;
  }
  
  .seo-buttons button {
    background-color: black;
    color: white;
    border: 2px solid #00ff00; /* Green Neon Border */
    padding: 12px 24px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 15px #00ff00; /* Initial Neon Glow */
    transition: all 0.3s ease;
  }
  
  .seo-buttons button:hover {
    background-color: #00ff00;
    color: black;
    box-shadow: 0 0 30px #00ff00; /* Intense Glow on Hover */
    transform: scale(1.05); /* Slight Zoom Effect */
  }