/* =========================
GLOBAL
========================= */

body {
  background-color: rgb(247, 247, 247);
  margin: 0;
  padding: 0;
}
:root{
      --darkblue1: #0c0d0d;
}

html {
  scroll-behavior: smooth;
}

/* =========================
NAVBAR SPACE FIX
========================= */

/* Agar navbar fixed hai */

.sticky-form {
  position: sticky;
  top: 20px;
  height: fit-content;
}

/* Left side scrollable */

.hero-left {
  max-height: 100vh;
  overflow-y: auto;
}

/* Optional smooth scroll */

.hero-left::-webkit-scrollbar {
  width: 6px;
}

.hero-left::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Phone Button */

.phone-box {
  background: #cf890a;
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
}

/* NAVBAR BACKGROUND */
.custom-navbar {
  background: #222;
  padding: 0;
}

/* LOGO */
.logo img {
  height: 60px;
  background: #fff;
  padding: 10px 20px;
}

.logo-text {
    transition: all 0.3s ease;
}

/* Hover effect */
.logo-text:hover {
    transform: scale(1.05);
    color: #ffc107;
}

/* MENU */
.navbar-nav {
  gap: 25px;
}

.navbar h2 {
  color: white;
  font-family: fangsong;
  padding-top: 11px;
  font-size: 23px;
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */
.navbar-nav .nav-link:hover {
  color: #f5b400;
}

/* ACTIVE UNDERLINE */
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: '';
  width: 60%;
  height: 2px;
  background: #f5b400;
  position: absolute;
  left: 20%;
  bottom: -5px;
}

/* CALL BUTTON */
.call-btn {
  background: #f5b400;
  color: #fff;
  padding: 10px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}

.call-btn strong {
  font-size: 18px;
}

/* WhatsApp BUTTON */
.wt-btn {
  background: #012b01;
  color: #fff;
  padding: 10px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}

.wt-btn strong {
  font-size: 18px;
}

/* TOGGLER */
.navbar-toggler {
  background: #fff;
}

/* MOBILE */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
    margin-top: 20px;
  }

  .call-btn {
    margin-top: 15px;
    text-align: center;
  }

  .wt-btn {
    margin-top: 15px;
    text-align: center;
  }
}

.nav-link.active {
  color: #f5b400 !important;
}

/* =========================
HERO IMAGE
========================= */

.hero-image {
  height: 100vh;
  background: url('../images/bptp.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  
}

/* Dark Overlay */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* =========================
LEFT INFO BOX
========================= */

.left-info {
  position: absolute;
  top: 70px;
  left: 0;
  width: 28vw;
  background: #0000008a;
  color: white;
  padding: 15px;
  text-align: center;
  border-bottom-right-radius: 10px;
  z-index: 2;
}

/* Price Highlight */

.font_color {
  padding: 0.1vw 0.8vw 0.3vw;
  text-shadow: 0px 1px 2px #000;
  font-size: 1.8vw;
  color: #cf890a;
}

/* Lead text */

.lead_data p {
  margin-top: 0;
  margin-bottom: 0.1rem;
}

/* =========================
BOOKING TAG
========================= */

.booking-tag {
  background: #0c294a;
  padding: 3px;
  color: #fff;
  display: block;
  font-size: 22px;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* =========================
BUTTON
========================= */
@keyframes pulseBtn {

  0% {

    transform: scale(1);

    box-shadow: 0 0 0 0 rgba(245, 180, 0, 0.7);

  }

  70% {

    transform: scale(1.05);

    box-shadow: 0 0 0 12px rgba(245, 180, 0, 0);

  }

  100% {

    transform: scale(1);

    box-shadow: 0 0 0 0 rgba(245, 180, 0, 0);

  }

}

.enquire-btn {
  background: #0c294a;
  color: white;
  width: 100%;
   animation: pulseBtn 1.8s infinite;
}

.enquire-btn:hover {
  background: #0c294a;
  color: white;
}

/* =========================
RIGHT SIDEBAR (IMPORTANT)
========================= */

.form-sidebar {
  background: #ffffff;
  height: 100vh;
  position: sticky;
  top: 56px;

  padding: 20px;

  margin-left: 0;
  padding-left: 20px;
  /* inside spacing */
}

/* Sticky Form */

.sticky-form {
  position: sticky;

  top: 20px;
}

/* =========================
FORM DESIGN
========================= */

.form-wrapper {
  background: #ffffff;
}

.form-title {
  font-weight: 600;

  margin-bottom: 15px;
}

.form-box {
  background: white;

  padding: 20px;

  border-radius: 8px;

  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.submit-btn {
  background: #0c294a;

  color: white;
}

.submit-btn:hover {
  background: #0c294a;

  color: white;
}

/* =========================
LEFT SIDE SCROLL
========================= */

@media (min-width: 992px) {
  .hero-image {
    position: relative;
    height: 100vh;
  }

  .left-info {
    position: absolute;
    top: 70px;
    left: 0;
    width: 30vw;
    z-index: 2;
  }

  .hero-left {
    max-height: 100vh;
    overflow-y: auto;
  }

  /* .hero-left::-webkit-scrollbar {
    width: 6px;
  }

  .hero-left::-webkit-scrollbar-thumb {
    background: #ccc;

    border-radius: 10px;
  } */
}

/* =========================
SECTION SPACING
========================= */

.section-padding {
  padding: 60px 0px;
  background-image: linear-gradient(-45deg,
      #f7f7f7,
      #f7f7f7 50%,
      #fff 50%,
      #fff);
  background-size: 3px 3px;
  position: relative;
  z-index: 1;
  margin-top: 1em;
}

/* =========================
📱 MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {

  /* Remove scroll lock */
  .hero-left {
    max-height: none !important;
    height: auto;
    overflow: visible;
  }

  /* Banner Image */
  .hero-image {
    height: 250px;
    /* banner height */
    position: relative;
  }

  /* Overlay only on image */
  .overlay {
    height: 100%;
    background: rgb(0 0 0 / 0%);
  }

  /* 🔥 MOST IMPORTANT FIX */
  .left-info {
    position: relative !important;
    /* remove overlay */

    width: 100%;

    top: 0;

    margin-bottom: 15px;
    border-radius: 0 0 10px 10px;

    background: rgba(0, 0, 0, 0.9);
  }
  .left-info h4{
     font-size: 15px;
  
  }

  /* Lead form spacing */
  .form-sidebar {
    position: relative;
    height: auto;
    margin-top: -15px;
    top: 0;
  }

  /* Sticky remove mobile */

  .sticky-form {
    position: relative;

    top: 0;
  }

  /* Font Fix */

  .font_color {
    font-size: 18px;
  }

  .booking-tag {
    font-size: 18px;
  }

  /* Light overlay mobile */

  /* .overlay {
    background: rgba(0, 0, 0, 0.15);
  } */
}

.location {
  color: #d77d0b;
  font-weight: 600;
}

/* SECTION BACKGROUND */
.highlights {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  position: relative;
  overflow: hidden;
}

/* background pattern */
.highlights::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(#ffffff22 1px, transparent 1px);
  background-size: 10px 10px;
}

/* HEADING */
.sub-title {
  color: #c47a2c;
  letter-spacing: 3px;
}

.title {
  font-weight: bold;
  color: #fff;
}

/* IMAGE */
.img-box {
  border: 10px solid #fff;
  padding: 5px;
  position: relative;
}

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

/* GLASS BOX */
.glass-box {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ITEMS */
.item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  position: relative;
}

/* line divider */
.item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50px;
  width: calc(100% - 50px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.item:last-child::after {
  display: none;
}

/* number */
.item span {
  font-size: 30px;
  color: #888;
  min-width: 50px;
}

/* text */
.item p {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

/* hover effect */
.item:hover span {
  color: #c47a2c;
  transform: scale(1.1);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .glass-box {
    margin-top: 20px;
  }

  .item {
    gap: 10px;
  }

  .item span {
    font-size: 22px;
  }

  .item::after {
    left: 35px;
    width: calc(100% - 35px);
  }
}

/* SECTION */
.pricing {
  padding: 60px 0px;
  background-image: linear-gradient(-45deg,
      #f7f7f7,
      #f7f7f7 50%,
      #fff 50%,
      #fff);
  background-size: 3px 3px;
  position: relative;
  z-index: 1;
  margin-top: 1em;
  text-align: center;
}

/* HEADING */
.heading h6 {
  color: #8a4b08;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.heading h2 {
  color: #0c294a;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  margin-top: 29px;
}

.common-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Montserrat';
  position: relative;

  width: 100%;
  /* fit-content hatao */
  text-align: center;
  /* text center */

  margin-bottom: 10px;
  padding-bottom: 10px;

  color: #984807;
}

/* Light line */

.common-title::after {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 11%;
  border-bottom: 1px solid #ddd;
}

/* Dark line */

.common-title::before {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 6%;
  height: 6px;
  background: #8a4b08;
  z-index: 2;
}

.heading h2::before {
  border-bottom: 5px solid #8a4b08;
  width: 30%;
  bottom: -2px;
  z-index: 1;
  left: 14px;
}

.heading h2::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #fff;
  text-align: center;
}

/* TOP */
.top {
  padding: 20px;
  background: #eee;
}

.top h3 {
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* DETAILS */
.details {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed #aaa;
  padding-top: 15px;
}

.details div {
  width: 50%;
}

.details div:first-child {
  border-right: 1px dashed #aaa;
}

.details p {
  margin: 0;
  color: #555;
}

.details span {
  font-weight: bold;
}

/* PRICE BOX */
.price-box {
  background: #8a4b08;
  color: #fff;
  padding: 25px 10px;
  position: relative;
}

/* triangle */
.price-box::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px;
  border-style: solid;
  border-color: #8a4b08 transparent transparent transparent;
}

.price-box h4 {
  margin: 5px 0 0;
  font-size: 22px;
}

/* BUTTON */
button {
  margin-top: 30px;
  padding: 10px 25px;
  border: 2px solid #fff;
  background: #8a4b08;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #fff;
  color: #8a4b08;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .heading h2 {
    font-size: 24px;
  }

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

.text-justify {
  text-align: justify;
}

.amenities {
  padding: 60px 20px;
}

.title {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #c47a2c;
  border-radius: 30px;
  color: #c47a2c;
  margin-bottom: 40px;
}

/* GRID 2 ROW */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.card-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.card-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s;
}

.card-box span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* HOVER */
.card-box:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.animate__swing {
  animation-duration: 3s;
}

.custom-swing {
  animation-duration: 3s;
}

/* Mobile Bottom Fixed Buttons */

.mobile-bottom-buttons {

  position: fixed;

  bottom: 0;

  left: 0;

  width: 100%;

  display: none;

  z-index: 9999;

}


/* Call Button */

.mobile-call {

  width: 50%;

  background: #cf890a;

  color: #fff;

  text-align: center;

  padding: 12px;

  font-weight: 600;

  text-decoration: none;

}


/* WhatsApp Button */

.mobile-whatsapp {

  width: 50%;

  background: #074e21;

  color: #fff;

  text-align: center;

  padding: 12px;

  font-weight: 600;

  text-decoration: none;

}


/* Show only Mobile */

@media (max-width: 991px) {

  .mobile-bottom-buttons {

    display: flex;

  }

}

.sitefooter {
        background: var(--darkblue1) url(../images/pattern1.png);
    padding: 70px 0;
    color: var(--white);
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    color: #fff;
}

.moretext {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.moretext.show {
  max-height: 500px; /* adjust if text zyada ho */
}

.reamoredbtn {
  background: linear-gradient(45deg, #fead00, #e2ab3c);
  color: #000;
  border: none;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(202, 164, 95, 0.4);
}

/* Hover Effect */
.reamoredbtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(202, 164, 95, 0.6);
}

/* Shine Animation */
.reamoredbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.reamoredbtn:hover::before {
  left: 130%;
}

.map-section {
    width: 100%;
}

.map-section img {
    width: 100%;
    height: auto;       /* 🔥 full image show */
    display: block;
}
  .form-title{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #0c294a;
    margin-top: 4px;
     }