  .grecaptcha-badge {
      right: 9px !important;
      visibility: hidden !important;
      display: none !important;
    }

    #whatsappButton {
      position: fixed;
      bottom: 20px;
      /* bottom distance */
      right: 20px;
      /* right distance */
      z-index: 9999;
      /* upar visible rahe */
      cursor: pointer;
      transition: transform 0.3s;
    }

    #whatsappButton:hover {
      transform: scale(1.1);
      /* thoda enlarge hover par */
    }

    .carousel-item img {
      width: 100%;
      /* full width */
      height: 500px;
      /* ek fixed height */
      object-fit: cover;
      /* image ko crop karke fit karega */
    }

    .carousel-caption {
      /* background: rgba(0, 0, 0, 0.5);  dark background overlay */
      padding: 15px;
      color: #fff;
      border-radius: 10px;
    }
      html {
    scroll-behavior: smooth;
  }

  .slider {
    overflow: hidden;
    position: relative;
    margin-top: 20px;
  }

  .slide-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
  }

  .card {
    width: 200px;
    margin: 0 10px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .card h2 {
    font-size: 1rem;
    margin: 10px 0;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Hover par ruk jaye */
  .slide-track:hover {
    animation-play-state: paused;
  }

  .ticker {
    width: 100%;
    background: #4e47ff;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
  }

  .ticker-wrapper {
    display: inline-block;
    animation: scroll 20s linear infinite;
  }

  .ticker-wrapper span {
    display: inline-block;
    padding-right: 100px;
    /* thoda space words ke beech */
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .navbar-nav .nav-link {
    padding: 5px;
    font-size: 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }


  /* Button center align in mobile */
  .navbar-collapse .btn {
    display: block;
    /* margin: 5px auto 5px auto; */
    width: 25%;

  }

  /* Mobile me logo chhota ho */
  @media (max-width: 767px) {
    .navbar-brand img {
      height: 30px;
    }

    .navbar {
      padding: 5px 5px;
    }
  }





 