/* Position the icons */
.fixed-icons {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
}

/* Style the icons */
.fixed-icons a {
display: inline-block;
margin-left: 10px;
color: #ffffff;
background-color: #007bff;
border-radius: 50%;
width: 50px;
height: 50px;
text-align: center;
line-height: 50px;
font-size: 20px;
transition: all 0.3s ease;
}

.fixed-icons a:hover {
background-color: #0062cc;
}

/* Style the WhatsApp icon */
.fixed-icons a.whatsapp {
background-color: #25d366;
}

.fixed-icons a.whatsapp:hover {
background-color: #128c7e;
}

/* Style the Call icon */
.fixed-icons a.call {
background-color: #dc3545;
}

.fixed-icons a.call:hover {
background-color: #c82333;
}

/* Style the Email icon */
.fixed-icons a.email {
background-color: #ffc107;
}

.fixed-icons a.email:hover {
background-color: #e0a800;
}

/* Style the modal background */
.modal-backdrop {
background-color: rgba(0, 0, 0, 0.5) !important;
}

/* Style the modal header */
.modal-header {
background-color: #f9a01b;
color: #fff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

/* Style the modal title */
.modal-title {
font-size: 28px;
margin-top: 10px;
}

/* Style the close button */
.close {
color: #fff;
}

/* Style the modal body */
.modal-body {
background-color: #f7f7f7;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
padding: 20px;
}

/* Style the form labels */
.form-label {
font-size: 16px;
font-weight: bold;
color: #333;
}

/* Style the form inputs */
.form-control {
border: 2px solid #f9a01b;
border-radius: 5px;
padding: 10px;
margin-bottom: 20px;
}

/* Style the form submit button */
.btn-primary {
background-color: #f9a01b;
border-color: #f9a01b;
color: #fff;
font-size: 18px;
font-weight: bold;
border-radius: 5px;
padding: 10px 30px;
}

/* Style the form submit button on hover */
.btn-primary:hover {
background-color: #fff;
border-color: #f9a01b;
color: #f9a01b;
}

/* Style the modal copyright link */
.modal-copyright {
display: block;
text-align: right;
color: #333333;
font-size: 12px;
margin-top: 20px;
padding: 10px;
}

.modal-copyright a {
  text-decoration: none;
  color: #333333;
  font-weight: bold;
}

/* Style the modal copyright link on hover */
.modal-copyright:hover {
color: #222222;
text-decoration: none;
}