/* -------------------------------------------
  Name:       Patel Neotown
  Version:    1.0
  Developer:  Sunil kumar
  ------------------------------------------- */
/*--------------------------------------------*/

/* ========common css start here======= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
  margin: 0;
  padding: 0;

}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  box-shadow: none;
}

a {
  transition: 0.4s all ease-in-out;
  text-decoration: none;
}

body {
   font-family: "Nunito", sans-serif;
  color: #1e293b;
  overflow-x: hidden;
  background: #fff;
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;


}

h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
  color: inherit;
}

h1,h2 {
  font-weight: 700;
}

h3,h4 {
  font-weight: 600;
}

h5,h6 {
  font-weight: 500;
}

h1 {
  font-size: 48px;
  line-height: 56px;
}

h2 {
  font-size: 32px;
  line-height: 45px;
}

h3 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

h4 {
  font-size: 22px;
  line-height: 32px;
}

h5 {
  font-size: 18px;
  line-height: 24px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
}

.padd-50 {
  padding: 30px 0;
}

.title {
  font-size: 32px;
  font-weight: 800;
  color: #000;
  line-height: 35px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.title-sub{
      color: #000;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: capitalize;
      display: block;
      margin-bottom: 10px;
}

/* ========common css end  here======= */

/*========Header sec css start here=====*/
.header .nav-link,
.header .btn-call {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 14px;
}

.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffff;
  transition: all 0.3s ease;
  z-index: 999;
}

.fixed-header.scrolled {
  background: rgba(10, 25, 47, 0.98);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.navbar-brand img {
  max-width: 180px;
  transition: transform 0.3s ease;
}

.fixed-header.scrolled .navbar-brand img {
  transform: scale(0.95);
}
.navbar-nav .nav-link {
  color: #000;
  position: relative;
  padding: 10px 15px !important;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
}

.navbar-nav .nav-link:hover {
  color: #c1272d;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #c1272d;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.btn-call {
  display: flex;
  align-items: center;
  background: #C1272D;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(193 39 45);
}

.btn-call i {
  margin-right: 8px;
  font-size: 18px;
}

.clltxt {
  display: block;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.navbar-toggler {
  border: none;
}


.navbar-brand {
    padding: 0;
}

nav.navbar {
    padding: 0;
}
ul.navbar-nav {
    margin-right: 20px;
}
header {
    padding: 5px 0;
}
/*========Header sec css end  here=====*/

/*=======banner sec css start here======*/
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../../assets/images/hero-banner.webp') no-repeat center center/cover;
  z-index: 0;
}
.hero-bg:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 9;
    background-image: linear-gradient(to right, #000000cc, #0000009e, #00000000, #41515a00);
}

.hero-wrap {
  position: relative;
  z-index: 222;
}

.left-content {
  color: #000000;
}
.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.hero-subtitle {
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
}
.btn-cta {
    background: #C1272D;
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(193 39 45);
}

.register-card {
  display: flex;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.register-left {
  background: #f7f8fc;
  padding: 20px;
  min-width: 160px;
  text-align: center;
}
.promise-title {
  font-weight: 800;
  color: #000000;
  margin-bottom: 15px;
}
.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.promise-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  font-size: 14px;
  color: #000000;
  font-weight: 700;
}
.promise-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

.register-right {
  padding: 15px;
  flex: 1;
}
.form-header {
  text-align: center;
  margin-bottom: 15px;
}
.form-header .logo {
  max-width: 110px;
  margin-bottom: 8px;
  object-fit: cover;
}
.form-header h5 {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  line-height: 30px;
}
.form-header .highlight {
  color: #C1272D;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-bottom: 12px;
  font-size: 14px;
}
.form-control:focus {
  border-color: #C1272D;
  outline: none;
  box-shadow: 0 0 5px rgba(193,39,45,0.2);
}

.btn-register {
  width: 100%;
  background: #c1272d;
  color: #ffffff;
  padding: 12px;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn-register:hover {
  background: #C1272D;
  box-shadow: 0 6px 16px rgba(193,39,45,0.2);
}
/*=======banner sec css end  here======*/

.section-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000000;
  position: relative;
}
.section-title span {
  color: #C1272D;
}

.overview-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.overview-img img {
  width: 100%;
  height: auto;
  display: block;
}
.overview-img .tagline {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #C1272D;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.overview-content p {
  font-size: 15px;
  color: #333333;
  margin-bottom: 15px;
  line-height: 25px;
  font-weight: 700;
}

.project-highlights {
  display: flex;
  gap: 20px;
  margin: 25px 0;
  flex-wrap: wrap;
}
.highlight-box {
  flex: 1;
  min-width: 150px;
  text-align: center;
  background: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 10px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.highlight-box h4 {
  font-size: 22px;
  font-weight: 800;
  color: #C1272D;
  margin-bottom: 0;
}
.highlight-box p {
  font-size: 14px;
  color: #000;
  font-weight: 800;
}
.highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.note {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  margin-top: 10px;
}

.price-section {
  background: #ffe8e9;
}

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

.price-table-wrapper {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead tr {
  background: #C1272D;
  color: #fff;
}
.price-table th,
.price-table td {
  padding: 10px 15px;
  font-size: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-weight: 700;
}
.price-table th:first-child {
  border-top-left-radius: 14px;
}
.price-table th:last-child {
  border-top-right-radius: 14px;
}
.price-table tbody tr:hover {
  background: #f9f9f9;
}

.btn-price {
  background: #000000;
  color: #fff;
  font-size: 14px;
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  transition: 0.3s ease;
  font-weight: 700;
}
.btn-price:hover {
  background: #C1272D;
  color: #fff;
}

.price-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.price-img {
  position: relative;
  overflow: hidden;
}
.price-img img {
  width: 100%;
  height: auto;
  display: block;
}
.price-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.enquire-btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #C1272D;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.price-content {
  padding: 20px;
  text-align: center;
}
.price-content h5 {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
}
.price-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  font-weight: 700;
}

.section-subtitle {
    font-weight: 700;
}
.project-overview-cards {
  gap: 20px;
  margin-top: 25px;
}

.project-overview-cards .overview-card {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}

.project-overview-cards .overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border-color: #C1272D;
}

.project-overview-cards .icon-wrap {
  background: #f8f8f8;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: background 0.3s ease;
}

.project-overview-cards .overview-card:hover .icon-wrap {
  background: rgba(193, 39, 45, 0.1);
}

.project-overview-cards img {
  max-width: 40px;
  height: auto;
}

.project-overview-cards figcaption {
  font-size: 14px;
  color: #000;
}

.project-overview-cards figcaption b {
  display: inline-block;
  font-size: 14px;
  color: #C1272D;
  margin-bottom: 5px;
  font-weight: 800;
}
.amenities-section {
  background: #fff;
}

.amenity-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px 15px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: #C1272D;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  border: 1px solid #ddd;
}

.amenity-card:hover .amenity-icon {
  background: rgba(193,39,45,0.08);
}

.amenity-icon img {
  max-width: 40px;
  height: auto;
}

.amenity-card p {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.floorplan-section {
  background: #ffe8e9;
}



.floorplan-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid #eee;
  height: 100%;
}

.floorplan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: #C1272D;
}

.floorplan-img {
  overflow: hidden;
  position: relative;
}

.floorplan-img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  filter: blur(2px);
}

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

.floorplan-body {
  padding: 20px;
  border-top: 1px solid #dedede;
}

.floorplan-body h3 {
  font-size: 24px;
  color: #c1272d;
  font-weight: 800;
  margin-bottom: 10px;
}

.floorplan-body p {
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: 700;
}
.gallery-box {
    height: 230px;
    overflow: hidden;
    width: 100%;
    margin-top: 0;
    position: relative;
    border-radius: 5px;
    border: #c1272d solid 5px;
}
.gallery-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*======Location sec css start here=====*/
.map-text ul li {
    color: #403e3e;
    font-weight: 400;
    line-height: 25px;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.map-text ul li p {
    margin-bottom: 0;
    color: #000;
    font-weight: 700;
    font-size: 15px;
}

.map-text ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'FontAwesome';
    content: "\f061";
    color: #000;
}
.location-img img {
    width: 100%;
    border-radius: 5px;
}

.location-img {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    height: 400px;
}
.location-img img {
    object-fit: contain;
    height:100%;
}
#location {
    background: #ffe8e9;
}


.location-img iframe {
    height: 100%;
    width: 100%;
}
/*======Location sec css end  here=====*/
.about-builder-section {
  background:#fff;
  position: relative;
}


.builder-logo-wrap {
  position: relative;
  display: inline-block;
}

.background-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgb(255 255 255), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.builder-logo {
  position: relative;
  z-index: 1;
  max-width: 200px;
  transition: transform 0.4s ease;
}

.builder-logo-wrap:hover .builder-logo {
  transform: scale(1.05);
}
.about-content p {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 15px;
  font-weight: 700;
}
.footer {
  background-color: #1b1b1b;
}

.footer h5 {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.footer .text-muted {
  color: #bbb !important;
}

.footer-bottom {
  font-size: 0.85rem;
  color: #aaa;
}
.call {
    width: 40px;
    position: fixed;
    bottom: 10px;
    left: 7px;
}
.whatsapp img, .call img {
    width: 100%;
}
.whatsapp {
    width: 40px;
    position: fixed;
    bottom: 10px;
    right: 7px;
}


footer .small.text-muted {
    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
}
.error {
    font-size: 11px;
    color: #ff0000 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    text-align: left !important;
    display: block;
}
/**/

.custom-modal .modal-dialog {
  max-width: 450px;
}

.register-modal-content {
  background: #fff;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  padding: 0;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #cfcfcf;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  opacity: 0.9;
  font-size: 14px;
  transition: background 0.3s ease;
}
.close-modal:hover {
  background-color: #d2d2d2;
  color: #fff;
  opacity: 1;
}

.modal-header {
  border-bottom: none;
  padding: 10px;
  display: block;
}
.modal-logo {
  width: 80px;
  margin-bottom: 10px;
}
.modal-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 0;
}
.modal-title .highlight {
  color: #C1272D;
}
.modal-subtitle {
  font-size: 14px;
  color: #000;
  margin: 0;
  font-weight: 700;
}

.form-control-custom {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fafafa;
  font-weight: 700;
}
.form-control-custom:focus {
  border-color: #C1272D;
  box-shadow: 0 0 0 2px rgba(193,39,45,0.15);
  background: #fff;
  outline: none;
}

.btn-register-submit {
  background: linear-gradient(90deg, #C1272D, #9B1C21);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-register-submit:hover {
  color: #fff;
}

.promise-footer {
  background: #fafafa;
  padding: 15px;
  border-top: 1px solid #f0f0f0;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  justify-content: space-around;
}
.promise-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.promise-icons li {
  text-align: center;
  flex: 1;
}
.promise-icons img {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
}
.promise-icons span {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 800;
  line-height: 20px;
}




/**/