/*
Theme Name: New Projects Bangalore - Custom
Theme URI:  https://webdev24x7.com
Author:     Rajat Kumar
Author URI: https://webdev24x7.com
Description: Custom theme converted from static HTML (New Projects in Bangalore)
Version:    1.0
License:    GNU General Public License v2 or later
Text Domain: newprojectsbangalore
*/
body, html {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
}
p, span, a, li, ul, ol, button, input, textarea, select, label, h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
}

#custom-bg{
    min-height: 480px;
    background-size: cover;
}
/* ---------- Header / nav final CSS (paste into style.css) ---------- */

/* base reset for nav lists */
.navbar .navbar-nav,
.navbar .navbar-nav ul,
.navbar .navbar-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* container positioning so we can center the menu */
.navbar .container {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 18px;
  padding-right: 18px;
  gap: 12px;
}

/* logo on left */
.navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  z-index: 6;
}
.navbar .navbar-brand img {
  height: 56px;  /* tweak as needed */
  width: auto;
  display: block;
}

/* toggler/right area stays right */
.togglerright {
  margin-left: auto;
  z-index: 7;
  display: flex;
  align-items: center;
}

/* ===== center top-level nav =====
   We'll absolutely center the menu in the navbar container so logo left + action right works.
*/
.navbar .navbar-nav {
  display: flex;
  gap: 15px;                 /* spacing between items */
  align-items: center;
  white-space: nowrap;       /* prevent wrapping */
  padding: 0;
  margin: auto 0 auto auto;
  z-index: 5;
}

/* top-level link styles */
.navbar .navbar-nav .nav-link {
  color: #0b5ed7;            /* link color - change if needed */
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 6px 6px;
  display: inline-block;
  line-height: 1;
}

/* remove underline and use hover color */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: #0a58ca;
  text-decoration: none;
}

/* caret AFTER text for parents (safe even if FontAwesome missing)
   Uses FA when available, else falls back to CSS triangle via border.
*/
.navbar .navbar-nav li.menu-item-has-children > a::after {
  font-family: "FontAwesome";
  content: "\f0d7"; /* caret-down FA4 */
  margin-left: 8px;
  font-size: 12px;
  vertical-align: middle;
  color: #111;
}

/* fallback if FontAwesome not available: show small triangle */
@font-face { font-family: 'fa-fallback-dummy'; src: local(''); font-display: block; }
.navbar .navbar-nav li.menu-item-has-children > a[style*="font-family:"]::after { content: ""; }

/* submenu wrapper (desktop) */
.navbar .navbar-nav .sub-menu {
  position: absolute;
  top: calc(100% + 0px);      /* places dropdown under the parent */
  left: 50%;
  transform: translateX(-50%); /* center dropdown under parent */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 10px 8px;
  display: none;
  z-index: 9999;
}

/* submenu items style & remove bullets */
.navbar .navbar-nav .sub-menu,
.navbar .navbar-nav .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .navbar-nav .sub-menu li a {
  display: block;
  padding: 10px 14px;
  color: #222;
  font-weight: 600;
  text-decoration: underline; /* if you prefer underline like screenshot; remove if not */
}
.navbar .navbar-nav li.menu-item-has-children {
    position: relative;
    padding: 10px 0;
}

/* show submenu when hovering parent (desktop) */
@media (min-width: 992px) {
  .navbar .navbar-nav li.menu-item-has-children:hover > .sub-menu,
  .navbar .navbar-nav li.menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }
}

/* ---------- Responsive (mobile) ---------- */
@media (max-width: 991px) {
  /* On mobile, disable absolute centering and use normal flow - Bootstrap collapse controls visibility */
  .navbar .navbar-nav {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-left: 0;
    background: transparent;
    margin-top: 8px;
  }

  /* When bootstrap adds .show to .navbar-collapse, make sure menu becomes visible */
  .collapse.navbar-collapse.show .navbar-nav {
    display: flex;
  }

  /* links on mobile */
  .navbar .navbar-nav .nav-link {
    padding: 12px 12px;
    font-size: 16px;
    color: #111;
  }

  /* mobile: make submenu static and toggle via JS (CSS handles visible class) */
  .navbar .navbar-nav .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding-left: 12px;
    margin-left: 8px;
    display: none;
  }
  .navbar .navbar-nav li.menu-item-has-children.open > .sub-menu {
    display: block;
  }

  /* caret rotate when open on mobile */
  .navbar .navbar-nav li.menu-item-has-children > a::after {
    transition: transform .18s ease;
    display: inline-block;
  }
  .navbar .navbar-nav li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
  }

  /* smaller logo on very small screens */
  .navbar .navbar-brand img {
    height: 48px;
  }
}

/* small visual polishing */
.navbar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.04); }

#menu-main-menu a{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.singleProjecFirst{
    background-size: cover;
    background-position: center bottom;
}
.singleProjecFirst .header_wrapper{
    background-color: rgba(0, 0, 0, 0.6);
    width: 30%;
    margin: 4em 7em;
}
.header_text h1 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 8px;
}
.header_text p {
    color: #fff;
    font-size: 20px;
}
.header_text{
    text-align: center;
    padding: 1em 1em 5em;
}
.header_text .separator{
    width: 100px;
    border-top: 1px solid #ffffff;
    margin: 10px auto;
}
.project-apartment{
    font-size: 22px !important;
    font-weight: 600;
    color: #fff;
}
.header_text .price{
    font-size: 22px;
    color: #fff;
    margin-top: 15px;
    padding: 0px 0px 10px 0px;
}
.header_text .price span{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    padding-right: 10.2px;
}
.header_text .price span.lakh{
    font-size: 16px !important;
    color: #fff !important;
    font-weight: 400 !important;
}
.header_text .project_heroline{
    font-size: 18px;
    margin: 18px !important;
    font-weight: 600;
    color: #fff;
}
.cta_top a{
    background: #fff;
    background-size: 400% 400%;
    margin: 0px 0 0 0;
    border: #000 solid 1px;
    padding: 12px 30px;
    color: #000;
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}
.project-hero{
    margin-bottom: 30px;
}
.highlights .row{
    padding: 25px 35px;
    border: 1px solid #f2f2f2;
    box-shadow: 0 16px 48px #00000014, 0 6px 20px #0000000f;
}
.singleHighlight{
    border-right: 1px solid #f2f2f2;
    margin-bottom: 15px;
}
.singleHighlight h3{
    font-size: 15px;
    color: #646464;
}
.singleHighlight p{
    font-size: 14px;
    font-weight: 700;
}
.singleHighlight.three{
    border-right: 0;
}
.project-content, .amenities, .unitDetails, .locationMap, .contactus{
    padding: 50px 0;
}
.project-content #top-lines p, .specifications p, .whyChoose p, .locationMap p{
    margin-bottom: 1rem !important;
}
.singleAmenities{
    background-color: #fff;
    padding: 15px 25px;
    box-shadow: 0 16px 48px #00000014, 0 6px 20px #0000000f;
    text-align: center;
    margin-top: 25px;
}
.heading1 {
    margin-bottom: 15px;
}
.singleAmenities img{
    margin-bottom: 15px;
}
.singleUnitDetail{
    padding: 25px 35px;
    text-align: center;
    max-width: 100%;
    margin: 10px auto 0;
    border: 1px solid #f2f2f2;
    font-weight: 500;
    box-shadow: 0 16px 48px #00000014, 0 6px 20px #0000000f;
}
.singleUnitDetail button{
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 500;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
}
.singleUnitDetail h3{
    font-size: 18px;
}
.singleUnitDetail .separator{
    border-top: 1px solid #000;
    margin: 15px 0;
}
.singleUnitDetail h4{
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 15px;
}
.specifications, .whyChoose, .aboutDeveloper{
    padding: 50px 0;
    background: #fafafa;
}
.gallery{
    padding: 50px 0;
    background: #fef0d3;
}
.gallery-images img {
    border-radius: 5px;
    padding: 0 5px;
    height: 300px;
    /* image-rendering: auto; */
    object-fit: cover;
    object-position: center;
}
.card.singleProjectCategory > a > img {
    height: 200px;
    object-fit: cover;
}
.gallery-images .slick-prev:before, .gallery-images .slick-next:before{
    color: #000000;
}
.singleProjectCategory .types_apartment{
  font-weight: 600;
}
.singleProjectCategory .price_start{
  color: green;
}
.singleProjectCategory .card_button a{
  text-align: center;
  text-decoration: none;
}
.category-page-content{
  background-color: #fafafa;
  padding: 50px 0;
}
.category-page-faqs{
  padding: 50px 0;
}
.category-page-content p{
  margin-bottom: 1rem !important;
}
.category-page-content ol {
  padding-left: 30px;
}

.blogMainTitleSec{
  padding: 10em 0;
}
.post.type-post .entry-content p{
  margin-bottom: 1rem !important;
}
.leadMagnetForm label input{
  width: 100%;
  padding: 5px;
}
.leadMagnetForm .wpcf7-submit{
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 500;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.leadMagnetForm label {
  width: 100%;
  margin-bottom: 15px;
}
/* Layout */
.footer-inner { margin:0 auto; padding:20px 0;border-bottom: 1px solid;margin-bottom: 30px; }
.dropdown-summary { font-weight:600; cursor:pointer; display:flex; align-items:center; justify-content:space-between; width:100%; padding:8px 0;color: #fff; }
.chev { margin-left:8px; font-size:0.9em; transform:translateY(1px); }

/* Grid: 4 columns on wide screens, stacks on small screens */
.footer-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
  margin-top:12px;
}
.footer-col h1, .footer-col h2, .footer-col h3, .footer-col h4 { font-size:1rem; margin:0 0 10px;color: #fff;border-bottom: 1px solid #fff;padding: 0 0 10px; }
.footer-col ul { list-style:none; padding:0; margin:0; }
.footer-col li { margin:6px 0;color: #fff; }
.footer-col a { text-decoration:none; color:inherit; font-size:0.92rem;color: #fff; }
.footer-col a:hover, .footer-col a:focus { text-decoration:underline; outline:none; }
.ft_cta{
    display: none;
}
/* Responsive */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns:1fr; }
  .dropdown-summary { font-size:1rem; }
}

/* Improve visible focus for keyboard users */
.footer-col a:focus { box-shadow:0 0 0 3px rgba(21,156,228,0.15); border-radius:4px; }
/* .leadMagnetForm .wpcf7-spinner{
  position: absolute;
  right: 10px;
  bottom: 9em;
} */
 /* ---------- Responsive (mobile) ---------- */
@media(max-width: 1366px){
    .singleSpecific{
        min-height: 340px !important;
    }
}
@media(max-width: 1024px){
  .collapse.navbar-collapse ul li:first-child{
    display: none;
  }
  .collapse.navbar-collapse ul li:last-child{
    display: none;
  }
  .btncall{
      right: -4%;
  }
  .singleAmenities{
      min-height: 180px;
  }
  .singleUnitDetail{
      padding: 20px 15px;
  }
  .singleSpecific{
      min-height: 350px !important;
  }
  .singleProjecFirst .header_wrapper{
      width: 40%;
  }
  .header_text{
      padding: 1em 1em 2em;
  }
}
@media (max-width: 768px) {
  nav.navbar .d-flex.w-100{
    justify-content: space-between;
    position: relative;
  }
  nav.navbar .d-flex.w-100 .navbar-toggler {
    border: 0;
    padding: 0 10px !important;
  }
  nav.navbar .navbar-collapse {
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    z-index: -1;
  }
  nav.navbar .navbar-collapse ul{
    margin-top: 55px;
  }
  nav.navbar .navbar-collapse ul li{
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
    width: 100%;
    text-align: center;
  }
  nav.navbar .navbar-collapse ul li.menu-item-has-children:hover .sub-menu {
    display: block;
    padding-left: 0;
    margin-left: 0;
  }
  .navbar .navbar-nav .sub-menu li a{
    font-weight: 400;
  }
  nav.navbar .navbar-collapse ul li:last-child{
    border-bottom: none;
  }
  nav.navbar .navbar-brand{
    padding: 5px 10px;
  }
  .navbar-toggler:focus{
    outline: 0 !important;
    box-shadow: none;
  }
  .singleProjecFirst .header_wrapper{
    width: 100%;
    margin: 2em 0;
  }
  .contactus .col-lg-4 .heading1{
    margin-top: 50px;
  }
  .singleHighlight{
      margin-bottom: 15px;
      border-right: none;
      border-bottom: 1px solid #eee;
      text-align: center;
  }
  .singleHighlight p{
      margin-bottom: 15px !important;
  }
  .singleAmenities{
      min-height: 180px;
      padding: 15px 5px;
  }
  .singleSpecific{
      min-height: auto !important;
  }
  .footer-desc{
      text-align: center;
      margin-bottom: 15px !important;
  }
  .ft_cta{
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 1;
  }
  .ft_cta .blue_btn a{
    color: #ffffff;
  }
  .ft_cta .blue_btn{
    background-color: #1778db;
    padding: 20px;
    width: 50%;
    text-align: center;
  }
  .ft_cta .green_btn{
    background: linear-gradient(90deg, rgba(36, 35, 0, 1) 0%, rgba(255, 223, 0, 1) 0%, rgba(235, 169, 31, 1) 36%);
    padding: 20px;
    width: 50%;
    text-align: center;
  }
  .ft_cta .call_btn{
    background: #25D366;
    width: auto;
    position: fixed;
    bottom: 12%;
    right: 1%;
    border-radius: 100%;
  }
  .ft_cta .call_btn a{
    font-size: 30px;
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    display: block;
  }
  .ft_cta a{
      text-align: center;
      text-decoration: none;
      color: #ffffff;
  }
  .ft_cta{
    display: flex;
  }
}
.specificationsTable h4{
  font-size: 1.2em;
}
.specificationsTable ul{
  margin-bottom: 0;
}
.specificationsTable ul li{
  text-align: left;
}
.specificationsTable td{
  vertical-align: middle;
}
.singleSpecific {
    box-shadow: 0 16px 48px #00000014, 0 6px 20px #0000000f;
    padding: 20px;
    min-height: 250px;
    margin-top: 15px;
}
.singleSpecific h4{
    font-size: 1.2em;
}
.singleSpecific p, .singleSpecific ul li{
    font-size: 1em;
}
.singleSpecific ul{
    padding-left: 15px;
}
.lastLi{
    background: #000;
    padding: 5px 10px !important;
    border-radius: 5px;
}
.lastLi a{
    color: #ffffff !important;
}