:root {
      --primary: #ff670e; /* Ox-blood */
      --accent: #2cf77a;  /* Gold */
      --light: #f9f9f9;
      --dark: #222;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: var(--light);
      margin: 0;
      padding: 0;
      color: var(--dark);
    }

    .main-container {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 2rem;
      padding: 2rem;
    }

    .news-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
      overflow: hidden;
      margin-bottom: 2rem;
      transition: transform 0.3s ease;
    }

    .news-card:hover {
      transform: scale(1.01);
    }

    .news-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .news-content {
      padding: 1.2rem;
    }

    .news-title {
      font-size: 1.3rem;
      color: var(--primary);
      margin: 0.5rem 0;
    }

    .news-snippet {
      font-size: 0.95rem;
      color: #333;
    }

    .news-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      margin-top: 1rem;
      color: #777;
    }

    .video-section iframe,
    .video-section video {
      width: 100%;
      border-radius: 12px;
    }

    aside {
      background: #fff;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    }

    aside h3 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    aside ul {
      list-style: none;
      padding: 0;
    }

    aside ul li {
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
    }

    @media (max-width: 992px) {
      .main-container {
        grid-template-columns: 1fr;
      }
    }

/***Donate Button ***/
.donate-btn {
    color: #fff;
    border: 2px solid #fff;
    padding: 0.6rem 1.2rem;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
  }

  .donate-btn .icon-circle {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .donate-btn:hover {
    color: #fd7e14;
    border-color: #fd7e14;
    background-color: transparent;
  }

  .donate-btn:hover .icon-circle {
    border-color: #fd7e14;
    color: #fd7e14;
  }


  /*** Nav Bar ***/
.navbar.bg-dark {
    background: linear-gradient(90deg, #004d40, #004d40) !important; /* Bootstrap blue to cyan gradient */
  }

  .navbar .nav-link,
  .navbar .navbar-brand span {
    color: #f8f9fa !important; /* Light text */
  }

  .navbar .nav-link:hover,
  .navbar .navbar-brand:hover {
    color: #d85011 !important;
    text-shadow: 0 0 5px rgba(255,255,255,0.6);
  }

  .navbar .dropdown-menu {
    background-color: #f8f9fa;
  }

  .navbar .dropdown-item {
    color: #212529;
  }

  .navbar .dropdown-item:hover {
    background-color: #e2e6ea;
    color: #0d6efd;
  }

  .donate-btn {
    background-color: #107003;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 30px;
    margin-left: 15px;
    transition: 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
  }

  .donate-btn:hover {
    background-color: #0bbbe6;
    color: #fff !important;
    text-decoration: none;
  }

  .icon-circle {
    background-color: #fff;
    color: #0dcaf0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
  }

  .icon-circle i {
    font-size: 12px;
  }