/* ====================================
   🔥 GLOBAL STYLES (RESET + VARIABLES)
==================================== */
:root {
  /* --primary-color: #c19d68; */
  /* --primary-color: #0d9276; */
  --primary-color: #2D692C;
  /* --secondary-color: #1e1e1e; */
  /* --secondary-color: #00A0B6; */
  /* --secondary-color: #EBE9D0; */
  --secondary-color: #EBE9D0;
  /* --btn-primary-color: #EA9E30; */
  --btn-primary-color: #E79F2E;
  --section-bg-color: #d3fbd8;
  --text-light-gray: #616161;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --font-family: "Poppins", sans-serif;

  --accent-color: #fff; /* Text and icon color */
  --hover-color: #a27f4e; /* Slightly darker shade for hover effect */
  --button-padding: 10px 25px; /* More standard padding */
  --button-font-size: 16px; /* More standard font size */
  --border-radius: 5px; /* Standard border-radius */
}
/* Reset Default Browser Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.footer-social-icon {
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 15px;
}

p {
  margin-bottom: 10px;
}

/* Links */
a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #0056b3;
}

/* ====================================
   🎨 BUTTONS & UI COMPONENTS
==================================== */
.my-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 0px;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.my-btn-primary {
  background: var(--btn-primary-color);
  color: white;
  border-radius: 5px;
}

.my-btn-primary:hover {
  background: var(--primary-color);
  color: white;
}
.sticky-contact-btn {
  background-color: var(--btn-primary-color);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  color: #000;
}
.sticky-contact-btn:hover {
  background-color: var(--primary-color);
  border: 0;

}
.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
}

/* ===================================================
   📩 FORM ELEMENTS
=================================================== */
input,
textarea,
select {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

input:focus,
textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* ===========================
section title style
===============================
*/
.section-title {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
  /* overflow: hidden; */
}
.section-title h2 {
  position: relative;
  color:var(--primary-color)
}
.section-title p {
  color: var(--text-light-gray);
}
.section-title h2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 100px;
  background-color: var(--primary-color);
}
.section-title h2:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: 100px;
  background-color: var(--primary-color);
}

@media (max-width: 991px) {
  .section-title h2:before {
    left: -80px;
  }
  .section-title h2:after {
    top: 50%;
    right: -80px;
  }
}
@media (max-width: 767px) {
  .section-title h2:before {
    left: -110px;
  }
  .section-title h2:after {
    right: -110px;
  }
}
@media (max-width: 491px) {
  .section-title h2:before {
    left: -90px;
  }
  .section-title h2:after {
    right: -90px;
  }
}

/* ===================================================
   Section Common Style
=================================================== */
#room-suites-section,
#about-section,
#hotel-facilities,
#manager-section,
#testimonial-section,
#blog-section,
#offers-section,
#single-product-details,
#single-blog-details {
  padding: 50px 0;
}
.about-content p {
    text-align: justify;
}

/* ===================================================
   Header
=================================================== */
#header-section {
  height: 100vh;
  width: 100%;
  text-align: center;
  animation: bgMove 10s infinite linear alternate;
  color: #fff;
  padding: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@keyframes bgMove {
  0% {
    background-position: center;
  }
  100% {
    background-position: center 20%;
  }
}
.hero-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 70%;
  max-width: 800px;
  text-align: center;

  color: #fff;
  z-index: 2;
  padding: 1rem;
}
.hero-texts h1 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.hero-texts p {
  font-size: 18px;
  color: #bbb5b5;
  padding: 0 50px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ===================================================
   📩 Navigation Bar
=================================================== */
.logo {
  max-height: 70px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 576px) {
  .logo {
    max-height: 45px;
  }
}

/* Navbar Base */
/* Navbar */
.custom-navbar,
.sticky-nav {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  border-radius: 5px;
  z-index: 99999;
  font-weight: bold;
}
.navbar-nav .active {
  color: #E79F2E !important;
  font-weight: bold;
}
.sticky-nav .navbar-nav .active {
  color: #E79F2E !important;
  font-weight: bold;
}

/* ============== */
/* Reset default border */

.nav-item {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link {
  padding: 5px 0 !important;
  color: var(--primary-color);
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--primary-color);
  /* font-weight: bold; */
}
/* Top border effect */
.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

/* Show border on hover */
.nav-link:hover::before {
  width: 100%;
}

/* ============== */

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 999;
  background: var(--secondary-color);
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
/* .sticky-nav  .nav-link{
    color:#fff;
  } */
.sticky-nav .nav-link {
  color: var(--primary-color);
  /* font-weight: bold; */
}
.sticky-nav .nav-link:hover {
  color: var(--primary-color);
  /* font-weight: bold; */
}

.sticky-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}
.sticky-nav .nav-link:hover::before {
  width: 100%;
}
/* Hamburger Toggle */
.custom-toggler .toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px auto;
  transition: all 0.3s ease;
}

.custom-toggler.active .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active .middle-bar {
  opacity: 0;
}

.custom-toggler.active .bottom-bar {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: block;
  /* background: #0f4c8a; */
  background: var(--primary-color);
  color: #fff;
  position: fixed;
  top: -100%;
  left: 0;
  width: 70%;
  height: 0;
  padding: 20px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: top 0.7s ease, height 0.7s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.show {
  top: 0;
  height: 100%;
}
.mobile-menu .list-unstyled li {
  line-height: 2.3;
}
.mobile-menu .nav-link {
  color: #fff;
}
.mobile-menu-contact-btn .contact-btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  width: auto;
  font-size: 1rem;
  max-width: 100%;
}

.mobile-menu-contact-btn {
  margin-top: 15px;
  text-align: center;
}
/* ==================== */
.custom-dropdown-wrapper {
  position: relative;
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 999;
}

.custom-dropdown-wrapper:hover .custom-dropdown-menu {
  max-height: 600px;
  opacity: 1;
  visibility: visible;
}

.custom-dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}

.custom-dropdown-menu li:last-child {
  border-bottom: none;
}

.custom-dropdown-menu .dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.custom-dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
  color: var(--secondary-color);
}

.icon-right {
  font-size: 14px;
  color: var(--secondary-color);
  margin-left: 8px;
}

.custom-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 12px;
  color: #0f4c8a;
  transition: transform 0.3s ease;
}

/* Rotate on hover if desired */
.custom-dropdown-wrapper:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.contact-btn,
.discover-btn,
.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  color:#000;
  font-weight: bold;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.contact-icon,
.hero-outline-btn,
.discover-icon {
  transition: transform 0.4s ease;
}

.contact-btn:hover .contact-icon {
  transform: translateX(6px);
}
.discover-btn:hover .discover-icon {
  transform: translateX(6px);
}
.hero-outline-btn:hover .contact-icon {
  transform: translateX(6px);
}

/* ---------------Hero and Slider Area start------------------ */
.watch-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--button-padding);
  font-size: var(--button-font-size);
  font-weight: 600;
  color: var(--accent-color);
  background: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease, color 0.3s ease;
  z-index: 1;
}

.watch-video-btn:hover {
  transform: translateY(-4px);
  background-color: var(--hover-color);
  color: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.watch-video-btn:active {
  transform: translateY(-2px);
}

.watch-video-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 10%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  animation: playPulse 2.5s ease-out infinite;
  z-index: 0;
}

@keyframes playPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* Button Icon Style */
.watch-video-btn .watch-video-icon {
  font-size: 22px;
  margin-right: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Button Text Style */
.watch-video-btn .watch-video-text {
  position: relative;
  z-index: 1;
}

/* Smooth text scale on hover */
.watch-video-btn:hover .watch-video-text {
  transform: scale(1.05);
}

.watch-video-btn:hover .watch-video-icon {
  transform: translateX(5px);
}
/* ---------------Hero and Slider Area End------------------ */
/* ---------------booking-form start------------------ */
#booking-form {
  background-color: var(--primary-color);
  color: #fff;
  padding: 30px 0;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  align-items: stretch;
}

.single-form-data {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.form-label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #2c3e50;
}

.form-control,
.form-select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.checkout-book-btn {
  display: flex;
  align-items: flex-end;
  height: 100%;
  border-radius: 5px;
  justify-content: center;
}
.checkout-book-btn a{
  border-radius: 5px;
  color:#000;
  font-weight: bold;
}

.booking-form label{
  color:var(--primary-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .booking-form {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ---------------booking-form end------------------ */
#room-suites-section {
  overflow: hidden;
}
.single-room {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  border-radius: 5px;
}
.single-room-img {
  position: relative;
  overflow: hidden;
}
.single-room-img img {
  width: 100%;
}
.view-button {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  transition: 0.6s;
}
.view-button .my-btn-primary{
  border-top-right-radius: 5px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  color:#000;
}
.view-button .my-btn-primary:hover{
  color:#fff;
}
.single-room:hover .view-button {
  left: 0;
}
.price-box {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
}
.price-box p {
  margin-bottom: 0;
  color: #000;
  font-weight: bold;
}
.single-room-details {
  padding: 0 20px;
  padding-bottom: 0;
  padding-top: 15px;
}
.single-room-title a{
  text-decoration: none;
  color:#343A40;
}
.single-room-title a:hover{
  color:var(--primary-color);
}
.room-type {
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}
.single-room-details h3 {
  margin-bottom: 5px;
}
.single-room-details p {
  margin-bottom: 15px;
  color: var(--text-light-gray);
}
.room-bottom-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  padding: 0 20px;
  padding-top: 15px;
}
.room-bottom-details p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.start-review {
  display: flex;
  align-items: center;
  gap: 5px;
}
/* =========================
About Section Start
============================ */
#about-section{
  background-color: var(--section-bg-color);
}
.about-img img {
  margin-bottom: 30px;
}
.about-content .about-short-title,
.manager-short-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--primary-color);
}
.about-heading,
.manager-heading {
  font-size: 30px;
  color: #343a40;
  margin: 15px 0;
  text-transform: uppercase;
  line-height: 1.5;
}
.about-content p {
  color: var(--text-light-gray);
}
.about-counter {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  padding-bottom: 20px;
  /* border-bottom: 2px solid #ddd; */
  position: relative;
}
.about-counter:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #ddd;
}
.about-counter:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  animation: slide-line 6s infinite ease-in-out;
}
/* Animation keyframes */
@keyframes slide-line {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 80px);
  }
  100% {
    left: 0;
  }
}
.about-counter div {
  text-align: center;
}
.about-counter h2 {
  margin-bottom: 10px;
}
.counter-item {
  color: var(--primary-color);
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
}
/* ========================
Offers Section start
===========================*/
.single-offer {
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 0;
}

.single-offer:hover {
  transform: translateY(-6px) !important;
}

.single-offer-img {
  position: relative;
  overflow: hidden;
  z-index: 0; /* keep it lower than navbar */
}
.single-offer-img img {
  width: 100%;
  height: auto;
  display: block;
  /* REMOVE z-index: -999 */
}
.offer-content {
  padding: 20px;
}

.offer-btn a {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2; /* still under sticky nav */
  opacity: 1;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  border-radius: 5px;
  background-color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}


/* Optional: Add a nice hover effect */
.offer-btn a:hover {
  background-color: var(--primary-color);
  color: #fff;
}


/* If you want to place on left top, change right: 10px to left: 10px */

.offer-content h5 a{
  color:#000;
}
.offer-content h5 a:hover{
  text-decoration: underline;
}
/* ========================
Offers Section end
===========================*/
/* ========================
hotel-facilities start
===========================*/
#hotel-facilities {
  /* background: linear-gradient(rgba(30, 30, 30, 1), rgba(30, 30, 30, 1)); */
  background-color: var(--section-bg-color);
  background-size: cover;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding-bottom: 110px;
  position: relative;
  z-index: -10;
}
#hotel-facilities .section-title p {
  color: #000;
}
.single-facility {
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  line-height: 2.4;
  margin-bottom: 20px;
}
.single-facility i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 5px;
  /* border-bottom: 1px solid #ddd; */
  /* position: relative; */
}

.single-facility h4 {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-top: 38px;
  color: #000;
}
.single-facility h4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 30px;
  background-color: var(--primary-color);
}
/* ========================
hotel-facilities end
===========================*/
/* ========================
Manager Section Start
===========================*/
.manager-content {
  background-color: #f8f6f3;
  margin-top: -120px;
  overflow: hidden;
  z-index: 100;
}
.left-manager-content {
  padding: 30px;
}
.left-manager-content {
  color: var(--text-light-gray);
}
.left-manager-content p {
    text-align: justify;
}
.manager-img-colum {
  padding: 0;
  overflow: hidden;
}
/* ================== */
.manager-profile {
  padding: 20px;
}
.manager-profile {
  background-color: var(--primary-color);
}
.manager-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.manager-line {
  width: 4px;
  height: 60px;
  background-color: var(--secondary-color);
}

.manager-pro-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.manager-details h4 {
  margin: 0;
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
}

.manager-details p {
  margin: 2px 0 0;
  color: var(--secondary-color);
  font-size: 14px;
}
/* ================== */
.manager-quatation {
  text-decoration: underline;
  font-style: italic;
  font-size: 15px;
  margin: 25px 0;
  display: inline-block;
}

.manager-img-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.manager-img {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.manager-img img {
  display: block;
  width: 100%;
  height: auto;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 2px solid transparent;
  font-size: 26px;
  color: white;
  cursor: pointer;
  /* z-index: 10; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  transition: box-shadow 0.3s ease;
}

.video-play-button:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.video-play-button::before,
.video-play-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  animation: playPulse 2.5s ease-out infinite;
}

.video-play-button::after {
  animation-delay: 1.25s;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 450px;
  background: #000;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* ========================
Manager Section end
===========================*/
/* ===========================================
Testimonial Section Start
==============================================*/
#testimonial-section {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  position: relative;
}
#testimonial-section .section-title h2 {
  color: #fff;
}
#testimonial-section .slider-wrapper {
  position: relative;
  /* padding: 0 50px; */
}

#testimonial-section .testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

#testimonial-section .slider-container {
  overflow: hidden;
  padding: 30px 10px;
}

#testimonial-section .testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  #testimonial-section .testimonial-card {
    flex: 0 0 80%;
  }
}

@media (min-width: 768px) {
  #testimonial-section .testimonial-card {
    flex: 0 0 49%;
  }
}

#testimonial-section .testimonial-card p {
  font-style: italic;
  color: #34495e;
}

#testimonial-section .testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  padding: 5px;
  object-fit: cover;
  margin-right: 15px;
  margin-top: -55px;
}

#testimonial-section .client-info {
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  background-color: var(--primary-color);
  margin-top: -120px !important;
}
#testimonial-section .client-info i {
  color: #fff;
}
#testimonial-section .client-name {
  font-weight: bold;
  margin-bottom: 0;
  color: #2c3e50;
  margin-top: 10px;
}

#testimonial-section .client-role {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 20px;
}

#testimonial-section .arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

#testimonial-section .arrow-left {
  left: 10px;
}

#testimonial-section .arrow-right {
  right: 14px;
}

#testimonial-section .arrow-btn:hover {
  background-color: var(--secondary-color);
}
/* ================== */
.client-profile {
  padding: 20px;
}
.client-profile {
  /* background-color: var(--primary-color); */
}
.client-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.client-line {
  width: 4px;
  height: 60px;
  background-color: var(--primary-color);
}

.client-pro-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.client-details h4 {
  margin: 0;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.client-details p {
  margin: 2px 0 0;
  color: var(--secondary-color);
  font-size: 14px;
}
/* ===========================================
Testimonial Section End
==============================================*/
/* ===========================================
Blog Section Start
==============================================*/
#blog-section {
  background-color: var(--section-bg-color);
}
#blog-section .single-blog {
  border: 1px solid #acacac;
  border-radius: 5px;
}
.single-blog-details {
  padding: 20px 20px 0 20px;
}
.single-blog .blog-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 354 / 345; /* Maintain the original shape */
  overflow: hidden;
  position: relative;
}

.single-blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .single-blog .blog-img {
    max-width: 100%;
    aspect-ratio: 354 / 345;
  }
}

#blog-section .single-blog .blog-title {
  font-size: 18px;
  line-height: 1.6;
  padding: 5px 0 !important;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-title a{
  color:#000;
}
.blog-title a:hover{
  color:var(--primary-color)
}
#blog-section .single-blog .blog-type-data {
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
.fa-calendar-days,
.fa-square-full {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 20px;
}
.blog-type p {
  padding-left: 40px;
}
#blog-section .single-blog .blog-readmore {
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #acacac;
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}
#blog-section .single-blog .blog-readmore p {
  margin-bottom: 0;
}
#blog-section .single-blog .blog-readmore:hover {
  color: var(--primary-color);
}
#blog-section .single-blog .blog-readmore i {
  transition: 0.8s ease;
}

#blog-section .single-blog .blog-readmore:hover i {
  /* margin-left: -220px; */
  transform: translateX(-215px);
}

/* ===========================================
Blog Section End
==============================================*/
/* ========================
Footer Section start
===========================*/
#footer-section {
  background-color: #1e1e1e;
}
.footer-top-company-logo {
  background-color: var(--primary-color);
  /* padding: 30px 20px;
  width: 80%;
  margin:0 auto; */
  overflow: hidden;
}
.footer-top-company-logo .row {
  /* background-color: var(--primary-color); */
  padding: 30px 0px;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}
.footer-row-content {
  padding: 40px 0;
}
.footer-contact-info-colum {
  background-color: #272727;
  color: var(--text-light-gray);
  padding: 20px;
  margin-top: -100px;
}
.footer-logo {
  width: 184px;
  height: 64px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-heading {
  color: #ddd;
  font-size: 18px;
  margin-top: 20px;
  text-transform: uppercase;
  padding: 15px 0;
  position: relative;
}
.footer-heading:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: var(--primary-color);
}
.social-icons-footer {
  margin: 20px 0;
}
.social-icons-footer a {
  padding: 12px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 0.5px solid var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  color: #fff;
  transition: all 0.6s ease;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.social-icons-footer a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: scale(0.1);
  opacity: 0;
  z-index: -1;
}

.social-icons-footer a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.social-icons-footer a:hover {
  color: var(--secondary-color);
}
.contact-info .single-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info .single-contact-item p {
  color: #acacac;
}
.contact-info .single-contact-item i {
  color: var(--primary-color);
}
.footer-useful-links li {
  list-style: none;
}

.footer-useful-links li a {
  text-decoration: none;
  color: #acacac;
  line-height: 2.2;
  padding-left: 15px;
  margin-left: -20px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-useful-links li a::before {
  content: "";
  position: absolute;
  top: 36%;
  left: 0;
  height: 7px;
  width: 7px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.footer-useful-links li a:hover {
  transform: translateX(6px);
}

.footer-useful-links li a:hover::before {
  opacity: 1;
  transform: scale(1);
}
/* footer gallery */
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.footer-gallery a {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.footer-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.footer-gallery a:hover img {
  transform: scale(1.05);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .footer-contact-info-colum {
    background-color: #272727;
    color: var(--text-light-gray);
    padding: 20px;
    margin-top: -60px;
  }
  .footer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-gallery {
    grid-template-columns: 1fr;
  }
}

.newsletter-form {
  width: 100%;
}
.newsletter-form p {
  color: #acacac;
  font-size: 14px;
}
.newsletter-form a,
.newsletter-form input {
  width: 100%;
  display: inline-block;
  margin: 10px 0;
}
.newsletter-form .input-email {
  padding: 10px 10px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
}
.newsletter-form .my-btn-primary {
  color: #000;
}
.newsletter-form .my-btn-primary:hover {
  color: #fff;
}

/* ========================
Footer Section end
===========================*/
.copyright-text {
  background-color: #161616;
}
.copyright-text p {
  margin-bottom: 0;
}

/* ===========================================
Scroll Top Start
==============================================*/
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 1000000;
}

.scroll-top.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-top-icon {
  background-color: var(--primary-color);
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.scroll-top-icon:hover {
  background-color: var(--btn-primary-color);
  color: #fff;
}

/* ===========================================
Scroll Top End
==============================================*/

#heroPlayButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-primary-color); /* Changed to secondary color */
  padding: 12px 24px;
  color: #000; /* Text color set to white */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

#heroPlayButton .border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#heroPlayButton .border-svg rect {
  fill: none;
  /* stroke: var(--secondary-color);   */
  stroke-width: 2;
  stroke-dasharray: 10, 5;
  stroke-dashoffset: 0;
  animation: dashmove 2s linear infinite;
  rx: 8;
  ry: 8;
}

/* @keyframes dashmove {
  to {
    stroke-dashoffset: -30;
  }
} */

/* ================================
Contact Page Styles Start
===================================*/

#contact-section{
  padding:50px 0;
}
.contact-row .row{
  background-color: #F8F6F3;
  padding: 60px;
}
.contact-form{
  background-color: var(--secondary-color);
  padding: 30px;
}
.contact-form .contact-form-title{
  font-size: 22px;
  margin-bottom: 0;
  color: var(--primary-color);
}
.input-div{
  margin:20px 0;
}
.input-form{
  border: 1px solid var(--primary-color);
  padding:10px 12px;
  border-radius: 5px;
  background-color: transparent;
}
.form-inputs button{
  border: none;
  color:#000;
}

.single-contact-item{
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--primary-color);
  padding:10px 0;
}
.single-contact-item h6{
  margin-bottom: 6px;
  font-size: 16px;
}
.single-contact-item p{
  margin-bottom: 0;
  font-size: 14px;
}
.single-contact-item i{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  color:var(--primary-color);
  display: inline-block;
  text-align: center;
  border-radius: 0px;
}
.single-contact-item:hover i{
  background-color: var(--primary-color);
  color:#fff;
}
/* ================================
Contact Page Styles End
===================================*/
/* ================================
Single Roome Page Styles Start
===================================*/
/* Eco Slide Styles */
.eco-slide {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* aspect-ratio: 389 / 349; */
  overflow: hidden;
  /* border-radius: 8px; */
  /* margin: 0 auto; */
}

.eco-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.eco-slide-image.active {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 1;
}


.eco-slide-wrapper {
  position: relative;
  z-index: 0;
}

.eco-slide-wrapper img {
    height: 570px;
    width: 100%;
}

.eco-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* border-radius: 50%; */
}

.eco-slide-btn.left {
  left: 10px;
}

.eco-slide-btn.right {
  right: 10px;
}

.eco-slide-wrapper:hover .eco-slide-btn {
  opacity: 1;
}

/* Sidebar Basic Styling */

.eco-room-details i{
  color: var(--primary-color);
}
.top-room-details  {
  margin:25px 0;
}
.top-room-details h4 {
  margin-bottom: 0;
  padding-bottom: 0;
}
.top-room-details h6{
  font-size: 14px;
  color:var(--primary-color);
}
.top-room-details p{
  color:var(--text-light-gray);
  text-align: justify;
}
.check-in-out{
  display: flex;
  align-items: center;
  gap:20px;
  margin-bottom: 20px;
}
.check-in-out ul{
  margin: 0 20px;
  padding: 0;
}
.eco-room-details ul li, .check-in-out ul li{
  list-style: none;
  padding:5px 0;
}
.booking-card, .facility-card{
  background-color: #F8F6F3;
  padding: 25px 15px;
}
.book-card-title , .facility-card-title{
  font-size: 24px;
  margin-bottom: 20px;
}
.single-book-features{
  background-color: #fff;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.single-book-features p{
  font-weight: bold;
  margin-bottom: 0;
}
.single-book-features span{
  color:var(--primary-color)
}
.confirm-book-btn button{
  border:none;
  width: 100%;
}
.facility-card ul{
  margin: 0;
  padding: 0;
  padding: 5px 20px;
}
.facility-card ul li{
  padding: 15px 0;
  list-style: none;
  color:var(--text-light-gray);
  border-bottom: 1px solid var(--primary-color);
}
.facility-card ul li:last-child{
  border-bottom: 0px solid var(--primary-color);
}
.facilities-list i{
  color:var(--primary-color);
  display: inline-block;
  padding:0 10px;
}

.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background-color: #ffffff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.popup-content p {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.popup-buttons button {
  margin: 0 10px;
  border:none;
}

.success-content {
  background-color: #eafaf1;
  color: #2d8659;
}
.success-content button{
  border: none;
}

.my-btn-secondary {
  border: none;
  background-color: #f10f0f; /* Warm yellow */
  color: #fff;
}
.my-btn-secondary:hover {
  background-color: var(--secondary-color);
}

#closeSuccess {
  margin-top: 15px;
}

/* ================================
Single Roome Page Styles End
===================================*/
/* ================================
single-blog-details Page Styles Start
===================================*/
#single-blog-details{
  overflow: hidden;
}
.main-blog-img {
  max-width: 100%;
  aspect-ratio: 727 / 427;
  /* margin: 0 auto; */
  overflow: hidden;
}

.main-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.date-category{
  display: flex;
  align-items: center;
  gap: 10px;
  margin:15px 5px;

}
.blog-title{
  color:#272727;
}
.blog-desc{
  color:var(--text-light-gray);
    text-align: justify;
}
.blog-liststyle{
  margin: 15px 0;
  padding: 0;
}
.blog-liststyle li{
   list-style: none;
   padding:5px 20px
}
.blog-liststyle li i{
  color:var(--primary-color);
  display: inline-block;
  margin-right: 5px;
}
.blog-sub-images{
  margin-bottom: 20px;
}
.blog-sub-images img {
  max-width: 347px;
  aspect-ratio: 347 / 237;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.popular-post, .all-categories{
  background-color: #F8F6F3;
  margin-bottom: 30px;
  padding: 30px 20px;
}
.title-popular-post, .title-popular-categories{
  font-size: 20px;
}

.single-popular-post {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.single-popular-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.single-popular-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popular-post-content {
  flex: 1;
}

.post-title a{
  text-decoration: none;
  font-size: 16px;
  margin: 0 0 4px;
  line-height: 1.3;
  color: #222;
  /* F8F6F3 */
}
.post-title a:hover{
  color: var(--primary-color);
  /* F8F6F3 */
}

.post-date {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.all-popular-catgories ul{
  padding: 0;
  margin:10px 0;
}
.all-popular-catgories ul li{
  list-style: none;
  padding:9px 0;
  border-bottom: 1px solid var(--primary-color);
}
.all-popular-catgories ul li:last-child{
  border-bottom:none;
}
.all-popular-catgories ul li i{
  display: inline-block;
  color:var(--primary-color);
  margin-right: 6px;
}
.all-popular-catgories ul li a{
  text-decoration: none;
  color:#222;
  font-size: 14px;

  &:hover{
    color:var(--primary-color);
  }

}

/* ================================
single-blog-details Page Styles End
===================================*/
