html {
  scroll-behavior: smooth;
  scroll-padding: 10rem;
}

    .section-padding {
        padding: 50px 0;
    }
    
/* ===============================
   HOTEL GALLERY SECTION
================================ */
.hotel-gallery {
  padding: 80px 5%;
  background: #f9f9f9;
  text-align: center;
}

.hotel-gallery h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
}

.hotel-gallery p {
  font-size: 16px;
  color: #777;
  margin-bottom: 40px;
}

/* ===============================
   GALLERY CAROUSEL
================================ */
.gallery-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Track */
.gallery-track {
  display: flex;
  gap: 30px;                /* ✔ margin replaced */
  width: max-content;      /* ✔ blank issue fix */
  transition: transform 0.6s ease;
}

/* Gallery Item */
.gallery-item {
  min-width: 400px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;          /* ✔ important */
}

/* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Gradient Overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===============================
   NAVIGATION BUTTONS
================================ */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 46px;
  height: 46px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  z-index: 5;
  transition: all 0.3s ease;
}

.nav:hover {
  background: #b18b5e;
  color: #fff;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .gallery-item {
    min-width: 340px;
    height: 340px;
  }
}

@media (max-width: 768px) {
  .gallery-item {
    min-width: 85%;
    height: 300px;
  }

  .nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hotel-gallery h2 {
    font-size: 28px;
  }

  .hotel-gallery p {
    font-size: 14px;
  }
}

.rooms-section {
  position: relative; /* required for overlay */
  background-image: url("assets/main-website/background.jfif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  overflow: hidden;
}

/* Overlay */
.rooms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* adjust color & opacity */
  z-index: 1;
}

/* Keep content above overlay */
.rooms-section > * {
  position: relative;
  z-index: 2;
}
.rooms-container {
  max-width: 1200px;
  margin: auto;
}

.room-card {
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.room-image {
  width: 55%;
}

.room-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.room-content {
  width: 45%;
  padding: 40px;
}

.room-content h3 {
  font-size: 39px;
  color:#b08b57;
  padding-bottom: 20px;
}

.room-content ul li {
  font-size: 18px;
  margin-bottom: 20px;
}
.room-content p{
    font-size: 19px;
    padding-bottom:10px;
}

.room-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #b08b57;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}

@media (max-width: 768px) {

  .room-card {
    flex-direction: column;
  }

  .room-image,
  .room-content {
    width: 100%;
  }

  .room-image {
    height: 220px;
  }

  .room-content {
    padding: 40px;
    
  }

  .room-content h3 {
    font-size: 22px;
    
  }

  .room-btn {
    width: 100%;
    text-align: center;
  }

}

.swiper-button-next:after{
    color: #000;
}
.swiper-button-prev:after{
    color:#000;
}

/* Optional: hide pagination dots */
.rooms-swiper .swiper-pagination {
  display: none;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --bg-color: #fef9f3;
}

.testimonial-section {
  background-color: var(--bg-color);
  padding: 50px 10% ;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header h2 span { color: #aa8453; }

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap; /* Isse cards niche wali line mein auto-adjust honge */
  margin-top: 60px;
}

.testimonial-card {
  background: #fff;
  padding: 50px 25px 35px;
  width: 300px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* --- Unique Organic Shapes for each card --- */
.shape-1 { border-radius: 40px 100px 40px 100px; }
.shape-2 { border-radius: 100px 40px 100px 40px; }
.shape-3 { border-radius: 60px 60px 120px 60px; }
.shape-4 { border-radius: 120px 60px 60px 60px; }
.shape-5 { border-radius: 60px 120px 60px 120px; }

.quote-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: -22px;
  font-size: 1.1rem;
}

/* --- Icon Background Colors --- */
.bg-green  { background: #8bc34a; }
.bg-blue   { background: #4fc3f7; }
.bg-orange { background: #ffb74d; }
.bg-purple { background: #ba68c8; }
.bg-pink   { background: #f06292; }

.client-info h4 {
  margin: 0;
  font-size: 1.15rem;
  color: #333;
}

.client-info span {
  font-size: 0.85rem;
  color: #888;
  display: block;
  margin-top: 3px;
}

.rating {
  color: #f1c40f;
  margin: 15px 0;
  font-size: 1rem;
}

.feedback {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .testimonial-card {
    width: 100%;
  }
}
/* Base Theme: Black, White, and #aa8453 */
.nmg-thankyou-section {
    --gold: #aa8453;
    --dark: #0a0a0a;
    --white: #ffffff;
    
    position: relative;
    min-height: 90vh;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'serif';
    overflow: hidden;
    padding: 40px 20px;
}

.nmg-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
    z-index: 1;
}

.nmg-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 550px;
    perspective: 1200px;
}

/* Glass Card styling */
.nmg-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(170, 132, 83, 0.3); /* Bronze Border */
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.nmg-accent-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 0 0 10px 10px;
}

.nmg-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.nmg-title {
    color: var(--white);
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.nmg-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 40px;
    font-family: sans-serif;
}

/* Buttons */
.nmg-action-area {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.nmg-btn-gold {
    background: var(--gold);
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.nmg-btn-gold:hover {
    background: #c29a6a;
    transform: scale(1.05);
}

.nmg-btn-white {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.nmg-btn-white:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* The Mirror Floor */
.nmg-reflection-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
    pointer-events: none;
}

.nmg-reflection-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(170, 132, 83, 0.2), transparent);
    transform: scaleY(-1);
    filter: blur(8px);
    opacity: 0.4;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glass Shine Animation */
.nmg-glass-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    20% { left: 150%; }
    100% { left: 150%; }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .nmg-title { font-size: 2.5rem; }
    .nmg-action-area { flex-direction: column; }
    .nmg-glass-card { padding: 40px 20px; }
}

/* ===============================
   BLOG FLICKER FINAL FIX
   =============================== */

.blog-section,
.blog-card,
.blog-img img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Disable ALL animations only for blog */
.blog-section * {
    animation: none !important;
    transition: none !important;
}

/* Image */
.blog-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

/* Content */
.blog-content {
    padding: 22px;
}

@media (max-width: 767px) {
    .blog-img {
        height: 200px;
    }
}

/*BLOGS SINGLE PAGE*/


/* ===============================
   SINGLE BLOG PAGE STYLE
=============================== */

/* ===============================
   SINGLE BLOG – ALIGNMENT FIX
=============================== */

.blog-details-section {
    padding: 20px 0;
}

/* LIMIT CONTENT WIDTH */
.blog-details-section .col-lg-9 {
    max-width: 1100px !important;
}

/* HEADER */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header .blog-date {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.blog-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin: 0 auto;
   
}

/* FEATURED IMAGE */
.blog-featured-img {
    margin: 40px 0;
    border-radius: 14px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    display: block;
}

/* CONTENT */
.blog-details-content {
    text-align: left;              /* 🔥 MAIN FIX */
    margin: 0 auto;
}

.blog-details-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* HEADINGS */
.blog-details-content h2 {
    font-size: 28px;
    margin: 40px 0 15px;
    color: #111;
}

/* LIST FIX */
.blog-details-content ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.blog-details-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    list-style: disc;
}

/* BLOCKQUOTE */
.blog-details-content blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    background: #f9f9f9;
    border-left: 4px solid #c9a063;
    font-style: italic;
    color: #333;
}

/* TAGS */
.blog-tags {
    margin-top: 50px;
    text-align: left;
}

.blog-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.blog-tags a {
    display: inline-block;
    margin: 6px 6px 0 0;
    padding: 6px 14px;
    border-radius: 20px;
    background: #f1f1f1;
    font-size: 14px;
    text-decoration: none;
    color: #333;
}

/* MOBILE FIX */
@media (max-width: 767px) {

    .blog-header h1 {
        font-size: 28px;
    }

    .blog-details-section {
        padding: 50px 0;
    }

    .blog-details-content h2 {
        font-size: 22px;
    }

    .blog-details-content p,
    .blog-details-content li {
        font-size: 15px;
    }
}

body{
    font-family: Arial, sans-serif;
    background:#f4f6f9;
}

/* Container */
.table-container{
    max-width:1000px;
    margin:30px auto;
    padding:15px;
}

/* Table */
table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

th, td{
    padding:15px;
    text-align:left;
}

th{
    background:#aa8453;
    color:#fff;
    font-weight:600;
}

tr:nth-child(even){
    background:#f8f9fb;
}

/* Mobile Responsive */
@media(max-width:768px){
    table, thead, tbody, th, td, tr{
        display:block;
    }

    thead{
        display:none;
    }

    tr{
        margin-bottom:15px;
        border-radius:10px;
        box-shadow:0 4px 15px rgba(0,0,0,0.08);
        padding:10px;
        background:#fff;
    }

    td{
        padding:10px 10px 10px 50%;
        position:relative;
    }

    td::before{
        content:attr(data-label);
        position:absolute;
        left:15px;
        top:10px;
        font-weight:600;
        color:#2c3e50;
    }
}
/* ===============================
   FAQ SECTION – CRISP DESIGN
=============================== */


.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
}

/* FAQ ITEM */
.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fafafa;
}

/* Hide checkbox */
.faq-item input {
    display: none;
}

/* Question */
.faq-item label {
    display: block;
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    background: #fff;
}

/* Plus / Minus icon */
.faq-item label::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #c9a063;
    transition: 0.3s;
}

/* Answer */
.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Open State */
.faq-item input:checked ~ .faq-content {
    max-height: 300px;
    padding: 15px 22px 20px;
}

.faq-item input:checked + label::after {
    content: "−";
}

/* MOBILE */
@media (max-width: 767px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-item label {
        font-size: 16px;
        padding: 16px 18px;
    }

    .faq-content {
        font-size: 15px;
    }
}

.tile{
    text-align: center !important;
    color: #aa8453;
}
