*{
    font-family: "Manrope", sans-serif;
}

p{
    text-align: justify;
}
.banner-new{
    height: 100vh;
}
.about-para p{
    margin-bottom: 10px;
}
.footer-new{
    border-top: 1px solid #F9BB08;
}
.top-navnew{
    width: 100%;
    justify-content: space-between;
}
.footer-logo img{
        max-width: 173px;
    width: 100%;
}

    .floating-buttons {
      position: fixed;
      bottom: 53px;
      left: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: row;
      gap: 10px;
      animation: slideInLeft 1s ease-out;
    }

    .floating-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      color: #fff;
      font-size: 22px;
      border-radius: 50%;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      animation: bounce 2s infinite;
    }

    .floating-buttons a:hover {
      transform: scale(1.1);
    }

    .whatsapp-btn {
      background-color: #25D366;
    }

    .call-btn {
      background-color: #007BFF;
    }

    /* Slide In Animation */
    @keyframes slideInLeft {
      0% {
        transform: translateX(-100px);
        opacity: 0;
      }
      60% {
        transform: translateX(10px);
        opacity: 1;
      }
      100% {
        transform: translateX(0);
      }
    }

    /* Bounce Animation */
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

@media only screen and (max-width: 767px) {
  .nav-callmobbtn{
      font-size: 16px;
  }
}

.privacy-wrapper {
      background-color: #f8f9fa;
      padding: 60px 15px;
    }
    .privacy-box {
      background-color: #ffffff;
      border-radius: 10px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .privacy-box h2 {
      color: #1994C6;
      font-weight: 700;
      margin-bottom: 30px;
    }
    .privacy-box h5 {
      color: #F9BB08;
      margin-top: 30px;
      font-weight: 600;
    }
    .privacy-box p,
    .privacy-box ul {
      font-size: 1rem;
      color: #333;
      line-height: 1.6;
    }
    .privacy-box ul {
      padding-left: 1.2rem;
    }
    