    /*Popup styling */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.683);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1050;
      opacity: 0.5;
      visibility: hidden;
      transition: opacity 1s ease-in-out, visibility 0.5s ease-in-out;
    }

    .popup-overlay.show {
      opacity: 1;
      visibility: visible;
      transition: opacity 1s ease-in-out, visibility 0.5s ease-in-out;
    }

    .popup-content {
      position: relative;
      background-color: rgb(0, 0, 0);
      background-image: url('../images/Background-model.png');
      background-size: cover;
      padding: 80px 0;
      border-radius: 50px;
      width: 750px;
      height: auto;
      text-align: center;
      font-family: 'montserrat';
      color: #fff;
      box-shadow: 0px 4px 100px 20px rgba(255, 195, 0, 0.25);
      transform: scale(0.8);
      transition: transform 0.5s ease-in-out;
    }

    .popup-content h2 {
      font-family: 'montserrat';
      color: #fff;
      font-size: 40px;
      line-height: 46px;
      display: inline-block;
      /* margin-top: 50PX; */
      font-weight: 400;
      margin: 0;
    }

    .popup-content h2.p-left {
      padding-left: 100px;
    }

    .popup-cont {
      width: 70%;
      margin: 0 auto;
      padding-top: 24px;
    }

    .popup-content p {
      font-size: 22px;
      color: #fff;
    }

    .gold-feather {
      position: absolute;
      top: 30%;
      right: -60px;
    }

    .gold-feather-1 {
      position: absolute;
      top: 45%;
      left: -40px;
    }

    .gold-feather-2 {
      position: absolute;
      bottom: 25px;
      left: 50px;
    }
    .explore-btn .btn-primary {
      outline: none;
      border: none;
      padding: 16px 30px 16px 30px;
      border-radius: 50px;
      margin-top: 16px;
  }
  .explore-btn .btn-primary a {
    text-decoration: none;
    color: unset;
}
    @media only screen and (max-width:1024px) {
      .gold-feather {
        position: absolute;
        top: 30%;
        right: -60px;
      }

      .gold-feather-1 {
        position: absolute;
        top: 45%;
        left: -55px;
      }

    }

    @media only screen and (max-width: 992px) {
      .popup-content {
        width: 62%;
        height: auto;
      }

      .popup-content h2 {
        font-size: 32px;
        line-height: 30px;
      }
    }

    @media only screen and (max-width: 768px) {

      .gold-feather-1 {
        position: absolute;
        top: 45%;
        left: -50px;
      }

      .gold-feather {
        position: absolute;
        top: 30%;
        right: -60px;
      }

      .gold-feather-2 {
        bottom: 20px;
      }

      .popup-content {
        width: 80%;
        padding: 60px 0;
        border-radius: 30px;
      }
    }

    @media only screen and (max-width: 575px) {
      .popup-content h2.p-left {
        padding-left: 0;
        font-size: 22px;
      }

      .popup-content h2 {
        font-size: 24px;
      }

      .popup-content {
        width: 90%;
        padding: 40px 0;
        border-radius: 25px;
      }

      .popup-content p {
        font-size: 18px;
      }

      .gold-feather {
        top: 18%;
        right: -70px;
      }

      .gold-feather-1 {
        top: 36%;
        left: -50px;
      }

      .gold-feather-2 {
        bottom: 40px;
        left: 30px;
      }
    }

    @media only screen and (max-width: 460px) {
      .gold-feather img {
        width: 60%;
      }

      .gold-feather-1 img,
      .gold-feather-2 img {
        width: 60%;
      }
    }

    @media only screen and (max-width: 320px) {
      .gold-feather-2 {
        bottom: 40px;
        left: 10px;
      }
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 25px;
      font-size: 40px;
      cursor: pointer;
      color: #ffffff;
      transition: all 0.3s ease-out;
      background: none;
      border: none;
      box-shadow: none;
    }

    .close-btn:hover {
      color: rgb(255, 255, 255);
    }

    /* .popup-overlay.show .popup-content {
  transform: scale(1);
} */
.btn-container {
  display: flex;
  gap: 10px;
  position: relative;
}

.scroll-btn {
  position: fixed;
  top: 88%;
  right: -7px;
  z-index: 1000;
  border: none;
  outline: none;
  background: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0px); /* Start from right (off-screen) */
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}
.scroll-btn.hide-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px); /* Move out to the right */
}

.scroll-btn.show-btn {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50px); /* Move to normal position */
}
.scroll-btn span {
  width: auto;
}

.footer-awards {
  width: 90%;
}

@media (max-width:767px) {
   .scroll-btn.show-btn {
    transform: translateX(-15px); 
  }

  .footer-awards {
      width: 100%;
  }
}