.admin-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }
  
  .admin-link {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .admin-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ff671f; /* Admin icon color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    position: relative;
  }
  
  .admin-icon-circle:hover {
    background-color: #e65805; /* Darker admin icon color on hover */
  }
  
  .admin-icon-circle i {
    color: white;
    font-size: 24px; /* Adjust icon size */
  }
  
  .admin-text {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #42b646; /* Background color for admin text */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .admin-link:hover .admin-text {
    opacity: 1;
  }

  @media (max-width: 767px) {
    .admin-icon {
      display: none;
    }
  }
  
  
  

  
  /* Donation Section */
.donation-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
}

.donation-form {
    width: 50%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.donation-form h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}




.donation-form {
  width: 50%;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  text-align: center;
  position: relative; /* Add position relative for proper positioning of elements */
}

.donation-form h2 {
  margin-bottom: 20px;
}

.donation-form p {
  font-size: 16px;
  margin-bottom: 30px;
}

.donate-button {
  display: block; /* Change display to block for proper spacing */
  margin-top: 20px; /* Add margin-top to create space between text and button */
  padding: 10px 20px;
  background-color: #FF671F;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.donate-button:hover {
  background-color: #D45212;
}

.donation-image {
  width: 40%;
  text-align: center;
  position: relative; /* Add position relative for proper positioning of elements */
}

.donation-image img {
  max-width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .donation-section {
      flex-direction: column; /* Change flex direction to stack elements vertically on smaller screens */
  }

  .donation-form,
  .donation-image {
      width: 100%; /* Make both sections full width on smaller screens */
      margin-bottom: 20px; /* Add margin bottom for spacing between sections */
  }
}
