/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif; /* Ensures a consistent font */
}

/* Navbar Styles */
.custom-navbar {
  background: linear-gradient(45deg, #1f4037, #99f2c8);
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.custom-navbar .nav-link {
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  color: #f2f2f2;
  transform: scale(1.05);
}

.custom-navbar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Search Button Styles */
.custom-btn {
  color: white;
  border-color: #28a745;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: #28a745;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
  color: white;
}

/* Search Input Field */
.form-control {
  border-radius: 20px;
  border: 2px solid #28a745;
  box-shadow: inset 0 0 10px rgba(40, 167, 69, 0.3);
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
}

/* Navbar Brand Logo */
.navbar-brand img {
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: rotate(360deg);
}

/* Navbar Background Shine */
.custom-navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s;
  opacity: 0;
}

.custom-navbar:hover::after {
  left: 150%;
  opacity: 1;
}
/* navbar end */


 /* carousel start */
/* General Carousel Styling */
.carousel-inner img {
  width: 100%;
  height: 80vh;
  object-fit: contain; /* Changed to 'contain' to avoid cutting images */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background-color: #09aa74;
}

.carousel {
  margin-top: 20px;
}

.carousel-indicators [data-bs-target] {
  background-color: #7c4dff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #ffd700;
  width: 12px;
  height: 12px;
}

/* Controls Styling */
.carousel-control-prev, 
.carousel-control-next {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
}

/* Media Queries for Mobile */
@media only screen and (max-width: 768px) {
  .carousel-inner img {
      height: 60vh; /* Slightly reduce height on tablets */
  }
}

@media only screen and (max-width: 480px) {
  .carousel-inner img {
      height: 50vh; /* Further reduce height on mobile phones */
  }
}
/* carsoule end */




/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-container {
  max-width: 1200px;
}

.button-container {
  text-align: center;
  margin: 30px auto;
}

/* Button Styles */
.custom-button {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  margin: 10px;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
}

.custom-button:hover {
  background: linear-gradient(135deg, #0056b3, #0072ff);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.6);
}

.custom-button:focus {
  outline: none;
}

@media (max-width: 768px) {
  .custom-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* Footer Styles */
.container-fluid.p-0 {
  width: 100%;
  padding: 0;
}

footer {
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
  transition: all 1.5s ease;
  opacity: 0;
}

footer:hover::before {
  left: 150%;
  opacity: 1;
}

footer h6 {
  font-size: 16px;
  font-weight: bold;
}

footer p,
footer a {
  font-size: 14px;
  color: #333;
}

footer a:hover {
  color: #7c4dff;
  text-decoration: none;
}

footer .fab {
  font-size: 20px;
  animation: blink 1.5s infinite;
}

footer .fab:hover {
  color: #7c4dff;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

footer .btn {
  animation: blink-button 1.5s infinite;
}

footer .btn:hover {
  color: #7c4dff;
}

@keyframes blink-button {
  0%, 100% {
    background-color: #007bff;
    color: white;
  }
  50% {
    background-color: #0056b3;
    color: #e0e0e0;
  }
}

footer .container {
  max-width: 100%;
  padding: 30px;
}

.footer-logo {
  max-width: 150px;
}

.blog-post {
  margin-bottom: 20px;
}

.blog-post img {
  max-width: 100%;
  height: auto;
}

.blog-post p {
  margin: 5px 0;
}



body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.hero-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.btn {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
}

.btn-primary {
  background-color: #007bff;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
  color: #fff;
}



/* Enhanced Styling for the Real Estate  google Form Section */
.form-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #007bff);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,123,255,0.2), transparent 70%);
  z-index: 0;
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.form-container .btn-custom {
  padding: 15px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #0056b3, #00bfff);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.form-container .btn-custom:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.form-container h2 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }

  .form-container {
    padding: 20px;
  }

  .form-container .btn-custom {
    font-size: 1.2rem;
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.4rem;
  }

  .form-container {
    padding: 15px;
  }

  .form-container .btn-custom {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* from close google */







/* body {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
} */
/* Container for the image cards */
.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Individual image card styles */
.image-card {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 320px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(135deg, #ff6f61, #3498db);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.image-card:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

/* Image styling */
.image-card img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: opacity 0.4s ease;
}

.image-card:hover img {
  opacity: 0.85;
}

/* Overlay effect */
.image-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: background 0.4s ease;
}

.image-card:hover .overlay {
  background: rgba(255, 255, 255, 0.3);
}

/* Shine effect */
.image-card .shine {
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 70%);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% {
    transform: translate(-150%, -150%) rotate(0deg);
  }
  50% {
    transform: translate(150%, 150%) rotate(180deg);
  }
  100% {
    transform: translate(-150%, -150%) rotate(360deg);
  }
}

/* Heading inside the image card */
.image-card-heading {
  margin: 10px 0;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.image-card-heading:hover {
  color: #ffeb3b;
  text-shadow: 0 4px 20px rgba(255, 235, 59, 0.8);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .image-container {
    gap: 15px;
    padding: 15px;
  }

  .image-card {
    max-width: 220px;
    height: 280px;
  }

  .image-card img {
    height: 70%;
  }

  .image-card-heading {
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  .image-container {
    gap: 10px;
    padding: 10px;
  }

  .image-card {
    max-width: 180px;
    height: 240px;
  }

  .image-card img {
    height: 65%;
  }

  .image-card-heading {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 480px) {
  .image-card {
    max-width: 150px;
    height: 200px;
  }

  .image-card img {
    height: 60%;
  }

  .image-card-heading {
    font-size: 0.8em;
  }
}







