body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f5f0;
}

.header {
    background: #0b2b4c;
    color: white;
    padding: 15px;
}

.header a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
}

.hero {
    padding: 120px 20px;
    text-align: center;
    color: #fff;

    background-image:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url("../../images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.preview {
    padding: 40px;
    text-align: center;
}

.wedding-section {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.wedding-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.wedding-card.premium {
    border: 2px solid #c9a24d;
}

.contact-cta {
    padding: 30px;
    text-align: center;
    background: #f3f3f3;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.footer {
    background: #0b2b4c;
    color: white;
    text-align: center;
    padding: 10px;
}

.page-title {
    padding: 40px;
    text-align: center;
    background: #eee;
}

.rooms-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.room-card h3 {
    margin-top: 0;
}

.price {
    font-size: 20px;
    color: #0b2b4c;
    font-weight: bold;
}

.room-card ul {
    padding-left: 20px;
}

.room-card .btn {
    display: inline-block;
    margin-top: 15px;
    background: #c9a24d;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
}

.room-card.premium {
    border: 2px solid #c9a24d;
}

.note {
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.travel-section {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.travel-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.travel-card.premium {
    border: 2px solid #c9a24d;

}section {
  padding: 60px 20px;
  text-align: center;
}

.subtitle {
  max-width: 800px;
  margin: 10px auto 40px;
  color: #555;
}

.features, .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.feature-box, .card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.rooms-preview,
.wedding-preview {
  background: #f8f8f8;
}

.announcement {
  background: linear-gradient(135deg, #0a1d37, #102c57);
  color: #fff;
}

.contact-cta {
  background: #0a1d37;
  color: #fff;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: #0a1d37;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}
.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.pool-section {
  background: #f8f8f8;
}

.pool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.pool-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.lawn-section {
  background: #ffffff;
}

.lawn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.lawn-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.lawn-grid img:hover {
  transform: scale(1.05);
}
/* TEXT VISIBILITY FIX */
section h2,
section h3,
section p {
  color: #0b2b4c;
}
/* ===== LUXURY HERO FIX ===== */
.hero {
  padding: 160px 20px;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("../../images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1,
.hero h2,
.hero p {
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.hero .btn {
  background: #c9a24d;
  color: #000;
  font-weight: bold;
  margin: 10px;
}
/* ===== TEXT VISIBILITY FIX ===== */
section h2,
section h3 {
  color: #0b2b4c;
}

section p {
  color: #333;
}
.room-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}
.about-section {
  background: #ffffff;
  max-width: 1100px;
  margin: auto;
}

.about-section p {
  max-width: 900px;
  margin: 15px auto;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}
.room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.room-slider {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.room-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  animation: slide 9s infinite;
}

.room-slider img:nth-child(1) { animation-delay: 0s; }
.room-slider img:nth-child(2) { animation-delay: 3s; }
.room-slider img:nth-child(3) { animation-delay: 6s; }

@keyframes slide {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}
/* Premium Hover Effect */
.room-card {
  transition: 0.3s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}
.rooms-section {
  max-width: 1200px;
  margin: 60px auto;
}
.header {
  background: #0b2b4c;
  padding: 15px 30px;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.header h1 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}
.luxury-pool {
  height: 520px;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("../../images/pool/pool1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.pool-content {
  max-width: 700px;
}

.luxury-pool h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.luxury-pool p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Pool Text Shadow Fix */
.luxury-pool h2,
.luxury-pool p {
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}
.luxury-pool .subtitle {
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}
.luxury-pool h2 {
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.luxury-pool p,
.luxury-pool .subtitle {
  color: #ffffff !important;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.announcement {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.announcement h2 {
  color: #0b2b4c;
  font-size: 32px;
  margin-bottom: 15px;
}

.announcement p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}
.contact-cta {
  background: #0b2b4c;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.contact-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-cta p {
  color: #fff;
}
/* ===== FIX: Pool Section Overlay Control ===== */

.luxury-pool {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.announcement {
  background: #ffffff;
  color: #0b2b4c;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-cta {
  background: #0a1d37;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.wedding-video {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.wedding-vid {
  width: 100%;
  max-width: 1000px;
  border-radius: 15px;
  margin: 30px auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.banquet-section {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
}
.video-wrapper {
  max-width: 900px;
  margin: 30px auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
/* Banquet & Restaurant Section */
.banquet-section {
  padding: 70px 20px;
  text-align: center;
  background: #f9f9f9;
}

.banquet-section .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}
/* Lawn Gallery */
.lawn-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 60px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 60px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.popup-box h2 {
  margin-bottom: 20px;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}
.booknow-wrapper {
  text-align: center;
  margin: 60px 0;
}

.book-btn {
  padding: 18px 45px;
  font-size: 18px;
  border-radius: 40px;
}
.book-btn {
  background: #0b2b4c;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.book-btn:hover {
  transform: scale(1.08);
}
/* ===== Wedding Slider Clean Version ===== */

.wedding-slider-section {
  padding: 60px 20px;
  text-align: center;
  background: #f8f5f0;
}

.wedding-slider {
  position: relative;
  max-width: 900px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 15px;
  border: 3px solid #c9a24d;
}

/* Track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Important — 2 images in one row */
.slider-track img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Buttons */
.wedding-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.wedding-slider .prev { left: 10px; }
.wedding-slider .next { right: 10px; }

.wedding-card {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* Wedding Gallery Grid */

.wedding-gallery-section {
  padding: 60px 20px;
  text-align: center;
  background: #f8f5f0;
}

.wedding-gallery-grid {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.gallery-column {
  flex: 1;
}

.gallery-column h3 {
  margin-bottom: 15px;
  color: #0b2b4c;
}

.gallery-column img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* ===== Wedding Packages Section ===== */

.wedding-packages {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 20px;
}

.package-card {
  background: #ffffff;
  padding: 40px;
  width: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.package-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #0b2b4c;
}

.package-card .price {
  font-size: 22px;
  color: #c9a24d;
  font-weight: bold;
  margin-bottom: 15px;
}

.package-card ul {
  padding-left: 20px;
  line-height: 1.8;
}

@media(max-width: 900px) {
  .wedding-packages {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    width: 90%;
  }
}
/* ===== Wedding Grid Layout ===== */

.wedding-grid-section {
  padding: 80px 20px;
  background: #f8f5f0;
  text-align: center;
}

.wedding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.wedding-block {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.wedding-block:hover {
  transform: translateY(-8px);
}

.wedding-block h3 {
  margin-bottom: 20px;
  color: #0b2b4c;
}

.mini-slider {
  display: flex;
  gap: 10px;
  overflow: hidden;
}

.mini-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

@media(max-width: 900px) {
  .wedding-grid {
    grid-template-columns: 1fr;
  }
}
.mini-slider {
  overflow: hidden;
  border-radius: 12px;
  height: 220px;
  position: relative;
}

.mini-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.mini-track img {
  width: 100%;
  flex-shrink: 0;
  height: 220px;
  object-fit: cover;
}
.wedding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.wedding-block {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.wedding-block h3 {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .wedding-grid {
    grid-template-columns: 1fr;
  }
}
/* Package Layout */
.package-wrapper {
  display: flex;
  gap: 20px;
}

/* Desktop */
.package-wrapper .wedding-card {
  flex: 1;
}


.package-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.wedding-card {
  position: relative;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid #c9a24d; /* GOLD BORDER */
}

.wedding-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.wedding-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #0b2b4c;
}

.wedding-card .price {
  font-size: 20px;
  font-weight: 600;
  color: #c9a24d;
  margin-bottom: 10px;
}
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #c9a24d;
  color: white;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
/* ================= POOL SLIDER ================= */

.luxury-pool {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.pool-slider {
  height: 100%;
  overflow: hidden;
}

.pool-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.pool-track img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Overlay Content */

.pool-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 80%;
}

.pool-overlay h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.pool-overlay p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

/* Dark overlay */
.luxury-pool::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
/* ===== NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;   
  z-index: 9999;
  transition: 0.4s ease;
  background: transparent;
  box-sizing: border-box;
}

.navbar.scrolled {
  background: rgba(11, 43, 76, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 55px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  margin-left: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c9a24d;
}

.nav-btn {
  background: #c9a24d;
  padding: 8px 20px;
  border-radius: 25px;
  color: black !important;
  font-weight: bold;
}

/* Hero adjustment */

.hero {
  margin-top: 90px;
}
@media (max-width: 768px) {

  .nav-links a {
    margin-left: 12px;
    font-size: 13px;
  }

  .nav-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

}

/* ============================= */
/* BOOKING POPUP DESIGN */
/* ============================= */

/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: popupFade 0.3s ease;
}

/* Animation */
@keyframes popupFade {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* Form fields */
.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Submit button */
.popup-box button {
  width: 100%;
  padding: 10px;
  background: #0b2b4c;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.popup-box button:hover {
  background: #000;
}
.section-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.section-slider .slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;

}

.section-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.section-slider .prev { left: 10px; }
.section-slider .next { right: 10px; }

/* ===== FIX GLOBAL HEADER SPACING ===== */

.hero {
  margin-top: 90px !important;
}

/* ===== FIX ROOMS PAGE WIDTH ===== */

.rooms-section {
  max-width: 1200px;
  margin: 80px auto;
}

/* ===== FIX TRAVEL PAGE GRID ===== */

.travel-section {
  max-width: 1100px;
  margin: 60px auto;
}

/* ===== FIX WEDDING GRID BREAK ===== */

.wedding-grid {
  max-width: 1200px;
  margin: auto;
}

/* ===== FORCE SECTION WIDTH CONSISTENT ===== */

section {
  width: 100%;
  box-sizing: border-box;
}
/* ===== NAVBAR SCROLL FIX ===== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.4s ease;
  background: transparent;
  z-index: 9999;
}

.navbar.scrolled {
  background: #0b2b4c !important;
}
/* ===== FINAL SLIDER FIX ===== */

.section-slider {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 15px;
}

.section-slider .slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.section-slider .slider-track img {
  min-width: 100%;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
}

.section-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.section-slider .prev { left: 10px; }
.section-slider .next { right: 10px; }
/* FINAL NAVBAR FIX */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: 0.3s ease;
  z-index: 9999;
}

.navbar.scrolled {
  background: #0b2b4c !important;
}
.navbar.scrolled {
  background: #0b2b4c !important;
}
.pdf-btn-wrapper .btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 16px;
}
.pdf-btn-wrapper .btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 16px;
}
.wedding-page .btn {
  display: inline-block;
  margin: 0 auto;
}
/* ===== TRAVEL SLIDER FIX ===== */

.travel-slider-section {
  padding: 60px 20px;
  text-align: center;
}

.travel-slider-section .section-slider {
  position: relative;
  max-width: 1100px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 20px;
}

.travel-slider-section .slider-track img {
  min-width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}



.travel-slider-section .slider-track img {
  min-width: 100%;
  height: auto;
  object-fit: contain;
}


/* arrows */
.travel-slider-section .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.travel-slider-section .prev { left: 15px; }
.travel-slider-section .next { right: 15px; }











