/* ================ Footer ================== */
footer.footer-floating-padding{
  background: linear-gradient(to bottom, #DEE0E1 70%, #FFFFFF 30%);
}

footer h6{
    font-size: var(--medium-font);
}

.footer-column-1{
  width: 250px;  
}

.footer-column-2{
  max-width: 180px;  
}

.footer-column-3{
  max-width: 180px;  
}

.footer-column-3 a{
  display: block;
  width: 100%;
  margin-top: 20px;
}

.footer-column-3 a:first-of-type{
  margin-top: 0;
}

.footer-column-4{
  width: 100%;
  max-width: 550px;  
}

.enquire_form{
  margin: 0;
  padding: 0;
  width: 550px;
  min-height: 596px;
  background-color: rgba(46, 46, 46, 0.9);    
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquire_form_container{
  width: 100%;  
  max-width: 425px;
  min-height: 480px;
}

.enquire_form_container h3{
  color: var(--bs-color-white);
  font-size: 30px;
  font-weight: 700;
}

.form-control{
  color: #D8D8D8;
  font-size: 16px;
  font-weight: 700;
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.61);
  padding: 0 0;
  height: calc(1em + .75rem + 5px);  
  margin: 12px 0;
}

.enquire_form_container input{
  padding: 4px 0 4px 5px;  
}

.enquire_form_container input::placeholder {
  color: #D8D8D8;  
  font-size: var(--medium-font);
  font-weight: 400;
  padding-left: 5px;
}

textarea#usermessage{  
  background-color: white;
  min-height: 150px;
  max-height: 150px;
  padding-left: 10px;
  font-size: 16px;  
  font-weight: 400;
  color: #333333;
  padding-top: 5px;
}

.enquire_form_container #btnSubmit {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAB600 !important;
  border: none; 
  font-size: 22px;
  font-weight: 700;
  position: relative; 
  overflow: hidden; 
  cursor: pointer;
}

/* Create the shine using a pseudo-element */
.enquire_form_container #btnSubmit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%; /* start position off to the left */
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

/* Animate shine on hover */
.enquire_form_container #btnSubmit:hover::before {
  left: 125%; /* move shine fully to the right */
  transition: left 0.5s ease;
}

#usermessage::placeholder{
  color: #CAC8C8;  
  font-size: var(--medium-font);
  font-weight: 400;  
}

.footer {  
  padding-top: 0;
  padding-bottom: 30px;
  margin-top: 0;
}
.footer a:hover {
  color: #fab600 !important;
  transition: all 0.6s;
}
.footer .social-media {
  padding: 15px 0px;
  width: 100% !important;
  background-color: #fab600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 0 0 15px 15px;
}

.footer .social-icon img {
  width: 28px;
  height: auto;
  transition: all 0.5s;
}

.footer .social-icon img:hover {
  border-radius: 999px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg)
    brightness(103%) contrast(103%);
  border-radius: 999px;
}
.footer .customer-care {
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #ffffff;
  text-align: end;
  padding: 10px 0;
}

.footer .customer-care a {
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.footer .footer-middle {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer .footer-middle h5 {
  font-size: 22px;
  font-weight: 700;
}
.footer .footer-middle .footer-links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}
.footer .footer-middle .footer-links a {
  font-size: 18px;
}

.footer .footer-bottom {
  justify-content: space-between;
}
/* Footer Mobile */
.border-bottom {
  border-bottom: 1px solid #000 !important;
}
.rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.5s ease-in-out;
}
/* Support */
.support-wrap {
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 1000;
}

.support-icon {
  position: relative;
  width: 70px;
  height: 70px;
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.support-icon:hover .contact-icon {
  visibility: visible;
  opacity: 1;
}

.contact-icon a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background-color: #fff;
  border: 2px solid #fab600;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Hover Animations - Rise Up */
.support-icon:hover .contact-icon a:nth-child(1) {
  animation: rise-up 0.4s forwards cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s;
}

.support-icon:hover .contact-icon a:nth-child(2) {
  animation: rise-up 0.4s forwards cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}

.support-icon:hover .contact-icon a:nth-child(3) {
  animation: rise-up 0.4s forwards cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
}
@keyframes rise-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.support-icon:not(:hover) .contact-icon a:nth-child(1) {
  animation: sink-down 2s backwards cubic-bezier(0.25, 0.1, 0.25, 1);
}
.support-icon:not(:hover) .contact-icon a:nth-child(2) {
  animation: sink-down 3s backwards cubic-bezier(0.25, 0.1, 0.25, 1);
}
.support-icon:not(:hover) .contact-icon a:nth-child(3) {
  animation: sink-down 4s backwards cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes sink-down {
  0% {
    transform: translateY(0); /* Current position */
    opacity: 1; /* Fully visible */
  }

  100% {
    transform: translateY(400px); /* Move down smoothly */
  }
}

.contact-icon a:hover {
  transform: scale(1.1);
}

.image-24-7 {
  width: 80px;
  height: 80px;
}

.image-24-7 img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid #fab600;
  background-color: #fcf0b9;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.image-24-7:hover img {
  transform: scale(1.1);
  background-color: #f6d479;
}
/*================ mobile support center  */
.main-circle {
  width: 60px;
  height: 60px;
  background-color: #fcdb45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.circle {
  width: 40px;
  height: 40px;
  background-color: #fab600;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Initial positions - much tighter vertical spacing */

.circle:nth-child(1) {
  transform: translate(-45px, -15px) scale(0);
}

.circle:nth-child(2) {
  transform: translate(-50px, 0) scale(0);
}

.circle:nth-child(3) {
  transform: translate(-45px, 15px) scale(0);
}

/* Hover effect */
.menu-wrapper {
  position: fixed;
  bottom: 40px;
  right: 12px;
}

.menu-wrapper:hover .circle {
  opacity: 1;
}

.menu-wrapper:hover .circle:nth-child(1) {
  transform: translate(-45px, -50px) scale(1);

  transition-delay: 0.1s;
}

.menu-wrapper:hover .circle:nth-child(2) {
  transform: translate(-70px, 0) scale(1);

  transition-delay: 0.2s;
}

.menu-wrapper:hover .circle:nth-child(3) {
  transform: translate(-45px, 50px) scale(1);

  transition-delay: 0.3s;
}

/* Make circles slightly overlap */

.circle:nth-child(1),
.circle:nth-child(2),
.circle:nth-child(3) {
  margin-top: -5px; /* Creates slight overlap */
}

/* support center  */
/* ================ End of CSS ================== */

/* ============= Contact Page ============ */
/* Container styling */

/* Title styling */
.quote-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 100%;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 2px solid #000000;
}

/* Label styling */
.quote-label {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

/* Input field styling */
.quote-input,
.quote-textarea {
  font-size: 18px;
  padding: 12px 15px;
  border-radius: 0px;
  background-color: #eeeeee;
  transition: border-color 0.3s;
  border-bottom: 1px solid #707070;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.quote-input:focus,
.quote-textarea:focus {
  border-color: #707070;
  background-color: #eeeeee;
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

/* Submit button styling */
.quote-submit {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.quote-submit:hover {
  background-color: #444;
}


/* Prfoile Download Modal */
#downloadProfileModal .modal-content {
  border-radius: 10px;
  border: none;
}

#downloadProfileModal .modal-header {
  background-color: #FAB600;  /* Your primary color */
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 15px;
}

#downloadProfileModal .modal-title {
  font-weight: bold;
  font-size: 1.5rem;
}

#downloadProfileModal .modal-body {
  padding: 30px;
  font-size: 1.1rem;
}

#downloadProfileModal .modal-footer {
  border-top: 1px solid #FAB600;
  padding: 10px;
}

#downloadProfileModal .btn-primary {
  background-color: #FAB600;
  border-color: #FAB600;
  color: #fff;
}

#downloadProfileModal p{
  color: #000;
}

#downloadProfileModal .btn-primary:hover {
  background-color: #e89e00;
  border-color: #e89e00;
}

/* Custom form input styles */
#profileForm .form-control {
  border-radius: 5px;
  border: 1px solid #FAB600;
  padding: .375rem .75rem;
  margin-top: 5px;
  margin-bottom: 5px;
}

#profileForm .form-control:focus {
  border-color: #FAB600;
  box-shadow: 0 0 0 0.25rem rgba(250, 182, 0, 0.5);
}

#downloadProfileModal .success-message {
  font-size: 1.2rem;
  color: #333333;
}

#downloadProfileModal .modal-footer .btn-secondary {
  background-color: #f1f1f1;
  color: #333;
}
