html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    background:#EBDDBF;
    /* background-color: white; */
   
  
}
h1, h2,h3,h4 {
  font-family: 'Italiana', serif;
  color: #C43A2A;
  letter-spacing:1px;
}

/* Cursor Dot (Center) */





#whitep {
  color: #FFFFF0;
  font-family: 'Inter', sans-serif;
}
.white{
  color: white;
  margin: none !important;
}

.hide{
  display: none;
}

body, p {
  font-family: 'Inter', sans-serif;
  color:  #3A3A3A;
}

.hero-content h1,
.hero-content h6 {
  margin: 0;
  max-width: 75%;
}

body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" opacity="0.02"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="400" height="400" filter="url(%23noise)"/></svg>');
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: overlay;
}



/* ===== LUXURY NAVBAR CSS ===== */
/* Reset and Base Styles */
.navbar {
  /* background-color: rgba(255, 255, 255, 0.288); */
  border-radius: 12px;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 999;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.6rem 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  
  background: rgba(255, 255, 255, 0.15); /* Frosted white */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* Safari */

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle depth */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Inner border */
  outline: 1px solid rgba(255, 255, 255, 0.1); /* Outer glow effect */
}


navglow
.navbar-glow {
  position: fixed;
  pointer-events: none;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.2s ease;
  opacity: 0;
}


.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
}

/* Enhanced Logo Styles */
.navbar-logo {
  text-decoration: none;

}

.navbar-logo img {
  height: 45px;
  max-height: 75px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-primary {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
}

.logo-subtitle {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-top: 2px;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-item {
  position: relative;
  font-weight: 200px;

}

.navbar-links {
  font-family: 'Inter', sans-serif;
  font-weight:900;
  text-decoration: none;
  color: #ffffff;
  padding: 0.5rem 0.8rem;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.navbar-links:hover {
  color: rgb(0, 0, 0);
}

.navbar-links::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

.navbar-links:hover::after {
  width: 50%;
}

/* Enhanced Contact Dropdown */
.contact-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.contact-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.contact-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 110, 255, 0.15); /* Soft blue tint */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;

  /* Frosted glass effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.2);
}


.contact-dropdown:hover .contact-dropdown-menu,
.contact-dropdown:focus-within .contact-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.contact-option {
  display: flex;
  padding: 0.6rem 1.2rem;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.contact-option:hover {
  background: #f5f5f5;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
 
  color: white;
  flex-direction: column;
  justify-content: space-around;
  height: 24px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;

}

.bar {
  height: 2px;
  width: 100%;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Scrolled State */
.navbar.scrolled {
  /* background-color: rgba(43, 43, 43, 0.93);  */
  top: 0 !important;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  padding: 0.6rem 0;
  backdrop-filter: blur(10px);
  /* -webkit-backdrop-filter: blur(10px);  */
  padding-left: 10px;
  padding-right: 20px;


  background:rgba(106, 27, 26, 0.6) ; /* Frosted white */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* Safari */

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle depth */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Inner border */
  outline: 1px solid rgba(255, 255, 255, 0.1); /* Outer glow effect */
  
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 1rem;
    top: 10px;
    /* margin-right: 4px; */
    width: 75%;
    justify-content: space-between; /* Add this */
  }

  .navbar-toggle .bar {
    background-color: #fdfdfd; /* Black for mobile */
    
  }
  
  .navbar-container {
    position: relative; /* Add this */
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
    min-width: 200px;
    flex-direction: column;
  
    /* Stronger visible background */
    background: rgb(92, 92, 92); /* More visible blue tint */
  
    /* Strong blur for glass effect */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    margin: 10px 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  
  

  .navbar-menu.active {
    max-height: 500px;
    padding: 1rem 0;
  }
  
  .navbar-item {
    width: 100%;
    text-align: center;
  }
  
  .navbar-links {
    color: white;
    padding: 1rem 1.5rem;
    width: 100%;
    display: block;
  }
  
  .navbar-links::after {
    background-color: white;
  }
  
  .navbar-toggle {
    display: flex;
  }
  
  .contact-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-menu.active .contact-dropdown-menu {
    max-height: 150px;
    padding: 0.5rem 0;
  }
  
  .contact-option {
    padding: 0.8rem 2rem;
    color: white;
    justify-content: center;
  }
  
  .contact-option:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .logo-primary {
    font-size: 1.3rem;
  }
  
  .logo-subtitle {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }
}

.bttn {
  background: rgba(255, 255, 255, 0.15);  /* soft frosted white */
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    inset 0 0 0.5px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Hover: from light to dark */
.bttn:hover {
  background: rgba(0, 0, 0, 0.2);  /* darker glass */
  color: white;
  box-shadow:
    inset 0 0 1px rgba(255, 255, 255, 0.4),
    0 6px 18px rgba(0, 0, 0, 0.15);
}


/* Toggle Animation */
.navbar-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Jiggle Animation */
@keyframes jiggle {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.navbar.jiggle {
  animation: jiggle 0.3s ease;
}


.fullscreen-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: -webkit-fill-available; /* Fix for mobile viewport height */
  overflow: hidden;
}

.hero-category {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-category.active {
  opacity: 1;
  z-index: 2;
}

.hero-images {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  /* Mobile-specific optimizations */
  object-position: center center;
}

.hero-images img.active {
  opacity: 1;
}

.hero-images::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Adjust opacity (0.4 = 40%) */
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers both ways */
  width: 100%;
  max-width: 90%;
  padding: 0 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  /* about
  margin-bottom: 30px;  */
  font-family: 'Italiana', serif;
  color: white !important; 
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  letter-spacing: 3px;
}



.hero-content .hero-btn {
  background-color: white;
  /* color:#163039; */
  /* padding: 15px 40px; */
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  font-family: 'Italiana', serif;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
  z-index: 4;
  /* margin-top: 20px; */
  
}

.hero-btn {
  margin-bottom: 20px;
}

.hero-category.active .hero-content h1,
.hero-category.active .hero-content .hero-btn {
  opacity: 1;
  transform: translateY(0);
}

.category-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 5;

  padding: 25px;
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.15); /* Frosted white */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* Safari */

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle depth */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Inner border */
  outline: 1px solid rgba(255, 255, 255, 0.1); /* Outer glow effect */
}

.nav-dot:hover {
  animation: pulseGlow 1.5s infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  transform: scale(1.15);
  opacity: 1;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 768px) {
  .category-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
  
    padding: 20px;
    border-radius: 100px;
  
    background: rgba(255, 255, 255, 0.15); /* Frosted white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* Safari */
  
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Inner border */
    outline: 1px solid rgba(255, 255, 255, 0.1); /* Outer glow effect */
  }
}


.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(181, 181, 181);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index:5;
}

.nav-dot.active {
  background: rgb(255, 255, 255);
  transform: scale(1.3);
  z-index:5;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .fullscreen-hero {
    height: 80vh; /* Slightly smaller on mobile */
  }
  
  .hero-images img {
    /* Optionally load different mobile-optimized images */
    /* content: url('mobile-image.jpg'); */
  }
  
  .hero-content {
    bottom: 40%; /* Adjust position for mobile */
    max-width: 95%;
  }
  
  .hero-content h1 {
    font-size: 8rem; /* Smaller text */
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .hero-content .hero-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  .category-nav {
    bottom: 20px;
  }
  
  .nav-dot {
    width: 10px;
    height: 10px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .fullscreen-hero {
    height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content .hero-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Orientation-specific adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .fullscreen-hero {
    height: 100vh;
  }
  
  .hero-content {
    bottom: 15%;
  }
}





.hero2 {
  margin: 20px;
  height: 20%;
  background-color: #ffffff;
}

.hero1-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}

.anim-video {
  width: 50%;
}

.hero-text {
  width: 40%;
  /* color:#1a2a4a; */
  padding: 20px;
  border-radius: 20px;
  margin: 30px;
}
.hero-text h1 {
  font-size: 50px;
}
@media only screen and (max-width: 700px) {
  .hero1-content {
    flex-direction: column;
    align-items: center;
  }
  .anim-video {
    width: 100%;
  }
  .hero-text {
    width: 100%;
    margin-top: 20px;
  }
  .hero-content h1 {
      font-size: 30px;
      text-align: center;
      align-items: center;
      align-content: center;
    }
}



/* Gallery  */



.realty-journey__section {
  padding: 60px 20px;
  border-radius: 10px;
}

.realty-journey__title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 80px;
  font-weight: 700;
  /* color: #1a2a4a;  */
}

.realty-journey__block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.realty-journey__block.visible {
  opacity: 1;
  transform: translateY(0);
}

.realty-journey__block.reverse {
  flex-direction: row-reverse;
}

.realty-journey__image {
  flex: 1 1 50%;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.realty-journey__image:hover {
  transform: scale(1.03);
}

.realty-journey__content {
  flex: 1 1 40%;
  max-width: 500px;
  padding: 5px;
}

.realty-journey__content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  /* color: #1a2a4a;  */
}

.realty-journey__content p {
  font-size: 1.1rem;
  /* color: #1a2a4a;  */
  line-height: 1.6;
}

.realty-gallery__modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.realty-gallery__modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.realty-gallery__close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  /* color: white; */
  cursor: pointer;
}

@media (max-width: 768px) {
  .realty-journey__image {
    height: 300px;
  }

  .realty-journey__content h3 {
    font-size: 1.5rem;
  }
}




.premium-real-estate-footer {
  font-family: 'Montserrat', sans-serif;
  /* color: #1a2a4a; */
  background: #5b5b5b;
  margin-top: 10%;
}

.footer-top {
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-brand {
  flex: 0 0 25%;
}

.footer_logo{
  width: 200px;
  height: auto;
}


.footer-logo {
  height: 50px;
  margin-bottom: 15px;
  border-radius : 8px;
}

.footer-tagline {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 25px;
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--saffron);
  color: #fff;
}

.footer-links {
  flex: 0 0 45%;
  display: flex;
  justify-content: space-between;
}

.links-column {
  flex: 0 0 30%;
}

.links-heading {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.links-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--saffron);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding: 3%;
  border-radius:8px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight:bolder;
  background-color: rgb(255, 255, 255);
  color: rgb(125, 107, 5);
}

.footer-contact {
  flex: 0 0 25%;
}

.contact-heading {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.contact-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--saffron);
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 300;
  color: #ffffff;
}

.contact-info i {
  margin-right: 10px;
  color: var(--saffron);
  width: 20px;
  text-align: center;
}

.contact-info a {
  margin-right: 10px;
  color: white;
  width: 20px;
  text-align: center;
  text-decoration-line: none;
  margin-right: 10px;
}

.footer-cta {
  background: var(--saffron);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.footer-cta:hover {
  background: #1a2a4a;
  color: #fff;
}

.footer-bottom {
  padding: 25px 0;
  background: rgba(234, 234, 234, 0.05);
  color: white ;
}

.copyright {
  flex: 0 0 60%;
  font-size: 12px;
  color: rgb(255, 255, 255)!important;
}

.legal-links {
  flex: 0 0 40%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: white !important;
}

.legal-links a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--saffron);
}

@media (max-width: 992px) {
  .footer-brand, .footer-links, .footer-contact {
      flex: 0 0 100%;
      margin-bottom: 30px;
  }

  .footer-links {
      justify-content: space-around;
  }

  .copyright, .legal-links {
      flex: 0 0 100%;
      text-align: center;
      justify-content: center;
  }

  .legal-links {
      margin-top: 15px;
  }
}



.clickable {
  transition: transform 0.2s ease;
}

.clickable:active {
  transform: scale(0.96);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
}
.realestate-premium__card {
  transition: all 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.realestate-premium__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Subtle pulse animation for call-to-action elements */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.hero-btn, .button {
  animation: pulse 3s infinite;
}



/* About section */

.about-hero{
  background: #1b2335
}

.about-hero-content{
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-items: baseline;
  text-align: right;
  /* color: #000; */
}
.about-hero-content h1{
  /* color: rgb(255, 255, 255); */
  font-size: 50px;
}
.about-hero-links{
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 0;
  color: white;
}
.about-hero-links p{
  color: white;
  text-decoration: none;
}

.about-content {
  margin: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; /* This centers the text inside child elements */
  max-width: 80%;
  margin-left: auto;   /* These three lines center the block itself */
  margin-right: auto;
  
}
/* .about-content h1{

}
.about-content p{
  
} */

.about-content .vision,
.about-content .mission {
  margin-bottom: 30px;
  padding: 0 20px;
  background: #755229;
  color: white;
  border-radius: 15px;
  size: 50%;
}

.main-cont {
  margin: 15px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; /* This centers the text inside child elements */
  max-width: 80%;
  margin-left: auto;   /* These three lines center the block itself */
  margin-right: auto;
}

.all{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  align-self: center;
}

.Multi_card{
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 80%;         /* Try lowering from 100% */
  margin: auto;   
}

.page_wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.social {
  text-align: center;
  /* color: white; */
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
}

.reel_container {
  height: 100vh; /* full screen height */
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.reel_card {
  position: relative;
  scroll-snap-align: start;
  height: 100vh; /* each reel takes full screen */
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reels {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 0;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  /* color: white; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}

.user_info {
  font-weight: bold;
  font-size: 1rem;
}

.caption {
  font-size: 0.85rem;
  text-align: left;
}

.actions {
  position: absolute;
  right: 10px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {

  .page_wrapper:nth-child(2),
  .page_wrapper:nth-child(3) {
    display: none;
  }

  .Multi_card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  
  .social {
    width: 100%;
    border-radius: 0;
  }

  .actions {
    font-size: 1.2rem;
    bottom: 80px;
  }

  .caption {
    font-size: 0.75rem;
  }
}

/* brandd */

.property-cards {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 30px;
  margin-top: 30px;
  
}

.property-cards h1 {
  
  text-align: center;
}

.property-cards p {
  /* color:#0d1b2a ; */
  text-align: center;
  margin: 0 10px 20px;
}
.property-cardsp {
  /* color: #f5e9d0 !important; */
  text-align: center;
  margin: 0 10px 20px;
}

.realestate-premium__scroll-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem;

}

.realestate-premium__card-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 25px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  /* margin: 0 -1rem; */
  /* padding: 0 1rem; */
  border-radius: 20px;

}

/* Hide scrollbar */
.realestate-premium__card-track::-webkit-scrollbar {
  display: none;
  padding: 20px;
}
.realestate-premium__card-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.realestate-premium__card {
  scroll-snap-align: start;
  background:#ffffff;;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.realestate-premium__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.realestate-premium__image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.realestate-premium__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
}

.realestate-premium__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.realestate-premium__image-wrapper:hover .realestate-premium__image {
  opacity: 0;
}

.realestate-premium__image-wrapper:hover .realestate-premium__video {
  opacity: 1;
}

.realestate-premium__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 3;
}

.realestate-premium__card-content {
 
  margin-top: 20px;
 
}

.realestate-premium__subtitle {
  margin-top: 80px;
  font-weight: 800;
  color: #0d1b2a ;
  font-size: large;
}

.realestate-premium__description {
  font-size: 0.9rem;
  /* color:#0d1b2a ; */
}

.card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}

.card-btnn {
  border: none;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.574); /* Glass effect */
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Light Reflection Swipe */
.card-btnn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.card-btnn:hover::before {
  top: 0;
  left: 0;
  opacity: 1;
  animation: swipeLight 1.2s ease forwards;
}

/* Hover background color stays dark & luxurious */
.card-btnn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #000;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

@keyframes swipeLight {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}


.scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s;
  border: none;
}

.scroll-nav:hover {
  opacity: 1;
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
}

.scroll-nav i {
  font-size: 20px;
  color: #1a2a4a;
}

@media (max-width: 768px) {
  .scroll-nav {
    width: 30px;
    height: 30px;
  }
  .realestate-premium__card {
    min-width: 280px;
  }
}



/* locationservice card */

/* Reset and base styles */
.mozars-property-container * {
  box-sizing: border-box;
}

.mozars-property-container {
  /* background-color: #fff3e0; */
  overflow-x: hidden;
}

/* Main container */
.mozars-main-container {
  max-width: 100%;
  padding: 40px 20px;
  position: relative;
}

/* Section header */
.mozars-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.mozars-section-header h1 {
  font-size: 2.5rem;
  /* color: #1a2a4a; */
  margin-bottom: 15px;
}

.mozars-section-header p {
  /* color: #666; */
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards container */
.mozars-cards-container {
  position: relative;
  padding: 20px 0;
  display: flex;
  justify-content: center; 
  
}

/* Navigation arrows */
.mozars-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
  border: none;
  font-size: 1.5rem;
  /* color: #1a2a4a; */
  transition: all 0.3s ease;
}

.mozars-nav-arrow:hover {
  background: #fff3e0;
  color: white;
}

.mozars-arrow-left {
  left: -25px;
}

.mozars-arrow-right {
  right: -25px;
}

/* Cards track */
.mozars-cards-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mozars-cards-track::-webkit-scrollbar {
  display: none;
}

/* Individual card */
.mozars-location-card {
  min-width: 350px;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.mozars-location-card:hover {
  transform: translateY(-10px);
}

.mozars-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.mozars-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 30px;
  /* color: white; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mozars-card-overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.mozars-card-overlay p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.mozars-explore-btn {
  background: rgba(255, 255, 255, 0.12); /* subtle milky white */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 0 0.5px rgba(255, 255, 255, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Light reflection swipe */
.mozars-explore-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.mozars-explore-btn:hover::before {
  top: 0;
  left: 0;
  opacity: 1;
  animation: swipeLight 1.2s ease forwards;
}

.mozars-explore-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  box-shadow:
    inset 0 0 1px rgba(255, 255, 255, 0.5),
    0 8px 28px rgba(0, 0, 0, 0.15);
}

@keyframes swipeLight {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}


/* Modal overlay */
.mozars-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* Darker semi-transparent background */
  backdrop-filter: blur(5px); /* Reduced blur amount for better performance */
  -webkit-backdrop-filter: blur(5px); /* For Safari support */
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 25%; 
}


.mozars-modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Modal content */
.mozars-modal-content {
  background: rgb(255, 255, 255);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Modal header */
.mozars-modal-header {
  padding: 5px;
  background: #fff3e0;
  color: white;
  display: flex;
  padding-left: 5px;
  justify-content: space-between;
  align-items: center;
}

.mozars-modal-header h2 {
  font-size: 1.8rem;
}

.mozars-close-modal {
  background: none;
  border: none;
  /* color: white; */
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* Modal body - details cards */
.mozars-modal-body {
  padding: 20px;
  overflow-y: auto;
}

.mozars-details-container {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.mozars-detail-card {
  min-width: 300px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mozars-detail-card h3 {
  color: #1a2a4a;
  font-size: 1.3rem;
 
}

.mozars-detail-card p {
  color: #555;
  max-height: 10px;
  line-height: 1.5;
}

.mozars-detail-card ul {
  padding-left: 20px;
  color: #555;
  margin-bottom: 15px;
}

.mozars-detail-card li {
  margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mozars-location-card {
    min-width: 300px;
    height: 450px;
  }
  
  .mozars-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .mozars-arrow-left {
    left: -20px;
  }
  
  .mozars-arrow-right {
    right: -20px;
  }
  
  .mozars-modal-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mozars-location-card {
    min-width: 280px;
    height: 400px;
  }
  
  .mozars-card-overlay {
    padding: 20px;
  }
  
  .mozars-card-overlay h2 {
    font-size: 1.8rem;
  }

  .mozars-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* Darker semi-transparent background */
  backdrop-filter: blur(5px); /* Reduced blur amount for better performance */
  -webkit-backdrop-filter: blur(5px); /* For Safari support */
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0; 
}
}


/* testiments */
.testimonials {
  padding: 3rem 1rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.testimonials p.subtitle {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-cards {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.testimonial-cards::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text:before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  left: -5px;
  top: -15px;
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.client-role {
  font-size: 0.85rem;
  color: #666;
}

.stars {
  color: #FFC107;
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

/* Simple verification badge */
.verified {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  color: #1a8a4a;
  margin-left: 0.5rem;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .testimonial-card {
      min-width: 85vw;
  }
}


/* faq */

.faqpro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; /* Vertically center the image with the FAQ */
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.image_cont {
  flex: 1;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.image_cont img {
  width: 70%;
  height: auto;
  display: block;
  border-radius: 12px;

}




.faq-section {
  flex: 1;
  min-width: 40%;
  max-width: 90%;
  padding: 20px 16px;
  text-align: left;
  border-radius: 12px;

  /* Frosted Glass Effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  outline: 1px solid rgba(255, 255, 255, 0.1);
}


.faq-heading {
  font-family: 'Italiana', serif;
  font-size: 1.8rem;
  color: #2E2E3A;
  text-align: center;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: #7A7A7A;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-inline: auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-container details {
  background: rgba(170, 170, 170, 0.241);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.faq-container summary {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2E2E3A;
  font-family: 'Outfit', sans-serif;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

.faq-container summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  top: 0;
  color: #2E2E3A;
  transition: transform 0.3s ease;
}

.faq-container details[open] summary::after {
  content: "–";
  color: #FFD7AE;
}

.faq-container p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #4A4A4A;
  margin-top: 15px;
  line-height: 1.7;
}


@media (max-width: 600px) {


.faqpro {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center; /* Vertically center the image with the FAQ */
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}


.image_cont img {
  display: none;

}

.faq-section {
  flex: 1;
  min-width: 100%;
  max-width: 100%;
  padding: 20px 16px;
  text-align: left;
  border-radius: 12px;
  /* Frosted Glass Effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

}



/* contact_form */

/* === Professional Contact Section === */

.contactpro {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

/* === Image Container === */
.contact_cont {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_cont img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* === Contact Form Section === */
.contact-section {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 40px 30px;
  width: 100%;
  max-width: 480px;
  /* margin: 40px auto; */
  text-align: center;
  font-family: 'Outfit', sans-serif;
  color: #2E2E3A;
}

/* === Headings === */
.contact-heading {
  font-family: 'Italiana', serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
  line-height: 1.5;
}

/* === Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 96%;
  padding-right: 20px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Outfit', sans-serif;
  border-radius: 3px;
  border: none;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  outline: none;
  width: 100%;
  transition: box-shadow 0.3s ease;
  min-height: 10px;
  padding: 10px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #b4daff;
  
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* === Button === */
/* .contact-form button {
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  border: none;
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
  margin: 20px auto 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: #272727;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
} */



.contact-form button {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f3f3f3);
  border: none;
  color: #003d16;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 260px;
  margin: 20px auto 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px; /* Start fully outside */
  width: 0;
  height: 0;
  background: #25D366;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: width 0.6s ease, height 0.6s ease, right 0.6s ease;
  z-index: -1;
}

.contact-form button:hover::before {
  width: 800px;
  height: 800px;
  right: -400px; /* Keeps expansion centered while starting outside */
}

.contact-form button:hover {
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}




/* === Mobile Responsive === */
@media (max-width: 768px) {
  .contactpro {
    flex-direction: column;
    padding: 20px;
  }

  .contact_cont img {
    max-width: 80%;
    display: none;
  }

  .contact-section {
    width: 100%;
    /* padding: 30px 20px;
    margin: 30px 0; */
  }

  .contact-heading {
    font-size: 1.6rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
  }
  .contact-form button {
    padding: 14px;
    max-width: 100%;
  }

  .contact-section {
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 40px 30px;
    width: 80%;
    max-width: 480px;
    margin: 40px auto;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    color: #2E2E3A;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 90%;
    padding-right: 20px;
  }
  
}

/* cookies */

.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.069); /* Frosted white */
  padding: 20px 25px;
  border-radius: 14px;
  backdrop-filter: blur(10px); /* Creates the frosted glass effect */
  -webkit-backdrop-filter: blur(20px); /* For Safari */
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.3); /* Inner glow for depth */
  z-index: 9999;
  max-width: 350px;
  font-family: 'Outfit', sans-serif;
  color: #232323;
  animation: fadeInUp 0.6s ease forwards;
  display: none; /* Hidden by default */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
}

.cookie-popup.show {
  display: block;
}

.cookie-content p {
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.4;
  
}

.cookie-content button {
  background: linear-gradient(to right, #D9C1FF, #FFD7AE);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  color: #2E2E3A;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Liquid glass effect for the button */
.cookie-content button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  transform: rotate(30deg);
  transition: all 0.3s ease;
}

.cookie-content button:hover {
  transform: scale(1.03);
  box-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.cookie-content button:hover::before {
  left: 100%;
  top: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* footer */

.realestate-dubai-footer {
  background-color: #464646;
  padding: 60px 30px 20px;
  font-family: 'Outfit', sans-serif;
  color: #333;
  border-top: 1px solid #e2e2e2;
}

.realestate-dubai-footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.realestate-dubai-footer__column {
  flex: 1 1 280px;
  min-width: 250px;
}

.realestate-dubai-footer__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.realestate-dubai-footer__desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.realestate-dubai-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.realestate-dubai-footer__links li {
  margin-bottom: 10px;
}

.realestate-dubai-footer__links a {
  color: #444;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.3s ease;
}

.realestate-dubai-footer__links a:hover {
  color: #000;
}

.realestate-dubai-footer__contact {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #555;
}

.realestate-dubai-footer__whatsapp {
  display: inline-block;
  margin-top: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.realestate-dubai-footer__whatsapp:hover {
  background-color: #1ebd59;
}

.realestate-dubai-footer__bottom {
  border-top: 1px solid #e1e1e1;
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 768px) {
  .realestate-dubai-footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.test{
  color: #151412;
}

/* goback */

#goTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  overflow: hidden;
}

#goTopBtn.show {
  opacity: 1;
  transform: translateY(0);
}

#goTopBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: -1;
}

/* Snowflake animation */
.snowflake {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(70px) rotate(360deg);
    opacity: 0;
  }
}

/* Arrow icon */
.arrow {
  padding: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .arrow img{
    max-width: 30px;
    padding:5px;
  }
}
