/* Main Footer */
.footer {
background: url('../images/footer.jpg') no-repeat center center;
background-size: cover;
padding: 0px 0;
color: #333;
}

/* Footer Container */
.footer-container {
display: flex;
justify-content: space-around;
max-width: 1274px;
margin: 0 auto;
flex-wrap: wrap;
padding: 20px;
}

/* Left Section */
.footer-left {
width: 25%;
}

.footer-logo {
max-width: 180px;
margin-bottom: 10px;
background-color: #fff;
padding: 10px;
border-radius: 10px;
}

.footer-description {
font-size: 14px;
color: #fff;
font-family: 'jost';
}

/* Social Icons */
.social-icons1 {
margin-top: 10px;
display: flex;
gap: 15px; /* Space between icons */
}

.social-icons1 a {
display: flex;
align-items: center;
justify-content: center;
width: 34px;  /* Circle size */
height: 34px; /* Circle size */
background: linear-gradient(90deg, rgb(129 151 14) 0%, rgba(110, 148, 41, 1) 35%, rgba(44, 94, 51, 1) 100%);
color: white; /* Icon color */
font-size: 14px;
border-radius: 50%; /* Makes it a circle */
text-decoration: none;
transition: 0.3s ease-in-out;
}

.social-icons1 a:hover {
background-color: #1b4d34; /* Darker shade on hover */
}

/* Links & Department Sections */
.footer-links, .footer-department, .footer-contact {
width: 17%;
}

.footer-contact {
width: 27%; /* Pehle 20% tha, ab zyada space milega */
}


.footer-links h3, .footer-department h3, .footer-contact h3 {
color: #fff;
font-size: 18px;
margin-top: 29px;
margin-bottom: 16px;
}

.footer-links ul, .footer-department ul {
list-style: none;
padding: 0;
}

.footer-links ul li, .footer-department ul li {
font-size: 14px;
margin: 16px 0;
color: #fff;
word-spacing: 0px;
font-family: 'jost';
font-weight: 500;
}

.footer-contact {
color: #fff;
font-family: 'Jost', sans-serif;
text-align: left;
}

.contact-item {
display: flex;
align-items: center;
margin-bottom: 12px;
}

.icon {
width: 40px;
height: 40px;
background-color: #b91c1c; /* Red color */
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 16px;
margin-right: 10px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}


.footer-contact p {
color: #fff !important;  /* Dark Gray */
font-size: 14px;
font-family: 'Jost', sans-serif;
font-weight: 500;
}



/* Footer Bottom */
/* Footer Bottom */
.footer-bottom {
background-color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
color: #6E0F0F;
font-size: 14px;
font-weight: bold;
}

.footer-bottom p {
margin: 0;
padding: 0 15px; /* Space between text and border */
color: #6E0F0F;
font-family: 'Bree Serif';
}

.center {
flex: 1;
text-align: center;
border-left: 2px solid white;
border-right: 2px solid white;
}


.left {
text-align: center;
}

.right {
text-align: right;
}
.center {
flex: 1;
text-align: center;
position: relative;
}

.center::before,
.center::after {
content: "|";
color: white;
position: absolute;
font-weight: bold;
}

.center::before {
left: -15px;
}

.center::after {
right: -15px;
}
.heart {
position: fixed; /* Fixed like a header */
top: 200px; /* Adjust top position */
left: 50%; /* Center horizontally */
transform: translateX(-50%); /* Center properly */
width: 100px; /* Adjust size */
height: 100px;
z-index: 1000; /* Ensure it stays on top */
}

.heart img {
width: 90%;
margin-left: 534px;
margin-top: -77px;
animation: spin 3s linear infinite;
transform-origin: center;
}

@keyframes spin {
  0% { transform: rotate(0deg) rotateY(360deg); }
  100% { transform: rotate(0deg) rotateY(0deg); }
}


/* =========================
   Add This Media Query
   ========================= */
@media screen and (min-width: 1400px) {
  .footer-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1800px) {
  .footer-container {
    flex-wrap: nowrap;         /* बड़ी स्क्रीन पर एक ही लाइन में कॉलम */
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
    }

    .footer-left, .footer-links, .footer-department, .footer-contact {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-left img {
        max-width: 47%;
    }

    .footer-links ul, .footer-department ul {
        padding: 0;
    }

    .footer-links ul li, .footer-department ul li {
        list-style: none;
        font-size: 16px;
    }

    .social-icons1 {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .footer-contact .contact-item {
        display: flex;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media screen and (min-width: 1800px) {
  .heart {
      position: fixed; /* Fixed like a header */
      top: 200px; /* Adjust top position */
      left: 50%; /* Center horizontally */
      transform: translateX(-50%); /* Center properly */
      width: 100px; /* Adjust size */
      height: 100px;
      z-index: 1000; /* Ensure it stays on top */
    }

  .heart img {
      width: 100%;
      margin-left: 1000px;
      margin-top: 92px;
      animation: spin 3s linear infinite;
      transform-origin: center;
    }
}

.footer-links ul li a {
  color: #fff; /* White link */
  text-decoration: none;
  transition: 0.3s ease-in-out;
  padding: 6px 13px 0px;
  font-family: 'jost';
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #ED3237; /* Red hover color */
}

  .call-float,
  .whatsapp-float,
  .book-appointment-float {
    position: fixed;
    z-index: 9999;
    width: auto;
    height: 50px;
    background-color: #ff6f00;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease-in-out;
    text-align: center;
    font-family: jost, sans-serif;
  }

  /* Centered Vertical Positioning */
  .call-float {
    left: 20px;
    bottom: 50%;
    transform: translateY(50px);
    background-color: #00c853;
  }

  .whatsapp-float {
    left: 20px;
    bottom: 50%;
    transform: translateY(110px);
    background-color: #25d366;
  }

  .book-appointment-float {
    right: 20px;
    bottom: 50%;
    transform: translateY(80px);
    background-color: #d62f2f;
    font-size: 15px;
  }

  /* Hover effect */
  .call-float:hover,
  .whatsapp-float:hover,
  .book-appointment-float:hover {
    background-color: #2d7c2d;
    color: #fff;
  }

  /* Responsive fallback for small screens or small height */
  @media (max-height: 500px), (max-width: 600px) {
    .call-float {
      bottom: 80px !important;
      transform: none !important;
    }
    .whatsapp-float {
      bottom: 20px !important;
      transform: none !important;
    }
    .book-appointment-float {
      bottom: 20px !important;
      transform: none !important;
    }
  }

.book-appointment-float {
  right: 20px; /* Pulls it slightly in from the edge */
  bottom: 52.5%;
  transform: translateY(50%) rotate(-90deg);
  transform-origin: right center; /* Rotate more naturally */
  background-color: #d62f2f;
  font-size: 15px;
  font-family: jost, sans-serif;
  padding: 10px 20px;
  height: auto;
  width: auto;
  border-radius: 5px 5px 0 0;
}

