        /* Bellow css code for all section */

        :root { --jd-home:#1dc1f8; }

        html {
        overflow-y: scroll;

        }

        body {
        font-family: "GFS Didot", serif;
        background-color:white;
        padding-right: 0 !important;
        width: 100%;
        overflow-x: hidden;
          }

        /* --- 1. FIXED HEADER & LOGO --- */

        .logo-box {
        position: absolute;
        top: 0;
        left: 8%;
        z-index: 2000;
        padding: 15px 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .logo-box img { width: 80px; }

      .nav-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1500; /* Higher than carousel */
        padding: 5px 8%;
        }


        .top-bar{
           padding-right:10px;
        }



    .nav-link-custom {
        font-family: "GFS Didot", serif;
        color: white !important;
        text-decoration: none;
        margin-left: 20px;
        font-weight: bold;
        transition: 0.3s;
        padding: 0px 20px;
        font-size: 14px;
        }

    .nav-link-custom.active {
        color: black !important;
        text-decoration: underline;
        text-decoration-color: black;
        text-underline-offset: 5px;
        text-decoration-thickness: 2px;
        font-weight: 600;
     }
    .nav-link-custom:hover { color: black !important; }

/* Bellow css code for loading  */
    #page-loader {
        position: fixed;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 999999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .loader-logo {
        width: 120px;
        animation: logoPulse 1.5s ease-in-out infinite;
    }

    /* Pulse animation */
    @keyframes logoPulse {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }
        50% {
            transform: scale(1.1);
            opacity: 1;
        }
        100% {
            transform: scale(1);
            opacity: 0.7;
        }
    }

/* Bellow css code for sticky navbar  */

    .sticky-navbar-hidden {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    visibility: hidden;
    opacity: 0;
}

/* Navbar Row Background */
.sticky-nav-row {
    background-color:#1dc1f8; /* Your Brand Navy Blue */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Booking Row Background */
    .sticky-booking-row {
        background-color: #ffffff; /* White or any different color */
    }

    /* Make labels or text inside booking row dark if background is white */
    .sticky-booking-row .form-control,
    .sticky-booking-row .form-select {
        border: 1px solid #ced4da;
        color: #333;
    }

    /* Active State */
    .sticky-navbar-visible {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    /* Link colors for the navy navbar */
    .sticky-nav-row .nav-link-custom {
        color: #ffffff !important;
        font-family: "GFS Didot", serif;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
    }

    .sticky-nav-row .nav-link-custom.active {
        color: black !important;
        text-decoration: underline;
        text-decoration-color: black;
        text-underline-offset: 5px;
        text-decoration-thickness: 2px;
        font-weight: 600;
     }

     .sticky-nav-row .nav-link-custom:hover {
        color: black !important;
        font-family: "GFS Didot", serif;
         text-decoration-color: black;
        text-underline-offset: 5px;
        text-decoration-thickness: 2px;
        font-weight: 600;
    }


   .nav-wrapper button,
   .sticky-nav-row button{
    color: #ffffff;
    }

    .nav-wrapper button:hover,
    .sticky-nav-row button:hover{
    color:black;
    }

    .sticky-booking-row .booking-label {
        font-family: "GFS Didot", serif;
        display: block;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #1dc1f8;
        margin-bottom: 4px;
    }

    .property-link{
        transition: color 0.3s ease;
    }
    
    .property-link:hover{
        color: #0f7ea3 !important; /* Bootstrap danger red */
    }

        /* --- HERO CAROUSEL --- */

       #heroCarousel { height: 100%; position: relative; z-index: 1; }
       .carousel-fade .carousel-inner .carousel-item { height: 100vh; }
       .carousel-fade .carousel-img {
        height: 100%; width: 100%; object-fit: cover;
        filter: brightness(0.7);

        }

       .carousel-fade .carousel-inner {
        width: 100% !important;
        }


        .play-trigger { cursor: pointer; transition: 0.3s; }
        .play-trigger:hover { color: var(--jd-home) !important; transform: scale(1.1); }

        .carousel-fade .carousel-control-prev, .carousel-control-next {
            z-index: 10;
            margin-left:10px;
            margin-right:10px;
            width: 5%;
        }


        .bi-arrow-left-circle{
         color: white;
        }

    .hero-overlay {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 100%;
        z-index: 5;
        }

        .booking-pill button:hover{
            background-color: #deb666 !important;
        }

        /* THE CURVE EFFECT */
    .curve-divider {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 90px;
        z-index: 10;
        }
    .curve-divider svg {
        display: block;
        width: 100%;
        height: 100%;
        }

    /* --- 3. BOOKING PILL --- */
       /* Remove unwanted spacing */
.booking-pill,
.booking-pill * {
    margin-bottom: 0 !important;
}

/* Main container */
.booking-pill {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background: #fff;
    border-radius: 100px;
    padding: 6px 12px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    z-index: 100;

    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Responsive width */
@media (max-width: 1300px) {
    .booking-pill {
        width: 90%;
    }
}

/* Booking item (each column) */
.booking-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 15px;
    min-height: 70px;
    border-right: 1px solid #eee;
}

/* Remove last border */
.booking-item:last-child {
    border-right: none;
}


/* Inputs & selects */
.booking-item select,
.booking-item input {
    border: none;
    box-shadow: none;
    font-size: 12px;
    padding: 5px;
    height: auto;
    background: transparent;
}

.booking-item ::placeholder{
    padding-left:8px;
}

/* Remove focus styles */
.booking-item select:focus,
.booking-item input:focus {
    outline: none;
    box-shadow: none;
}

/* Button wrapper */
.booking-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-width: 150px;
}

/* Button */
.booking-btn {
    height: 55px;
    width: 100%;
    background-color: var(--jd-home);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    font-size: 13px;
    border: none;
    transition: 0.3s;
}

/* Button hover */
.booking-btn:hover {
    opacity: 0.9;
}

/* Tablet & Mobile */
@media (max-width: 992px) {
    .booking-pill {
        flex-direction: column;
        border-radius: 20px;
        padding: 10px;
    }

    .booking-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .booking-item:last-child {
        border-bottom: none;
    }


}

        .booking-item {
            flex: 1;
            padding: 8px 14px;
        }

        /* Labels */
        .booking-label {
            font-family: "GFS Didot", serif;
            display: block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            padding-left: 10px;
            color:#495057;
            margin-bottom: 4px;
        }


      .sticky-booking-row .booking-item select {
            border: 1px dotted #1dc1f8;
            border-radius: 0px;
        }

    .sticky-booking-row .booking-item .date-padding {
            border: 1px dotted #1dc1f8;
            border-radius: 0px;
        }

/*    Bellow css code for  booking button in mobile version  */

.mobile-booking-bar {
    right: 0 !important;
    left: 0 !important;
    z-index: 1050;
    padding-right: 0 !important;

}

.offcanvas.offcanvas-end {
    transition: transform 0.5s ease-in-out;
 }

body.offcanvas-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

.mobile-booking-bar button{
  background-color: #1dc1f8 !important;
  border-radius: 0px !important;
  font-family: "GFS Didot", serif;
  font-size: 14px;
  font-weight: bold;
  color:#ffffff !important;
}

.mobile-booking-bar button:hover{
  background-color:#67d5fa !important;
  border-radius: 0px !important;
  font-family: "GFS Didot", serif;
  font-size: 14px;
  font-weight: bold;
  color:#6c757d !important;
}

.offcanvas-body button{
  background-color: #1dc1f8 !important;
  border-radius: 0px !important;
  font-family: "GFS Didot", serif;
  font-size: 14px;
  color:#ffffff !important;
  border-color: none !important;
}

.offcanvas-body button:hover{
  background-color: #67d5fa !important;
  border-radius: 0px !important;
  font-family: "GFS Didot", serif;
  font-size: 14px;
  color:#6c757d !important;
  border-color: none !important;
}


.offcanvas.offcanvas-bottom {
    bottom: 60px !important;
    height: auto;
    max-height: 70vh;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 1045;
    width: 100% !important;
    transition: transform 0.5s ease-in-out;
}

 .offcanvas-body select {
            border: 1px dotted #1dc1f8;
            border-radius: 0px;
        }

 .offcanvas-body .date-padding {
            border: 1px dotted #1dc1f8;
            border-radius: 0px;
        }

/* Each field */

.text-success{
  color:#0f7ea3 !important;
}

/* Inputs */
.custom-booking-select,
.flatpickr-input-custom {
    height: 42px;
    font-size: 14px;
    border: 0;
    padding-left: 0;
}

.custom-booking-select:focus,
.flatpickr-input-custom:focus {
    box-shadow: none;
    outline: none;
}

.custom-booking-select:hover {
    background-color: #f5f7fa;   /* light gray */
}

.sticky-booking-row .form-select{
     outline: none !important;
}

.date-padding::placeholder {
    padding-left: 10px;
}

/* Button */
.booking-btn-wrapper {
    padding: 6px;
    min-width: 150px;
}

.booking-btn {
    height: 60px;
    width: 100%;
    background-color: var(--jd-home);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    font-size: 13px;
    border: none;
}

.booking-btn:hover {
    opacity: 0.9;
}

.booking-btn-nav {
    margin-top:15px;
    height: 50px;
    width: 100%;
    background-color: var(--jd-home);
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    font-size: 13px;
    border: none;
}

.booking-btn-nav:hover {
    opacity: 0.9;
    background-color:#deb666;
}

/* Mobile */
@media (max-width: 768px) {
    .booking-pill {
        border-radius: 16px;
    }
    .booking-item {
        border-right: none !important;
    }
}

.booking-item  select{
           padding-left: 10px !important;

        }
        /* --- 4. SIDEBAR MENU --- */
    .offcanvas { width: 380px !important; z-index: 3000; }

        .side-menu-item {
        text-align: center;
        padding: 18px 0;
        border-bottom: 1px solid #f1f1f1;
        }
        .side-menu-item a { text-decoration: none; color: #333; font-size: 1.1rem; }


        /* Dropdown Custom Style */
        .dropdown-toggle::after { border: none; content: none; }
        .booking-field { cursor: pointer; padding: 8px 15px; border-radius: 15px; transition: 0.3s; }
        .booking-field:hover { background: #f8f9fa; }

        .flatpickr-input-custom {
        border: none; background: transparent; font-size: 0.875rem;
        font-weight: 500; width: 100%; cursor: pointer; outline: none;
        }

        .flatpickr-months,
        .flatpickr-month,
        .flatpickr-weekdays {
            background-color: #1dc1f8 !important;
        }

        /* Ensure the month/year text remains readable (usually white) */
        .flatpickr-current-month,
        .flatpickr-month,
        .flatpickr-weekday {
            color: #ffffff !important;
            fill: #ffffff !important; /* For the navigation arrows */
        }

        span.flatpickr-weekday {
            background: #1dc1f8 !important;
            color: white !important; /* Makes text Sun, Mon, etc. white */
        }

        /* Change the navigation arrows (prev/next month) background to match */
        .flatpickr-prev-month,
        .flatpickr-next-month {
            background-color: transparent !important;
            fill: #ffffff !important;
        }

        /* --- VIDEO MODAL & SIDEBAR --- */
        .video-sidebar-controls {
        position: absolute;
        left: 25px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3100;
        display: flex;
        flex-direction:
        column; gap: 15px;
        }
        .v-control-item {
        width: 45px; height: 45px; background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%;
        color: white; display: flex; align-items: center; justify-content: center;
        cursor: pointer; transition: all 0.3s ease; font-size: 1.2rem;
        }
        .v-control-item:hover { background: var(--jd-home); border-color: var(--jd-home); }

        /* --- VIDEO TIMER & PROGRESS BOTTOM --- */
        .video-bottom-bar {
        position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
        width: 84%; z-index: 3100; color: white;
        }
        .video-progress-container {
        width: 100%; height: 4px; background: rgba(255,255,255,0.2);
        border-radius: 2px; cursor: pointer; position: relative; margin-bottom: 10px;
        }
        .video-progress-bar {
        height: 100%; background: var(--jd-home); width: 0%; border-radius: 2px;
        }
        .video-time-display {
        font-size: 14px; font-weight: 500; letter-spacing: 1px; text-align: right;
        }

        #videoModal.modal {
        z-index: 9999 !important;
        }

        #videoModal .modal-backdrop {
            z-index: 9998 !important;
        }

        #videoModal .modal-content {
            z-index: 9999 !important;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
        .main-links { display: none !important; }

        .logo-box { left:1%; padding: 5px 10px; }
        .display-1 { font-size: 3rem; }
        .video-bottom-bar { width: 90%; bottom: 20px; }

        .nav-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1500; /* Higher than carousel */
        padding: 5px;
        }

        }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {

     .hero-overlay {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 100%;
        z-index: 5;
        }

    /* Clean up borders for vertical mobile layout */
    .booking-pill .border-end {
        border-right: 0 !important;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
        width: 100%;
    }

    .booking-pill .ps-3 {
        padding-left: 0 !important;
        width: 100%;
    }

    .booking-pill button {
        width: 100%;
        border-radius: 10px;
    }
}


.flatpickr-calendar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove extra spacing added internally */
.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ===============================
   DESKTOP (2 MONTH VIEW)
================================ */
@media (min-width: 993px) {
    .flatpickr-calendar.multiMonth {
        width: 615px !important;
    }

    .flatpickr-innerContainer {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .flatpickr-days {
        width: 100% !important;
    }
}

/* ===============================
   MOBILE (1 MONTH VIEW)
================================ */
@media (max-width: 992px) {
    .flatpickr-calendar {
        width: 307px !important;
    }

    .flatpickr-days {
        width: 100% !important;
    }
}


/* Bellow CSS CODE FOR READ MORE BUTTON */

.btn-custom {
  display: inline-block;
  background-color: #1dc1f8;
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  width:100px;
  text-align: center;
}

.btn-custom:hover {
  display: inline-block;
  background-color: #deb666;
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  width:100px;
  text-align: center;
}

/* Bellow css code of property */

.propertybg{
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}


 .propertybg img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

   .transbox:hover .img-fluid{
   opacity: 0.2;
   filter: alpha(opacity=50 );
    }

   div.transbox{
        margin:auto;
        background-color: #1dc1f8;
        transition: .5s ease;
        backface-visibility: hidden;
        position:relative;
        max-height:auto;

    }

  .transbox:after,
  .transbox:before {
    border:1px solid #fff;
    bottom: 30px;
    content: '';
    left: 40px;
    opacity: 0;
    position: absolute;
    right: 40px;
    top: 30px;
    transition: 0.5s ;
    pointer-events: none;
  }

  .transbox:hover:after,
  .transbox:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;

  }

.property .carousel-caption .btn{
  border:1px solid #fff;
  color:white;
  margin-bottom:20px;
  border-radius:0px;
}

.property .carousel-caption .btn:hover{
  border:1px solid #fff;
  color:white;
  margin-bottom:20px;
  background-color:#deb666;
  border-radius:2px;
}



.property .carousel-caption h4{
  color:white;
  font-weight: bold;
}


/* Bellow css code of room */

.similar_rooms .card, .room-section .card{
    border-radius: 0px !important;
    text-align: center;
    height: 100%;
}


.room-section .card .card-body .btn{
  border:1px solid #1dc1f8;
  color:#1dc1f8;
  margin-bottom:20px;
  border-radius:0px;
}

.room-section .card .card-body .btn:hover{
  border:1px solid #fff;
  color:white;
  margin-bottom:20px;
  background-color:#deb666;
  border-radius:2px;
}


.room-section .card h4{
    color:#1dc1f8;
}


.hover_effect {
    display: block;
    position: relative;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.hover_effect:after {
    font-family: FontAwesome;
    color: #fff;
    position: absolute;
    font-size: 1.6em;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.hover_effect img {
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hover_effect:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    filter: alpha(opacity=60);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: .6;
    -khtml-opacity: .6;
    opacity: .6;
}

.hover_effect:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
}

.hover_effect.h_blue:hover {
    background: #1dc1f8;
}

.hover_effect.h_yellow:hover {
    background: #1FD2FD;
}

.hover_effect.h_dark:hover {
    background: #5e6667;
}

.hover_effect.h_link:after {
    content: "\f471";
    font-family: "bootstrap-icons";
    font-size:40px;
}

.hover_effect.h_lightbox:after {
    content: "\f52a";
    font-family: "bootstrap-icons";
    font-size:40px;
}


/* ---------- 5.5 Blog ---------- */
.blog-title a{
    font-family: "GFS Didot", serif;
    font-size: 1rem;
    color:#6c757d;
    text-decoration: none;

}

.blog-title a:hover{
    font-family: "GFS Didot", serif;
    color: #1FD2FD;
    text-decoration: none;

}



/* ---------- 5.7 Testimonials ---------- */

section.lightgrey_bg {
    background: #f5f5f5;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #fff;
}

#testimonials .item {
    position: relative;
    margin-top: 35px;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 2px;
    text-align: center;
}

#testimonials .item img {
    max-width: 80px;
    margin: 0 auto;
    border-radius: 50%;
}

#testimonials .review_content {
    padding: 15px 0;
}

#testimonials .review_content .review_rating {
    text-align: center;
}

#testimonials .review_content .review_rating i {
    color: #deb666;
    margin: 4px 0;
}

#testimonials .review_content .review_author {
    padding-top: 30px;
}

#testimonials #testimonials_slider .owl-dots {
    margin-top: 40px;
    position: relative;
    text-align: center;
}

#testimonials #testimonials_slider .owl-dots .owl-dot {
    display: inline-block;
    position: relative;
    margin: 0 8px;
}

#testimonials #testimonials_slider .owl-dots .owl-dot span {
    position: absolute;
    bottom: 0;
    border-radius: 20px;
    border: solid 3px;
    display: block;
    width: 2px;
    height: 15px;
    margin: 5px 7px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#testimonials #testimonials_slider .owl-dots .owl-dot.active span,
#testimonials #testimonials_slider .owl-dots .owl-dot:hover span {
    color: #1dc1f8;
    height: 25px;
}



/* ---------- 5.9 Places ---------- */
#places .places_item {
    position: relative;
    -webkit-transition: 5;
    transition: 5;

}

#places .places_item:after {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(29, 193, 248, 0.6) 0%,
        rgba(29, 193, 248, 0.3) 100%
    );
}

#places .places_item img {
    width: 100%;
    border-radius: 4px;
}

#places .places_item .place_name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 9;
}

#places .places_item .place_name h2 {
    color: #fff;
    font-size: 16px;
}


.main_title {
    position: relative;
}

.main_title h2 {
    font-size: 1.2em;
    font-family: "GFS Didot", serif;
    position: relative;
    color: #1dc1f8;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.main_title.mt_dark h2 {
    color: #444;
}

.main_title.mt_blue h2 {
    color: #1dc1f8;
}

.main_title.mt_yellow h2 {
    color: #1dc1f8;
}

/* ----------  Video ---------- */

#video {
    position: relative;
    padding: 0;
    margin: 0;
    background-image: url("/front-assets/images/v-back.jpg");
    background-size: cover;
    background-repeat: no-repeat;

}

#video .inner {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.45);
    position: relative;
}

/* Gradient overlay */
.gradient_overlay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(147, 0, 17, .5) 0%, rgba(29, 193, 248, .5) 100%);
}

/* Play Icon Styling */
.play-trigger {
    font-size: 4rem;
    color: #fff;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-trigger:hover {
    transform: scale(1.1);
    opacity: 1;
}


/* ---------- 5.10 Location - Contact Us ---------- */
#contact #map-canvas {
    border: 1px solid #cfd7da;
    border-radius: 2px;
    width: 100%;
    height: 380px;
}

 .contact-item {
    background: #1FD2FD;
    border: 1px solid #1FD2FD;
    padding: 5px;
    color: #fff;
    margin-bottom: 8px;
    border-radius: 1px;
}

.contact-items .last {
    margin-right: 0px;
}

.contact-item h6 {
    font-size: .9em;
    color: #fff;
    letter-spacing: 0.01em;
}

.contact-item i {
    float: left;
    font-size: 1em;
    color: #ffffff;
    margin-right: 5px;

}

#contact-form {
    margin-top: 20px;
}

#contact .form-control {
    height: 42px;
    border-radius: 1px;
    border: 1px solid #dfdfdf;
    background-color: #fcfcfc;
    margin-bottom: 10px;
}

#contact textarea.form-control {
    min-height: 128px;
}

#ContactSuccessAlert {
        padding: 8px 15px;
        background-color:#d4edda;
        color:#155724;
        border-radius: none;
        font-weight: 400;
        display: none;
    }

#BookingSuccessAlert{
        padding: 8px 15px;
        background-color:#d4edda;
        color:#155724;
        border-radius: none;
        font-weight: 400;
        display: none;
    }

    .is-invalid {
        border: 1px solid red !important;
    }

   .invalid-feedback {
        color: red !important;
        font-weight: 400;
        margin-top: 0 !important;
        margin-top: -10px !important;

    }

    .button.btn_blue {
    background: #1FD2FD;
    border-color: #1FD2FD;
    color: #fff;
    width:100%;
}

.button.btn_blue:hover,
.button.btn_blue:active,
.button.btn_blue:focus {
    background: #b69854;
    border-color: #b69854;
}


.button.btn_lg i {
    margin-right: 10px;
}

.button i {
    margin-right: 10px;
}

.button.btn_sm i {
    margin-right: 6px;
}

.button.btn_xs i {
    margin-right: 6px;
}

.button.bb {
    border-bottom: 2px solid rgba(0, 0, 0, .2)!important;
}

.btn_full {
    width: 100% !important;
}

button {
    outline: none;
}

.button {
    border: 1px solid;
    border-radius: 1px;
    font-size: .9em;
    padding: 8px 15px;
    background: #fff;
    border-color: #e6eff2;
    color: #a9a9a9;
    font-weight: 600;
    letter-spacing: .04em;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    display: inline-block;
    line-height: 1.82857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button.btn_lg {
    font-size: 1em;
    padding: 10px 20px;
}
.button.btn_sm {
    font-size: 0.8em;
    padding: 3px 10px;
}

.button.btn_xs {
    font-size: 0.7em;
    padding: 0px 5px;
}


/* ---------- 7.1 Footer ---------- */
footer {
    border-top: 1px solid #f5f5f5;
    background-color: #f9f9f9;
    color: #777777;
}

footer h5{
    font-size: .9em;
    font-family: "GFS Didot", serif;
    position: relative;
    color: #1dc1f8;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.list-unstyled li a {
    color: #606060 !important;
    padding-top: 15px;
}

.list-unstyled li a:hover {
    color: #1FD2FD !important;
}


/*  social media */

.social_media a {

    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 1px;
    line-height: 40px;
    color:#ffffff;
    margin: 4px;
    text-align: center;
}

.social_media a:hover {

    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 1px;
    line-height: 40px;
    margin: 4px;
    color:#1FD2FD;
    text-align: center;
}


.social_media a:last-child {
    margin-right: 0;
}


.small{
    font-size: .9em;
    font-family: "GFS Didot", serif;
    position: relative;
    color:#ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.text-white{
    color:#ffffffb9 !important;
}

/* ---------- 2.6 Back to Top ---------- */
#back_to_top {
    height: 55px;
    width: 55px;
    background: #1FD2FD;
    border-radius: 3px;
    right: -100px;
    bottom: 15px;
    position: fixed;
    text-align: center;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 9;
}

#back_to_top i {
    color: #fff;
    line-height: 55px;
    font-size: 22px;
}

#back_to_top:hover,
#back_to_top:focus {
    background: #2295FF;
    box-shadow: 0 5px 10px 0 rgba(35, 50, 56, 0.1);
}

#back_to_top:hover {
    cursor: pointer;
}

#back_to_top.active {
    right: 15px;
}

/* Bellow css code for about section */

.hero-wrapper {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-layout {
    overflow: visible !important;
}

/* Sticky sidebar */

.sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.sidebar .card {
    background: transparent;
    text-align: left !important;
}

/* Property title link */
.sidebar .card .card-body h4 a {
    font-family: "GFS Didot", serif;
    font-size: 16px;
    font-weight: 700;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Hover state */
.sidebar .card .card-body h4 a:hover {
    color: #1dc1f8;
    text-decoration: none;
}



/* Bellow css code for room page */

.room_list {
    border: 1px solid #e5e5e5;
    background: #fff;
}

/* Hover image effect (optional) */
.hover_effect img {
    transition: transform 0.3s ease;
}

.hover_effect:hover img {
    transform: scale(1.03);
}

.room_details{
 padding: 2.2rem 0;
}


.room_desc .room_title{
    font-family: "GFS Didot", serif;
    font-size: 16px;
    font-weight:bold;
    color: #606060 !important;
}


/* Room title */
.room_title a {
    text-decoration: none;
    color: #333;
}

.room_title a:hover {
    color: #1dc1f8;
}

/* Price section */
.room_price_inner {
    padding: 3rem 0;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.room_price_number {
    font-size: 22px;
    font-weight: bold;
    color: #1dc1f8;
}

.room_price_number a{
   text-decoration: none !important;
}

.price-column {
    border-left: 3px solid #e5e5e5;
    display: flex;
    flex-direction: column;
}


/* Mobile fix: Remove border when columns stack */
@media (max-width: 767px) {
    .price-column {
        border-left: none;
    }

    .room_price_inner {
    padding: 2px 0;
    padding-left: 15px;
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    }

   .room_details{
    padding: 0px 0;
    text-align: center !important;

    }
}

/* Bello css code search result  */

.room_details_search .room_desc h3{
    font-family: "GFS Didot", serif;
    font-size: 18px;
    font-weight:bold;
    padding-top: 5px;
    color: #606060 !important;
}

.booking-summery {
    font-family: "GFS Didot", serif;
    font-size: 18px;
    font-weight:bold;
    color: #1dc1f8 !important;
}

/* Bello css code for room details pages  */

.main-img-display {
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Custom Thumbnail Container */
.thumb-nav {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.thumb-item {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.thumb-item img {
    width: 85px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

/* Active State - Blue border and full opacity */
.thumb-item.active img {
    border-color:#1dc1f8;
    opacity: 1;
    transform: scale(1.05); /* Optional: slight pop effect */
}

.thumb-item:hover img {
    opacity: 1;
}

/* Control Arrow Styling */

.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    background-size: 50%;
    width: 40px;
    padding-right:40px;
    margin-right:20px;
    height: 40px;
}

.carousel-control-prev-icon{
    background-color: rgba(0,0,0,0.5);
    background-size: 50%;
    width: 40px;
    margin-left:-40px;
    height: 40px;
}

.form-control{
    padding:10px;
    border-radius: 0px;
}


@media (max-width: 767px) {
    .carousel-control-prev-icon{
    background-color: rgba(0,0,0,0.5);
    background-size: 50%;
    width: 40px;
    margin-left:-10px;
    height: 40px;
}
}

/* ---------- bello css code for booking summery  ---------- */

.booking-summary {
    border-radius: 0px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 0;
    margin-top:30px;

}

.booking-summary .card-header {
    background-color: #1dc1f8;
    color: #fff;
    font-size: 16px;
    padding: 12px;
    border-radius: 0px;
}

.booking-border{
    border:1px solid #1dc1f8;
}

.booking-summary .card-body h4{
    color:#1dc1f8;
}


.booking-summary .room-name {
    margin-bottom: 5px;
    font-family: "GFS Didot", serif;
    font-size: 16px;
    font-weight:bold;
}

.booking-summary .total-price {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #1dc1f8;
}

.booking-summary .card-body p{
    text-align: left;
}

.booking-summary .card-body{
    padding-bottom: 0px !important;
}

.summary-details{
    text-align: left;
}

.booking-summary .summary-details li {
    margin-bottom: 8px;
    font-size: 14px;
}

.booking-summary i {
    width: 18px;
    color: #1dc1f8;
}


.fs-9 {
    font-size: 0.75rem;
}

::placeholder {
  font-family: "GFS Didot", serif;
  color: #b0b0b0;
  font-size: 12px;
  letter-spacing: 0.5px;
}

:focus::placeholder {
  color: #ddd;
}



.room_desc p {
    font-size: 14px;
    line-height: 1.6;
}

.room_price_inner {
    background: #fff;
}

.room_price_inner hr {
    opacity: 0.1;
}

.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-primary{
    background-color:#1dc1f8 !important;
    border: 1px solid #1dc1f8 !important;
}

.btn-primary:hover{
    background-color:#deb666 !important;
    border: 1px solid #deb666 !important;
}

/* FAQ Section */
.faq-section{
    padding: 50px 0;
}

.section-title{
    margin-bottom: 50px;
}

.section-title h2{
    font-size: 1.2em;
    font-weight: 700;
    color: #1dc1f8;
}

.section-title p{
    color: #777;
    max-width: 650px;
    margin: auto;
}

/* Accordion Item */
.accordion-item{
    border: none;
    margin-bottom: 2px;
    overflow: hidden;
}

/* Accordion Button */
.accordion-button{
    padding: 22px 25px;
    font-size: 17px;
    font-weight: 600;
    background-color: #1dc1f8;
    color: #ffffff;
    box-shadow: none !important;
    transition: 0.4s;
}

/* Active Button */
.accordion-button:not(.collapsed){
    background-color: #1dc1f8;
    color: #ffffff;
    box-shadow: none !important;
}

/* Make Down Arrow White */
.accordion-button::after{
    filter: brightness(0) invert(1);
}

/* Remove Focus Shadow */
.accordion-button:focus{
    box-shadow: none !important;
    border-color: transparent;
}

/* Accordion Body */
.accordion-body{
    padding: 20px 25px;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    background: #fff;
    box-shadow: none !important;
}

/* Remove collapse shadow */
.accordion-collapse{
    box-shadow: none !important;
}

/* Responsive */
@media(max-width:768px){

    .section-title h2{
        font-size: 30px;
    }

    .accordion-button{
        font-size: 15px;
        padding: 18px;
    }

    .accordion-body{
        padding: 18px;
    }
}
