/* Navbar container */
.menu-item .container .row {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

/* Logo styles */
.logo img {
    max-height: 78px;  
    width: auto;
    margin: 0;         
    display: block;
}

/* Navigation menu */
.navbar-nav {
    display: flex;
    gap: 25px;          
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;              
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #c39860;            
}

/*banner section*/
.hero-slider .hs-item {
  height: 100vh; 
  background-size: cover;
  background-position: center;
  position: relative; 
}

/* Overlay for text readability */
.hero-slider .hs-item::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; 
}

/* Hero text */
.hero-text {
  position: relative;
  z-index: 2; 
  color: #fff;
  top:80%;
  text-shadow: 2px 2px 8px rgb(25 25 25 / 60%);
}

/*booking form*/
.booking-form {
  margin-top: 65px;
    background: rgba(255, 255, 255, 0.89); 
    backdrop-filter: blur(2px); 
    -webkit-backdrop-filter: blur(10px); 
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 24%);
    color: #fff; 
}

.booking-form input,
.booking-form select,
.booking-form button {
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 5px;
    padding: 10px;
    color: #333;
    width: 100%;
    margin-bottom: 15px;
}

.booking-form button {
    background: #ff6600; 
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.booking-form button:hover {
    background: #79174d;
}

/* ==== ABOUT US ==== */
.aboutus-section {
  position: relative;
  overflow: hidden;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  z-index: 1;
}

/* Animated Background Shapes */
.animated-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  background: linear-gradient(45deg,#78184c87, #78184c87, #fafeff);
  animation: moveBg 20s linear infinite;
}
.bg-1 { top: -50px; left: -50px; animation-delay: 0s; }
.bg-2 { top: 100px; right: -100px; animation-delay: 5s; }
.bg-3 { bottom: -100px; left: 50%; transform: translateX(-50%); animation-delay: 10s; }

@keyframes moveBg {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(50px, -50px) rotate(180deg); }
  100% { transform: translate(0,0) rotate(360deg); }
}

/* Text Styling */
.aboutus-section .section-title .subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.section-title .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.section-title .why-title{
  color: #79184d; 
  font-size: 20px;
}

.aboutus-section .f-para,
.aboutus-section .s-para {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: black;
  position: relative;
  z-index: 1;
  color: #555;
}

/* Button */
.aboutus-section .primary-btn.about-btn {
  background: #79184e;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.aboutus-section .primary-btn.about-btn:hover {
  background: #c39860;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Image Hover Effects */
.about-pic .about-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 1;
}
.about-pic .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-pic .about-img:hover img {
  transform: scale(1.1) rotate(1deg);
}
.about-pic .about-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.about-pic .about-img:hover::after { opacity: 1; }

/* Scroll Animation */
[data-aos="fade-right"] { opacity: 0; transform: translateX(-50px); transition: all 1s ease; }
[data-aos="fade-left"] { opacity: 0; transform: translateX(50px); transition: all 1s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 992px) {
  .aboutus-section .section-title .title { font-size: 28px; }
  .aboutus-section .f-para, .aboutus-section .s-para { font-size: 15px; }
}
@media (max-width: 768px) {
  .about-pic .col-6 { margin-bottom: 15px; }

  .booking-form h3 {
    color: #19191a !important;
  }
}

/* ==== IMAGE STYLES ==== */
.about-img {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-img img {
    width: 100%;
    transition: transform 0.6s ease;
}
.about-img:hover img {
    transform: scale(1.1);
}
.about-img:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.big-img {
    max-height: 250px;
    overflow: hidden;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==== SERVICES SECTION ==== */
.room-card {
  perspective: 1200px;
  height: 420px;
  margin-bottom: 30px;
}
.room-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.room-line{
  width: 80px; 
  height: 3px; 
  background: #79174d; 
  border: none; 
  border-radius: 2px;
}

@media (hover:hover) and (pointer:fine) {
  .room-card:hover .room-card-inner {
    transform: rotateY(180deg);
  }
}
.room-card-front,
.room-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  top: 0; left: 0;
}
.room-card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
}
.room-card-front h3 {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 1.2rem;
}
.room-card-back {
  background: #f8f3f6;
  transform: rotateY(180deg);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-card-back .icon {
  font-size: 36px;
  color: #79184d;
  margin-bottom: 15px;
}
.room-card-back h2 {
  margin: 10px 0;
  font-size: 1.4rem;
  color: #333;
}
.room-card-back table {
  width: 100%;
  font-size: 0.9rem;
  margin: 15px 0;
  color: #444;
}
.room-card-back table td {
  padding: 4px 8px;
}
.book-btn {
  background: #78184c;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}
.book-btn:hover {
    background: #79184d;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;       
    font-size: 16px;
    color: #333;     
    margin-bottom: 10px;
}

.feature-list .feature-icon {
    color: #6c757d;   
    font-size: 20px; 
}	

/* Auto flip animation (mobile only) */
@media (max-width: 991px) {
  .room-card.auto-flip .room-card-inner {
    animation: flipOnce 2s ease forwards;
  }
  @keyframes flipOnce {
    0%   { transform: rotateY(0); }
    40%  { transform: rotateY(180deg); }
    100% { transform: rotateY(180deg); }
  }
}

/*service*/
.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 10px auto;
  border-radius: 50%;
}
.desc {
  margin-bottom: 30px;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #79184d;
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.orbit-item i {
  font-size: 35px;
  margin-bottom: 5px;
  color: #79184d;
}

.orbit-item span {
  font-size: 12px;
}

.orbit-item:hover {
  transform: scale(1.1);
  background: #78184c0f;
}
#service-desc{
  color: #222;
}

/* Positioning items around the circle */
.orbit-item:nth-child(2) { transform: translate(-50%, -50%) rotate(0deg) translate(160px) rotate(0deg); }
.orbit-item:nth-child(3) { transform: translate(-50%, -50%) rotate(60deg) translate(160px) rotate(-60deg); }
.orbit-item:nth-child(4) { transform: translate(-50%, -50%) rotate(120deg) translate(160px) rotate(-120deg); }
.orbit-item:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translate(160px) rotate(-180deg); }
.orbit-item:nth-child(6) { transform: translate(-50%, -50%) rotate(240deg) translate(160px) rotate(-240deg); }
.orbit-item:nth-child(7) { transform: translate(-50%, -50%) rotate(300deg) translate(160px) rotate(-300deg); }

.service-content {
  margin-top: 40px;
  display: none;
  background: #f9f9f9;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/*pop up form*/
.popup-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

/* Popup Box */
.popup-content {
  background: linear-gradient(135deg, #ffffff, #f7f9fc);
  padding: 25px;
  border-radius: 16px;
  width: 360px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s ease-in-out;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  color: #555;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.close-btn:hover {
  transform: scale(1.2);
  color: #e63946;
}

/* Heading */
.popup-content h3 {
  text-align: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: #2c3e50;
  font-weight: 600;
}

/* Form Labels */
.popup-content label {
  display: block;
  margin: 10px 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: #34495e;
}

/* Form Inputs */
.popup-content input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}
.popup-content input:focus {
  border-color: #3498db;
  box-shadow: 0 0 6px rgba(52, 152, 219, 0.4);
}

/* Submit Button */
.popup-content button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background-color: #79184e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.popup-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/*why choose us*/
.why-choose-us {
  background: #78184c0d;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
}
.section-subtitle {
  font-size: 20px;
  margin-bottom: 25px;
  color: #666;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* Feature Card */
.feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -100%; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: linear-gradient(135deg, rgb(247, 237, 243), rgba(255, 255, 255, 0.2));
  transition: top 0.4s ease;
  z-index: -1;
}
.feature-card:hover::before {
  top: 0;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Default state */
.feature-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}

/* Animation trigger */
.feature-card.show {
  animation: fadeInUp 1s forwards;
}

/* After animation reset */
.feature-card.final {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon */
.feature-card .icon {
  font-size: 40px;
  color: #79184d;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}
.feature-card:hover .icon {
  transform: rotateY(360deg);
}

/* Heading & Text */
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c3e50;
}
.feature-card p {
  font-size: 18px;
  line-height: 1.6;
}

/*Aminities*/
.amenities {
  position: relative;
  background: url(../img/aminities-bg.jpeg) no-repeat center center/cover;
  padding: 60px 30px;
  text-align: center;
  color: #fff; 
  z-index: 1;
}

.amenities::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(245, 242, 242, 0.89); 
  z-index: -1;
}

/* Flex Layout for cards */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card */
.amenity-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: rgba(255,255,255,0.05);
  top: -50%;
  left: -50%;
  transform: rotate(45deg);
  pointer-events: none;
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

/* Icon */
.amenity-card .icon {
  font-size: 45px;
  margin-bottom: 18px;
  color: #79184e;
  background: rgba(255,255,255,0.15);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 18px;
  transition: all 0.5s ease;
}

.amenity-card:hover .icon {
  transform: rotate(360deg) scale(1.2);
  background: rgba(255,255,255,0.25);
}

/* Card Title */
.amenity-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Card Description */
.amenity-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-grid {
    flex-direction: column;
    align-items: center;
  }
}

/*testimonial*/
.testimonial{
  padding: 40px; 
  background: #fff; 
  border-radius: 15px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/*local attractions*/
.attractions {
  background: linear-gradient(135deg, #fefefe, #f7fbff);
  padding: 60px 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Grid Layout */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card */
.attraction-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}
.attraction-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

/* Image */
.attraction-card .image {
  overflow: hidden;
}
.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.attraction-card:hover img {
  transform: scale(1.1);
}

/* Content */
.attraction-card .content {
  padding: 20px;
}
.attraction-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #79184d;
}
.attraction-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/*navbar*/
.logo img {
  margin-left: -80px;
}

/* Footer Styles */
.footer-section {
    background: #751a4b;
    color: #fff;
    padding: 60px 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #c0935b;
}

.footer-logo {
    max-width: 280px;
    margin: 0 -9px;
    display: block;
}

.ft-title {
    font-weight: 600;
    font-size: 18px;
    color: #f5f5f5;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ft-about p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.ft-quick-links ul,
.ft-rooms ul,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-quick-links li,
.ft-rooms li,
.contact-info li {
    margin-bottom: 10px;
    font-size: 18px;
}

.ft-contact .ft-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.ft-contact .ft-social a:hover {
    color: #c0935b;
}
.contact-section .info-box{
  text-align:center;
}
.contact-text{
	padding: 0px 8px;
}

@media (max-width: 767px) {
    .ft-about p {
        max-width: 100%;
    }

    .footer-section .row > div {
        text-align: center;
    }

    .ft-contact .ft-social {
        justify-content: center;
        margin-top: 10px;
    }
    .hero-text h1 {
      line-height: 25px;
    background: #00000080;
    padding: 10px;
    font-size: 15px;
}
}

/* General Mobile (All < 768px) */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 20px;
  }
  .hero-text {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 60px;
  }
  .booking-form {
        margin-top: 225px;
        width: 100%;
        padding: 15px;
  }
  .booking-form form .check-date label,
  .booking-form form .select-option label {
    color: #000;
  }
}

/* iPhone 12 Pro (max 390px) */
@media (max-width: 390px) {
  .hero-section { padding: 15px; }
  .hero-text h1 { font-size: 22px; }
  .booking-form {
    font-size: 14px;
    margin-top: 175px;
  }
  .orbit-container {
    transform: scale(0.8);
    margin: 40px 35px;
  }
}

/* Samsung Galaxy S8+ (max 360px) */
@media (max-width: 360px) {
  .hero-section { padding: 12px; }
  .hero-text h1 { font-size: 20px; }
  .booking-form {
    font-size: 13px;
    margin-top: 160px;
  }
  .orbit-container {
    transform: scale(0.8);
    margin: 40px 20px;
  }
}

/* iPhone 14 Pro Portrait + Landscape */
@media only screen 
  and (device-width: 430px) 
  and (device-height: 932px) 
  and (-webkit-device-pixel-ratio: 3) {

  .hero-section {
    flex-direction: column;
    padding: 20px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 95px;
  }

  .booking-form {
    margin-top: 200px;
    width: 100%;
    padding: 15px;
  }

  .booking-form form .check-date label,
  .booking-form form .select-option label {
    color: #000;
  }

  .orbit-container {
    transform: scale(0.85);
    margin: 40px auto;
  }
}

/* Orbit Services Responsive */
@media (max-width: 768px) {
  .orbit-container {
    width: 280px;
    height: 280px;
    transform: scale(0.9);
  }

  .center-circle {
    width: 90px;
    height: 90px;
    font-size: 14px;
  }

  .orbit-item {
    width: 100px;
    height: 100px;
  }

  .orbit-item i {
    font-size: 18px;
  }

  .orbit-item span {
    font-size: 10px;
  }

  /* Adjust distances for smaller orbit circle */
  .orbit-item:nth-child(2) { transform: translate(-50%, -50%) rotate(0deg) translate(115px) rotate(0deg); }
  .orbit-item:nth-child(3) { transform: translate(-50%, -50%) rotate(60deg) translate(115px) rotate(-60deg); }
  .orbit-item:nth-child(4) { transform: translate(-50%, -50%) rotate(120deg) translate(115px) rotate(-120deg); }
  .orbit-item:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg) translate(115px) rotate(-180deg); }
  .orbit-item:nth-child(6) { transform: translate(-50%, -50%) rotate(240deg) translate(115px) rotate(-240deg); }
  .orbit-item:nth-child(7) { transform: translate(-50%, -50%) rotate(300deg) translate(115px) rotate(-300deg); }

  #service-content {
    margin-top: 20px;
    font-size: 14px;
    padding: 15px;
  }
}

/*bread crumb*/
.breadcrumb-section {
  background: url("../img/breadcrumb.jpg") center/cover no-repeat;
  padding: 60px 0;
  position: relative;
}
.breadcrumb-section .overlay {
  position: absolute; 
  top:0; 
  left:0; 
  width:100%; 
  height:100%; 
  background: rgba(0,0,0,0.4);
}
.breadcrumb-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.breadcrumb {
  background: transparent;
}
.breadcrumb-item a {
  color: #f1c27d; 
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #fff;
}

/* Vision & Mission Section */
.vision-mission-section {
  position: relative;
  background: url(../img/vision-bg.jpg) no-repeat center center/cover;
  padding: 60px 30px;
  text-align: center;
  color: #fff; 
  z-index: 1;
}

/* Dark overlay for better text visibility */
.vision-mission-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(245, 242, 242, 0.89); 
  z-index: -1;
}
.vision-mission-section .section-header {
  margin-bottom: 50px;
}

.vm-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.vm-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
}

.vm-icon {
  font-size: 50px;
  color: #78184d;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.vm-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/*contact*/
.info-box {
  position: relative;
  transition: all 0.5s ease;
  transform: translateY(0);
}
.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
.info-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.5s ease;
  border-radius: inherit;
}
.info-box:hover::before {
  background: rgba(255,255,255,0.05);
}

/* Custom Button Style */
.btn-primary {
  background-color: #79184e !important;
  border-color: #79184e !important;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .info-box {
    margin-bottom: 20px;
  }
}
/* Custom Button Style */
.btn-primary {
  background-color: #79184e !important; 
  border-color: #79184e !important;
}

/* view more */
.view-more-btn {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 600;
  background: #007bff;
  border: none;
  transition: 0.3s;
  display: inline-block;
}
.view-more-btn:hover {
  background: #0056b3;
  color: #fff;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .menu-item .container .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        max-height: 80px;
        margin-bottom: 15px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
@media (max-width: 786px) {
    .menu-item .container .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        max-height: 84px;
        margin-bottom: 15px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .menu-item .container .row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        max-height: 80px;
        margin-bottom: 15px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/*room page*/
.rooms-card{
  padding: 50px;
}
.list-unstyled{
  line-height: 2.5;
}
/* Room Card */
.room-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.img-box {
  position: relative;
  overflow: hidden;
  height: 425px; 
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.6s ease;
}

.img-box:hover img {
  transform: scale(1.1);
}

.price-tag {
  position: absolute;
  bottom: 60px;
  right: 50px;
  background: #ff5722;
  color: #fff;
  padding: 8px 14px;
  font-size: 18px;
  border-radius: 30px;
  font-weight: bold;
  animation: pulse 2s infinite;
}

.price-tag small {
  font-size: 13px;
}

.room-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.book-btn {
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  transition: 0.4s ease;
}

.book-btn:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Responsive Fix */
@media (max-width: 991px) {
  .img-box {
    height: 220px; 
  }
}

@media (max-width: 576px) {
  .img-box {
    height: 180px; 
  }

  .room-title {
    font-size: 20px;
  }
  .room-card{
    height: 550px;
  }
  .separate-card{
    height: 530px !important;
  }

  .price-tag {
    font-size: 14px;
    padding: 6px 10px;
  }
}
@media (max-width: 412px) {
  .room-card{
    height: 530px !important;
  }
  .filter-tabs{
    margin-top: 20px;
  }
}

.wa-chat-box-header {
  background-color: #79184d !important;
}
.wa-chat-box-poweredby {
  display: none;
}
.thumb {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
}
.thumb:hover {
  border: 2px solid #f90; 
}
/* Carousel control buttons fix */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;              
  height: 40px;           
  top: 50%;                 
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5); 
  border-radius: 50%;       
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%; 
}

.carousel-control-prev {
  left: 15px; 
}

.carousel-control-next {
  right: 15px; 
}
.carousel-item {
    transition: none !important;
}

/*call action*/
.unique-cta {
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('../img/space.jpg') center/cover no-repeat;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-out;
}

/* Text Styling */
.cta-text h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-text p {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Buttons Styling */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.cta-btn .icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* Call Button Gradient */
.call-btn {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
}

.call-btn:hover {
  transform: translateY(-5px);
}

.call-btn:hover .icon {
  transform: rotate(20deg);
}

/* WhatsApp Button Gradient */
.whatsapp-btn {
  background: linear-gradient(45deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
}

.whatsapp-btn:hover .icon {
  transform: scale(1.2);
}

/* Fade-in animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .cta-text h2 {
    font-size: 2rem;
  }
  .cta-text p {
    font-size: 1rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

    /*photo page*/
/* ===== Breadcrumb ===== */
.breadcrumb-section {
  position: relative;
  padding: 60px 0;
}
.breadcrumb-section h2 {
  font-size: 36px;
  font-weight: bold;
}

/* ===== Filter Buttons ===== */
.filter-tabs {
  margin: 30px 0;
}
.filter-btns li {
  cursor: pointer;
  padding: 10px 22px;
  margin: 6px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(135deg, #79184d, #db91ba);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
}
.filter-btns li:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 12px rgba(0,0,0,0.25);
}
.filter-btns li.active {
  background: linear-gradient(135deg, #79184d, #e5c0d5);
  color: #fff;
  box-shadow: 0px 6px 14px rgba(0,0,0,0.3);
}

/* ===== Gallery Grid ===== */
.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   
  margin: 0 auto;
  padding: 0 15px;
}
.filter-list .default-portfolio-item {
  flex: 0 0 33.333%;  
  max-width: 33.333%;
  padding: 15px;
  box-sizing: border-box;
}
.filter-list .default-portfolio-item .image-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.filter-list .default-portfolio-item .image-box img:hover {
  transform: scale(1.05);
}

/* ===== Caption ===== */
.caption-box-two {
  margin-top: 10px;
  text-align: center;
}
.caption-box-two h3 a {
  color: #000 !important;
  font-weight: 600;
  font-size: 18px;
}

.caption-box-two h5 a {
  color: #000 !important;
  font-weight: 600;
  font-size: 18px;
}

/* ===== Fancybox Close Button ===== */
.fancybox__container .fancybox__button--close {
  top: 15px;
  right: 15px;
  background: #ff4444;
  border-radius: 50%;
  color: #fff;
  padding: 10px;
  transition: 0.3s;
}
.fancybox__container .fancybox__button--close:hover {
  background: #e60000;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .filter-list .default-portfolio-item {
    flex: 0 0 50%;    
    max-width: 50%;
  }
  .bk-btn{
    display: none !important;
  }
  .tn-left{
    text-align: center;
  }
      .canvas-open {
        top: 62px;
    }
}
@media (max-width: 767px) {
.hero-slider .hs-item {
    height: 37vh;
}
.top-nav .tn-left li {
  text-align: center;
}
.top-nav .tn-left li:last-child {
  display: none;
}
.top-nav .tn-right {
  text-align: center;
}
}
@media (max-width: 575px) {
  .filter-list .default-portfolio-item {
    flex: 0 0 100%;   
    max-width: 100%;
  }
  .filter-list .default-portfolio-item .image-box img {
    height: 220px;
  }
  .caption-box-two h3 a {
    font-size: 20px;
  }

}

 .footer-logos-strip {
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.footer-mini-logo {
    height: 60px;
    width: auto;
	display: block;
    margin: 0 auto 15px;
	object-fit: contain;
    border: 2px solid #fff; 
    border-radius: 10px; 
    padding: 5px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}
.footer-mini-logo:hover {
    transform: scale(1.1);
}
.ft-quick-links{
	margin-left: 60px;
}
.ft-contact {
  margin-left: 70px;
}
.ft-rooms {
  margin-left: 45px;
}
.contact-text{
	padding: 0px 8px;
}
.contact-style{
	display: flex; 
	align-items: center;"
}
@media (max-width: 768px) {
         .footer-logos-strip{
        justify-content: left !important;
    align-items: left !important;
  }
  .footer-about{
          text-align: left !important;
  }
  .ft-quick-links{
	margin-left: 0px;
}
.ft-contact {
  margin-left: 0px;
}
.ft-rooms {
  margin-left: 0px;
}
}

/* group-tour */
.group-tour-route {
  padding: 80px 0;
  position: relative;
}
.tour-route-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  text-align: center;
  flex-wrap: wrap;
}
.tour-step {
  width: 30%;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.step-icon {
  font-size: 36px;
  color: #fff;
  background: #79184d;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(214,51,108,0.3);
}
.tour-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}
.tour-step p {
  font-size: 14px;
  color: #555;
}
.connector-line {
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(to right, #79184d, #79184d);
  z-index: 0;
  border-radius: 2px;
}

.weekend-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #79184d;
  color: #fff;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 25px;
  margin-top: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: pulse 1.8s infinite;
}
.weekend-highlight i {
  font-size: 18px;
}
.tour-step h3 .text-bg{
	background: #b99151 !important;
    font-size: 17px !important;
    margin: 10px;
	padding: 10px;
	color: #fff;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(121,24,77,0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(121,24,77,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(121,24,77,0); }
}

/* Responsive */
@media (max-width: 992px) {
  .tour-step { width: 45%; }
  .connector-line { display: none; }
}
@media (max-width: 768px) {
  .tour-step { width: 100%; }
}
@media (max-width: 576px) {
  .tour-step p { font-size: 13px; }
}