/* Trends Page Specific Styles */
.trends-section {
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    border-radius: 10px;
    margin: 50px auto;
    max-width: 1200px;
  }
  
  .trend-content {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .trend-content h2 {
    font-size: 36px;
    color: #8a2be2; /* Purple */
    margin-bottom: 20px;
  }
  
  .trend-content p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    padding: 0 20px;
  }
  
  .trend-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #8a2be2; /* Purple border */
    box-shadow: 0 0 15px 5px rgba(138, 43, 226, 0.5); /* Glow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .trend-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(138, 43, 226, 0.7); /* Brighter glow on hover */
  }
  
  /* Video Container Styles */
  .video-container {
    margin-top: 30px;
    position: relative;
    width: 80%; /* Smaller width than the image */
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 45%; /* Adjust aspect ratio (e.g., 16:9) */
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #8a2be2; /* Purple border */
    box-shadow: 0 0 15px 5px rgba(138, 43, 226, 0.5); /* Glow effect */
  }
  
  
  
  /* Footer Styles */
  .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 Links */
  .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 */
  .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 Notice */
  .copyright {
    font-size: 14px;
    color: #cccccc;
    margin-top: 20px;
  }
  
  
  /* Comment Form Styles */
  .comment-form {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    border: 2px solid #8a2be2; /* Purple border */
    border-radius: 10px;
    padding: 20px;
    margin: 50px auto;
    max-width: 800px;
    text-align: center;
  }
  
  .comment-form h3 {
    font-size: 24px;
    color: #8a2be2; /* Purple */
    margin-bottom: 20px;
  }
  
  #comment-form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #8a2be2; /* Purple border */
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  #comment-form button {
    background-color: #8a2be2; /* Purple */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #comment-form button:hover {
    background-color: #7b1fa2; /* Darker purple */
  }
  
  /* Comment Display Section Styles */
  .comment-box {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    border: 2px solid #8a2be2; /* Purple border */
    border-radius: 10px;
    padding: 20px;
    margin: 50px auto;
    max-width: 800px;
    text-align: center;
  }
  
  .comment-box h3 {
    font-size: 24px;
    color: #8a2be2; /* Purple */
    margin-bottom: 20px;
  }
  
  #comments {
    margin-bottom: 20px;
  }
  
  .comment {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .comment p {
    margin: 0;
    color: #cccccc;
  }
  
  .comment .comment-author {
    font-size: 14px;
    color: #8a2be2; /* Purple */
    font-style: italic;
    margin-top: 10px;
  }


  .btn-profile {
    padding: 10px;
    border-radius: 50%; /* Make it circular */
    background-color: #8a2be2; /* Purple */
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
  }
  
  .btn-profile:hover {
    background-color: #7b1fa2; /* Darker purple */
    transform: scale(1.1); /* Slightly enlarge on hover */
  }