
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #D9677C;
  text-decoration: none;
}

a:hover {
  color: #A7090B;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Raleway", sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #428bca;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

    /* Preloader styles */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      transition: opacity 0.5s ease;
    }

    .loader {
  border: 1px solid #f3f3f3;          /* Thinner border */
  border-top: 2px solid #8B4513;      /* Brown top (SaddleBrown) */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 1s linear infinite;
}

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    body.loaded #preloader {
      opacity: 0;
      pointer-events: none;
    }
  
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.top-header {
            background: #0000 !important; /* Bright Green */
            color: #083D77 !important; /* Dark Blue Text for Contrast */
            padding: 6px 0;
            font-size: 0.9rem;
        }

        .top-header i, 
        .top-header a, 
        .top-header div {
            color: #444 !important; 
            text-decoration: none;
            font-size:;
        }

        .top-header i, 
        .top-header a {
        color: #428bca !important; /* Blue color for icons */
        }

        .social-icon:hover {
            color: #ffffff !important; /* White on hover */
        }

        .navbar-brand img {
            height: 90px; /* Increase logo size */
            max-width: 100% !important; /* Ensure it scales properly */
            transition: all 0.3s;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
        }

        .separator {
            margin: 0 10px; /* Space around the vertical bar */
            font-weight: bold;
            color: #083D77; /* Match text color */
        }

        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            background: #444 !important; /* navbar bg color */
        }

        .nav-link {
            color: #fff !important;
            display: block !important;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600 !important;
            margin: 0 5px;
            text-transform: ; /* uppercase or lowecase */
            font-size: 16px !important;
            transition: color 0.3s ease-in-out;
        }

        .nav-link:hover {
            color: #EC7F04 !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .dropdown-item {
            transition: all 0.3s;
        }

        .dropdown-item:hover {
            background-color: #833302 !important; /* brown */
            color: white !important;
        }

        /* Animated dropdown */
        .dropdown:hover .dropdown-menu {
            display: block;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu li {
            opacity: 0;
            transform: translateY(-10px);
            animation: slideIn 0.3s forwards;
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
        .dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
        .dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
        .dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
        .dropdown-menu li:nth-child(5) { animation-delay: 0.5s; }
        .dropdown-menu li:nth-child(6) { animation-delay: 0.6s; }
        .dropdown-menu li:nth-child(7) { animation-delay: 0.7s; }

        .social-icon {
            color: #fff;
            margin: 0 8px;
            transition: all 0.3s;
        }

        .social-icon:hover {
            color: #3498db;
            transform: translateY(-2px);
        }

        /* Mobile-specific changes */
        @media (max-width: 991.98px) {
            .top-header { 
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .top-header .d-flex {
                display: none; /* Hide social icons on mobile */
            }

            .top-header .contact-btn {
                font-size: 0.75rem;
                padding: 5px 14px;
            }

            .top-header .separator {
                display: none; /* Hide separator on mobile */
            }

            .top-header .donate-button {
                font-size: 0.75rem; /* Smaller button */
                padding: 5px 14px;
            }

            /* Show navbar-toggler on smaller screens */
            .navbar-toggler {
                display: block !important;
                border-color: white; /* Change border color to white */
            }
        }
         .navbar-toggler{
             filter: invert(1); /* Makes the default black icon white */
         }
         .contact_btn {
            background: #9E6513  !important;
            color: white !important;
            border-radius: 30px !important;
            padding: 6px 18px !important;
            transition: all 0.3s;
            font-family: "Trebuchet MS",sans-serif !important;
            font-size: px !important;
        }

        .contact_btn:hover {
            background: #D78B1C !important;
            transform: translateY(-2px);
        }

        /* Ensure social media icons show on larger screens (992px and above) */
        @media (min-width: 992px) {
            .top-header .d-flex {
                display: flex !important; /* Force display on larger screens */
            }

            .top-header .donate-button {
                font-size: 0.9rem; /* Larger button for desktops */
                padding: 8px 20px;
            }
        }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  padding: 0;
  overflow: hidden;
  background: #000;
}
#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .carousel-item::before {
  content: "";
background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#hero .carousel-content {
  text-align: left;
}
@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: calc(100vh - 70px);
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}
#hero h2 {
  color: #;
  margin-bottom: 30px;
  font-size: 38px;
  font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3); /* Softer shadow */
            background-color: rgba(50, 50, 50, 0.6);/* Subtle white background */
            padding: 10px 20px; /* Add some padding */
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), 
                        0 0 40px rgba(0, 0, 0, 0.2);

             font-family: 'Playfair Display', serif;
            display: inline-block; /* Wraps neatly around text */
            font-weight: 700; /* Bold weight for emphasis */
          }
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #ffffff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #9E6513;
}
#hero .btn-get-started:hover {
  background: #9E6513;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (max-height: 500px) {
  #hero, #hero .carousel-item {
    height: 120vh;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
  /*--------Welcome section--------*/
.welcome-section {
        text-align: center;
        padding: 50px 20px;
        background: transparent;
    }
    .welcome-content {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1); /* Slightly transparent white */
        padding: 20px 40px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    .welcome-content h2 {
        font-size: 2rem;
        font-weight: bold;
        color: #fff;
    }
    .tagline {
        font-size: 1.5rem;
        color: #ffcc00;
        margin: 10px 0;
        text-align: center;
    }
    .stars span {
        color: #ffcc00;
        font-size: 1.8rem;
        margin: 0 3px;
    }
  /*--------End Welcome section--------*/
   /*-------- ABOUTT SECTION WITH A VIDEO --------*/
        .btn-playy {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: none;
        outline: none !important;
        background: #8d703b;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        animation: pulse 1.5s infinite;
    }

    .btn-playy span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: #8d703b;
        border-radius: 50%;
        position: relative;
    }

    .btn-playy span::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        border-left: 15px solid white;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    .modal_htop{
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 500;
            margin-left: px;
            color: #2c2c2c; /* Adjust to match your theme */
            }
    
     /* Responsive Video Aspect Ratio */
        .embed-responsive {
            position: relative;
            display: block;
            width: 100%;
            padding: 56.25% 0 0 0; /* 16:9 Aspect Ratio */
            height: 0;
        }

        .embed-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
        }
        50% {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
        }
    }

        /*----------FEATURED AMENITIES SECTION-----------*/

        .featured_h {
            background-color: #;
        }
         .underline {
                display: inline-block;
                position: relative;
            }

            .underline::after {
                content: "";
                display: block;
                width: 80px;  /* Adjust width */
                height: 3px;  /* Adjust thickness */
                background-color: #87392b;  /* Change to your preferred color */
                position: absolute;
                left: 10px;  /* Adjust spacing */
                bottom: -5px;  /* Adjust distance from text */
            }

         .underline_h {
                color: #444;
            }

        .scroll-container {
            overflow: hidden;
            position: relative;
            width: 100%;
            padding: 20px 0;
        }
        .scroll-wrapper {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }
        .card {
             flex: 0 0 calc(50% - 20px); /* Show 3 big cards */
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            background: #fff;
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            transition: transform 0.5s ease-in-out;
        }
        .card:hover img {
            transform: scale(1.05);
        }
        .card-titlee {
          font-family: 'Poppins', sans-serif;
          font-weight: 600;
          font-size: 1.25rem;
          color: #333;
          transition: color 0.3s ease-in-out;
        }
        .card-textt {
            text-align:center;
        }
        .card h5:hover {
          color: #0073e6;
          cursor: pointer;
          text-decoration: none;
           }
        .card p {
        }

        .card-body {
            padding: 15px;
        }
        .scroll-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .scroll-btn {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 20px;
        }
        .scroll-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        @media (max-width: 992px) {
            .card { flex: 0 0 calc(50% - 20px); }
        }
        @media (max-width: 768px) {
            .card { flex: 0 0 100%; }
        }

        /*SINGLE ROOMS CARDS*/
        .card-title-s {
        font-size: 14px;
        font-weight: bold;
        color: #444;
        margin-top: 10px;
        text-align: left;
        color: inherit !important; /* Keeps the original color i.e  stops the blue color on hover*/
        }
        .card-title-p {
        font-size: 12px;
        color: #444;
        line-height: 28px;
        position: relative;
        }
        .card-text-p {
            color: #4D4D4D;
            text-align: left;
        }
        
        .sngl_btn{
            float: left;

        }
        .modal-title_h5{
           font-size: 15px;
           color: #444;
           float: center !important;
           margin-left: 125px;
           font-weight: bold;
        }

        .modal_card-text_p{
            margin-top: 15px;
            font-size: 13px;
            color: #000;
        }
        
        .need_m_info{
            margin-top: 12px; font-size: 12px;
        }

      .left_arrowicon {
        font-size: 10px;
      }

.ctaa h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;

}
.ctaa p {
  color: #fff;
  text-align: center;
}
.ctaa .ctaa-btn {
    font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.ctaa .ctaa-btn:hover {
  background: #cc1616;
  border: 2px solid #cc1616;
}

   /*-- ======= GALLERY SECTION ===== --*/

    .gallery-section {
      padding: 100px 0;
    }
    .gallery-img {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .gallery-img:hover {
      transform: scale(1.03);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .glightbox img {
      max-width: 100%;
      border-radius: 20px;
    }

/*-- ======= RESERVATION BELOW GALLERY SECTION ===== --*/
     .reservation-section { /*CSS FOR THE CTA BELOW GALLERY*/
      background-color: #1a1a1a;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }
    .reserve_p{
      text-align: center;
      font-family: 'Segoe UI', sans-serif;
    }
    .reserv_h{
      font-family: 'Segoe UI', sans-serif;
    }
    .btn-gold {
      background-color: #d4af37;
      color: #000;
      font-weight: bold;
    }
    .btn-gold:hover {
      background-color: #bfa133;
    }
  
    
  /*======RESTAURANT CTA SAME FOR CONFERENCE CTA========*/ 
    
  .cta-btn {
    position: relative;
    overflow: hidden;
    background-color: #000 !important;
    color: #fff !important;
    border: none;
    z-index: 1;
  }
  .lead{
    color: #444;
    font-size: 14px;
    font-weight: bold;
  }
  .h2_cta{
    font-family: 'Playfair Display', serif;
  }
  .b_gall_ctn{
    background-color: #F9C608;
    margin-bottom:10px;
    border-radius: 15px;
  }
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* increased opacity for denser overlay */
    transition: left 0.4s ease;
    z-index: 0;
  }

  .cta-btn:hover::before {
    left: 0;
  }

  .cta-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
  }

  .cta-btn span {
    position: relative;
    z-index: 2;
  }

  /*-----====yelloow-ish view more button at conference page=====-------*/
  .btn-yellow {
    background-color: yellow;
    color: black;
    border: none;
  }

  .btn-yellow:hover {
    background-color: #f0d800; /* less-bright yellow */
    color: black;
  }
    /*--  =========== SPECIAL OFFERS SECTION ======  --*/
    .special-offers {
      background-color: #f8f9fa;
      padding: 60px 0;
    }
    .offer-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .offer-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .offer-card-body {
      padding: 20px;
    }
    .offer-card-body h4 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #333;
    }
    .offer-card-body p {
      font-size: 1rem;
      color: #666;
    }
    .offer-card-body .btn {
      background-color: #d9af6d;
      color: #fff;
      border: none;
      font-size: 14px;
      font-weight: 500px;
      transition: background-color 0.3s ease;
    }
    .offer-card-body .btn:hover {
      background-color: #b68949;
    }
    .offer-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
  
     /*--  =========== WHATS NEW SECTION ======  --*/
    
    h2, .card-title {
      font-family: 'Playfair Display', serif;
    }
     .new_p{ 
      text-align: center;
         }
    #whats-new {
      padding: 60px 15px;
    }

    .whats-new-card img {
      transition: transform 0.3s ease;
      border-radius: 0.5rem;
    }

    .whats-new-card img:hover {
      transform: scale(1.03);
    }

    .whats-new-card .card {
      transition: transform 0.3s ease;
    }

    .whats-new-card .card:hover {
      transform: translateY(-5px);
    }

    .btn-outline-dark {
      border-radius: 2rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      transition: all 0.3s ease;
    }

    .btn-outline-dark:hover {
      background-color: #000;
      color: #fff;
      transform: scale(1.05);
    }
  
   /*-- ==== Bar lounge gallery ==== --*/
    
   .gallery-img {
      border-radius: 15px;
      transition: 0.3s ease;
    }
    .gallery-img:hover {
      transform: scale(1.03);
    }
    .carousel-item {
      text-align: center;
    }
    .menu-item img {
      max-width: 120px;
      margin-bottom: 15px;
      border-radius: 50%;
      display: block;
    }
    .sig_drink_p{
      margin-left: 50px;
      font-family: 'Segoe UI', sans-serif;
    }
    .reservation-section {
      background-color: #1a1a1a;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }
    .reserve_p{
      text-align: center;
      font-family: 'Segoe UI', sans-serif;
    }
    .reserv_h{
      font-family: 'Segoe UI', sans-serif;
    }
    .btn-gold {
      background-color: #d4af37;
      color: #000;
      font-weight: bold;
    }
    .btn-gold:hover {
      background-color: #bfa133;
    }
  
    /*--  =========== CONTACT CARDS ======  --*/
    .contact-box {
      background: #0d1126;
      color: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      height: 100%;
      transition: transform 0.2s ease;
    }

    .contact-box:hover {
      transform: translateY(-5px);
    }

    .contact-box i {
      color: #e2b84b;
      font-size: 24px;
      margin-bottom: 15px;
    }

    .contact-box h6 {
      text-transform: uppercase;
      font-weight: bold;
      color: #e2b84b;
      font-size: 0.9rem;
      margin-bottom: 5px;
    }

    .contact-box p {
      margin: 0;
    }
  
 /*-- ======= SERVICES ICONS SECTION ===== --*/

    .service-icon {
      width: 80px;
      height: 80px;
      background-color: #f8f4ed;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 32px;
      color: #a38d5f;
    }
    .service-title {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 10px;
      color: #000;
    }
    .service-text {
      color: #6c757d;
      font-size: 0.95rem;
      text-align: center;
    }
  
/*TESTIMONIALS SECTION */

.container h3 {
      font-size: 30px;
      text-align: center;
      font-weight: bold;
      color: #fff;
   }

.contacts_h3 {
  {
      font-size: 30px;
      text-align: center;
      font-weight: bold;
      color: #;
   }
}
.u_slinks{
    font-size: px !important;
    margin-left: 20px !important;
    margin-top: 10px;
    font-weight: bold;
}
.sm_feed{
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
.testimonials {
      background: #F97703;
      padding: 50px 0;
    }
    .testimonial-item {
      text-align: center;
      padding: 20px;
      background: #f8f9fa;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .testimonial-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .testimonial-item h3 {
      font-size: 18px;
      font-weight: bold;
      color: #333;
      text-align: center;
    }
    .testimonial-item h4 {
      font-size: 14px;
      color: #777;
    }
    .testimonial-item p {
      font-style: italic;
      color: #555;
      margin-top: 10px;
      text-align: center;
    }
    .swiper-pagination-bullet {
      background: #007bff !important;
    }
    /* Ensure testimonials stay in a row on all screen sizes */
    .swiper-slide .row {
      display: flex;
      flex-wrap: nowrap;
    }
    /* Smaller navigation buttons */
    .swiper-button-prev, .swiper-button-next {
      color: #007bff !important;
      font-size: 20px !important; /* Reduce button size */
      width: 30px !important; /* Adjust width */
      height: 30px !important; /* Adjust height */
    }
    /* Reduce icon size inside buttons */
    .swiper-button-prev::after,
    .swiper-button-next::after {
      font-size: 20px !important;
    }

    /*FAQs Frequently Asked Questions Section*/
    .faq {
            background: #f8f9fa;
            padding-top: 60px;
            padding-bottom: 20px;
        }
        .faq .content {
            text-align: left;
            padding-right: 20px;
        }
        .faq .content h2 {
            font-weight: 700;
            font-size: 36px;
            color: #333;
        }
        .faq .content p {
            font-size: 16px;
            color: #6c757d;
        }
        .faq .accordion-item {
            border: 0;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }
        .faq .accordion-button {
            padding: 18px;
            font-weight: 600;
            font-size: 18px;
            color: #444;
            background: #fff;
            border: none;
            display: flex;
            align-items: center;
            transition: 0.3s;
        }
        .faq .accordion-button:hover {
            background: #f1f1f1;
        }
        .faq .accordion-button .num {
            margin-right: 10px;
            font-size: 20px;
            color: #007bff;
            font-weight: bold;
        }
        .faq .accordion-button:focus {
            box-shadow: none;
        }
        .faq .accordion-body {
            padding: 20px;
            background: #ffffff;
            font-size: 16px;
            line-height: 1.6;
            border-left: 4px solid #007bff;
            transition: all 0.3s ease-in-out;
        }
        

     /*-- =======ABOUT US SECTION CSS ====  */
    .body-abt {
      font-family: 'Open Sans', sans-serif;
      background-color: #;
      color: #;
    }

    .about-us {
      padding: 80px 0;
    }

    .about-subtitle {
      font-size: 1rem;
      color: #bfa046;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .about-title {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 700;
      color: #2c2c2c;
      line-height: 1.2;
      margin-bottom: 30px;
    }

    .about-text {
      font-size: 1.1rem;
      color: #5f5f5f;
      line-height: 1.9;
    }

    .learn-more {
      margin-top: 40px;
      display: inline-block;
      font-weight: 500;
      color: #bfa046;
      text-decoration: none;
      border-bottom: 1px solid #bfa046;
      transition: all 0.3s ease;
    }

    .learn-more:hover {
      color: #a48933;
      border-bottom-color: #a48933;
    }

    .about-images img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
      object-fit: cover;
    }

    @media (min-width: 992px) {
      .about-images {
        display: flex;
        gap: 25px;
      }

      .about-images img {
        width: 48%;
      }

      .about-images img:first-child {
        margin-top: -20px; /* Push the first image up */
      }

      .about-images img:last-child {
        margin-top: 30px; /* Push the second image down */
      }
    }

    /*-- ======= Abbout us food and rooms ===== --*/

    body-fr {
      background-color: #f8f9fa;
      font-family: 'Segoe UI', sans-serif;
    }
    .feature-card {
      background-color: white;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    .feature-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }
    .feature-content {
      padding: 2rem;
      flex-grow: 1; /* Makes sure the content area expands to take available space */
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Spacing out content */
    }
    .feature-icon {
      font-size: 2rem;
      color: #d4af37;
      margin-bottom: 1rem;
    }
    .feature-title {
      font-weight: 600;
    }
    .feature-content p {
      flex-grow: 1; /* This allows the paragraph to expand */
    }
    .btn-book-now {
      width: 100%;
      padding: 0.8rem;
      background-color: #d4af37;  /* Luxurious gold color */
      color: white;
      border: none;
      font-size: 1rem;
      font-weight: bold;
      border-radius: 0.25rem;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    .btn-book-now:hover {
      background-color: #b5942f; /* Darker gold on hover */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    }
     

    /*PAYMENT,CHILDREN, CANCELLATION POLICY CSS*/
  .luxury-section {
    background-color: #0f0f0f;
    padding: 5rem 0;
  }

  .luxury-title {
    color: #d4af37; /* Gold */
    font-weight: 600;
  }

  .luxury-card {
    background-color: #ffffff;
    color: #000;
    border-left: 5px solid #d4af37;
    transition: transform 0.3s ease;
  }

  .luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  }

  .luxury-card h5 {
    color: #0f0f0f;
    font-weight: bold;
  }

  .luxury-card p {
    color: #333;
  }

   /*===BAR AND LOUNGE CSS===*/
   .sig-carousel-section {
      background: 
        linear-gradient(to bottom, #fffbe6, #f8f9fa),
        url('https://www.transparenttextures.com/patterns/linen.png');
      background-repeat: repeat;
      padding: 0px 0;
    }

    .sig-carousel-item {
      text-align: center;
    }

    .sig-carousel-item img {
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      margin-bottom: 1rem;
    }

    .sig-carousel-item h5 {
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .sig-carousel-item p {
      font-size: 0.9rem;
      color: #555;
      max-width: 500px;
      margin: 0 auto 1.5rem auto;
    }

    .sig-carousel-indicators {
      position: static;
      margin-top: -1rem;
      margin-bottom: 1rem;
      justify-content: center;
    }

    .sig-carousel-indicators [data-bs-target] {
      background-color: #333;
      height: 4px;
      width: 30px;
      border-radius: 2px;
      margin: 0 4px;
    }

    .sig-carousel-control-prev,
    .sig-carousel-control-next {
      width: 40px;
      height: 40px;
      top: 50%;
      transform: translateY(-50%);
    }

    .sig-carousel-control-prev {
      left: 10px;
    }

    .sig-carousel-control-next {
      right: 10px;
    }

    .sig-carousel-control-prev-icon,
    .sig-carousel-control-next-icon {
      background-color: #444 ! important;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      background-size: 60% 60%;
      background-position: center;
      background-repeat: no-repeat;
    }


    /*==== DINING CSS===*/
    
    .dining-headingg {
      font-family: 'Georgia', serif;
    }
    .dining-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 60px;
    }
    .image-wrapper {
      position: relative;
    }
    .dining-image {
      height: 450px;
      object-fit: cover;
      border-radius: 0px;
      width: 100%;
    }
    .btn-playyy {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border: none;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      animation: pulse 2s infinite ease-in-out;
      transition: transform 0.3s ease;
    }
    .btn-playyy:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(255, 255, 255, 0.95);
    }
    .btn-playyy span {
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 20px solid #000;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
    }
    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
      }
      70% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
      }
    }
    .dining-headingg {
      font-size: 2.5rem;
      color: #343a40;
      margin-bottom: 20px;
    }
    .dining-textt {
      font-size: 1.1rem;
      color: #6c757d;
    }
    @media (max-width: 768px) {
      .dining-section {
        padding: 0 20px;
      }
      .dining-headingg {
        font-size: 2rem;
      }
    }
     
     /*==MENU CSS ==*/
      
    .menu-section {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
    }
    .dining-heading{
      text-align: left;
      margin-left: 35px;
      font-family: 'Georgia', serif;
    }
    .menu-item {
      display: flex;
      margin-bottom: 30px;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 20px;
      cursor: pointer;
    }

    .menu-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
      margin-right: 20px;
      transition: transform 0.3s ease;
    }

    .menu-item:hover img {
      transform: scale(1.05);
    }

    .menu-details h5 {
      margin: 0;
      font-size: 1.25rem;
      font-weight: bold;
      color: #333;
    }

    .price {
      font-size: 1rem;
      color: #9c7c38;
      font-weight: 600;
    }

    .description {
      font-size: 0.95rem;
      color: #555;
    }
  .btn-close {
   width: 1.5rem;
   height: 1.5rem;
   background-size: 1.5rem;
   filter: invert(1); /* Makes it white */
   opacity: 1;
    }

.btn-cllose {
  font-size: 2rem; /* Bigger X */
  color: black;    /* Black color */
  background: none;
  border: none;
  opacity: 1;
  cursor: pointer;
}

.btn-closee {
  font-size: 2rem; /* Bigger X */
  color: black;    /* Black color */
  background: none;
  border: none;
  opacity: 1;
  cursor: pointer;
}
.btn-cclose {
  font-size: 2rem; /* Bigger X */
  color: black;    /* Black color */
  background: none;
  border: none;
  opacity: 1;
  cursor: pointer;
}

   
.btn-closse {
  width: 2rem;
  height: 2rem;
  background-color: white;
  color: #333;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem; /* Increased font size */
  line-height: 1;
  cursor: pointer;
}

    @media (max-width: 767px) {
      /* On small screens, keep the image on the left */
      .menu-item {
        flex-direction: row; /* Ensures image stays on the left */
        align-items: flex-start;
      }

      .menu-item img {
        margin-bottom: 0;
        margin-right: 20px;
      }

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

      /* Adds space between the price and description */
      .menu-details .description {
        margin-top: 10px;
      }
    }
       
       /*==RESTAURANT CALL TO ACTION CTA==*/


  .cta-btn {
    position: relative;
    overflow: hidden;
    background-color: #000 !important;
    color: #fff !important;
    border: none;
    z-index: 1;
  }
  .h2_cta{
    font-family: 'Playfair Display', serif;
  }
  .b_gall_ctn{
    background-color: #F9C608;
    margin-bottom:10px;
    border-radius: 15px;
  }
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* increased opacity for denser overlay */
    transition: left 0.4s ease;
    z-index: 0;
  }

  .cta-btn:hover::before {
    left: 0;
  }

  .cta-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
  }

  .cta-btn span {
    position: relative;
    z-index: 2;
  }

  /*==CONFERENCE CSS==*/
    .feature-list li {
      margin-bottom: 0.5rem;
    }
    .img-button-wrapper {
      position: relative;
      overflow: hidden; /* Prevents the image from overflowing when zoomed */
    }
    .img-button-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease; /* Smooth zoom transition */
    }
    .img-button-wrapper:hover img {
      transform: scale(1.1); /* Zoom effect */
    }
    .img-button-wrapper .view-more-btn {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      opacity: 0.9;
      border-radius: 25px;
      font-size: 0.9rem;
    }

    /* Smooth fade-in transition for modals */
    .modal.fade .modal-dialog {
      transform: translate(0, -50%);
      transition: transform 0.3s ease-out;
    }

    .modal.show .modal-dialog {
      transform: translate(0, 0);
    }

    /* Smooth zoom on carousel images */
    .carousel-inner img {
      transition: transform 0.5s ease;
    }

    .carousel-inner .carousel-item-next, .carousel-inner .carousel-item-prev, .carousel-inner .carousel-item.active {
      transition: transform 0.5s ease;
    }

    .carousel-inner img:hover {
      transform: scale(1.05); /* Slight zoom effect on hover */
    }

    /* Refined carousel controls */
    .carousel-control-prev-icon, .carousel-control-next-icon {
      background-color: rgba(255, 255, 255, 0.5); /* Light background */
      border-radius: 50%;
    }

    .carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
      background-color: rgba(255, 255, 255, 0.8); /* Darker on hover */
    }

    /* Darkened background overlay for modal */
    .modal-backdrop.fade {
      opacity: 0.5; /* Darker overlay */
    }
    
    /*===CONFRENCE CTA SECTION===*/
  .cta-btn {
    position: relative;
    overflow: hidden;
    background-color: #000 !important;
    color: #fff !important;
    border: none;
    z-index: 1;
  }

  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* increased opacity for denser overlay */
    transition: left 0.4s ease;
    z-index: 0;
  }

  .cta-btn:hover::before {
    left: 0;
  }

  .cta-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
  }

  .cta-btn span {
    position: relative;
    z-index: 2;
  }

        /*BIG SOCIAL MEDIA ICONS SECTION*/

        .social-section {
            display: flex;
            align-items: center; /* Ensures everything is on the same line */
            justify-content: ;
            gap: 15px; /* Space between text and buttons */
            padding: 10px 0;
        }

        .social-text {
            font-size: 18px;
            font-weight: 600;
            color: #8b6508; /* Luxurious gold */
            margin: 0; /* Remove default margins to align perfectly */
            display: flex;
            align-items: center;
        }

        .social-buttons {
            display: flex;
            gap: 10px; /* Space between buttons */
        }

        .social-buttons a {
            text-decoration: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4af37, #b8860b); /* Luxurious gold */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 3px 8px rgba(218, 165, 32, 0.5);
            transition: all 0.3s ease-in-out;
            border: 1px solid rgba(218, 165, 32, 0.7);
        }

        .social-buttons a:hover {
            background: linear-gradient(135deg, #b8860b, #8b6508);
            box-shadow: 0px 5px 12px rgba(218, 165, 32, 0.7);
            transform: translateY(-2px);
        }

        .social-buttons i {
            font-size: 22px;
            color: white;
        }
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 10px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #0B0B61;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 0;
  color: #5c768d;
}
.section-title p {
  margin-bottom: 0;
}


#footer {
  background: #212529;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #212529;;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  text-align: left ! important;
  color: #fff;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  background: #768fa6;
  color: #121AB8;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #428bca;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #9eccf4;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
  font-weight: 400;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a {
  color: #9eccf4;
}

/* ROOMS AND SUITES CALL TO ACTION CTA CSS
--------------------------------*/
#rooms_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/slide/slide3.jpeg) fixed center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 40px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #rooms_cta {
    background-attachment: scroll;
  }
}
#rooms_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#rooms_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #rooms_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#rooms_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #FFA500;
  color: #fff;
}
#rooms_cta .cta-btn:hover {
  background: #453FF6;
  border: 2px solid #2dc997;
}

/* GALLERY CALL TO ACTION CSS
--------------------------------*/
#gallery_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url(../img/slide/slide122.PNG) fixed center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 30px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #gallery_cta {
    background-attachment: scroll;
  }
}
#gallery_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#gallery_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #gallery_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#gallery_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #FFA500;
  color: #fff;
}
#gallery_cta .cta-btn:hover {
  background: #453FF6;
  border: 2px solid #2dc997;
}



.follow_us{
  color: #428bca;
}

/*  ABOUT US CALL TO ACTION CSS 
--------------------------------*/
#abt_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/slide/slide3.jpg) fixed center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 75px;
  margin-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #abt_cta {
    background-attachment: scroll;
  }
}
#abt_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#abt_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #abt_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#abt_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#abt_cta .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/*  RESTAURANT CALL TO ACTION CSS 
--------------------------------*/

#restaurant_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/slide/slide3.jpg) fixed center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 20px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #restaurant_cta {
    background-attachment: scroll;
  }
}
#restaurant_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#restaurant_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #restaurant_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#restaurant_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#restaurant_cta .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}
/*  CONFERENCE FACILITY CALL TO ACTION CSS 
--------------------------------*/

#conference_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/slide/slide3.jpg) fixed center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 75px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #conference_cta {
    background-attachment: scroll;
  }
}
#conference_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#conference_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #conference_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#conference_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#conference_cta .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/*  BAR & LOUNGE CALL TO ACTION CSS 
--------------------------------*/

#bar_lounge_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(assets/img/slide/slide2.jpg) fixed center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 75px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #bar_lounge_cta {
    background-attachment: scroll;
  }
}
#bar_lounge_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#bar_lounge_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #bar_lounge_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#bar_lounge_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#bar_lounge_cta .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}


/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #D88D90;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #B0655F;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.d-title{
    font-size: 16px ;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
}

/*  OUR GALLERY PAGE CSS 
--------------------------------*/
.photo-gallery .container {
  padding:2px 50px;
}
.photo-gallery {
  color:#313437;
  background-color:#fff;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom:10px;
    padding-top:10px;
    font-size:24px;
  }
}
.photo-gallery .item {
  padding:3px 5px;;
}
.photo-gallery .item:hover {
  background: #8258FA;
}

/*  CONTACT US CALL TO ACTION CSS 
--------------------------------*/
#contacts_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/slide/slide3.jpg) fixed center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 30px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #contacts_cta {
    background-attachment: scroll;
  }
}
#contacts_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#contacts_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #contacts_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#contacts_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#contacts_cta .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/*  STREET VIEW 360 CALL TO ACTION CSS 
--------------------------------*/

#streetview_cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/slide/slide3.jpg) fixed center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 20px;
  padding-right: 0px;
  padding-left: 0px;
}
@media (max-width: 1024px) {
  #streetview_cta {
    background-attachment: scroll;
  }
}
#streetview_cta .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#streetview_cta .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #streetview_cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
#streetview_cta .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: ;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}
#streetview_cta .cta-btn:hover {
  background: #2dc997;
  border: 2px solid #2dc997;
}

/*  FOOTER  GALLERY PAGE CSS 
/*--------------------------------------------------------------*/

.gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 0px; /* Default gap between items */
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            flex: 1 1 calc(20% - 15px); /* Default: 5 items per row for larger screens */
            box-sizing: border-box;
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease-in-out;
            display: block;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .overlay {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.4); /* Light transparent overlay */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: left 0.5s ease-in-out;
        }
        .gallery-item:hover .overlay {
            left: 0;
        }
        .overlay a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .overlay i {
            font-size: 2rem;
            color: black; /* Dark icon for contrast */
            background: rgba(255, 255, 255, 0.6);
            padding: 15px;
            border-radius: 50%;
            transition: background 0.3s;
        }
        .overlay a:hover i {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Medium screen adjustments (Tablets) */
        @media (max-width: 1024px) {
            .gallery-item {
                flex: 1 1 calc(25% - 15px); /* 4 items per row on medium screens */
            }
             .gallery {
                gap: 5px; /* 5px gap only on medium screens */
            }
        }

        /* Small screen adjustments (Phones) */
        @media (max-width: 768px) {
            .gallery-item {
                flex: 1 1 100%; /* Ensure 1 item per row on small screens */
            }
            .gallery {
                gap: 5px; /* 5px gap only on small screens */
            }
        }

        /* Extra small screen adjustments (Very small phones) */
        @media (max-width: 480px) {
            .gallery-item {
                flex: 1 1 100%; /* 1 item per row on extra small screens */
            }
             .gallery {
                gap: 5px; /* 5px gap only on extra small screens */
            }
        }

        .disclaimer_font{
            font-size: 11px;
        }
   