.social-floating-right{
    position:fixed;
    top:80%;
    right:0px;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-iconss{
    position:fixed;
    top:80%;
    left:0;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

/* SOCIAL ICONS */

.social-floating-right .social-icons{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ffffff; /* WHITE BACKGROUND */
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    transition:all 0.3s ease;
    overflow:hidden;
}

.social-floating-right .social-icons img{
    width:26px;
    height:26px;
    transition:transform 0.3s ease;
}

.social-floating-right .social-icons:hover{
    transform:translateX(-5px) scale(1.1);
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.social-floating-right .social-icons:hover img{
    transform:rotate(360deg);
}


/* LEFT FLOATING ICONS */

.floating-iconss a{
    height:50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:160px;
    transform:translateX(-110px);
    padding:10px 12px;
    text-decoration:none;
    color:#fff;
    border-radius:0 30px 30px 0;
    transition:transform 0.4s ease;
}

.floating-iconss a img{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#ffffff; /* WHITE BACKGROUND */
    padding:8px;
    transition:transform 0.5s ease;
}

.floating-iconss a:hover{
    transform:translateX(0);
}

.floating-iconss a:hover img{
    transform:rotate(360deg);
}

/* BUTTON COLORS */

.mail-icons{ background:#d93025; }
.whatsapp-icons{ background:#25d366; }
.call-icons{ background:#4285f4; }


/* MOBILE */

@media(max-width:768px){

    .social-floating-right{ right:8px; }

    .social-floating-right .social-icons{
        width:40px;
        height:40px;
    }

    .social-floating-right .social-icons img{
        width:20px;
        height:20px;
    }

    .floating-iconss a{
        width:140px;
        height:45px;
        transform:translateX(-95px);
        font-size:14px;
    }

    .floating-iconss a img{
        width:30px;
        height:30px;
    }

}
/* ---------------- Modal Styling ---------------- */
.modal-content {
  border-radius: 12px;
  overflow: hidden;
  animation: fadeInUp 0.4s ease;
}

/* Soft Header (Email) */
.modal-header {
  background: #f8f9fa;   /* light grey */
  color: #333;
  border-bottom: 1px solid #e5e5e5;
  
}

/* WhatsApp Header (soft green) */
#whatsappModal .modal-header {
  background: #e9f7ef;   /* light green */
  color: #2e7d32;
}

/* Title */
.modal-title {
  font-weight: 600;
  font-size: 18px;
}

/* Close button */
.btn-close {
  filter: none;
}

/* Button */
.modal-body button {
  border-radius: 6px;
  font-weight: 600;
  padding: 10px;
  background: #163579;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.modal-body button:hover {
  background: #163579;
  transform: translateY(-1px);
}

/* ---------------- Form Styling ---------------- */
.modal-body .form-control,
.modal-body .form-select {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 15px;
  background: #fafafa;
}

/* Focus */
.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: #163579;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.1);
  background: #fff;
}

/* Textarea */
.modal-body textarea {
  resize: vertical;
}

/* Spacing */
.modal-body .mb-3 {
  margin-bottom: 12px !important;
}

/* ---------------- Animation ---------------- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.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); }
}
