.social-floating-right {
    position: fixed;
    top: 70%;
    right: 14px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
}

.floating-iconss {
    position: fixed;
    top: 70%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10000;
}

.social-floating-right .social-icons {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-floating-right .social-icons::before {
    content: attr(title);
    position: absolute;
    right: 56px;
    top: 70%;
    transform: translate(8px, -50%);
    background: #202020;
    color: #fff;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-floating-right .social-icons img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.social-floating-right .social-icons:hover {
    transform: translateX(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.social-floating-right .social-icons:hover::before {
    opacity: 1;
    transform: translate(0, -50%);
}

.social-floating-right .social-icons:hover img {
    transform: scale(1.08);
}

.insta-icons { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.facebook-icons { background: #1877f2; }
.youtube-icons { background: #ff0000; }
.twitter-icons { background: #070707; }
.linkedin-icons { background: #0a66c2; }


.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:#fff;
    padding:8px;
    transition:transform 0.5s ease;
}

.floating-iconss a:hover{
    transform:translateX(0);
}

.floating-iconss a:hover img{
    transform:rotate(360deg);
}

.mail-icons{ background:#d93025; }
.whatsapp-icons{ background:#25d366; }
.call-icons{ background:#4285f4; }

@media(max-width:768px){
    .social-floating-right {
        right: 8px;
        gap: 8px;
    }

    .social-floating-right .social-icons {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .social-floating-right .social-icons::before {
        display: none;
    }

    .social-floating-right .social-icons img {
        width: 19px;
        height: 19px;
    }

    .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: 15px;
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
}

.modal-header {
  background: linear-gradient(45deg, #e2dcdd, #cac2c2); /* Email */
  color: white;
}

#whatsappModal .modal-header {
  background: linear-gradient(45deg, #d9e2db, #e5e7e6); /* WhatsApp */
}

.modal-title {
  font-weight: 600;
}

.modal-body button {
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  padding: 10px;
   background: #046609;
   color: white;
}

.modal-body button:hover {
  transform: translateY(-2px);
}

/* Fade Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------------- Form Styling ---------------- */
.modal-body .form-control,
.modal-body .custom-select,
.modal-body .custom-file .custom-file-label {
  width: 100%;
  border-radius: .25rem;
  border: 1px solid #ced4da;
  padding: .375rem .75rem;
  font-size: 1rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.modal-body .form-control:focus,
.modal-body .custom-select:focus,
.modal-body .custom-file .custom-file-label:focus {
  border-color: #e4ebea;
  box-shadow: 0 0 0 .2rem rgba(135, 166, 199, 0.25);
  outline: none;
}

.modal-body .form-control.is-valid,
.modal-body .custom-select.is-valid {
  border-color: #d8d5cf;
  background-image: url("data:image/svg+xml,..."); /* Valid check icon */
}

.modal-body .form-control.is-invalid,
.modal-body .custom-select.is-invalid {
  border-color: #737272;
  background-image: url("data:image/svg+xml,..."); /* Invalid cross icon */
}

.modal-body textarea.form-control {
  resize: vertical;
}

/* Custom file input */
.modal-body .custom-file {
  position: relative;
  width: 100%;
}

.modal-body .custom-file-input {
  opacity: 0;
  width: 100%;
  z-index: 2;
}

.modal-body .custom-file-label {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

/* Select inside modal */
.modal-body .custom-select {
  appearance: none;
  background: url("data:image/svg+xml,...") no-repeat right .75rem center/8px 10px #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

/* Switch, checkbox, radio (custom-control) inside modal */
.modal-body .custom-control-label:before {
  border-radius: .25rem;
  border: 1px solid #adb5bd;
  background-color: #fff;
  transition: all .15s ease-in-out;
}

.modal-body .custom-control-input:checked ~ .custom-control-label:before {
  background-color: #f3f1ef;
  border-color: #eef0f2;
}

.modal-body .form-group {
  margin-bottom: 1rem;
}
.modal-body .mb-3 {
  margin-bottom: 1rem !important;
}

.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 icon refresh */
.social-floating-right {
    right: 16px;
    gap: 9px;
}

.social-floating-right .social-icons {
    width: 44px;
    height: 44px;
    background: #fff !important;
    border-radius: 50%;
    border: 1px solid rgba(233, 114, 13, 0.26);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.social-floating-right .social-icons:hover {
    transform: translateX(-4px) scale(1.04);
}

.floating-iconss {
    left: 12px;
    gap: 9px;
}

.floating-iconss a {
    width: 48px;
    height: 48px;
    background: #fff !important;
    transform: none;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(233, 114, 13, 0.26);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.floating-iconss a span {
    position: absolute;
    left: 56px;
    top: 50%;
    transform: translate(-8px, -50%);
    background: #151515;
    color: #fff;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-iconss a:hover span {
    opacity: 1;
    transform: translate(0, -50%);
}

.floating-iconss a img {
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    object-fit: contain;
}

.floating-iconss a:hover img {
    transform: scale(1.08);
}

@media(max-width:768px){
    .floating-iconss {
        left: 8px;
    }

    .floating-iconss a,
    .social-floating-right .social-icons {
        width: 40px;
        height: 40px;
    }

    .floating-iconss a span {
        display: none;
    }
}
