/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 2rem 0;
}

/* Hero */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

/* Gradient Overlay at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f4f7fa 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
    pointer-events: none;
}

/* Text styling */
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Button styling */
.btn {
    padding: 0.75rem 1.5rem;
    background-color: #004080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #002b5c;
}

/* ✅ Responsive media query for mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* About, Services, Testimonials, CTA */
section {
    padding: 3rem 0;
    text-align: center;
}

.about ul {
    list-style: none;
    margin-top: 1rem;
}

.about ul li {
    padding: 0.5rem 0;
}

/* Services Section */
.services {
    background-color: #ffffff;
    padding: 3rem 1rem;
    text-align: center;
}

.services p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

/* Footer */
footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 1rem;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

/* Top Header Bar */
.top-header {
    background: #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    color: #1f2937;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.top-header .logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.header-left {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.header-right a {
    margin-left: 15px;
    color: #1e40af;
    text-decoration: none;
}

.header-right a:hover {
    text-decoration: underline;
}

/* About with Image */
.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-img img {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-text {
    flex: 1;
}

/* Google Map Section */
.map-section {
    background-color: #eef4ff;
    padding: 3rem 1rem;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

/* Hover animation globally */
body *:hover {
    filter: brightness(0.95);
    transform: scale(1.02);
    transition: all 0.2s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
    }

    .top-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .header-right a {
        margin-left: 0;
        display: block;
    }

    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-img img {
        width: 90%;
    }
}
/* Responsive Navbar */
.navbar {
  background-color: #004080;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.8rem 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar .logo {
  display: flex;
  align-items: center;
  color: #fff;
 font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.navbar .logo img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.navbar .nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #ffcc00;
}

.navbar .menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background-color: #004080;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 0;
  }

  .navbar .nav-links.active {
    display: flex;
  }

  .navbar .menu-toggle {
    display: block;
  }
}
.testimonials {
  background: #f1f5f9;
  padding: 3rem 1rem;
  text-align: center;
}

.testimonials h2 {
  color: #004080;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #004080;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
}
.why-choose {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.choose-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-5px);
}

.choose-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.choose-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffcc00;
}

.choose-box p {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.5;
}

/* Responsive Padding */
@media (max-width: 768px) {
  .why-choose {
    padding: 3rem 1rem;
  }

  .choose-box {
    padding: 1.5rem;
  }
}
/* Expert Popup */
.expert-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: white;
  padding: 2rem;
  max-width: 350px;
  width: 90%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeInUp 0.5s ease;
}

.popup-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #004080;
}

.popup-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.popup-btn {
  display: block;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.popup-btn.call {
  background: #004080;
  color: white;
}

.popup-btn.whatsapp {
  background: #25D366;
  color: white;
}

.popup-btn.text {
  background: #555;
  color: white;
}

.popup-btn:hover {
  opacity: 0.9;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.about {
  background: linear-gradient(to bottom right, #edf4ff, #e1f0ff);
  padding: 4rem 1.5rem;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
}

.about-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #004080;
}

.about-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }
}
.service-areas {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #f4f7fa, #e7f1ff);
  text-align: center;
}

.top-banner {
  background-color: #1000e0;
  color: white;
  padding: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

  /* Proper black border */
  border: 2px solid black;
}


.top-banner p {
  margin-top: 0.5rem;
  font-weight: normal;
  font-size: 0.95rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.area-box {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 6px solid #004080;
}

.area-box:hover {
  transform: translateY(-5px);
}

.area-box h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: #004080;
}

.area-box p {
  font-size: 0.95rem;
  color: #555;
}
.footer-compliance {
  background-color: #004080;
  color: white;
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
}

.footer-compliance h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #ffcc00;
}

.footer-compliance p, 
.footer-compliance a {
  color: #f0f8ff;
  line-height: 1.6;
  text-align: left;
  
}

.footer-compliance a:hover {
  text-decoration: underline;
}

.compliance-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.compliance-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #ffcc00;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.compliance-box h4 {
  color: #ffcc00;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .footer-compliance {
    font-size: 0.88rem;
  }
}
.logo {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .main-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.logo-text .sub-name {
  font-size: 0.75rem;
  font-weight: 400;
  color: #e0e0e0;
}
@media (max-width: 600px) {
  .logo-text .main-name {
    font-size: 0.9rem;
  }

  .logo-text .sub-name {
    font-size: 0.65rem;
  }
}
.valuation-section {
  background: #fff5f0;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

.valuation-card {
  background: white;
  border: 2px solid #ff5a1f;
  border-radius: 15px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.valuation-header img {
  width: 60px;
  margin-bottom: 1rem;
}

.valuation-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.valuation-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.badge {
  background: #1000e0;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.valuation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valuation-form input {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}

.two-inputs {
  display: flex;
  gap: 1rem;
}

.two-inputs input {
  flex: 1;
}

.valuation-form button {
  background-color: #1000e0;
  color: white;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.valuation-form button:hover {
  background-color: #e04a13;
}

@media (max-width: 600px) {
  .two-inputs {
    flex-direction: column;
    gap: 1rem;
  }
}

input, select, textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fdfdfd;
  transition: border-color 0.3s, background-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #004080;
  background-color: #f0f8ff;
  outline: none;
}

label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.btn {
  background-color: #004080;
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #002b5c;
  transform: scale(1.03);
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
  .form-group {
    flex: 1 1 100%;
  }

  .consultation-form {
    padding: 3rem 1rem;
  }

  .consultation-form .container {
    padding: 2rem 1rem;
    border-radius: 12px;
  }

  .consultation-form h2 {
    font-size: 1.5rem;
  }
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.1rem;
  color: #fff;
}

.hero-subtext {
  font-size: 0.95rem;
  color: #e0e0e0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
  }

  .hero-subtext {
    font-size: 0.9rem;
  }
}
.hero-content {
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* lighter semi-transparent black */
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* very light shadow */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-content {
    font-size: 1rem;
    padding: 1rem 1.2rem;
    margin: 1rem auto;
    width: 90%;
    box-sizing: border-box;
  }
}

/* Floating Call Button */
.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
  background-color: transparent; /* background हटाया */
  padding: 0;                     /* अगर padding से blue दिख रहा हो */
  box-shadow: none;  
}

.call-float img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.call-float:hover {
  transform: scale(1.1);
}

/* Popup Styling */
.expert-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9998; /* Less than .call-float */
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}

.popup-buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  background: #004080;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  color: #fff;
  text-align: center;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.hero-subtext {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.hero-features li {
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.btn {
  display: inline-block;
  background-color: #004080;
  color: white;
  padding: 0.7rem 1.2rem;
  margin: 0.3rem 0;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #002b5c;
}

.btn img {
  vertical-align: middle;
  margin-right: 8px;
}

/* 🔹 RESPONSIVE STYLES */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero-content {
    padding: 1.2rem 1rem;
    border-radius: 10px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h3 {
    font-size: 1rem;
  }

  .hero-subtext {
    font-size: 0.9rem;
  }

  .hero-features li {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem;
  }
}
.footer-logos {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-logos img {
  max-height: 32px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  display: inline-block;
}
.featured-homes {
  padding: 40px 20px;
  text-align: center;
}

.featured-homes h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  width: 280px;
  text-decoration: none;
  color: #000;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


