@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body {
    
    font-family: 'Montserrat', sans-serif
}
@media screen and (orientation: landscape) {
    .carousel img {
      height: 75vh;
    }
  }

  #btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    }

    .card {
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .card-body {
      flex: 1;
    }
    .card-footer {
      
      bottom: 0;
      background-color: #f8f9fa;
      padding: 10px;
    }
.img_card {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
    .card-img-top {
        width: 100%;
        height: 20vw;
        min-height:350px;
        object-fit: cover;
    }
    
    .progress {
        overflow: visible;
        margin-bottom: 26px;
        height: 20px;
        .progress-bar {
          background-color: #fe012b;
          position: relative;
          border-radius: 4px;
          span {
            background-color: #f80c0c;
            position: absolute;
            bottom: -20px;
            font-size: 10px;
            line-height: 10px;
            padding: 2px 3px 2px 4px;
            right: -1.4em;
            border-radius: 2px;
            font-weight: 500;
          }
          span:after {
            bottom: 100%;
            left: 50%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: rgba(255, 255, 255, 0);
            border-bottom-color: #f80b0b;
            border-width: 5px;
            margin-left: -5px;
            font-weight: 500;
          }
        }
      }
.navbar {
    transition: all 0.5s;
}
.navbar-scrolled {
    background-color:black;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);

  }

.jumbotron-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    transition: transform 3.6s ease-in-out;
  }
  
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: opacity 0s 3.6s;
  }
  .install-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 999;
  }
  .install-bar button {
    background-color: #fff;
    color: #007bff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
  }

  .popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e7e4e4;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 1s ease-out;
    z-index: 9999;
}

.popup.show {
    transform: translateY(0);
}
.popup-content {
    padding: 20px;
}

.custom-btn {
  font-size: 2rem;           /* Oversized text */
  padding: 1.5rem 3rem;      /* Extra padding */
  opacity: 0.8;              /* Semi-transparent */
  background-color: rgba(13, 110, 253, 0.8); /* Optional: custom semi-transparent blue */
  border: none;
  border-radius: 1rem;
  transition: opacity 0.3s ease;
}

.custom-btn:hover {
  opacity: 1;                /* Less transparent on hover */
}