footer.footer-section {
    padding: 60px 20px;
}
 footer {
          background-color: #000000;
      color: #fff;
      position: relative;
    }

    .footer-logo p {
      font-size: 15px;
      margin-top: 15px;
      color: #ccc;
    }

   .social-icons a {
    color: #fff;
    font-size: 15px;
    margin-right: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #2b5773;
}
.social-icons a:hover {
    color: #fff;
    background-color: #ed5205;
    /* border-radius: 98%; */
    transform: scale(1.1);
    transition: all 0.3s ease;
}

    .footer-title {
      font-weight: 600;
      margin-bottom: 32px;
      position: relative;
          font-size: 26px;
    }

    .footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 30px;
    height: 3px;
    background-color: red;
}

    .footer-links {
      list-style: none;
      padding-left: 0;
    }

    .footer-links li {
    margin-bottom: 10px;
    list-style: inside;
}

    .footer-links a {
      color: #bbb;
      text-decoration: none;
         font-size: 15px;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-contact p {
          font-size: 15px;
      margin-bottom: 10px;
      color: #ccc;
    }

    .footer-contact i {
      margin-right: 8px;
      color: #fff;
    }

    .footer-newsletter input {
      border-radius: 4px;
      padding: 8px;
      border: none;
      width: 100%;
    }


    .footer-newsletter .btn {
    
    margin-top: 10px;
    border-radius: 4px;
    background: #2b5773;
    color: white;
}
.footer-newsletter .btn:hover{
    background: #ed5205;
}
   .footer-bottom {
    background-color: #112233;
    padding: 15px 4px;
    text-align: center;
    font-size: 15px;
    color: #ccc;
}

    .footer-bottom a {
      color: #ed5205;
      text-decoration: none;
    }

    .consultation-ribbon {
      position: fixed;
      right: 0;
      top: 40%;
      background: #ed5205;
      color: white;
      padding: 10px 8px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-weight: bold;
      z-index: 999;
      border-radius: 5px 0 0 5px;
      font-size: 14px;
    }


    .floating-contact-icons {
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.floating-contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}

.floating-contact-icons .whatsapp {
  background-color: #25D366;
}

.floating-contact-icons .email {
  background-color: #2c3e50;
}

.floating-contact-icons .call {
  background-color: #e74c3c;
}

.floating-contact-icons a:hover {
  opacity: 0.8;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 45px;
  height: 45px;
  background-color: #007bff;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none; /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
}

.scroll-to-top:hover {
  opacity: 0.8;
}

/* Tablet responsive styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .container .row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-logo img {
    max-width: 120px;
  }

  .footer-logo p,
  .footer-contact p,
  .footer-newsletter p {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links li a {
    font-size: 14px;
  }

  .footer-contact p i,
  .footer-newsletter input,
  .footer-newsletter button {
    font-size: 14px;
  }

  .footer-newsletter input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
  }

  .footer-newsletter .btn {
    width: 100%;
    font-size: 14px;
    padding: 8px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 14px;
    padding: 15px;
  }

      .floating-contact-icons {
        right: 15px;
        bottom: 65px;
    }

  .floating-contact-icons a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    right: 15px;
  }
}

