.site-logo{
    height: 85px;
    width: 100%;
    object-fit: contain;
}
.countdown-glass {
    backdrop-filter: blur(15px);
    background: #1d958133;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    position: fixed;
    right: 10px;
    bottom: 30px;
    z-index: 10;
  }

  .countdown-glass .label {
    font-size: 0.9rem;
    font-weight: normal;
    color: #ddd;
  }

  .home-intro-content {
    /* backdrop-filter: blur(15px);
    background: #1d958133;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px; */
    width: 50%;
    margin: 0 auto;
  }
  .text-medium {
    font-size: 1.2rem;
    font-weight: 300;
  }
  .section-title h2.big-heading {
    font-size: 2rem;
    line-height: 1;
  }
  .about-us {
    background-image: url('../images/bg/bg6.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    background-attachment: fixed;
      padding: 100px 0;    
  }
  .about-us-content {
    backdrop-filter: blur(15px);
    background: #1d958133;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
  }

  .popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .popup.show {
    visibility: visible;
    opacity: 1;
  }
  
  .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    min-width: 300px;
  }
  
  .close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }
  