
.loader-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.floating-iconss {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }
  .social-icons {
    background-color: #ffffff;
  }
  .modal{
    z-index: 99999;
  }
  .icons {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
    overflow: hidden;
    padding: 10px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
  }
  
  .icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .icons:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
.icon-donate {
  position: fixed;
  top: -50%;              /* Fix position (was -50%) */
  left: 15px;
  transform: translateY(-50%);
  z-index: 9999;

  background-color: #ff3c00;   /* Reddish Orange */
  color: #fff !important;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  width: 150px;
  text-align: center;

  box-shadow: 0 0 15px rgba(255, 60, 0, 0.6);

  animation: bgBlink 1.5s infinite;
  transition: 0.3s ease;
}

.icon-donate:hover {
  background-color: #cc2f00;
  transform: translateY(-50%) scale(1.05);
}

/* 🔥 Background blinking animation ONLY */
@keyframes bgBlink {
  0% {
    background-color: #ff3c00;
  }
  50% {
    background-color: #ff6a00;
  }
  100% {
    background-color: #ff3c00;
  }
}

  @media (max-width: 480px) {
  .icon-donate {
    width: 95px;
    padding: 6px 12px;
    font-size: 11px;
  }
}
  .floating-iconss,
  .social-floating-right {
    position: fixed;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1050;
  }
  
  .floating-iconss {
    left: 10px;
  }
  
  .social-floating-right {
    right: 10px;
  }
  
  .social-icons {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: bounce 2s infinite;
    overflow: hidden;
    cursor: pointer;
    padding: 8px;
  }
  
  .social-icons:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  }
  
  .social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  @keyframes floatBounce {
    0%,
    100% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-6px);
    }
  }
  

        /* Modal Animation & Form Styling */
        .modal-content {
            border-radius: 15px;
            /* overflow: auto; */
            animation: fadeInUp 0.5s ease;
            height: 100% !important;
            position: relative;
            z-index: 998;
        }

        .modal-header {
            background: linear-gradient(45deg, #155bd5, #155bd5);
            color: white;
        }
        .modal-header h5{
          color: #fff !important;
        }

        .modal-title {
            font-weight: 600;
        }

        .modal-body input,
        .modal-body textarea {
            border-radius: 8px;
            border: 1px solid #ccc;
            transition: border 0.3s ease;
        }

        .modal-body input:focus,
        .modal-body textarea:focus {
            border-color: #469696;
            box-shadow: 0 0 5px rgba(87, 163, 171, 0.3);
            outline: none;
        }

        .modal-body button {
            border-radius: 8px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
