/* Footer Styling */
.footer {
    background: #f0f0f0;
    padding: 20px 0;
    margin-top: -25px !important;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    margin: 14px;
    min-width: 200px;
}

.footer-section h3 {
    color: #d32f2f;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'jost';
}

.footer-section p, .footer-section ul {
    color: #000;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}

.footer-section ul li {
    margin-bottom: 18px;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: #d32f2f;
}

/* Footer Logo */
.footer-logo {
    width: 90px;
    margin-top: -10px;
}

/* Social Icons */
.social-icons a {
    color: #d32f2f;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #333;
}

/* Contact Icons */
.contact1 p {
    display: flex;
    gap: 8px;
    margin-bottom: 26px;
}

.contact1 i {
    color: #d32f2f;
    font-size: 15px;
    margin-top: 10px;
}

/* Footer Map */
.map img {
    width: 100%;
    max-width: 180px;
    border-radius: 5px;
}



.footer-bottom
{
 text-align: center;
 font-size: 14px;
 font-family: Arial, sans-serif;
 margin: 7px 0;
 color: #333;
}

.footer-bottom::before,
.footer-bottom::after
{
 content: "";
 display: inline-block;
 width: 350px;
 height: 4px;
 background-color: red;
 vertical-align: middle;
 margin: 0 10px;
}

.enquiry-button {
    position: fixed;
    right: 0;
    bottom: 38%;
    background: #e63900;
    color: white;
    padding: 9px 13px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    border-radius: 0 8px 8px 0;
    writing-mode: vertical-rl; /* Bottom to top text */
    text-orientation: mixed;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;

    /* Button ulta karne ke liye */
    transform: rotate(180deg);

}

/* Hover Effect */
.enquiry-button:hover {
    background: #4d0d0d;
    transform: scale(1.1);
    color: #fff;
}


/* 📱 Mobile Responsive Fix */
@media screen and (max-width: 768px) {
    .enquiry-button {
        font-size: 14px;
        padding: 10px 14px;
        right: 5px;
    }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #e63900;
  color: #fff;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 999;
  display: none;
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #4d0d0d;
  color: #fff;
}


.left-contact-icons {
  position: fixed;
  left: 20px;
  bottom: 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.contact-icon {
  background-color: #25D366; /* WhatsApp green - will override for call icon */
  color: white;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: bounceIn 0.6s ease-out;
}

.contact-icon:first-child {
  background-color: #d32f2f; /* Blue for call */
}

/* Hover effect */
.contact-icon:hover {
  transform: scale(1.2);
  color: white;
}

/* Bounce-in animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(100px);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
  }
  70% {
    transform: scale(0.9) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@media (max-width:1125px){
    .footer-bottom::before,
        .footer-bottom::after
        {
        width: 250px;
        }
}

@media (max-width:915px){
    .footer-bottom::before,
        .footer-bottom::after
        {
        width: 150px;
        }
}
@media (max-width:710px){
    .footer-bottom::before,
        .footer-bottom::after
        {
        width: 60px;
        }
    .footer-bottom{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width:500px){
    .left-contact-icons {
        bottom: 5%;
    }
}
