  /* -------------------------------------------
  Name:       Mayfair Residency
  Version:    1.0
  Developer:  Sunil kumar
  ------------------------------------------- */
  /*--------------------------------------------*/
  
  /* ========common css start here======= */
  
  @font-face {font-family:'MalayalamMN'; font-style:normal; font-weight:400; font-display:swap; src:url(../fonts/MalayalamMN.woff2) format('woff2');}
  
  
  
  * {
    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: 'MalayalamMN' !important;
    overflow-x: hidden;
  }
  
  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: 800;
  }
  
  h3,h4 {
    font-weight: 700;
  }
  
  h5,h6 {
    font-weight: 600;
  }
  
  h1 {
    font-size: 48px;
    line-height: 56px;
  }
  
  h2 {
    font-size: 34px;
    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: 2rem;
    font-weight: 600;
    color: #26303d;
  }
  /* ========common css end  here======= */
  
  /*========Header sec css start here=====*/
.header .nav-link,
.header .btn-call {
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 14px;
}

.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: #fff;
  position: relative;
  padding: 10px 15px !important;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
}

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

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

.btn-call {
  display: flex;
  align-items: center;
  background: #60748f;
  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(74 95 124);
}

.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;
    background: #26303d;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 222;
    width: 100%;
}
/*========Header sec css end  here=====*/

/*=======banner sec css start here======*/
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../../assets/images/banner.png') no-repeat center center/cover;
  z-index: 0;
}
.hero-bg:after {
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 22;
  padding-top: 30px;
}
.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: 400;
}
.btn-cta {
  display: inline-block;
  background: #26303d;
  color: #fff !important;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(38 48 61);
}
.form-section {
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  .form-section h2 {
    font-size: 24px;
    color: #333;
    line-height: 25px;
    margin-bottom: 0;
    padding: 0 !important;
  }
  .form-section .form-control {
    font-size: 14px;
  }
  .form-section .small {
      text-align: center;
      font-size: 16px;
  }
  
  .form-section .small span {
      font-size: 22px;
      color: #26303d;
  }
  
  
  #banner-form .input-group-text {
      background: #26303d;
      color: #fff;
      font-size: 13px;
      border: 1px solid #8d8d8d;
  }
  
  #banner-form input:focus {
      outline: none;
      box-shadow: none;
  }
  .left-content {
    text-shadow: 0px 2px 8px rgba(0,0,0,0.7);
}
/*=======banner sec css end  here======*/
/**/
.about-sec, section.buildings-img {
    background: #f9f9f9;
}

section.buildings-img img {
    width: 100%;
}
.top-title {
    color: #26303d;
    text-transform: uppercase;
    font-size: 16px;
}
/**/
.number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #26303d;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    font-size: 16px;
  }
  .highlight-box:hover {
    background-color: #f8f9fa;
    transform: translateY(-4px);
    transition: 0.3s ease;
  }
  .highlight-box h6 {
      font-size: 15px;
      color: #33262e;
      font-weight: 400 !important;
      line-height: 20px;
  }
  
  .highlight-box {
      padding: 15px !important;
      transition: 0.4s all ease-in-out;
      background: #33262e17 !important;
  }
  #highlights {
      background: #ffffffc2 !important;
  }


.price-sec {
    background: #f9f9f9;
}

.col-custom {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 10px;
}

.price-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  cursor: pointer;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: #26303d;
}

.plan-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  color: #333;
}

.plan-area {
  font-size: 19px;
  color: #60748f;
  margin-bottom: 15px;
}

.amenity-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  padding: 25px 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: #26303d; /* Luxury gold color */
}

.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrap img {
  max-width: 100%;
  transition: transform 0.3s ease;
}

.amenity-card:hover .icon-wrap img {
  transform: scale(1.15);
}


.amenity-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.amenity-card:hover .amenity-title {
  color: #60748f;
}
/**/
.floor-plans-section .nav-pills .nav-link {
  border-radius: 30px;
  padding: 10px 20px;
  margin: 0 5px;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid #1f1e1e;
}

.floor-plans-section .nav-pills .nav-link.active {
  background: #26303d;
  color: #fff;
  border-color: #26303d;
  box-shadow: 0 3px 10px rgb(38 48 61);
}

.floor-plan-card img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floor-plan-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.floor-plans-section{
  background: #f9f9f9;
}



.gallery-box img {
    border-radius: 5px;
    height: 250px;
    object-fit: cover;
}
.map-text ul li p {
    margin-bottom: 0;
    color: #000;
}

.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 {
        position: relative;
        background: #f9f9f9;
}

.map-text ul li {
    color: #403e3e;
    font-weight: 400;
    line-height: 25px;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.footer {
  background-color: #26303d !important;
}

.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: 300;
    font-size: 14px;
}
.error {
    font-size: 11px;
    color: #ff0000 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    text-align: left !important;
    display: block;
}
/*=========lead form sec css start here======*/
#form-modal .modal-dialog {

max-width: 450px;
}
#form-modal .modal-header {
    text-align: center;
    background: #26303d;
    color: #fff;
    padding: 1rem 1.5rem;
}
#form-modal .modal-header h5 {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}
.form-info form label {
    margin-bottom: 5px;
    color: #0c0c0c;
    font-weight:500;
    font-size: 14px;
}
.form-info button {
   background: #26303d;
   border: medium none;
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
   box-shadow: inherit;
   color: #000;
   font-weight: 500;
   padding: 10px 10px;
   text-transform: uppercase;
   width: 100%;
   transition: 0.4s all ease-in-out;
   color: #fff;
}
#form-modal .modal-header .btn-close {
    opacity: 1;
    /* filter: brightness(0) invert(1); */
}
.form-info .form-group input.form-control {
    padding-left: 5px !important;
}

.form-info .form-group input.form-control {
    height: 40px;
    outline: none;
    color: #999;
    box-shadow: none;
    padding: 10px 15px;
    background: #f5f5f5;
    border-color: #eee;
    font-size: 14px;
    font-weight: 500;
}
div#form-modal .form-info {
    border-radius: 0;
    padding: 0 !important;
    background: none !important;
    box-shadow: none;
}

div#form-modal .form-info form {
    padding: 0;
}
#form-modal .modal-header .btn-close:focus{
    outline: none;
    box-shadow: none;
}
.form-info .form-group {
    position: relative;
}
.form-info .form-group {
    margin-bottom: 10px;
}
.error {
    border-color: #ff0000 !important;
}

.error {
    font-size: 12px;
    color: #ff0000 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    text-align: left !important;
    display: block;
}
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-close {
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    padding: 0.5rem;
}
#form-modal .form-check-label {
    font-size: 12px;
    font-weight: 500;
}
.project-info-modal {
    text-align: center;
}

.project-info-modal h2 {
    font-size: 26px;
    line-height: 30px;
}

.project-info-modal p {
    margin: 0;
}

.project-info-modal h4 {
    font-weight: 600;
    color: #2a6e0e;
}
/*=========lead form sec css end  here======*/