    body {
      background: #fff;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    .hero-bg {
        position: relative;
        z-index: 1;
        overflow: hidden; /* Ensures image doesn't overflow */
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    
    .hero-overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0; top: 0;
      z-index: 2;
    }
    .hero-content {
      position: relative;
      z-index: 3;
    }
    .top-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 3vw;
      gap: 12px;
      font-size: 1rem;
      color: #b33c00;
      margin-top: 5px;
      flex-wrap: wrap;
    }
    .top-bar .slogan {
      font-size: 1.05rem;
      color: #E7530E;
      font-weight: 550;
      text-align: center;
      margin-right: 0;
    }
    .donate-btn {
      background: #E7530E;
      color: #fff;
      border: none;
      padding: 7px 18px;
      border-radius: 5px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
    }
    .donate-btn:hover {
      background: #E7530E;
      transform: translateY(-1px);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3vw 0 3vw;
      margin-top: 10px;
      margin-bottom: 10px;
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 135px;
      gap: 2px;
    }
    .logo-block img {
      border-radius: 50%;
      width: 75px;
      height: 75px;
      object-fit: cover;
      border: 2px solid #E7530E;
      background: #fff;
      transition: transform 0.3s ease;
    }
    .logo-block:hover img {
      transform: scale(1.05);
    }
    .logo-block .org-name {
      font-size: 1.05rem;
      font-weight: 600;
      color: #0e2b41;
      white-space: nowrap;
      margin-top: 2px;
    }
    .logo-date {
      font-size: 1rem;
      color: #E7530E;
      font-weight: 700;
      margin-left: 5px;
    }
    .search-section {
      flex: 1 1 0;
      margin: 0 2vw;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .search-bar-wrapper {
      display: flex;
      width: 100%;
      max-width: 410px;
      position: relative;
      margin-bottom: 0;
    }
    .search-bar-wrapper input[type="text"] {
      width: 100%;
      padding: 8px 42px 8px 16px;
      border: 1.5px solid #E7530E;
      border-radius: 6px;
      font-size: 1rem;
      background: #fff;
      outline: none;
      transition: all 0.3s ease;
    }
    .search-bar-wrapper input[type="text"]:focus {
      border-color: #b33c00;
      box-shadow: 0 0 0 0.25rem rgba(220, 70, 0, 0.25);
    }
    .search-bar-wrapper button {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #E7530E;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.2s;
    }
    .search-bar-wrapper button:hover {
      color: #E7530E;
      transform: translateY(-50%) scale(1.1);
    }
    .header-actions {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 13px;
      margin-left: 10px;
    }
    .header-actions .icon-btn {
      background: none;
      border: none;
      font-size: 1.4rem;
      color: #E7530E;
      margin-right: 4px;
      position: relative;
      cursor: pointer;
      padding: 0;
      transition: all 0.2s;
    }
    .header-actions .icon-btn:hover {
      transform: scale(1.1);
      color: #E7530E;
    }
    .header-actions .lang-btn {
      background: #fdede5;
      border: 1.2px solid #E7530E;
      color: #E7530E;
      border-radius: 6px;
      font-weight: 600;
      font-size: 1.1rem;
      padding: 2px 10px 2px 10px;
      margin-left: 7px;
      margin-right: 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .header-actions .lang-btn:hover {
      background: #E7530E;
      color: #fff;
      transform: translateY(-1px);
    }

    /* Enhanced Navigation bar */
    /* Minimal custom CSS for enhancements */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .nav-link {
        color: #fff !important;
        padding: 0.5rem 1rem !important;
        margin: 0 0.25rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #E7530E !important;
        background-color: #FFF5E1 !important;
    }
        
    .navbar-toggler {
        border-color: rgba(255,255,255,0.5);
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
        border-color: rgba(255,255,255,0.75) !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .btn-light {
        background: #fff;
        color: #E7530E !important;
        border-color: #fff;
    }

    .btn-outline-light {
        color: #fff;
        border-color: #fff;
    }

    .btn-outline-light:hover {
        background: #FFF5E1;
        color: #E7530E !important;
    }

    .navbar-brand img {
        border: 2px solid #fff;
    }
        
    /* Dropdown styling */
    .dropdown-menu {
        background-color: #E7530E;
        border: none;
        border-radius: 4px;
        margin-top: 0.5rem;
    }

    .dropdown-item {
        color: #fff !important;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #FFF5E1 !important;
        color: #E7530E !important;
    }

    .dropdown-item.active {
        color: #E7530E !important;
        background-color: #FFF5E1 !important;
    }

    .dropdown-divider {
        border-color: rgba(255,255,255,0.3);
    }

    @media (min-width: 992px) {
        .navbar-nav {
            gap: 0.5rem;
        }
    }

    @media (max-width: 991px) {
        .navbar-collapse {
            padding: 1rem 0;
        }
        
        .nav-item {
            margin: 0.25rem 0;
        }
        
        .nav-link {
            padding: 0.75rem 1rem !important;
        }
    }

    @media (max-width: 1024px) {
      .header-row {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
        padding: 0 2vw 0 2vw;
      }
      .search-section {
        margin: 8px 0;
        width: 100%;
      }
    }
    @media (max-width: 768px) {
      .header-row {
        flex-direction: column;
        gap: 10px;
        padding: 0 1vw;
      }
      .logo-block {
        min-width: 100px;
      }
      .search-bar-wrapper {
        max-width: 100%;
        width: 100%;
      }
    }
    @media (max-width: 576px) {
      .top-bar, .header-row, .main-navbar {
        padding: 0 1vw;
      }
      .top-bar {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 8px;
      }
      .top-bar .slogan {
        font-size: 0.97rem;
        order: 1;
      }
      .header-actions {
        order: 2;
        width: 100%;
        justify-content: center;
      }
      .donate-btn-mobile {
        display: block !important;
        order: 3;
        margin-top: 5px;
      }
      .donate-btn-desktop {
        display: none !important;
      }
      .header-actions .lang-btn, .header-actions .sign-in-btn {
        font-size: 0.98rem;
        padding: 1px 8px;
      }
      .logo-date {
        font-size: 0.9rem;
      }
    }
    @media (min-width: 577px) {
      .donate-btn-mobile {
        display: none !important;
      }
      .donate-btn-desktop {
        display: block !important;
      }
    }

/* Notification sidebar */
        .offcanvas-header {
            border-bottom: 1px solid #dee2e6;
            background-color: #f8f9fa;
        }
        
        .list-group-item {
            border-left: 0;
            border-right: 0;
            padding: 1rem;
            transition: background-color 0.2s;
        }
        
        .list-group-item:first-child {
            border-top: 0;
        }
        
        .list-group-item:last-child {
            border-bottom: 0;
        }
        
        .list-group-item:hover {
            background-color: #f8f9fa;
        }
        
        .event-time {
            color: #6c757d;
            font-size: 0.85rem;
        }
        
        .view-all-btn {
            margin-top: 1rem;
            width: 100%;
        }
        .custom-outline-orange {
    color: #E7530E;
    border: 1px solid #E7530E;
    background-color: transparent;
}

.custom-outline-orange:hover,
.custom-outline-orange:focus {
    color: #fff;
    background-color: #E7530E;
    border-color: #E7530E;
}
