/* General Styling */
body {
    background-color: #adff95;
  }
  


/* Nav Bar Styles */
.navbar-custom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand img {
    width: 120px;
  }
  
  .navbar-nav .nav-link {
    color: #1a1a1a !important;
    font-weight: 400;
  }
  
  .navbar-nav .nav-item:hover .nav-link {
    color: #17b832 !important;
  }
  
  .navbar-custom .social-icons i {
    color: #050505;
    margin-right: 15px;
    font-size: 18px;
  }
  
  .navbar-custom .contact-info {
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  
  .navbar-custom .contact-info i {
    margin-right: 8px;
    color: #ffc107;
  }
  
  .navbar-custom .navbar-toggler {
    border: none;
    color: #ffffff;
  }
  
  @media (max-width: 991.98px) {
    .navbar-custom .social-icons {
        display: none;
    }
    .navbar-custom .contact-info {
        display: none;
    }
  }
  
  /* End Nav Bar Styles */
  




  .card-header {
    font-weight: bold;
    background-color: #f5f5f5;
  }
  
  .community-post img {
    border-radius: 10px;
  }
  
  textarea {
    resize: none;
  }
  
  /* Avatar Styling */
  .rounded-circle {
    object-fit: cover;
    width: 50px;
    height: 50px;
  }
  
  /* Post Action Buttons */
  button i {
    margin-right: 5px;
  }
  
  /* Sidebar Styling */
  .list-group-item {
    font-size: 14px;
  }
  
  /* Mobile Responsive Adjustments */
  @media (max-width: 768px) {
    .navbar-brand {
      font-size: 1.5rem;
    }
  
    .community-post img {
      max-width: 100%;
      height: auto;
    }
  
    .list-group-item {
      font-size: 13px;
    }
  }
  


  /* footer scetion */

.footer {
    background-color: #1e1e1e;
    color: #bbb;
    padding: 0px 0;
    padding-top: 30px;
    
  }
  .footer h5 {
    color: #fff;
  }
  .footer .social-icons a {
    margin: 10px;
    color: #bbb;
    font-size: 1.5rem;
  }
  .footer a {
    color: #bbb;
    text-decoration: none;
  }
  .footer a:hover {
    color: #ffd343;
  }
  .footer .subscribe-form input[type="email"] {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    width: 100%;
  }
  .footer .subscribe-form button {
    border: none;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
  }
  .footer-bottom {
    background-color: #151515;
    color: #bbb;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-social-icons {
    padding-bottom: 20px;
    padding-top: 20px;
  
  }
  
  
  