/* General Reset and Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
}


.top-bar {
  transition: all 0.3s ease;
}

.top-bar.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar {
  border-radius: 0 0 30px 30px;
  transition: margin-top 0.3s ease;
}

/* Main Navbar */
.navbar {
  border-radius: 0 0 30px 30px; /* Bottom corners curved */
}

.mobile-menu {
  transition: right 0.4s ease; /* Slide-in animation */
}

.custom-bg {
  background-color: rgba(255, 255, 255, 0.7);
}



/* new section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ✅ Base Slide Style */
/* ✅ NEW slide CSS for <img>-based slides */
.slide {
  width: 100%;
  height: 100vh; /* ya jitna height chahiye slider ka */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.1);
  transition: opacity 1s ease-in-out, transform 6s ease-in-out;
}

.slide.active.ready {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* ✅ NEW image style */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}


.intro-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.intro-section .text-content {
  max-width: 1200px; /* Wider text container */
  margin: 0 auto 50px;
}

.intro-section h2 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
  color: #2e2e2e;
}

.intro-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.card-section {
  background-color: #f5f5f5; /* Light gray background for image section */
  padding: 60px 0;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  width: 320px;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .card-inner,
.card:active .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.card-front img,
.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-back {
  transform: rotateY(180deg);
}

.card p {
  margin-top: 12px;
  font-weight: 500;
  font-size: 17px;
  color: #333;
  text-align: center;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

.hotel-carousel-container {
  text-align: center;
  max-width: 100%;
  margin: 40px auto;
}

.carousel-heading {
  font-size: 26px;
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
}

.carousel-frame {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  height: 520px;
  overflow: hidden;
  border-radius: 18px;
}

.carousel-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.carousel-frame img.active {
  opacity: 1;
  z-index: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  font-size: 26px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}


.info-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #f1f1f1;
  padding: 50px 20px;
  flex-wrap: wrap;
  height: 100vh; /* Full screen height */
}

.info-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 360px;
  height: 100%; /* Make the card stretch to fill the section height */
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Allow card to grow and fill the space */
}

.info-card img {
  width: 100%;
  height: 260px; /* Adjust image size */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 24px;
  color: #333;
  margin: 10px 0;
  font-weight: 600;
}

.info-card p {
  font-size: 16px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.info-card button {
  padding: 12px 22px;
  border: 1.5px solid #333;
  background: none;
  color: #333;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-card button:hover {
  background-color: #333;
  color: white;
}



/* Base Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Main Section */
.main-section {
  padding: 40px;
  text-align: center;
}

.main-section h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.perks-text {
  font-size: 18px;
  margin: 10px 0 40px;
}

.main-section h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.info-columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 40px;
}

.info-columns ul {
  list-style: none;
  padding: 0;
  max-width: 300px;
}

.info-columns li {
  margin: 10px 0;
  font-size: 15px;
}

.info-columns i {
  margin-right: 10px;
}

/* =======================
   Reach Out Section
========================== */
.contact-section {
  background: #f2f6f9;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.contact-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: left;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-form .form-group i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #888;
}

.contact-form input {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.contact-form button {
  width: 100%;
  background: #2c3e50;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1a242f;
}

.map-placeholder {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* =======================
   Footer Section
========================== */
.site-footer {
  background: #1a1a1a;
  color: #f1f1f1;
  padding: 60px 20px 30px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 280px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; /* Center-align the text */
}

.footer-column h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;  /* Ensure the heading is inline-block */
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #00b894;
  margin-top: 8px;
  margin-left: auto;  /* Center the line */
  margin-right: auto; /* Center the line */
}

.footer-column p,
.footer-column li {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  display: flex;
  justify-content: center; /* Center-align list items */
  align-items: center;
}

.footer-column ul li i {
  margin-right: 10px;
  color: #00b894;
}

.footer-column ul li a {
  text-decoration: none;
  color: #cccccc;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00b894;
}

.social-icons a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00b894;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin: 20px 0;
  }

  .footer-column ul li {
    justify-content: center;
  }
}


/* === Marquee Ticker Effect for Top Header on Mobile === */
.top-bar {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: tickerScroll 15s linear infinite;
  font-size: 14px;
}

/* Mobile-specific slower scrolling */
@media (max-width: 768px) {
  .ticker-text {
    animation: tickerScroll 20s linear infinite;
    font-size: 10px;
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}



/* ====== Fixes for Overlap and Mobile Responsiveness (Safe for Hero Section) ====== */

/* General section containment, but exclude .hero */
section:not(.hero) {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Fix overlapping text on image */
.info-card img {
  object-fit: cover;
}

.info-card {
  flex: 1 1 100%;
  min-height: auto;
}

/* Make headings responsive */
@media (max-width: 768px) {
  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  .info-card p {
    font-size: 15px;
  }

  .main-section h2,
  .main-section h3 {
    font-size: 20px;
  }

  .perks-text {
    font-size: 14px;
  }

  .info-columns {
    flex-direction: column;
    gap: 20px;
  }

  .info-columns ul {
    max-width: 100%;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .carousel-heading {
    font-size: 20px;
  }

  .carousel-frame {
    height: 280px;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 8px 10px;
  }

  .contact-flex {
    flex-direction: column;
  }

  .contact-form,
  .map-placeholder {
    max-width: 100%;
  }
}

/* Prevent .info-section from overflowing */
.info-section {
  flex-wrap: wrap;
  height: auto;
  padding: 50px 20px;
}

.info-card {
  height: auto;
}




.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #333;
  /* Default Background */
  transition: 0.3s ease-in-out;
}

.floating-icons a:hover {
  background-color: #555;
}

/* Different Colors for Different Icons */
.floating-icons a:nth-child(1) {
  background-color: #25D366;
}

/* WhatsApp */
.floating-icons a:nth-child(2) {
  background-color: #1877F2;
}

/* Facebook */
.floating-icons a:nth-child(3) {
  background-color: #E4405F;
}

/* Instagram */
.floating-icons a:nth-child(4) {
  background-color: #34A853;
}

/* Call Button (Green) */







/* Fncycard */

/* Section Styling */
.custom-split-section {
  position: relative;
  padding: 100px 0;
  background: #f9f9f9;
  overflow: hidden;
}

/* Full-height central partition line */
.custom-global-partition-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: gold;
  border-radius: 2px;
  z-index: 0;
}

/* Each row */
.custom-split-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Image Card */
.custom-image-card {
  width: 600px;
  height: 400px;
  padding: 15px;
  background: #fff;
  border: 2px solid #b69d14;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease-out;
  z-index: 1;
  margin: 0 20px;
}

/* Left card slides in from left */
.custom-left-img-card {
  transform: translateX(-100px);
}

/* Right card slides in from right */
.custom-right-img-card {
  transform: translateX(100px);
}

/* Image styling */
.custom-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ✅ Responsive styles for mobile */
@media (max-width: 768px) {
  .custom-split-wrapper {
    flex-direction: column;
    padding: 0 15px;
  }

  .custom-image-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    padding: 08px;
  }

  .custom-image-card img {
    height: auto;
    max-height: 300px;
  }
}



/* Desktop only */
@media (min-width: 769px) {
  .custom-left-img-card {
    margin-right: 60px;
  }

  .custom-right-img-card {
    margin-left: 60px;
  }
}

.custom-image-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 55px rgba(253, 226, 6, 0.86);
}
