footer {
    background: linear-gradient(to right, #00093c, #726f9d);
  border-top-left-radius: 90px;
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
  color: white;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 7%;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-para {
  max-width: 250px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  padding-left: 5px;
}

.footer-col form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid white;
  padding: 10px 0;
}

.footer-col form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding-left: 10px;
  color: white;
}

.footer-col form i {
  font-size: 16px;
  color: white;
}

.footer-col .social-icons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px; /* Space between icons */
  margin-top: 20px;
}

.social-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon-img:hover {
  transform: scale(1.2); /* Slight zoom on hover */
}

/* Underlines */
.underline-footer,
#about,
#use {
  height: 3px;
  background: white;
  border-radius: 3px;
  margin: 5px 0 15px;
  position: relative;
  overflow: hidden;
}

#use {
  width: 120px;
}

#about {
  width: 150px;
}

.underline {
  width: 100px;
}

.underline span {
  width: 7px;
  height: 100%;
  position: absolute;
  left: 10px;
  background-color: rgb(63, 63, 63);
  border-radius: 3px;
  animation: moving 1.5s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }

  100% {
    left: 100%;
  }
}

/* Certifications */
.hec-certification-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 7%;
}

.hec-certification-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease;
  animation: hec-bounce 1s ease-in-out infinite;
}

.hec-certification-circle:hover {
  transform: scale(1.05);
}

.hec-certification-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Divider */
.last_section {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.underline01 {
  width: 80%;
  height: 1px;
  background-color: white;
  border-radius: 3px;
}

/* Contact Info */
.last_section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
  padding: 0 20px;
  text-align: center;
}

.email,
.phone {
  font-size: 15px;
}

/* Copyright */
.Copyright {
  text-align: center;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-around;
  }

  .footer-col {
    flex: 1 1 45%;
  }

  .underline01 {
    width: 90%;
  }
}

@media (max-width: 768px) {
  footer {
    border-top-left-radius: 50px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
  }

  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  .underline,
  #use,
  #about {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
  }

  .hec-certification-circle {
    width: 60px;
    height: 60px;
  }

  .hec-certification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hec-certification-container {
    flex-direction: row;
    gap: 20px;
  }

  .hec-certification-circle {
    width: 50px;
    height: 50px;
  }

  .Copyright {
    font-size: 12px;
  }

  .email,
  .phone {
    font-size: 13px;
  }
}

@keyframes hec-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}



.hec-certification-circle:nth-child(1) {
  animation-delay: 0s;
}

.hec-certification-circle:nth-child(2) {
  animation-delay: 0.3s;
}

.hec-certification-circle:nth-child(3) {
  animation-delay: 0.6s;
}

.hec-certification-circle:nth-child(4) {
  animation-delay: 0.9s;
}

.whatsapp-float {
  position: fixed;
  width: 57px;
  height: 63px;
  bottom: 75px;
  right: 13px;
  z-index: 999;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
.whatsapp-blink-color {
  width: 48px;
  height: 48px;
  animation: colorBlink 1s infinite;
  transition: transform 0.3s ease;
}

/* Blinking random colors */
@keyframes colorBlink {
  0% { filter: hue-rotate(0deg); }
  25% { filter: hue-rotate(90deg); }
  50% { filter: hue-rotate(180deg); }
  75% { filter: hue-rotate(270deg); }
  100% { filter: hue-rotate(360deg); }
}

.footer-h3 {
    background: linear-gradient(90deg, #ff5f5f, #ffeb00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
}
.social-bar-animated {
    position: fixed;
    bottom: 20px;
    left:5px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    animation: slideIn 1s ease forwards;
  }
.social-bar-animated a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-bar-animated a::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-bar-animated a:hover::before {
  transform: scale(1.5);
  opacity: 1;
}

.social-bar-animated a:hover {
  transform: rotate(10deg) scale(1.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}


  /* Brand Backgrounds */
  .social-bar-animated a.whatsapp { background-color: #25D366; }
  .social-bar-animated a.facebook { background-color: #1877F2; }
  .social-bar-animated a.twitter  { background-color: #1DA1F2; }
  .social-bar-animated a.youtube  { background-color: #FF0000; }
  .social-bar-animated a.linkedin { background-color: #0A66C2; }
  .social-bar-animated a.instagram{ background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5); }

  /* Entry animation */
  @keyframes slideIn {
    from {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  }

  /* Brand Backgrounds */

  .social-icons a.social-icon-img1 { background-color: #1877F2; }
  .social-icons a.social-icon-img2 { background-color: #1DA1F2; }
  .social-icons a.social-icon-img3 { background-color: #FF0000; }
  .social-icons a.social-icon-img4{ background-color: #0A66C2; }
  .social-icons a.social-icon-img{ background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5); }
.phone1{
    display: grid;

    place-items: center;
    padding-top: 7px;
}
.call-icon {
  color: #28a745;
  animation: pulse11 1s infinite;
}

@keyframes pulse11 {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
