.home-container{
    height: 100vh;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    background-color: #fff;
    width: 500px;
    position: relative;

}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.search-icon {
    flex-shrink: 0;
}


.dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 100;
    min-width: 350px;
    top: 100%;
    left: 0;
    margin-top: 8px;
  }

  .bed-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .bed-option {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 14px;
  }

  .bed-option:hover {
    background: #f5f5f5;
  }

  .price-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }

  .price-input {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .price-input label {
    font-size: 14px;
    margin-bottom: 4px;
    color: #555;
  }

  .input-with-suffix {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-with-suffix input {
    padding: 8px 12px;
    padding-right: 40px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 14px;
  }

  .input-with-suffix .suffix {
    position: absolute;
    right: 12px;
    font-size: 14px;
    color: #555;
  }

  .price-slider-container {
    margin-bottom: 20px;
  }

  .price-slider {
    position: relative;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 20px 0;
  }

  .price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 4px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    top: 0;
  }

  .price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #07234B;
    cursor: pointer;
    pointer-events: auto;
  }

  .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-top: -12px;
  }

  .apply-btn {
    background: #07234B;
    color: #fff;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
  }

  .apply-btn:hover {
    background: #0d3a7a;
  }

  .search-cta-section {
    margin-top: 20px;
    text-align: center;
  }

  .button-orange {
    background-color: #ff6a00;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
  }

  @media (max-width: 768px) {
    .price-dropdown-menu-mob{
    left: -250px !important;
    }
    .beds-dropdown-menu-mob{
        left: -121px;
    }

    .search-box{
        width: 0px !important; 
    }
    .search-input{
        width: unset !important;
        font-size: 9px;
    }
.mob-spce-detaild{
  margin-top: 90px;
}
    }

    .gatsby-image-wrapper {
        position: relative;
        overflow: hidden
    }

    .gatsby-image-wrapper picture.object-fit-polyfill {
        position: static !important
    }

    .gatsby-image-wrapper img {
        bottom: 0;
        height: 100%;
        left: 0;
        margin: 0;
        max-width: none;
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        object-fit: cover
    }

    .gatsby-image-wrapper [data-main-image] {
        opacity: 0;
        transform: translateZ(0);
        transition: opacity .25s linear;
        will-change: opacity
    }

    .gatsby-image-wrapper-constrained {
        display: inline-block;
        vertical-align: top
    }

    .gatsby-image-wrapper noscript [data-main-image] {
        opacity: 1 !important
    }

    .gatsby-image-wrapper [data-placeholder-image] {
        opacity: 0 !important
    }

    .bg-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2); /* Black with 40% opacity */
        z-index: 1;
    }



    .search-results-dropdown {
        position: absolute;
        top: 100%; /* directly below the input */
        left: 0;
        right: 0;
        z-index: 10;
        background-color: white;
        border: 1px solid #ccc;
        max-height: 250px;
                overflow-y: auto;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        border-radius: 10px;
        margin-top: 10px;
        width: 350px;
      }
    .result-item {
        padding: 8px 12px;
        cursor: pointer;
    }
    .result-item:hover {
        background-color: #f0f0f0;
    }
    .marquee-logo {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }
    
    .marquee-logo-content {
        display: flex;
        gap: 30px; /* Space between logos */
        animation: marquee-scroll 15s linear infinite;
        width: max-content; /* Ensure smooth animation */
    }
    
    .marquee-logo-item img {
        width: 200px; /* Adjust size as needed */
        height: auto;
        display: block;
    }
    
    /* Keyframes for horizontal scrolling */
    @keyframes marquee-scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    .marquee-container{
        max-width: 100% !important;
    }

    .header-wrap.header-transparent.scrolled {
        background-color: black;
    }

    .prague-footer-info-block {
        position: relative;
      }
      
      .prague-footer-info-block .footer-info-block-title {
        font-weight: 300;
        font-style: normal;
        letter-spacing: 4.5px;
        color: white;
        margin-top: 0;
        margin-bottom: 37px;
      }
      
      .prague-footer-info-block .footer-info-block-content {
        font-size: 13px;
        line-height: 26px;
        font-weight: 400;
        color: white;
      }
      
      .prague-footer-info-block .footer-info-block-content p {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        color: inherit;
        margin-bottom: 0;
      }
      
      .prague-footer-info-block .footer-info-block-content a {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        color: inherit;
        opacity: 1;
        -webkit-transition: opacity 0.3s ease-in;
        -o-transition: opacity 0.3s ease-in;
        transition: opacity 0.3s ease-in;
      }
      
      .prague-footer-info-block .footer-info-block-content a:hover {
        opacity: 0.7;
      }
      
      .disable-prague-plugin .prague-footer .footer-content-outer {
        padding: 40px 0 40px;
      }
      
      .disable-prague-plugin .prague-footer .footer-content-outer .footer-bottom-content {
        padding-top: 0;
      }
      
      .prague-footer {
        position: relative;
        background-color: black;
      }
      
      .prague-footer:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: black;
        opacity: 0.8;
        z-index: 90;
      }
      
      .prague-footer.modern {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(13, 13, 13, 0.3);
        z-index: 200;
      }
      
      .prague-footer.modern:before {
        background-color: transparent;
      }
      
      .prague-footer.modern .footer-content-outer {
        max-width: none;
        padding: 30px;
      }
      
      .prague-footer.modern .footer-bottom-content {
        padding-top: 0;
      }
      
      .prague-footer.modern .footer-bottom-content .footer-copyright {
        line-height: 32px;
      }
      
      .prague-footer.modern .footer-bottom-content .prague-social-nav .social-content {
        margin-top: 0;
      }
      
      .prague-footer.copy .footer-content-outer {
        max-width: none;
        padding: 30px;
      }
      
      .prague-footer.copy .footer-bottom-content {
        padding-top: 0;
      }
      
      .prague-footer.copy .footer-bottom-content .footer-copyright {
        line-height: 32px;
        width: 100%;
        text-align: center;
      }
      
      .prague-footer .footer-content-outer {
        position: relative;
        max-width: 1170px;
        margin-left: auto;
        margin-right: auto;
        padding: 140px 0 140px;
        z-index: 100;
      }
      
      .prague-footer .footer-top-content {
        position: relative;
        padding-bottom: 33px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }
      
      .prague-footer .footer-top-content:after {
        content: '';
        display: table;
        clear: both;
      }
      
      .prague-footer .footer-top-content .prague-footer-main-block {
        width: 50%;
        float: left;
      }
      
      .prague-footer .footer-top-content .prague-footer-main-block .prague-logo {
        position: relative;
      }
      
      .prague-footer .footer-top-content .prague-footer-main-block .prague-logo a {
        display: inline-block;
        vertical-align: middle;
        font-size: 20px;
        line-height: 32px;
        font-weight: 500;
        color: white;
        -webkit-transition: color 0.3s ease-in;
        -o-transition: color 0.3s ease-in;
        transition: color 0.3s ease-in;
      }
      
      .prague-footer .footer-top-content .prague-footer-main-block .footer-main-content {
        margin-top: 36px;
        max-width: 470px;
        font-size: 13px;
        line-height: 26px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
      }
      
      .prague-footer .footer-top-content .prague-footer-main-block .footer-main-content p {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        color: inherit;
      }
      
      .prague-footer .footer-top-content .prague-footer-info-block {
        width: 50%;
        padding-top: 28px;
        text-align: right;
        float: right;
      }
      
      .prague-footer .footer-bottom-content {
        position: relative;
        padding-top: 47px;
      }
      
      .prague-footer .footer-bottom-content:after {
        content: '';
        display: table;
        clear: both;
      }
      
      .prague-footer .footer-bottom-content .footer-copyright {
        float: left;
        width: 50%;
        font-size: 10px;
        line-height: 18px;
        letter-spacing: 2px;
        color: #ffffff69;
      }
      
      .prague-footer .footer-bottom-content .footer-copyright p {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        color: inherit;
        margin-bottom: 0;
      }
      
      .prague-footer .footer-bottom-content .prague-social-nav {
        float: right;
        margin-top: 0;
        margin-left: 0;
        width: 50%;
        text-align: right;
      }
      
      .prague-footer .footer-bottom-content .prague-social-nav .social-content {
        position: static;
        display: block;
        margin-bottom: 0;
      }
      
      .prague-footer .footer-bottom-content .prague-social-nav .social-content li {
        margin-bottom: 0;
        margin-right: 0;
        margin-left: 11px;
        display: inline-block;
      }
      
      .prague-footer .footer-bottom-content .prague-social-nav .social-content li a {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        width: 30px;
        height: 30px;
        font-size: 12px;
        line-height: 28px;
        border: 1px solid rgba(242, 242, 242, 0.4);
        color: white;
        -webkit-transition: border 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
        -o-transition: border 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
        transition: border 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
      }
      
      .prague-footer .footer-bottom-content .prague-social-nav .social-content li a:hover {
        border: 1px solid white;
        background-color: white;
        color: #111111;
      }
      
      .prague-footer .footer-bottom-content .prague-social-nav .social-content li a i {
        line-height: 28px;
      }
      
      @media only screen and (max-width: 1199px) {
        .prague-footer .footer-content-outer {
          padding: 100px 0;
          max-width: 970px;
        }
      }
      
      @media only screen and (max-width: 991px) {
        .prague-footer .footer-content-outer {
          padding: 50px 0;
          max-width: 750px;
        }
      }
      
      @media only screen and (max-width: 767px) {
        .prague-footer.modern .footer-content-outer {
          padding: 15px;
        }
        .prague-footer.modern .footer-bottom-content .prague-social-nav {
          padding-top: 15px;
        }
        .prague-footer .footer-content-outer {
          padding: 50px 15px;
          max-width: none;
        }
        .prague-footer .footer-top-content .prague-footer-main-block {
          width: 100%;
          text-align: center;
          float: none;
        }
        .prague-footer .footer-top-content .prague-footer-main-block .footer-main-content {
          margin-left: auto;
          margin-right: auto;
          margin-top: 15px;
        }
        .prague-footer .footer-top-content .prague-footer-info-block {
          width: 100%;
          text-align: center;
          float: none;
        }
        .prague-footer .footer-top-content .prague-footer-info-block .footer-info-block-title {
          margin-bottom: 15px;
        }
        .prague-footer .footer-bottom-content {
          text-align: center;
          padding-top: 33px;
        }
        .prague-footer .footer-bottom-content .footer-copyright {
          width: 100%;
          float: none;
        }
        .prague-footer .footer-bottom-content .prague-social-nav {
          width: 100%;
          float: none;
          text-align: center;
          padding-top: 28px;
        }
      }
      .image_logo{
        width: 120px !important;
        margin-top: -17px;
    }

    .custom-path {
        transition: fill 0.3s ease;
    }
        /* Add this CSS to your stylesheet */
        .custom-svg-link:hover .custom-path {
            fill: #000000; /* Black color */
        }
        .custom-path {
            fill: none;
            stroke: white;
            stroke-linecap: round;
            stroke-linejoin: round;
        }


        /* In your CSS file */
.header-scrolled {
    background-color: black !important;
    transition: background-color 0.3s ease-in-out;
  }
  



  .hidden {
    display: none !important;
}

#search-results .result-item {
    padding: 8px 12px;
    cursor: pointer;
}
#search-results .result-item:hover {
    background-color: #f1f1f1;
}
.marquee-logo:hover .marquee-logo-content {
    animation-play-state: paused;
}

.submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2); /* Light border */
    background: #0000004d;
    
}

.submenu li a {
    display: block;
    padding: 12px 15px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Subtle separator */
    transition: background 0.2s ease;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    background: rgba(255,255,255,0.3);
}

/* Keep other menu items stable */
.main-menu:not(.toggle-submenu) {
    position: relative;
    z-index: 1;
}
.mobile-banner-menu.scrolled {
    background: #0000004d; /* Fallback */
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    
}
.submenu.scrolled {
    background: #0000004d; /* Fallback */
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.button-search-mob{
    color: #fff;
    padding: 10px 60px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    width: 50%;
    background: black;
    display: block;          /* Add this */
    margin: 0 auto;   
    margin-top: 10px;       /* Add this */
}
.button-viewallprop-mob {
    color: #fff;
    padding: 10px 122px;
    border: none;
    font-size: 14px;
    background: black;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}


.img-block {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9; /* Set desired aspect ratio (width/height) */
}

.img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* optional hover effect */
}

/* If you need to support older browsers */
.img-block {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    overflow: hidden;
}

.img-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

/* Optional hover effect */
.img-block:hover img {
    transform: scale(1.05);
}


.mobile-banner-menu{
    background: #0000004d;
}

.btn:hover {
    background-color: #4b4b4b !important;
}

.img-block {
  cursor: pointer; /* shows pointer cursor */
}


.price-tag{
  font-size: 16px;
}

.custom-icon {
  font-size: 1.5em; /* Adjust this value as needed */
}

.page-loader{

  position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 65px;
}

.loading-spinner{

  width: 3rem; 
  height: 3rem;
}
  @media only screen and (max-width: 480px) {
  .img-section {
    margin-top: -400px !important;
    margin-bottom: -366px !important;
  }
}
  
