   
  /* Ensure that navbar items are aligned correctly */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  margin-bottom: 0px !important;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the logo and text horizontally */
  justify-content: center; /* Center them vertically */
  text-align: center; /* Center the text */
}

/* Styling for the logo */
.logo {
  width: 50px;
  height: 50px;
}

/* Text styling below the logo */
.logo-text {
  font-size: 14px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-container {
      flex-direction: column; /* Stack vertically on smaller screens */
  }
  
  
  .logo-text {
      font-size: 0.9rem; /* Adjust text size for smaller screens */
  }
}

@media (max-width: 576px) {
  .logo {
      max-height: 50px; /* Further reduce logo size for very small screens */
  }

  .logo-text {
      font-size: 0.8rem; /* Further adjust text size */
  }
}

   /* Add border to navbar */
   .navbar {
    border-left: 3px solid #007bff; /* Blue color border on the left */
    border-right: 3px solid #007bff; /* Blue color border on the right */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  }
  /* Navbar hover effect */
  .navbar:hover {
    background-color: #007bff; /* Change navbar background color on hover */
  }
  /* Navbar links hover effect */
  .navbar .nav-link {
    color: #333;
    transition: color 0.3s ease;
    border-right: 1px solid rgb(218, 214, 214);
    padding: 10px 10px;
    
  }
  .navbar .nav-link:hover {
    background-color: rgb(232, 236, 240);
  }
  /* Active link styling */
  .navbar .nav-link.active {
    font-weight: bold;
    color: #007bff;
  }


  /* slider */
  .carousel-item img{
    height: 500px;
  }

 
  
  .btn-primary {
    background-color: #3498db;
    border-color: #2980b9;
  }
 
  .btn-custom {
    background-color: #16a085;
    color: #fff;
  }
  .btn-custom:hover {
    background-color: #138d75;
  }
  .form-check-label {
    font-size: 12px;
    color: #7f8c8d;
  }

  /* Animated Gradient Button */
.btn-animated {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none; /* Removes underline */
  border: none;
  background: linear-gradient(90deg, #ff6b6b, #f39c12, #16a085, #3498db, #9b59b6);
  background-size: 200% 100%;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  animation: gradient-wave 3s linear infinite;
  width: 300px;
}

.btn-animated:hover {
  transform: scale(1.1);
}

/* Gradient Animation */
@keyframes gradient-wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.button-container {
  display: flex;
  flex-direction: column; /* Stacks buttons vertically */
  gap: 15px; /* Adds space between buttons */
  margin-top: 20px;
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .formhero {
    padding: 20px;
  }

  .heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .d-flex {
    flex-direction: column !important;
    align-items: center;
  }

  .btn {
    width: 100% !important;
    margin-bottom: 10px;
  }

  .form-control {
    width: 100%;
  }

  .form-check {
    font-size: 0.9rem;
  }

  .form-check-label {
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-custom {
    font-size: 1rem;
  }
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  /* Button Styles for Smaller Screens */
  .btn-animated {
    width: 100%; /* Full width on small screens */
    font-size: 14px; /* Smaller font for better fit */
    padding: 8px 15px; /* Adjust padding for smaller screens */
  }
.bg-hero{
  padding: 40px;
  background-color: rgb(245, 240, 240);
}
.formhero{
  padding: 30px;
}
.carousel-item img{
  height: auto;
}

  .button-container {
    gap: 10px; /* Reduce space between buttons */
  }

  .btn-primary,
  .btn-custom {
    width: 100%; /* Full width for regular buttons */
    margin-bottom: 10px; /* Adds spacing between buttons */
  }
}


/* price
 */
 .pricing-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  color: #2c3e50;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}

.table {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table thead {
  background-color: #2c3e50;
  color: #ffffff;
  text-transform: uppercase;
}

.table th, .table td {
  padding: 15px;
  font-size: 1rem;
}

.table td {
  color: #34495e;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-bordered th, .table-bordered td {
  border: 1px solid #dee2e6;
}

.text-muted {
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #3498db;
  border-color: #2980b9;
  text-transform: uppercase;
  padding: 12px 30px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-container .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3498db;
  color: white;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container .btn:hover {
  background-color: #2980b9;
  transform: translateX(-50%) scale(1.05);
}

/* Mobile responsive styling */
@media (max-width: 767px) {

  /* Pricing Section */
  .pricing-section {
    padding: 30px 15px; /* Reduced padding for smaller screens */
  }

  /* Section Title */
  .section-title {
    font-size: 1.5rem; /* Smaller font size */
    text-align: center; /* Center align the title */
  }

  /* Table */
  .table {
    padding: 0 10px; /* Add padding for small screens */
    box-shadow: none; /* Remove shadow for simplicity */
  }

  .table th, .table td {
    padding: 10px; /* Reduce padding for table cells */
    font-size: 0.9rem; /* Smaller font size for table text */
  }

  /* Table Header */
  .table thead {
    font-size: 1rem; /* Adjust font size for mobile */
  }

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: #fafafa; /* Lighter background on odd rows */
  }

  .table-bordered th, .table-bordered td {
    border: 1px solid #dee2e6;
  }

  /* Button */
  .btn-primary {
    padding: 10px 20px; /* Smaller padding */
    font-size: 0.9rem; /* Smaller text size */
    width: 100%; /* Make button full-width */
  }

  /* Image Container */
  .image-container {
    position: relative;
    margin-bottom: 20px;
  }

  .image-container img {
    width: 100%; /* Full width for mobile images */
    border-radius: 8px;
  }

  /* Button inside image container */
  .image-container .btn {
    position: absolute;
    bottom: 10px; /* Adjust button position */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem; /* Smaller font size for button */
    padding: 8px 16px; /* Smaller button padding */
  }

  /* Make the button inside image container smaller on hover */
  .image-container .btn:hover {
    transform: translateX(-50%) scale(1.03); /* Slight scale on hover */
  }

}



/* floor plan */
/* General styling for the section */
#master-floor-plan {
  background-color: #f8f9fa;
  padding: 60px 0;
}

/* Master Plan Card */
.master-plan-card {
  position: relative;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.master-plan-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.master-plan-card:hover img {
  transform: scale(1.1);
}

.master-plan-card .card-img-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: none;
}

.master-plan-card:hover .card-img-overlay {
  display: block;
}

.master-plan-card .btn-primary {
  background-color: #3498db;
  border-color: #2980b9;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 25px;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.master-plan-card .btn-primary:hover {
  background-color: #2980b9;
}

/* Floor Plan Cards */
.card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card-img-top {
  border-radius: 10px;
}

.card-body {
  background-color: #ffffff;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.card-text {
  color: #7f8c8d;
}

.btn-primary {
  background-color: #3498db;
  border-color: #2980b9;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background-color: #2980b9;
}

/* Responsive styling */
@media (max-width: 767px) {
  .master-plan-card .card-img-overlay {
    position: static;
    transform: translate(0, 0);
  }
  
  .card-body {
    padding: 15px;
  }
}


/* amenties */






@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }

  .amenity-card .card-body h5 {
    font-size: 1rem;
  }

  .amenity-card .card img {
    height: 180px;
  }
}


/* gallery css */
/* Gallery Section */
/* Gallery Section */
/* Gallery Section */
.gallery-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 40px;
}

.button-group .button {
  font-size: 1.2rem;
  padding: 10px 30px;
  margin: 0 10px;
  cursor: pointer;
  border: 2px solid #2980b9;
  background-color: #fff;
  color: #2980b9;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button-group .active {
  background-color: #2980b9;
  color: white;
}

.gallery-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.gallery-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card h5 {
  text-align: center;
  font-size: 1rem;
  color: #2c3e50;
  padding: 10px;
}

/* Hover effect for cards */
.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .button-group .button {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .gallery-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card img {
    height: 200px;
  }

  .gallery-card h5 {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-card img {
    height: 220px;
  }
}

@media (min-width: 992px) {
  .gallery-content {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-card img {
    height: 250px;
  }
}
/* Map View Section */
.map-view-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 40px;
}

.map-container {
  position: relative;
}

.map {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.know-more-btn {
  margin-top: 20px;
}

.btn-know-more {
  background-color: #2980b9;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-know-more:hover {
  background-color: #3498db;
}

.location-details {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.location-info {
  list-style-type: none;
  padding-left: 0;
  font-size: 1.1rem;
}

.location-info li {
  margin: 10px 0;
  color: #34495e;
}

.location-info li strong {
  color: #2980b9;
}

/* Responsive Design */
@media (max-width: 767px) {
  .map-view-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .map-container iframe {
    height: 250px;
  }

  .location-title {
    font-size: 1.5rem;
  }

  .location-info {
    font-size: 1rem;
  }

  .btn-know-more {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .map-container iframe {
    height: 280px;
  }
}


.about-developer {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 20px;
}

.developer-description {
  font-size: 1rem;
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 15px;
}

.developer-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .about-developer {
    padding: 30px 10px;
  }

  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .developer-description {
    font-size: 0.95rem;
    text-align: justify;
  }

  .developer-img {
    margin-bottom: 20px;
  }
}



.footer-section {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px;
  font-size: 0.9rem;
}

.footer-content {
  text-align: center;
  line-height: 1.6;
}

.footer-highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f1c40f;
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.85rem;
  margin: 15px 0;
  color: #bdc3c7;
  text-align: justify;
}

.footer-links a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

.footer-links a:hover {
  color: #f1c40f;
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 20px 10px;
  }

  .footer-disclaimer {
    font-size: 0.8rem;
    text-align: justify;
  }

  .footer-links a {
    margin: 0 5px;
    font-size: 0.85rem;
  }
}


.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between buttons */
  z-index: 9999;
}

.fixed-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.fixed-buttons .call-btn {
  background-color: #3498db;
}

.fixed-buttons .call-btn:hover {
  background-color: #2980b9;
  transform: scale(1.1);
}

.fixed-buttons .whatsapp-btn {
  background-color: #25d366;
}

.fixed-buttons .whatsapp-btn:hover {
  background-color: #20b358;
  transform: scale(1.1);
}


/* designing */

.highlight-heading {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  color: #3b7394;

}



    /* Default Styles for Mobile */
    #propertySlider {
      max-width: 800px; /* Mobile ke liye fixed width */
      margin: auto; /* Center the slider */
  }

  .carousel-item img {
      height: 400px; /* Fixed height */
      object-fit: cover; /* Maintain aspect ratio */
  }

  /* Large Screens (Laptop/Desktop) ke liye Full Width */
  @media (min-width: 992px) {
      #propertySlider {
          max-width: 100%; /* Full width on large screens */
      }

      .carousel-item img {
          height: 600px; /* Thoda bada height */
      }
  }

  @media (max-width: 768px) {
    .highlight-heading {
      text-align: center !important;
      display: block !important;
      width: 100% !important;
    }
    p{
      text-align: center !important;

    }
  }

  @media (max-width: 768px) {
    .overview-section {
      text-align: center;
      padding: 40px 15px;
      margin-top: 20px;
      padding-top: 20px;
    }
    .feature-list li {
      font-size: 14px;
    }
    .btn {
      width: 100%;
    }
  }

  .amenity-card {
    background: white;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center Content */
    justify-content: center; /* Center Content */

  }
  .amenity-card:hover {
    transform: scale(1.05);
  }
  .amenity-card img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

  .amenity-card h5 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center;
  }
  
  /* Mobile Responsive */
  @media (max-width: 576px) {
    .amenity-card {
      padding: 15px;
      text-align: center;
    }
  
    .amenity-card h5 {
      font-size: 14px;
    }
  }
  
  /* Hide mobile fixed buttons by default */
   .mobile-fixed-buttons {
    display: none;
  }
  /* Only display on mobile devices */
  @media (max-width: 768px) {
    .mobile-fixed-buttons {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #fff;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
      z-index: 1000;
    }
    .mobile-fixed-buttons a {
      flex: 1;  /* Each button takes equal space */
      text-align: center;
      padding: 10px 0;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      display: block;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .mobile-fixed-buttons a.call {
      background-color: #16a085;
    }
    .mobile-fixed-buttons a.whatsapp {
      background-color: #25d366;
    }
    .mobile-fixed-buttons a.enquiry {
      background-color: #ff9800;
    }
    /* Hover effect for all buttons */
    .mobile-fixed-buttons a:hover {
      transform: scale(1.05);
    }
  }