    /* New CSS for Donations Page */
    body {
      background: #0a1a2e;
    }

    /* Donor Progress Bar */
    .donor-progress {
      position: fixed;
      top: 70px;
      width: 100%;
      background: rgba(10, 26, 46, 0.9);
      padding: 0.5rem 3rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      z-index: 999;
      text-align: center;
      backdrop-filter: blur(10px);
    }

    .donor-progress p {
      font-size: 1rem;
      color: #e0e7ff;
      margin-bottom: 0.5rem;
    }

    .progress-bar {
      width: 100%;
      height: 15px;
      background: #1e3a8a;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #60a5fa;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(135deg, #60a5fa, #3b82f6);
      transition: width 0.5s ease;
      box-shadow: 0 0 10px #60a5fa;
    }

    /* Dashboard Section */
    .dashboard-section {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .background-slideshow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .background-slideshow img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.5s ease;
      filter: brightness(0.5);
    }

    .background-slideshow img.active {
      opacity: 1;
    }

    .dashboard {
      background: rgba(255, 255, 255, 0.1);
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      max-width: 1000px;
      width: 90%;
      text-align: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dashboard h1 {
      font-size: 3rem;
      color: #e0e7ff;
      margin-top: 4rem;
      margin-bottom: 0.5rem;
      text-shadow: 0 0 10px #3b82f6;
    }

    .dashboard .yearly-goal {
      font-size: 1.5rem;
      color: #93c5fd;
      margin-bottom: 2rem;
    }

    .year-toggle {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      color: #e0e7ff;
      background: #1e3a8a;
      padding: 0.8rem;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px #60a5fa;
    }

    .year-toggle:hover {
      background: #f44336;
      box-shadow: 0 0 15px #f44336;
    }

    .prev-year {
      left: 2rem;
    }

    .next-year {
      right: 2rem;
    }

    .chart-container {
      position: relative;
      height: 350px;
      margin-bottom: 2rem;
    }

    .monthly-progress {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;      
    }

    .monthly-bar {
      flex: 1;
      text-align: center;
    }

    .monthly-bar div {
      height: 20px;
      background: #60a5fa;
      border-radius: 5px;
      margin-bottom: 0.5rem;
      transition: height 0.5s ease;
      box-shadow: 0 0 5px #60a5fa;
    }

    .monthly-bar span {
      font-size: 0.8rem;
      color: #f44336;
    }

    /* Donation Carousel Section */
    .carousel-section {
      padding: 2rem;
      background: #f7fafc;
      overflow: hidden;
      position: relative;
    }

    .carousel-section h2 {
      font-size: 2.5rem;
      color: #004c75;
      text-align: center;
      margin-bottom: 2rem;
      text-shadow: 0 0 10px #f7fafc;
    }

    .carousel-container {
      display: flex;
      animation: scroll 30s linear infinite;
      width: max-content;
    }

    .carousel-container:hover {
      animation-play-state: paused;
    }

    .category-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      width: 250px;
      margin-right: 1rem;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      border-color: #60a5fa;
    }

    .category-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .category-card h3 {
      font-size: 1.5rem;
      color: #004c75;
      margin-bottom: 0.5rem;
    }

    .category-card p {
      color: #718096;
      font-size: 0.9rem;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Donation Modal */
    .donation-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .donation-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: rgba(255, 255, 255, 0.1);
      padding: 3rem;
      border-radius: 20px;
      max-width: 600px;
      width: 90%;
      transform: scale(0.8);
      transition: transform 0.3s ease;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .donation-modal.active .modal-content {
      transform: scale(1);
    }

    .modal-content h2 {
      font-size: 2rem;
      color: #e0e7ff;
      margin-bottom: 1rem;
      text-shadow: 0 0 5px #60a5fa;
    }

    .modal-content p {
      color: #93c5fd;
      margin-bottom: 2rem;
    }

    .donation-amounts {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .amount-option {
      background: rgba(255, 255, 255, 0.1);
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      cursor: pointer;
      color: #e0e7ff;
      transition: all 0.3s ease;
      border: 1px solid #60a5fa;
    }

    .amount-option:hover,
    .amount-option.selected {
      background: #60a5fa;
      color: #0a1a2e;
      box-shadow: 0 0 10px #60a5fa;
    }

    .custom-amount {
      margin-bottom: 2rem;
    }

    .custom-amount label {
      color: #e0e7ff;
      display: block;
      margin-bottom: 0.5rem;
    }

    .custom-amount input {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #60a5fa;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: #e0e7ff;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
    }

    .custom-amount input:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 10px #3b82f6;
      outline: none;
    }

    .recurring-checkbox {
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #e0e7ff;
    }

    .recurring-checkbox input {
      accent-color: #60a5fa;
    }

    .proceed-button {
      background: linear-gradient(135deg, #60a5fa, #3b82f6);
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 25px;
      color: #0a1a2e;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px #60a5fa;
    }

    .proceed-button:hover {
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      transform: translateY(-2px);
      box-shadow: 0 0 15px #3b82f6;
    }

    .close-modal {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      color: #e0e7ff;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .close-modal:hover {
      color: #f44336;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .dashboard {
        padding: 2rem;
      }
      .dashboard h1 {
        font-size: 2rem;
      }
      .year-toggle {
        font-size: 1.2rem;
        padding: 0.5rem;
      }
      .chart-container {
        height: 250px;
      }
      .carousel-section h2 {
        font-size: 2rem;
      }
      .category-card {
        width: 200px;
      }
      .modal-content {
        padding: 2rem;
      }
      .modal-content h2 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .dashboard h1 {
        font-size: 1.8rem;
      }
      .yearly-goal {
        font-size: 1.2rem;
      }
      .category-card {
        width: 180px;
      }
      .category-card img {
        height: 120px;
      }
      .category-card h3 {
        font-size: 1.2rem;
      }
    }


    /* New styles for donor progress bar and dashboard margin */
    .header .new-donor-progress {
      width: 100%;
      max-width: 600px;
      margin: 2rem auto;
      text-align: center;
    }

    .new-donor-progress p {
      font-size: 1.2rem;
      color: #e0e7ff;
      margin-bottom: 1rem;
      text-shadow: 0 0 5px #60a5fa;
    }

    .progress-circle {
      position: relative;
      width: 150px;
      height: 150px;
      margin: 0 auto;
    }

    .progress-circle svg {
      transform: rotate(-90deg);
    }

    .progress-circle .background {
      fill: none;
      stroke: #1e3a8a;
      stroke-width: 10;
    }

    .progress-circle .progress {
      fill: none;
      stroke: url(#progressGradient);
      stroke-width: 10;
      stroke-linecap: round;
      transition: stroke-dasharray 0.5s ease;
    }

    .progress-circle span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.5rem;
      font-weight: 600;
      color: #e0e7ff;
      text-shadow: 0 0 5px #60a5fa;
    }

    .dashboard {
      margin: 2rem;
    }
