@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Open Sans', sans-serif; }

body { background-color: #fff; color: #333; }

/* --- Header & Navigation --- */
.main-header {
    height: 70px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0; z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

.logo img { height: 50px; }

.nav-menu { list-style: none; display: flex; align-items: center; gap: 25px; }
.nav-menu a { text-decoration: none; color: #444; font-weight: 500; font-size: 14px; }

/* Dropdown Logic */
.dropdown { position: relative; padding: 25px 0; }
.dropdown-content {
    position: absolute;
    top: 100%; left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    list-style: none;
    display: none;
    border-radius: 4px;
}
.dropdown-content li a { padding: 12px 20px; display: block; }
.dropdown-content li a:hover { background: #f8f9fa; color: #0056b3; }
.dropdown:hover .dropdown-content { display: block; }

.btn-job { border: 1px solid #ddd; padding: 8px 15px; border-radius: 4px; }

.header-right { display: flex; align-items: center; gap: 20px; }
.enquire-btn {
    background: #0056b3; color: white; border: none;
    padding: 10px 20px; border-radius: 5px; cursor: pointer; font-weight: 600;
}
@media (max-width: 768px) {
    .enquire-btn {
        padding: 6px 12px;      /* Compact for header */
        font-size: 12px;
        font-weight: 600;
        border-radius: 4px;
        white-space: nowrap;
    }
}

.header-icons { display: flex; align-items: center; gap: 15px; font-size: 22px; color: #555; }
.icon-badge { position: relative; }
.icon-badge span {
    position: absolute; top: -5px; right: -8px;
    background: #f44336; color: white; font-size: 10px;
    padding: 2px 5px; border-radius: 50%;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(to bottom, #d9e8f5 0%, #fff 100%);
    padding: 60px 20px;
    text-align: center;
}

.hero-title { font-size: 32px; font-weight: 800; margin-bottom: 40px; color: #1a1a1a; }

/* Category Cards */
.category-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cat-card {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    width: 240px;
    cursor: pointer;
    transition: 0.3s;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card img { width: 35px; height: 35px; }
.cat-text { font-size: 13px; text-align: left; line-height: 1.3; color: #666; }
.cat-text span { display: block; font-weight: 700; color: #000; font-size: 14px; }

/* Search Bar */
.main-search-card {
    background: white;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-inner { display: flex; align-items: center; gap: 20px; }

.city-selector {
    text-align: left;
    border-right: 1px solid #eee;
    padding-right: 30px;
    min-width: 150px;
}
.city-selector label { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; }
.city-val { font-size: 20px; font-weight: 700; cursor: pointer; }

.search-input-group { flex: 1; display: flex; align-items: center; gap: 10px; }
.search-icon { color: #888; font-size: 18px; }
.search-input-group input {
    border: none; width: 100%; font-size: 16px; outline: none; color: #333;
}

.main-search-btn {
    background: #0056b3; color: white; border: none;
    padding: 15px 40px; border-radius: 8px; font-size: 18px; font-weight: 700; cursor: pointer;
}

/* Locality Tags */
.locality-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.locality-tags span {
    background: #fff0e6; color: #333; padding: 8px 15px;
    border-radius: 5px; font-size: 13px; border: 1px solid #f9d9c3; cursor: pointer;
}
.locality-tags span i { color: #e67e22; margin-right: 5px; }

/* --- Mobile Menu --- */
.mobile-overlay {
    height: 100%; width: 0; position: fixed; z-index: 2000;
    top: 0; left: 0; background-color: rgba(255,255,255,0.98);
    overflow-x: hidden; transition: 0.5s; padding-top: 60px;
}
.mobile-links a { padding: 15px; text-decoration: none; font-size: 20px; color: #333; display: block; text-align: center; }
.close-btn { position: absolute; top: 20px; right: 45px; font-size: 60px; cursor: pointer; }
.menu-toggle { display: none; cursor: pointer; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .desktop-nav, .btn-job { display: none; }
    .menu-toggle { display: block; }
    .search-inner { flex-direction: column; gap: 15px; }
    .city-selector { border-right: none; padding-right: 0; width: 100%; border-bottom: 1px solid #eee; padding-bottom: 10px; }
    .main-search-btn { width: 100%; }
    .cat-card { width: 47%; }
}

/* 1. Hide Hamburger on Desktop, show on Mobile/Tab */
.menu-toggle {
    display: none; /* Hidden by default */
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 1024px) {
    .desktop-nav { display: none; } /* Hide normal menu on Tab/Mobile */
    .menu-toggle { display: block; } /* Show Hamburger */
}

/* 2. Mobile Dropdown Styles (Inside Hamburger) */
.mobile-overlay .mobile-dropdown-content {
    display: none; /* Hidden until clicked */
    background: #f9f9f9;
    padding-left: 20px;
    list-style: none;
}

.mobile-overlay .mobile-dropdown-content li a {
    font-size: 16px;
    padding: 10px;
    border-bottom: none;
}

.mobile-overlay .has-submenu.active .mobile-dropdown-content {
    display: block; /* Show when parent has 'active' class */
}

.sliding-text-wrapper {
    display: inline-flex;
    flex-direction: column;
    height: 45px; /* Adjust based on your font size */
    overflow: hidden;
    vertical-align: middle;
}

.city-slider {
    animation: slideUp 8s infinite ease-in-out;
}

.city-item {
    height: 45px;
    color: #0056b3;
    font-weight: 800;
}

@keyframes slideUp {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-45px); }
    50%, 70% { transform: translateY(-90px); }
    75%, 95% { transform: translateY(-135px); }
    100% { transform: translateY(-180px); }
}

@media (max-width: 768px) {
    /* 3. Small Banner Text */
    .hero-title {
        font-size: 22px !important;
        line-height: 1.3;
    }

    /* 4. Category Cards & Locality Tags Slider */
    .category-grid, .locality-tags {
        display: flex;
        flex-wrap: nowrap !important; /* Force items into one line */
        overflow-x: auto; /* Enable horizontal scroll */
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px 0 20px 0;
        justify-content: flex-start !important;
    }

    /* Hide scrollbar for a cleaner look */
    .category-grid::-webkit-scrollbar, 
    .locality-tags::-webkit-scrollbar {
        display: none;
    }

    .cat-card {
        flex: 0 0 220px; /* Force cards to have a fixed width in the slider */
    }

    .locality-tags span {
        white-space: nowrap; /* Prevent tag text from wrapping */
    }
}

/* Modified Animation CSS */
.sliding-text-wrapper {
    display: inline-block; /* Changed from inline-flex to block for better alignment */
    height: 40px; /* Adjust this height to match your font size exactly */
    overflow: hidden;
    vertical-align: middle; 
    position: relative;
    margin-left: 8px; /* Gap after "Premium Properties in" */
}

.city-slider {
    display: flex;
    flex-direction: column;
    animation: slideUp 10s infinite;
}

.city-item {
    height: 40px; /* MUST match the wrapper height */
    line-height: 40px; /* Centers text vertically */
    color: #0056b3;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}

/* Ensure Navi Mumbai stays level with the sliding text */
.static-city {
    vertical-align: middle;
    line-height: 40px;
}

/* Adjust the animation keyframes to match the 40px height */
@keyframes slideUp {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-40px); }
    50%, 70% { transform: translateY(-80px); }
    75%, 95% { transform: translateY(-120px); }
    100% { transform: translateY(-160px); }
}
/* Modified Desktop Dropdown Logic */

/* 1. Ensure the parent LI has no gap */
.dropdown {
    position: relative;
    padding: 25px 0; /* This creates the hover area */
    cursor: pointer;
}

/* 2. Style the dropdown box */
.dropdown-content {
    position: absolute;
    top: 100%; /* Sits exactly at the bottom of the header */
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #0056b3; /* HomeBazaar style blue line */
    
    /* Smooth Transition instead of instant display:block */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none; /* Prevents accidental hover when hidden */
}

/* 3. The "Area" Fix: Show when hovering the parent LI */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Allows clicking when visible */
}

/* 4. Ensure links inside are clickable */
.dropdown-content li a {
    padding: 12px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-content li a:hover {
    background: #f0f7ff;
    color: #0056b3;
}

/* Property Cards */
.properties { padding: 40px 40px; }

.section-title { margin-bottom: 40px; }

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card-img { position: relative; height: 200px; }

.card-img img { width: 100%; height: 100%; object-fit: cover; }

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

.card-info { padding: 20px; }

.card-info h3 { font-size: 20px; margin-bottom: 5px; }

.card-info p { color: #777; font-size: 14px; margin-bottom: 15px; }

.price { font-size: 18px; font-weight: 700; color: var(--primary-blue); }

.details { margin: 10px 0; font-size: 14px; color: #555; }

.view-btn {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: 1px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.view-btn:hover {
    background: var(--primary-blue);
    color: #0078d4;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .header-actions .btn-outline { display: none; }
    .search-box { flex-direction: column; }
    .city-select { width: 100%; }
}


/* --- Namespaced CTA Banner Styles --- */

/* The outer section handles the background and horizontal lines */
.hb-cta-section {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #dce4f5;
    border-bottom: 1px solid #dce4f5;
    padding: 10px 0;
    margin: 20px 0; /* Adds spacing between this and other sections */
}

/* The wrapper limits the width to match your header/hero (1200px) */
.hb-cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flexbox layout for the content */
.hb-cta-flex-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Image scaling */
.hb-cta-image-box img {
    height: 85px; /* Fixed height to match the screenshot */
    width: auto;
    display: block;
}

/* Text formatting */
.hb-cta-text-content p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.hb-cta-text-content strong {
    color: #000;
    font-weight: 600;
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .hb-cta-flex-group {
        flex-direction: column; /* Stacks image on top of text on mobile */
        text-align: center;
        gap: 10px;
    }

    .hb-cta-image-box img {
        height: 70px; /* Smaller image for mobile screens */
        margin: 0 auto;
    }

    .hb-cta-text-content p {
        font-size: 13px; /* Slightly smaller text for mobile */
        padding-bottom: 10px;
    }
}
/* ================= ABOUT PROJECTS SECTION ================= */

#about-projects-section {
background: linear-gradient(to top, #e5eff8 0%, #fff 20%);
  padding: 30px 10px;
}

.about-projects-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

/* Image Styling */
.about-projects-image img {
  width: 90%;
  margin-left: 20px;
  border-radius: 15px;
  object-fit: cover;
}


/* Content Styling */
.about-projects-content h2 {
  font-size: 1.5em;
  font-weight: 800;
  color: #333;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-projects-content h2 span {
  display: block;
  margin-top: 6px;
}

.about-projects-content p {
  font-size: 1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.about-projects-content strong {
  font-weight: 700;
  color: #000000e3;
}

.highlight-text {
  color: #0a47ff;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .about-projects-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-projects-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .about-projects-content p {
    text-align: justify;
  }
}

@media (max-width: 576px) {
  #about-projects-section {
    padding: 60px 15px;
  }

  .about-projects-content h2 {
    font-size: 24px;
  }

  .about-projects-content p {
    font-size: 15px;
  }
}
.navi-prop-header {
    text-align: center;       /* centers text horizontally */
    width: 100%;              /* full width */
    margin: 10px 0;           /* spacing top & bottom */
}

.navi-prop-header h2 {
    font-size: 1.5em;          /* adjust size */
    font-weight: 700;         /* bold */
    color: #0056b3;           /* optional color */
}

/* ================= CLUSTER SECTION ================= */

#cluster-section {
  padding: 40px 40px 30px;
  background: #ffffff;
}

.cluster-container {
  max-width: 1150px;
  margin: 0 auto;
}

/* Heading */
.cluster-heading {
  text-align: center;
  font-size: 1.5em;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0056b3;
  position: relative;
}

.cluster-underline {
  display: block;
  width: 50px;
  height: 3px;
  background: #0056b3;
  margin: 12px auto 20px;
}

/* Grid */
.cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* Card */
.cluster-card {
  position: relative;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.cluster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(50%);
}

/* Overlay */
.cluster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cluster-overlay span {
  color: #0056b3;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  background: #fff;
  backdrop-filter: blur(3px);
  transition: all 0.4s ease;
}

/* ================= HOVER EFFECT ================= */

.cluster-card:hover img {
  filter: brightness(90%);
  transform: scale(1.03);
}

.cluster-card:hover .cluster-overlay span {
  background: rgba(255, 255, 255, 0.75);
  color: #111;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .cluster-heading {
    font-size: 26px;
  }

  .cluster-card {
    height: 200px;
  }

  .cluster-overlay span {
    font-size: 18px;
  }
}

/* ================= Developer ================= */

.builder-section {
    text-align: center;
    padding: 20px 10px 30px 10px;
}

.builder-section h2 {
    font-size: 1.5em;
    font-weight: 650;
    color: #0056b3;
}

.carousel-wrapper {
    position: relative;
    max-width: 11500px;
    margin: auto;
    display: flex;
    align-items: center;
}

.carousel {
    display: flex;
    gap: 15px;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
}

.builder-card {
    min-width: 260px;
    height: 130px;
    background: #ffffff;
    border: 1px solid #20334d;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
}

.builder-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.arrow {
    background: none;
    border: none;
    font-size: 30px;
    color: #0056b3;
    cursor: pointer;
    padding: 10px;
}

/* ================= Customer review ================= */
.testimonials {
  padding-top: 40px;
  padding-bottom: 20px;
  background: #fff;
  font-family: 'Inter', sans-serif;
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.5em;
  font-weight: 700;
}

.section-header h2 span {
  color: #e85d04;
}

.section-header p {
  color: #666;
  font-size: 1em;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  flex: 1;
  position: relative;
}

.quote {
  font-size: 60px;
  color: #f36b21;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.profile h4 {
  margin: 0;
  font-size: 16px;
}

.stars {
  color: #0a58ca;
  letter-spacing: 2px;
}

.nav-btn {
  background: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
}

.nav-btn:hover {
  background: #f5f5f5;
}

/* ===== Testimonials slider behavior ===== */
.testimonial-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.testimonial-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px); /* 3 cards desktop */
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

/* Mobile – ONLY ONE CARD */
@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonial-wrapper {
  position: relative; /* Anchor arrows */
}

/* Keep arrows fixed on the sides */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Left & Right positions */
.nav-btn.left {
  left: -15px;
}

.nav-btn.right {
  right: -15px;
}

/* Mobile spacing fix */
@media (max-width: 640px) {
  .nav-btn.left {
    left: 5px;
  }

  .nav-btn.right {
    right: 5px;
  }
}

/* ================= Latest Blogs ================= */
.blog-section {
  padding-top: 20px;
  padding-bottom: 40px;
  background: #fff;
  font-family: 'Inter', sans-serif;
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-header h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0;
}

.blog-header p {
  color: #6c757d;
  margin-top: 6px;
}

.blog-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
}

.blog-nav button:hover {
  background: #f3f4f6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
}

.blog-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

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

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.blog-meta .author {
  color: #f97316;
  font-weight: 600;
}

.blog-meta .date {
  color: #9ca3af;
}

.blog-card h3 {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card p {
  color: #6b7280;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}


.blog-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.blog-grid::-webkit-scrollbar {
  display: none;
}

.blog-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Tablet */
@media (max-width: 1024px) {
  .blog-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .blog-card {
    flex: 0 0 100%;
  }
}

/* Footer */
.nm-footer {
  background: #f4f7ff;
  padding: 60px 0 30px;
  font-family: Arial, sans-serif;
}

.nm-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nm-footer-top h3 {
  color: #0b5ed7;
  margin-bottom: 24px;
}

.nm-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.nm-footer-links h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #111;
}

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

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

.nm-footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nm-footer-links a:hover {
  color: #0b5ed7;
}

.nm-footer hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.nm-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.nm-footer-about {
  max-width: 600px;
  font-size: 14px;
  color: #333;
}

.nm-social {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.nm-social a {
  width: 36px;
  height: 36px;
  background: #0b5ed7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.nm-footer-copy {
  font-size: 13px;
  color: #555;
  align-self: flex-end;
}

/* Responsive */
@media (max-width: 900px) {
  .nm-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .nm-footer-links {
    grid-template-columns: 1fr;
  }
}


/* Form Popup */
 /* Basic modal styles */ .modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center; z-index: 1000; } .modal { background: #fff; padding: 20px; border-radius: 8px; width: 360px; box-shadow: 0 6px 24px rgba(0,0,0,0.2); } .modal h2 { margin: 0 0 12px; font-size: 18px; } .modal label { display:block; margin:8px 0 4px; font-size: 13px; } .modal input, .modal textarea { width:100%; padding:8px; border:1px solid #ccc; border-radius:4px; box-sizing: border-box; } .modal .actions { margin-top:12px; display:flex; gap:8px; justify-content:flex-end; } .btn { padding:8px 12px; border-radius:4px; border:none; cursor:pointer; } .btn.primary { background:#0078d4; color:#fff; } .btn.ghost { background:#f3f3f3; } .show { display:flex; } .error { color:#b00020; font-size:13px; margin-top:6px; }



