/* 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: #000000;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 2rem 0;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
  margin-bottom: 0;
padding-bottom: 0;

}

/* 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-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:hover {
  background-color: #003366; /* Optional darker shade on hover */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transform: none !important; /* ✅ stop accidental zoom */
}
.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 h2 {
  color: #fff;
  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 {
  position: relative;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 🔥 Dark semi-transparent overlay */
  z-index: -1;
}
.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 {
  background-image: url('img/pexels-binyaminmellish-106399.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 4rem 5%;
  z-index: 1;
  color: #fff; /* Ensure text is visible on any background */
}

/* Optional: Semi-transparent dark overlay (no blur, no brightness) */
.service-areas::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark transparent overlay */
  z-index: -1;
}


/* Top Blue Box */
.top-banner {
  background-color: #004080;
  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);
  border: 2px solid black;
}

.top-banner p {
  margin-top: 0.5rem;
  font-weight: normal;
  font-size: 0.95rem;
}

/* Container to hold all three columns side by side */
.area-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Each column */
.area-column {
  flex: 1;
  min-width: 250px;
}
/* Each column */
.area-column1 {
  flex: 1;
  min-width: 250px;
}
/* Section headings (Villages, Towns, Cities) */
.area-column h3 {
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #004080;
}

/* Individual boxes */
.area-box {
  background: white;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 6px solid #004080;
  margin-bottom: 15px;
}

.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;
}

/* Responsive for smaller devices */
@media (max-width: 768px) {
  .area-grid {
    flex-direction: column;
    align-items: center;
  }

  .area-column {
    width: 100%;
    max-width: 400px;
    
  }
  
  .area-column1 {
    width: 100%;
    max-width: 400px;
    
  }
}

.footer-compliance {
  background-color: #004080;
  color: white;
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
  width: 100vw; /* force full viewport width */
  margin-left: calc(-50vw + 50%); /* center it */
  box-sizing: border-box;
}

.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: #004080;
  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: #004080;
  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;
  }
}
.consultation-form {
  background: linear-gradient(to bottom right, #1976D2, #eef3fa);
  padding: 4rem 1rem;
}

.consultation-form .container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.consultation-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #004080;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.full-width {
  flex: 1 1 100%;
}

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: 2.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.7rem;
  }

  .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;
}

.bronx-seo-content {
  background: linear-gradient(to bottom, #3a7cd8, #1976D2);
  padding: 50px 30px;
  border-top: 4px solid #004080;
  border-radius: 10px;
  max-width: 1100px;
  margin: 60px auto;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  line-height: 1.7;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.bronx-seo-content h2 {
  color: #ffffff;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 30px;
}

.bronx-seo-content h3 {
  color: #ffe600;
  margin-top: 30px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.bronx-seo-content p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.bronx-seo-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.bronx-seo-content ul li {
  margin-bottom: 10px;
  list-style-type: "•";
}

.bronx-seo-content .btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  background-color: #ffffff;
  color: #004080;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.bronx-seo-content .btn:hover {
  background-color: #ffe600;
  color: #000;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .bronx-seo-content {
    padding: 30px 20px;
  }

  .bronx-seo-content h2 {
    font-size: 1.6rem;
  }

  .bronx-seo-content h3 {
    font-size: 1.2rem;
  }

  .bronx-seo-content .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
.consultation-form {
  background: #ffffff00;
  padding: 3rem 5%;
  margin-top: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.consultation-form h2 {
  font-size: 1.8rem;
  color: #001f3f;
  text-align: center;
  margin-bottom: 0.5rem;
}

.consultation-form p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.form-lead-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group,
.form-group-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group-row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group-row input {
  flex: 1;
  min-width: 200px;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.submit-btn {
  background-color: #0074D9;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #005fa3;
}

.disclaimer {
  font-size: 0.85rem;
  color: #666;
  margin-top: -0.5rem;
}
.form-group label a {
  color: #0074D9;
  text-decoration: underline;
}

.form-group input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: #0074D9;
}
form:hover,
form:focus-within {
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.featured-homes {
  background-image: url('img/ai-generative-exterior-of-modern-luxury-house-with-garden-and-beautiful-sky-photo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; /* 👈 shows upper view */
  background-attachment: scroll;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
  
  margin: 0;
}

.valuation-section {
  background-image: url('img/ai-generative-exterior-of-modern-luxury-house-with-garden-and-beautiful-sky-photo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom; /* 👈 shows bottom view */
  background-attachment: scroll;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Overlay blur only if needed */
.featured-homes::before,
.valuation-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: inherit; /* 👈 use same image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: inherit; /* 👈 follow main background position */
  filter: blur(1px) brightness(0.6); /* 👈 light darken only */
  z-index: -1;
}


.card-title {
  color: rgb(0, 0, 0);
  font-weight: bold;
}
.bronx-seo-content {
  background-image: url('img/bronx-real-estate.jpg'); /* Replace with your real image path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: scroll; /* Or 'fixed' for parallax */
  position: relative;
  padding: 40px 20px;
  line-height: 1.8;
  z-index: 1;
  color: #fff; /* Ensure text is readable */
}

/* Optional: dark overlay for text clarity */
.bronx-seo-content::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4); /* subtle dark overlay */
  z-index: -1;
}
.bronx-seo-wrapper {
  background-image: url('img/real-estate-with-infinity-pool-kl2wvk2zp66lfpsf.jpg'); /* Use your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 4rem 0;
  z-index: 1;
}

.bronx-seo-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Optional dark overlay */
  z-index: -1;
}

.bronx-seo-content {
  max-width: 900px;
  margin: 0 auto;
 background: rgba(255, 255, 255, 0.589); 
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  line-height: 1.8;
  color: #ffffff;
}

.bronx-seo-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.bronx-seo-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #ffcc00;
}

.bronx-seo-content ul {
  margin-left: 1.5rem;
  padding-left: 0;
  list-style: disc;
}

.bronx-cta-buttons {
  text-align: center;
  margin-top: 2rem;
}

.bronx-cta-buttons .btn {
  background: #0074D9;
  color: #fff;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.bronx-cta-buttons .btn:hover {
  background: #005fa3;
}
.testimonials {
  background-image: url('img/real-estate-beach-house-ssros561b191qnwe.jpg'); /* Replace with your actual image */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 4rem 5%;
  z-index: 1;
  color: white; /* Ensure readability */
}

/* Optional dark overlay for clarity */
.testimonials::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('img/real-estate-beach-house-ssros561b191qnwe.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6); /* Or blur(1px) brightness(0.5) */
  z-index: -1;
}
.map-section {
  background-image: url('img/real-estate-in-the-city-tgggg08ebp2tszws.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  padding: 4rem 5%;
  z-index: 1;
}

/* Optional: subtle overlay for readability */
.map-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('img/real-estate-in-the-city-tgggg08ebp2tszws.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  filter: brightness(0.75); /* Soft darkening effect */
  z-index: -1;
}
/* Make the logo row full width without HTML change */
div[style*="background-color: #004080;"] {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
}

/* Make footer full width */
footer {
  background-color: #004080;
  color: #f0f8ff;
  text-align: center;
  padding: 15px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  font-size: 0.95rem;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
