body {
  background-color: rgb(33, 33, 88, 1);
}

/* custom.css */
.property-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  border-radius: 10px;
}
.swiper {
  width: 100%;
  height: 500px;
  position: relative;
}
.swiper-slide {
  position: relative;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  padding: 20px;
  gap: 20px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.property-image {
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.property-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.property-info {
  flex: 1;
  color: #333;
}
.property-info h2 {
  font-size: 1.5rem;
}
.property-info p {
  margin-bottom: 10px;
  color: #555;
}

/* Custom Navbar Styling */
.custom-navbar {
  background-color: rgba(255, 255, 255, 0.5); /* Light transparent background */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
  position: absolute; /* Ensure it stays above hero section */
  width: 100%;
  z-index: 1000; /* Stay on top of other elements */
}

.custom-navbar .navbar-brand img {
  transition: transform 0.3s ease-in-out;
}

.custom-navbar .navbar-brand img:hover {
  transform: scale(1.1);
}

.custom-navbar .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.5); /* Transparent toggle button border */
}

.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.custom-navbar .navbar-nav .nav-link {
  color: #333; /* Dark text for contrast */
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.custom-navbar .navbar-nav .nav-link:hover {
  color: #007bff; /* Blue color on hover */
  background-color: rgba(255, 255, 255, 0.5); /* Light background on hover */
}

.custom-navbar .navbar-nav .nav-link.active {
  color: #007bff; /* Highlight active link */
  border-bottom: 2px solid #007bff; /* Underline for active link */
}

/* Sticky Navbar */
.custom-navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9); /* More opaque when sticky */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for better visibility */
}

@media (max-width: 700px) {
  .banner{
    margin-top: 100px;
  }
}

/* Navbar Style End */

/* Hero Section Styling */
.hero-section {
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  position: relative;
}

.banner-slider {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.slider-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Hidden until loaded */
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

@keyframes zoomEffect {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.slider-item.active {
  opacity: 1; /* Fully visible */
  visibility: visible; /* Make visible */
  /* animation: zoomEffect 15s ease-in-out infinite; */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

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

.hero-text p {
  font-size: 1.5rem;
  color: white;
}

.hero-text a {
  padding: 10px 20px;
  font-size: 1.2rem;
}

/* my Slider Start */

.slider-arrow {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: monospace;
  font-size: 5em;
  font-weight: bold;
  box-shadow: 0px 10px 40px #8b8b8b;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.slider-arrow:hover {
  background-color: #64a0af;
}

.dots,
.dotsHero {
  position: absolute;
  bottom: 80px;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dots .dot,
.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.dots .dot.active,
.dot.active {
  background-color: blue;
}

/* Video Section Start  */

.video-section {
  position: relative;
  background-image: url("https://mrdeveloper.xyz/Azad/assets/img/thumbnail.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  animation: pulse 1.5s infinite;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button::before {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #000;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
  z-index: 1;
}

.video-section.playing .play-button {
  display: none;
}

.video-section.playing .video-iframe {
  display: block;
}

@media (max-width: 576px) {
  .video-section {
    height: 250px;
  }
  .play-button {
    width: 60px;
    height: 60px;
  }
}

/* Video Section End */

/* Floatings Button */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.btn-call {
  background-color: #28a745;
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn-messenger {
  background-color: #0084ff;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

#map {
  height: 90vh;
  width: 100%;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Bounce Animation */
.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

/* Floatings Button End */

/* General Popup Modal Styling */
.modal-content {
  border-radius: 10px;
  background-color: #f8f9fa;
}

/* Header Styling */
.modal-header {
  background-color: #007bff;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.modal-title {
  font-weight: bold;
}

/* Form Fields */
.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
}

.form-control,
.form-select {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

/* Button Styling */
.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 15px;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 767px) {
  .modal-dialog {
    max-width: 90%;
  }

  .form-control,
  .form-select {
    font-size: 0.9rem;
    padding: 10px;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 12px;
  }
}

/* Textarea */
textarea.form-control {
  resize: vertical;
}

/* Shadow Effects for Form */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom Margin for Form Elements */
.mb-3 {
  margin-bottom: 1.5rem;
}

/* Popup end */
