
.footer {
    background: white; 
    color: #ffffff;
    padding: 50px 0;
}

.footer-logo {
    max-width: 350px;
    display: block;
    margin: 0 auto;
    margin-left: 10px;
}

.footer-text {
    color: #6e6c6c;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: #2a4486;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer-link {
    color: #00aaff;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.footer-link:hover {
    color: #6b84cf;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: #2a4486;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.5s;
    border: 2px solid#2a4486;
}

.social-link:hover {
    background: #dce3f8;
}
.instagram:hover { background: #eb1b1b; color: #ffffff; border: 2px solid#eb1b1b;}
.whatsapp:hover { background: green; color: #ffffff; border: 2px solid green;}
.youtube:hover { background: #eb1b1b; color: #ffffff; border: 2px solid#eb1b1b;}
.linkedin:hover { background: #2600ff; color: #ffffff; border: 2px solid#2600ff;}
.facebook:hover { background: #2600ff; color: #ffffff; border: 2px solid#2600ff;}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 300px;
        display: block;
        margin: 0 auto;

    }
    .social-icons {
        justify-content: center;
    }
    .footer .row { text-align: center; }
    .footer .text-md-start, .footer .text-md-end { text-align: center !important; }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 80px; /* Adjusted to avoid overlap with scroll button */
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp Green */
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #007BFF; /* Blue color for distinction */
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s;
}

.scroll-top:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}
hr {
            border: 2px solid #333;
            width: 100%;
            margin: 20px auto;
        }
