/* Chrome-specific fixes and consolidated styles */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.top-50-custom {
  top: 38%;
}

.form-control:focus,
.input-group-text:focus,
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-group-text,
.form-control {
  height: 48px;
}

#searchIcon {
  font-size: 1rem;
}

/* Styles from footer.php */
.social-icon a {
  text-decoration: none !important;
}

/* Styles from Locationnavbar.php */
.nav-link:hover {
  color: #ffc107 !important;
}

.nav-link:hover span {
  width: 100%;
}

.navbar {
  background: #1f3d26;
}

.nav-link {
  font-weight: bold;
}

/* Styles from enquiry.php */
.enquiry-card {
  display: none;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -moz-transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  flex-direction: row;
}

.enquiry-card.show {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.carousel-inner, .carousel-item, .carousel-item img {
  height: 100%;
}

.carousel-item img {
  object-fit: cover;
}

.form-section {
  flex: 1;
  padding: 10px;
  background: linear-gradient(135deg, #003c8f, #1976d2);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-control {
  border-radius: 5px;
  padding: 8px;
  font-size: 1rem;
}

.btn-submit {
  background-color: #e53935;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: #c62828;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Consolidated body styles with Chrome fixes */
body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #f7f7f7, #e0e0e0);
  background: -webkit-linear-gradient(to right, #f7f7f7, #e0e0e0);
  background: -moz-linear-gradient(to right, #f7f7f7, #e0e0e0);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-nav {
  background-color: #0a0a23;
  width: 100%;
}

.site-menu li {
  position: relative;
  margin: 0 0px;
}

.site-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.site-menu a:hover {
  color: #39ff14;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  border-radius: 5px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  z-index: 1000;
}

.site-menu li:hover > .dropdown-menu-custom,
.dropdown-menu-custom:hover {
  display: flex;
}

.dropdown-menu-custom a {
  color: white;
  padding: 10px 20px;
  transition: 0.3s;
}

.dropdown-menu-custom a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #39ff14;
}

.arrow-icon {
  margin-left: 5px;
  transition: transform 0.3s;
}

.site-menu li:hover .arrow-icon {
  transform: rotate(180deg);
}

.site-menu li a {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .site-menu {
    display: none !important;
  }
  .site-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
  }
  .site-mobile-menu.active {
    display: block;
    transform: translateX(0);
  }
  .site-mobile-menu-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .site-mobile-menu-body li a {
    color: #000;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
  }
  .site-mobile-menu-header {
    background: #000;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .js-menu-toggle {
    cursor: pointer;
  }
}

.site-mobile-menu-body .dropdown-menu-custom {
  display: none;
  flex-direction: column;
  background-color: #f9f9f9;
  padding-left: 15px;
}

.site-mobile-menu-body .dropdown-menu-custom a {
  color: #333 !important;
  padding: 8px 0;
}

@media (max-width: 991px) {
  .site-mobile-menu-body .dropdown-menu-custom {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    background-color: #f9f9f9;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ddd;
  }
}

/* Styles from navbar2.php */
.btn-custom {
  background-color: #004d40 !important;
  color: white !important;
  border-radius: 30px !important;
  font-size: 16px;
  padding: 12px 25px;
  border: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #00352c !important;
  color: white !important;
}

.btn-outline-custom {
  border: 2px solid #004d40 !important;
  color: #004d40 !important;
  border-radius: 30px !important;
  font-size: 16px;
  padding: 10px 22px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background-color: #004d40 !important;
  color: white !important;
}


.navbar { background: linear-gradient(135deg, #2b573e, #1e3d2f); }

.navbar-brand { font-size: 24px; font-weight: bold; color: #ffcc00; }

.nav-item a { font-weight: 600; color: #fff; }

.nav-item a:hover { color: #ffcc00; }

.hero {
  background: url('images/extra/farukhnagar.webp') no-repeat center;
  background-size: cover;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
}

.info-box {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  color: white;
  transition: 0.3s ease-in-out;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff9800;
  color: #ff9800;
  padding: 18px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.location-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.info-list li {
  margin-bottom: 10px;
}

.price-table {
  margin-top: 20px;
}

.custom-btn {
  background-color: #004d25;
  color: white;
}

.accordion-button {
  font-weight: bold;
  color: #215732;
}

.nav-link:hover {
  color: #ffc107 !important;
}

.nav-link:hover span {
  width: 100%;
}

@keyframes fadeSlideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeSlideUp {
  animation: fadeSlideUp 1.5s ease-out forwards;
  opacity: 0;
  font-size: 3rem;
  text-align: center;
  margin-top: 170px;
  background: linear-gradient(90deg, #ff4e50, #f9d423, #24fe41, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
  font-weight: 900;
}


.hero { position: relative; overflow:hidden; height:80vh; }

.hero .carousel-item img { object-fit:cover; height:80vh; }

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

.hero .carousel-caption {
  bottom:30%; z-index:2;
  text-shadow:1px 1px 4px rgba(0,0,0,0.7);
}

.hero h1 { font-size:3rem; }

.features, .amenities { margin-top:3rem; }

.amenities .fa-li { color:#0d6efd; }

.btn-primary {
  background:linear-gradient(45deg,#0d6efd,#6610f2);
  border:none;
}

/* Additional styles from footer.php with Chrome fixes */
footer.site-footer {
  background: linear-gradient(135deg, #003366, #005b99);
  background: -webkit-linear-gradient(135deg, #003366, #005b99);
  background: -moz-linear-gradient(135deg, #003366, #005b99);
}


.site-nav {
  background-color: #0a0a23;
  width: 100%;
}

.site-menu li {
  position: relative;
  margin: 0 0px;
}

.site-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.site-menu a:hover {
  color: #39ff14;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  border-radius: 5px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  z-index: 1000;
}

.site-menu li:hover > .dropdown-menu-custom,
.dropdown-menu-custom:hover {
  display: flex;
}

.dropdown-menu-custom a {
  color: white;
  padding: 10px 20px;
  transition: 0.3s;
}

.dropdown-menu-custom a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #39ff14;
}

.arrow-icon {
  margin-left: 5px;
  transition: transform 0.3s;
}

.site-menu li:hover .arrow-icon {
  transform: rotate(180deg);
}

.site-menu li a {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .site-menu {
    display: none !important;
  }
  .site-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
  }
  .site-mobile-menu.active {
    display: block;
    transform: translateX(0);
  }
  .site-mobile-menu-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .site-mobile-menu-body li a {
    color: #000;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
  }
  .site-mobile-menu-header {
    background: #000;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .js-menu-toggle {
    cursor: pointer;
  }
}

.site-mobile-menu-body .dropdown-menu-custom {
  display: none;
  flex-direction: column;
  background-color: #f9f9f9;
  padding-left: 15px;
}

.site-mobile-menu-body .dropdown-menu-custom a {
  color: #333 !important;
  padding: 8px 0;
}

@media (max-width: 991px) {
  .site-mobile-menu-body .dropdown-menu-custom {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    background-color: #f9f9f9;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #ddd;
  }
}

/* Additional styles from locationnavbar.php */
.nav-link:hover {
  color: #ffc107 !important;
}

.nav-link:hover span {
  width: 100%;
}

.navbar {
  background: #1f3d26;
}

.nav-link {
  font-weight: bold;
}

/* Additional styles from gurugram-deen.php */
.hero {
  background: url('images/extra/3.webp') no-repeat center;
  background-size: cover;
  height: 500px;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
}

.info-box {
  background: #e6f2e6;
}

.booking-btn {
  background: #ff9800;
  color: white;
}

.booking-btn:hover {
  background: #e68900;
}

body, html {
  overflow-x: hidden;
}

/* Additional styles from index.php */
.hero {
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  z-index: -1;
}

/* Video section padding */
.text-light.py-5 {
  padding-bottom: 50px;
}

.position-absolute.top-50.start-50.translate-middle {
  width: 100%;
  max-width: 700px;
}

.form-control {
  border-top-right-radius: 50rem;
  border-bottom-right-radius: 50rem;
}

#suggestionsBox {
  z-index: 10;
  max-height: 220px;
  overflow-y: auto;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  overflow: hidden;
}

.overflow-hidden img {
  transition: transform 0.5s ease;
}

.btn-dark {
  width: 60px;
  height: 60px;
}

.enquiry-card .carousel-inner {
  flex: 1;
}

.enquiry-card h2 {
  color: white;
}

.position-fixed.end-0.me-3 {
  width: 45px;
  height: 45px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1050;
}

.position-fixed.end-0.me-3 .bi-whatsapp {
  font-size: 28px;
  color: white;
}

.position-fixed.end-0.me-3 .bi-telephone-fill {
  font-size: 22px;
  color: white;
}

/* Card images in swiper */
.card-img-top {
  height: 300px;
  object-fit: cover;
}

/* Footer styles */
.site-footer a {
  text-decoration: none;
  color: #ffffff !important;
}

.property-item img {
  height: 270px;
  object-fit: cover;
}

.whatsapp-icon {
  top: 45%;
}

.phone-icon {
  top: 55%;
}

/* Additional styles from jhajjar-deen.php */
.hero {
  background: url('images/extra/3.jpg') no-repeat center;
  background-size: cover;
  height: 500px;
}

.navbar {
  background: linear-gradient(to right, #1f3d26, #3a5a40);
  font-family: 'Montserrat', sans-serif;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link span {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #ffc107;
  transition: width 0.3s ease;
}

/* Additional styles from sohna-deen.php */
.hero {
  background: url('images/extra/3.webp') no-repeat center;
  background-size: cover;
  height: 500px;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
}

.info-box {
  background: #e6f2e6;
}

.booking-btn {
  background: #ff9800;
  color: white;
}

.booking-btn:hover {
  background: #e68900;
}

body, html {
  overflow-x: hidden;
}
