/*
Theme Name: Naya Heights
Theme URI: https://nayaheights.com/
Author: douxtech.com
Author URI: https://douxtech.com/
Description: Naya Heights Real Estate ke liye Custom WordPress Theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: real-estate, custom-theme, bootstrap
Text Domain: nayaheights
*/

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    padding-top: 70px;
    color: #212529;
}

/* Headings - Stylish Serif */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;background: #000;
  color: #fff;
  transition: color 0.3s ease-in-out;
  z-index: 1;
}

/* Before pseudo-element = sliding background */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;background: #b8860b; /* darker shade for hover */
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

/* On hover - slide in from left */
.btn:hover::before {
  left: 0;
}

/* Optional - subtle color inversion */
.btn:hover {
  color: #fff;
}
.btn-primary {
    /* Simple Blue Gradient */
    background: linear-gradient(135deg, #48CAE4, #0077B6) !important; /* Diagonal gradient for a modern look */
    
    /* Text color */
    color: #fff !important;
    
    /* No border for a cleaner, flatter look */
    border: none !important;
    
    /* Optional: A very subtle shadow to lift it slightly */
    box-shadow: 0 2px 5px rgba(0, 91, 138, 0.2);
    
    /* Font style */
    font-weight: bold;
    
    /* Smooth transition for effects */
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    /* On hover, make the button slightly brighter */
    filter: brightness(1.1);
    
    /* Make the shadow a bit more pronounced */
    box-shadow: 0 4px 8px rgba(0, 91, 138, 0.25);
	
}

.btn-primary:active {
    /* On click, make the button slightly darker */
    filter: brightness(0.95);
    
    /* Reset the shadow */
    box-shadow: none;
}
/* ===== Navbar Section ===== */
.navbar {
    background-color:rgba(0, 180, 216, 0.8) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: none;
}

.navbar-brand img {
    height: 70px;
	width: auto;
}

.navbar .nav-link {
    color: #212529 !important;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease-in-out;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-item.show .nav-link {
    color: #FDC770 !important;
}

.header-buttons .btn {
    margin-left: 0.5rem;
    border-radius: 2rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    min-width:124px;
}
/* --- Custom Navbar --- */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  padding: 0.1rem 0;
}

/* Optional Transparent Navbar on Top (Turns White When Scrolled) */
.custom-navbar.transparent {
  background: transparent;
  box-shadow: none;
}
.scrolled .custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* --- Logo --- */
.navbar-brand img {
  height: 70px;
  transition: all 0.3s ease;
	width: auto;
	padding: 2px 0;
}
.scrolled .navbar-brand img {
  height: 70px;
}

/* --- Navbar Links --- */
.navbar-nav .nav-link {
  color: #222 !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.75rem 1.2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

/* Underline hover effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;background: #b8860b;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after {
  width: 60%;
}
.dropdown-toggle::after
{
	display: none;
}
/* --- Dropdown Chevron Animation --- */
.navbar-nav .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-item.dropdown:hover .nav-link i {
  transform: rotate(180deg);
  color: #FDC770;
}

/* --- Dropdown Menu --- */
.navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
  transition: all 0.25s ease;
  min-width: 200px;
}

/* --- Dropdown on Hover (Desktop Only) --- */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* --- Dropdown Links --- */
.navbar .dropdown-menu .dropdown-item {
  color: #222;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item i {
  color: #b8860b !important;
  font-size: 0.9rem;
  margin-right: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(253, 199, 112, 0.15);
  color: #000;
}

/* --- Button Styling (Header Buttons) --- */
.header-buttons .btn {
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  transition: all 0.3s ease;
}

.header-buttons .btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

.header-buttons .btn-warning {
  background: #FDC770;
  border: none;
  color: #000;
}
.header-buttons .btn-warning:hover {
  background: #e3b85e;
}


.btn-outline-light {
    border-color: #212529;
    color: #212529;
}

.btn-outline-light:hover {background: #b8860b;
    color: #fff;
    border-color: #FDC770;
}

.whatsapp-icon {
    color: #25D366;
}


   /* --- Hero Banner Section (Improved) --- */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay text styling */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  animation: fadeIn 1.8s ease forwards;
  animation-delay: 2s;
  font-family: "Poppins", sans-serif;
}

/* Main metallic title */
.hero-title {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 15px;

  /* Deep metallic gold base */
  background: linear-gradient(
    135deg,
    #3e2f00 0%,
    #b8860b 20%,
    #d4af37 40%,
    #ffd700 60%,
    #c5a100 80%,
    #3e2f00 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Gold outline */
  -webkit-text-stroke: 1.5px rgba(255, 215, 0, 0.8);

  /* Smooth light animation */
  animation: goldFadeIn 2s ease forwards, goldFlow 8s ease-in-out infinite alternate;
  animation-delay: 2s;
  opacity: 0;
}

/* Light reflection (continuous smooth glide) */
.hero-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 90%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shineSweepSmooth 6s ease-in-out infinite alternate;
}

/* Keyframes */
@keyframes goldFadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient color flow */
@keyframes goldFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Soft two-way shine glide */
@keyframes shineSweepSmooth {
  0% {
    left: -60%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 60%;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.7);
  }
}

.hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: #FDC770;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 10px;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
}

/* --- Parallax Gallery --- */
.parallax-gallery .pageBlock {
  height: 80vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

/* Left Overlay */
.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}
/* Left Overlay */
.overlay-content2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}

/* Large Elegant Main Heading */
.main-heading-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: rgba(0, 180, 216, 1) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  position: relative;
}

/* Stylish underline accent */
.main-heading-big::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 90px;
  height: 3px;background: #b8860b;
}

/* Smaller secondary heading */
.main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

/* Optional: subtle fade-in animation */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-heading-big,
.main-heading,
.sub-heading {
  animation: fadeSlideUp 1s ease forwards;
}

/* --- Buttons --- */
.overlay-content .btn {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border: none;
  width: auto;
  min-width: 200px;
  transition: color 0.3s ease-in-out;
  z-index: 1;
}

/* --- Primary (Blue) --- */
.overlay-content .btn-primary {
  background-color: #00B4D8 !important;
  color: #fff;
}
.overlay-content .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #009cc1;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.overlay-content .btn-primary:hover::before {
  left: 0;
}

/* --- Secondary (Yellow) --- */
.overlay-content .btn-outline-primary {background: #b8860b;
  color: #000;
}
.overlay-content .btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #e8b95f;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.overlay-content .btn-outline-primary:hover::before {
  left: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .overlay-content {
    width: 100%;
    height: auto;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
  }
  .parallax-gallery .pageBlock {
    height: auto;
    background-attachment: scroll;
  }
	  .overlay-content2 {
    width: 100%;
    height: auto;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
  }
  .parallax-gallery2 .pageBlock2 {
    height: auto;
    background-attachment: scroll;
  }
}

 .featured-slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.8s ease-in-out;
}

.featured-project-card {
  flex: 0 0 calc(33.333% - 15px); /* 3 visible per row */
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.featured-project-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 20px;
}

.featured-project-card:hover .overlay {
  opacity: 1;
}

.featured-project-card .overlay h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.featured-project-card .overlay .btn {
  border:none;
  color: #FDC770;
  background: transparent;
  transition: all 0.3s ease;
}

.featured-project-card .overlay .btn:hover {
  background: #FDC770;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-project-card {
    flex: 0 0 100%;
    height: 250px;
  }
	.overlay-content3
	{
		width: 100%;
	}
	.parallax-gallery2 .overlay-content2
	{
		width: 100% !important;
		    animation: none !important;
	}
}
.featured-project-card .overlay h3 {
  font-family: "Playfair Display", serif; /* Elegant font style */
  font-size: 1.8rem;                      /* Bigger size */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6); /* Gives depth */
  margin-bottom: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate heading when hover */
.featured-project-card:hover .overlay h3 {
  transform: translateY(-5px);
  opacity: 1;
}

        /* --- Why Invest Section --- */
        .why-invest-section {
            padding: 4rem 0;
        }
        .why-invest-section .icon-box {
            text-align: center;
        }
        .why-invest-section .icon-box img {
            max-width: 60px;
            margin-bottom: 1rem;
        }
        .why-invest-section .icon-box h3 {
            font-size: 1rem;
            font-weight: 500;
        }
        .why-invest-section .separator {
             border-top: 1px solid #dee2e6;
        }
        #why-danube-invest .right-side {
            background-color: #e9ecef;
        }

        /* --- Founder Section --- */
        .founder-section {
            background: url('https://danubeproperties.com/wp-content/uploads/2024/02/rizwan-.png') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 8rem 0;
            text-align: center;
        }
        .founder-section h2 {
            font-size: 1.5rem;
            font-weight: 300;
        }
        .founder-section .founder-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }
        .founder-section .play-button {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .founder-section .play-button img {
            height: 24px;
            margin-right: 0.5rem;
        }

        /* --- Blog Section --- */
        .blog-card {
            border: none;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .blog-card-img {
            height: 200px;
            object-fit: cover;
        }
        .blog-card .card-body {
            background-color: #ffffff;
        }
        .blog-card .card-date {
            font-size: 0.9rem;
            color: #6c757d;
        }
         .blog-card .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            text-decoration: none;
         }
         .blog-card .card-title:hover {
            color: #0d6efd;
         }
/* --- Parallax Gallery with Left Overlay --- */
/* --- Parallax Gallery with Full-Height Left Overlay --- */
.parallax-gallery .pageBlock {
  position: relative;
  height: 80vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Full height white transparent overlay */
.parallax-gallery .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 0;
  z-index: 2;
  animation: fadeInLeft 1.2s ease;
}

/* Headings & Text */
.parallax-gallery .main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.parallax-gallery .sub-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Buttons */
.parallax-gallery .buttons .btn {
  margin-right: 0.5rem;
  border-radius: 2rem;
  font-weight: 500;
  padding: 0.5rem 1.3rem;
  transition: all 0.3s ease-in-out;
}

.parallax-gallery .btn-primary {background: #b8860b;
  border-color: #FDC770;
	color: #000;
}

.parallax-gallery .btn-primary:hover {background: #b8860b;
  border-color: #FDC770;
	color: #fff;
}

.parallax-gallery .btn-outline-primary {
  color: #000;
  border-color: #FDC770;
}

.parallax-gallery .btn-outline-primary:hover {background: #b8860b;
  color: #fff;
}

/* Animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* --- Parallax Gallery with Full-Height Left Overlay --- */
.parallax-gallery2 .pageBlock2 {
  position: relative;
  height: 80vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Full height white transparent overlay */
.parallax-gallery2 .overlay-content3,
.parallax-gallery2 .overlay-content2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 0;
  z-index: 2;
  animation: fadeInLeft 1.2s ease;
}


/* Headings & Text */
.parallax-gallery2 .main-heading2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.parallax-gallery2 .sub-heading2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}
/* Full height white transparent overlay */
.parallax-gallery2 .overlay-content2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 0;
  z-index: 2;
  animation: fadeInLeft 1.2s ease;
}
.overlay-content .d-flex {
  gap: 0.75rem !important;
  justify-content: flex-start !important; /* change to center if needed */
  flex-wrap: wrap;
}

.overlay-content .btn {
  font-size: 0.8rem !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 0px;
  width: 180px !important; /* ✅ fixed width for uniform size */
  text-align: center;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .parallax-gallery .overlay-content {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .parallax-gallery .overlay-content {
    width: 100%;
    height: auto;
    bottom: 0;
    top: auto;
	  border-radius: 0;
    background: rgba(255, 255, 255, 0.65);
  }
  .parallax-gallery .main-heading {
    font-size: 1.6rem;
  }
  .parallax-gallery .sub-heading {
    font-size: 1rem;
  }
}
.why-nayaheights-section {
  background: #0b0c10;
  color: #f1f1f1;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

/* Headings */
.why-nayaheights-heading h2 {
  color: #FDC770;
  font-weight: 400;
  letter-spacing: 2px;
}


.why-nayaheights-border {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #FDC770, #00B4D8);
  margin: 15px auto 0;
  border-radius: 10px;
  animation: nayaGlow 3s infinite alternate;
}

/* Boxes */
.why-nayaheights-box {
  background: #14161a;
  border-radius: 15px;
  padding: 30px 20px;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #FDC770, #00B4D8) 1;
  transition: all 0.4s ease;
  height: 100%;
}

.why-nayaheights-box img {
  height: 60px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.why-nayaheights-box h3 {
  color: #FDC770;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-nayaheights-box p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Hover */
.why-nayaheights-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.25);
  border-color: #00B4D8;
}

.why-nayaheights-box:hover img {
  transform: scale(1.1);
}

/* Border Animation */
@keyframes nayaGlow {
  0% { box-shadow: 0 0 10px #FDC770; }
  100% { box-shadow: 0 0 20px #00B4D8; }
}

/* Responsive */
@media (max-width: 767px) {
  .why-nayaheights-heading h1 {
    font-size: 1.8rem;
  }
  .why-nayaheights-box {
    padding: 20px;
  }
}
/* --- BLOG SECTION --- */
.naya-blogs-section {
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

/* Titles */
.blog-subtitle {
  color: #00B4D8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-title:hover {
  color: #00B4D8; /* your theme blue */
}
/* Blog Card */
.naya-blog-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-radius: 0; /* Removed round corners */
}

.naya-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Image */
.naya-blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.naya-blog-card:hover .naya-blog-img {
  transform: scale(1.05);
}

/* Body */
.naya-blog-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-date {
  color: #00B4D8;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-title:hover {
  color: #00B4D8;
}

/* Read More Button */
.blog-btn {
  color: #FDC770;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  color: #00B4D8;
}

/* Button */
.btn-theme {
  background: linear-gradient(90deg, #00B4D8, #FDC770);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  background: linear-gradient(90deg, #FDC770, #00B4D8);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .blog-main-title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .naya-blog-img {
    height: 180px;
  }
}

.naya-footer {
  background: #00B4D8; /* Blue Background */
  color: #0b0c10; /* Dark Text */
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Gradient Line */
.naya-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FDC770, #fff);
}

/* Logo */
.footer-logo img {
  height: 55px;
  filter: brightness(1);
	width: auto;
}

/* About */
.footer-about {
  font-size: 0.9rem;
  color: #0b0c10;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.85;
}

/* Social Icons */
.footer-social a {
  color: #0b0c10;
  font-size: 1.1rem;
  margin-right: 12px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: #FDC770;
  transform: translateY(-3px);
}

/* Headings */
.footer-heading {
  color: #0b0c10;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.5px;
}
.footer-heading::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #FDC770;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 5px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #0b0c10;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #FDC770;
  opacity: 1;
  padding-left: 5px;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}
.footer-contact li {
  color: #0b0c10;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-contact i {
  color: #FDC770;
  margin-right: 10px;
}

.footer-btn {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  border: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
	text-decoration: none;
}

.footer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #FDC770;
  transition: all 0.4s ease;
  z-index: -1;
}

.footer-btn:hover::before {
  left: 0;
}

.footer-btn:hover {
  color: #222;
}

/* Bottom Bar */
.footer-bottom {
  background: #000;
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  color: #FDC770;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* 📱 Responsive */
@media (max-width: 991px) {
  .naya-footer .row {
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-btn {
    display: block;
    margin: 0 auto;
  }
}
/* ===== PARALLAX PAGE HEADER ===== */
    .pages-header {
      position: relative;
      height: 40vh;
      background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1920&q=80")
        center/cover no-repeat fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
		background-color: #000;
    }

    .pages-header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .pages-header-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    /* Metallic Title */
    .pages-header-title {
      font-family: "Poppins", sans-serif;
      font-size: 5rem;
      font-weight: 900;
      text-transform: uppercase;
      background: linear-gradient(
        135deg,
        #3e2f00 0%,
        #b8860b 20%,
        #d4af37 40%,
        #ffd700 60%,
        #c5a100 80%,
        #3e2f00 100%
      );
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke: 1.5px rgba(255, 215, 0, 0.8);
      opacity: 0;
      animation: goldFadeIn 2s ease forwards, goldFlow 8s ease-in-out infinite alternate;
      animation-delay: 0.5s;
      position: relative;
    }

    .pages-header-title::after {
      content: "";
      position: absolute;
      top: 0;
      left: -60%;
      width: 90%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-25deg);
      animation: shineSweepSmooth 6s ease-in-out infinite alternate;
    }

    .pages-header-subtitle {
      font-size: 1.2rem;
      color: #fdd87a;
      letter-spacing: 4px;
      margin-top: 15px;
		    padding-left: 20px;
    padding-right: 20px;
    }

    @keyframes goldFadeIn {
      from {
        opacity: 0;
        transform: translateY(0);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes goldFlow {
      0% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 100% 50%;
      }
    }

    @keyframes shineSweepSmooth {
      0% {
        left: -60%;
      }
      50% {
        left: 0%;
      }
      100% {
        left: 60%;
      }
    }

    @media (max-width: 768px) {
      .pages-header-title {
        font-size: 2.5rem;
      }
    }

    /* ===== BLOG SECTION ===== */
    .naya-blogs-section {
      background: #fafafa;
    }

    .naya-blog-card {
      background: #fff;
      border-radius: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .naya-blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .naya-blog-img {
      height: 200px;
      background-size: cover;
      background-position: center;
    }

    .naya-blog-body {
      padding: 20px;
    }

    .blog-date {
      color: #888;
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    .blog-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-btn {
      color: #b8860b;
      font-weight: 500;
      text-decoration: none;
    }

    .blog-btn:hover {
      color: #d4af37;
      text-decoration: underline;
    }

    /* ===== PAGINATION ===== */
    .pagination {
      justify-content: center;
      margin-top: 40px;
    }

    .pagination .page-link {
      color: #b8860b;
      border: 1px solid #b8860b;
    }

    .pagination .page-link:hover {
      background: #b8860b;
      color: #fff;
    }

    .pagination .active > .page-link {
      background: #b8860b;
      border-color: #b8860b;
      color: #fff;
    }
.text-gold {
    /* Gold Gradient for the metallic effect */
    background: linear-gradient(145deg, #d4af37, #ffd700, #d4af37, #b8860b, #c09000);
    
    /* Clip the background to the text */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Make the text color transparent to show the gradient */
    -webkit-text-fill-color: transparent;

    /* Optional: Add a subtle shadow for a 3D effect */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
/* Custom Gold Button Style */
.btn-gold {
    /* Gold Gradient Background */
    background: linear-gradient(145deg, #d4af37, #ffd700, #d4af37, #b8860b, #c09000);
    
    /* Text Color - Dark for contrast */
    color: #2c1e00; 
    
    /* Border */
    border: 1px solid #a3791b;
    
    /* Font style */
    font-weight: bold;
    
    /* Remove default shadow and add our own */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    
    /* Smooth transition for hover effect */
    transition: all 0.3s ease;
}

/* Hover effect for the gold button */
.btn-gold:hover {
    /* Make the gradient slightly brighter on hover */
    background: linear-gradient(145deg, #e0c25e, #fff078, #e0c25e, #d4af37, #dcb22b);
    
    /* Keep the text and border color */
    color: #2c1e00;
    border-color: #a3791b;
    
    /* Add a bigger shadow and lift the button up */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-theme {
  background: #FDC770;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 25px;
  transition: 0.3s;
}
.btn-theme:hover {
  background: #e8b853;
  color: #fff;
}
.value-box
{
	    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: linear-gradient(45deg, rgb(253, 199, 112), rgb(0, 180, 216)) 1 / 1 / 0 stretch;
    transition: 0.4s;
}
/*---------------------------------------------Contact-------------------------*/
.contact-section {
  position: relative;
  background: #fff;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Golden background strip on left */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background: #b8860b;; /* golden yellow tone */
  z-index: 0;
}

/* Hide golden strip on mobile */
@media (max-width: 768px) {
  .contact-section::before {
    display: none;
  }
	.contact-section
	{
		padding: 20px;
	}
}

.contact-container {
  position: relative;
  z-index: 1; /* ensure content stays above background */
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left side form */
.contact-form-area {
  flex: 1;
  min-width: 300px;
}

.contact-form-area h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-area p {
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 1rem;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FDC770;
}

.contact-form button {
  position: relative;
  overflow: hidden;
     background: rgb(184, 134, 11);
  color: #fff;
  border: none;
  padding: 12px 40px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.4s ease;
  margin-top: 10px;
  z-index: 1;
}

/* Sliding golden overlay */
.contact-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-form button:hover::before {
  left: 0;
}

.contact-form button:hover {
  color: #fff;
}


/* Right side info */
.contact-info {
  flex: 0 0 350px;
  background: #111;
  color: #fff;
  padding: 40px;
  position: relative;
  border-radius: 8px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.contact-info li i {
  color: #FDC770;
  font-size: 1.2rem;
}

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

.social-icons a {
  color: #FDC770;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    margin-top: 20px;
  }
}
/*================================Team===============================*/
 .team-awesome-section {
            padding: 80px 0;
            text-align: center;
        }

        .team-awesome-section .section-title {
            font-weight: 600;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #333;
        }

        /* This wrapper is key for the yellow bar positioning */
        .team-row-wrapper {
            position: relative;
        }

        /* The yellow background bar */
        .yellow-bar {
            position: absolute;
            top: 15%; /* Adjust this value to move the bar up or down */
            left: 0;
            width: 100%;
            height: 51%; /* Adjust this for the thickness of the bar */
            background-color: rgb(184, 134, 11); /* Yellow color from image */
            z-index: 1;
        }

        .team-member-card {
            position: relative;
            z-index: 2; /* Ensures cards are on top of the yellow bar */
            margin-bottom: 30px;
        }

        .team-member-card .team-img {
            max-width: 180px; /* Controls the size of the image */
            margin: 0 auto;
            border-radius: 10%;
            overflow: hidden;
           
        }

        .team-member-card img {
            width: 100%;
            filter: grayscale(100%);
            transition: all 0.3s ease-in-out;
        }

        .team-member-card:hover img {
            filter: grayscale(0%);
 
        }

        .team-info {
            margin-top: 25px;
        }

        .team-info h5 {
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            color: #222;
        }

        .team-info p {
            font-size: 0.8rem;
            font-weight: 500;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        /* The small divider line */
        .divider {
            width: 30px;
            height: 2px;
            background-color: #ffd60a;
            margin: 0 auto 15px auto;
        }

        .team-social a {
            color: #000;
            margin: 0 8px;
            font-size: 1rem;
            transition: color 0.3s ease;
			text-decoration: none;
        }

        .team-social a:hover {
            color: rgb(184, 134, 11);
        }
/* --- Projects Section Header (CLASS NAME CHANGED HERE) --- */
        .top-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 30px;
            gap: 20px;
        }

        .header-left .see-all {
            color: #888;
            font-size: 14px;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .header-left h2 {
            font-size: 36px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }

        .header-right p {
            max-width: 450px;
            color: #555;
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        /* --- Filter Buttons --- */
        .project-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .project-filters button {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid #ddd;
            background-color: #f5f5f5;
            color: #555;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .project-filters button:hover {
            background-color: #e0e0e0;
        }

        .project-filters button.active {
            background-color: #F59E0B; /* Orange color */
            color: #fff;
            border-color: #F59E0B;
        }
        
        /* --- Projects Grid --- */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* --- Project Card --- */
        .project-card {
            background-color: #fff;
              border: 2px solid transparent;
    border-image: linear-gradient(45deg, #FDC770, #00B4D8) 1;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .project-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 10px 0;
        }
        
        .card-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin: 0 0 20px 0;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        .card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #888;
            font-size: 13px;
        }
        
        .card-meta div {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .card-meta i {
            color: #F59E0B;
        }
        
        .card-content .view-more {
            color: #F59E0B;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .header-left h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .top-section {
                flex-direction: column;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
			.navbar-brand img
			{
				height:70px;
				width:auto;
			}
        }
/* --- Prefixed Classes --- */

        .se-main-content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .se-page-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
        }

        /* --- Filter Section --- */
        .se-filter-section {
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .se-filter-group {
            flex: 1;
            min-width: 180px;
        }

        .se-filter-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 14px;
            color: #555;
        }

        .se-filter-group input,
        .se-filter-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
        }
        
        .se-filter-button {
            background-color: #F59E0B; /* Gold/Orange */
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-end; /* Aligns button to the bottom */
            height: 48px; /* Match input height */
        }
        
        .se-filter-button:hover {
            background-color: #d98c09;
        }
        
        /* --- Property Listing --- */
        .se-property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .se-property-card {
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .se-property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .se-property-image {
            position: relative;
        }
        
        .se-property-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .se-property-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
        }

        .se-property-content {
            padding: 20px;
        }

        .se-property-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0 0 10px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .se-property-location {
            color: #777;
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .se-property-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #F59E0B;
            margin-bottom: 15px;
        }

        .se-property-specs {
            display: flex;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
            color: #555;
            font-size: 14px;
        }

        .se-property-specs span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .se-property-specs i {
            color: #F59E0B;
        }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .se-filter-section {
                flex-direction: column;
                align-items: stretch;
            }
            .se-filter-button {
                width: 100%;
            }
            .se-page-title {
                font-size: 2rem;
            }
			.header-buttons
			{
				display:block !important;
				text-align:center;
			}
			.gtranslate_wrapper
			{
				margin:10px auto 0;
			}
        }
/* Two Column Full Width Section */
.two-column-full-width-section {
    overflow: hidden; /* Ensure no horizontal scroll from content */
}

.text-box-dark {
    background-color: #1a1a1a; /* Dark background color */
    color: #fff;
}

.text-box-dark h2 {
    font-family: 'Playfair Display', serif; /* Use an elegant font */
    font-weight: 700;
    font-size: 2.5rem;
}

.text-box-dark p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

.text-box-dark p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.image-box {
    /* Image handling is mostly done by Bootstrap classes: img-fluid, w-100, h-100, object-fit-cover */
}

/* Ensure equal height on larger screens */
@media (min-width: 992px) { /* Adjust breakpoint as needed, lg is typical */
    .two-column-full-width-section .row {
        display: flex;
    }
    .two-column-full-width-section .col-lg-6 {
        display: flex; /* Ensures inner div fills height */
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
    .text-box-dark {
        padding: 40px !important; /* Adjust padding for smaller screens */
        text-align: center; /* Center text on smaller screens */
    }
    .text-box-dark .btn {
        align-self: center !important; /* Center button on smaller screens */
    }
    .text-box-dark h2 {
        font-size: 2rem;
    }
    .text-box-dark p.lead {
        font-size: 1rem;
    }
}
/* Parallax Contact Section */
.naya-contact-section {
    background-image: url('images/img1.jpg'); /* Apni image ka path yahan dein */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Magic property for parallax effect */
}

.naya-contact-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    z-index: 1;
}

/* Transparent Info Boxes */
.info-box {
    text-align: center;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border */
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.info-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.info-box .text-gold {
    color: #FDC770 !important; /* Gold color for icons */
}
.info-box h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.info-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Transparent Contact Form */
.contact-form-card {
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle transparent background */
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-form-card h2 {
    color: #fff !important;
}
.contact-form-card .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 15px;
}
.contact-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.contact-form-card .form-control:focus {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: #FDC770;
    box-shadow: 0 0 0 0.25rem rgba(253, 199, 112, 0.25);
}

/* Outline Button for the form */
.contact-form-card .btn-outline-light {
    font-weight: bold;
    border-width: 2px;
    padding: 10px;
    transition: all 0.3s ease;
	background: #fff;
}
.contact-form-card .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}
.contact-form-card .form-control
{
	background: rgba(0,0,0,0.3);
}
.pd-80
{
	padding: 80px !important;
}
.wpcf7-response-output
{
	color: #fff !important; 
	
}
@media (max-width: 1400px) and (min-width: 995px) {
 .navbar-brand img {
    height: 70px;
}
	.contact-top-btn
	{
		display: none;
	}
  

}
