
.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;
  }
  #emailModal,
  #whatsappModal {
    z-index: 100010;
  }

  .modal-backdrop {
    z-index: 100000;
  }

  #emailModal.modal.show,
  #whatsappModal.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 24px 12px !important;
  }

  #emailModal .modal-dialog,
  #whatsappModal .modal-dialog {
    width: min(92vw, 520px);
    max-width: 520px;
    margin: 0 auto;
  }
  .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);
  }
  
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  

  
  .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 */
        #emailModal .modal-content,
        #whatsappModal .modal-content {
            border-radius: 15px;
            overflow: hidden;
            animation: fadeInUp 0.5s ease;
            height: auto !important;
            max-height: none;
            position: relative;
            z-index: 1;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
        }

        #emailModal .modal-header,
        #whatsappModal .modal-header {
            background: linear-gradient(45deg, #228B22, #176B17);
            color: white;
            align-items: center;
            padding: 16px 20px;
        }
        #emailModal .modal-header h5,
        #whatsappModal .modal-header h5{
          color: #fff !important;
        }

        #emailModal .modal-title,
        #whatsappModal .modal-title {
            font-weight: 600;
        }

        #emailModal .modal-body,
        #whatsappModal .modal-body {
            overflow: visible;
            padding: 18px 20px 20px;
            max-height: none;
        }

        #emailModal .modal-body input,
        #emailModal .modal-body select,
        #emailModal .modal-body textarea,
        #whatsappModal .modal-body input,
        #whatsappModal .modal-body textarea {
            border-radius: 8px;
            border: 1px solid #ccc;
            transition: border 0.3s ease;
            min-height: 44px;
        }

        #emailModal .modal-body .mb-3,
        #whatsappModal .modal-body .mb-3 {
            margin-bottom: 12px !important;
        }

        #emailModal .modal-body textarea,
        #whatsappModal .modal-body textarea {
            min-height: 84px;
        }

        #emailModal .modal-body input:focus,
        #emailModal .modal-body select:focus,
        #emailModal .modal-body textarea:focus,
        #whatsappModal .modal-body input:focus,
        #whatsappModal .modal-body textarea:focus {
            border-color: #228B22;
            box-shadow: 0 0 5px rgba(34, 139, 34, 0.3);
            outline: none;
        }

        #emailModal .modal-body button,
        #whatsappModal .modal-body button {
            border-radius: 8px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        @media (max-width: 575px) {
          #emailModal.modal.show,
          #whatsappModal.modal.show {
            align-items: flex-start;
            padding-top: 18px !important;
          }

          #emailModal .modal-dialog,
          #whatsappModal .modal-dialog {
            width: 94vw;
          }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
