@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600&display=swap');

*{
  font-family: 'Sen', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
 }
 
 html{
  scroll-behavior: smooth;
 }
 
/*-----------------------------navbar code---------------------------*/
.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 100;
  padding: 1px !important;
}

.navbar-brand img {
  max-height: 65px; 
}

@media(max-width: 768px){
  .navbar-brand img {
    max-height: 40px; 
  }
  .navbar {
    padding: 0.4rem 0.4rem !important; 
    text-align: center;
  }
}
  
.navbar-nav {
  margin-left: auto;
}

.nav-link{
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #000;
}

.nav-link:hover{
  color: #c64f2e;
}

.phone-link {
  padding: 8px 15px; 
  background-color: #c64f2e; 
  color: #ffffff !important; 
  border-radius: 5px;
  text-decoration: none; 
}

.phone-link:hover{
  background-color: #f29e38;
  color: #000000 !important;
  text-decoration: none;
}

/*----------------------css popup code for all login forms one time written and apply for all-------------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow: auto;
}
  
.popup-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 25px;
  border: 1px solid #888;
  max-width: 450px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
  
.close-icon {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}
  
.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color:#c64f2e;
  font-size: 26px;
  text-align: center;
}
  
.formlogo {
  display: block;
  margin: 0 auto 10px; 
}
  
.popup-content label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}
  
.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content input[type="tel"] {
  width: 100%;
  padding: 8px; 
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
  
.submit-button {
  font-size: 1.1rem;
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #c64f2e;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
  
.submit-button:hover{
  background-color: #fff;
  color: #c64f2e;
  border: 2px solid #c64f2e;
}
  
@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
  }
}
  
@media (max-width: 450px){
  .popup-content h2{
    font-size: 1rem;
  }
} 


/*---------------------------------home slider-----------------------------*/
.for-desktop {
    display: block;
    width: 100%;
    height: auto;  
  }
  
  .for-mobile {
    display: none;
    max-width: 768px !important; 
    width: 100%;
    height: auto;   
  }
  
  @media (max-width: 768px) {
    .for-desktop {
      display: none;
    }
  
    .for-mobile {
      display: block;
    }
  }


/*---------------------------------overview section-----------------------*/
.overhead{
  text-align: center;
  margin-top: 5%;
  color: #c64f2e;
}

.border-bx{
   text-align: center;
   margin-bottom: 20px;
}

.overview-text {
  color: #000;
}

.overview-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.overview-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

@media(max-width: 768px){
  .overhead{
     font-size: 1.8rem;
  }

  .overview-text p{
     font-size: 12px;
  }

}


/*---------------------------------amenities code--------------------------*/
.amenhead{
  text-align: center;
  color: #f16d48;
  position: relative;
  z-index: 1;
}

.border-bx1{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

#amenities {
  background-image: url('images/DostiMaple9.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 0;
  margin-top: 5%;
}

#amenities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.amen .box-container {
  position: relative;
  z-index: 1;
}

.amen .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.7rem;
  margin-top: 2%;
  margin-left: 4%;
  margin-right: 4%;
}

.amen .box-container .box{
  padding: 1rem 1rem;
  text-align: center;
  background: #fff;
  border-radius: 5%;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.amen .box-container .box:hover{
  transform: scale(1.05);
} 

.amen .box-container .box img{
  height: 5rem;
  width: 5rem;
}

.amen .box-container .box h3{
  margin-top: 2%;
  font-size: 1rem;
}

.request-container {
  text-align: center;
  margin-top: 30px; 
}

.request-button {
  background-color: #e1481e;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.request-button:hover {
  background-color: #f29e38;
  color: #000;
}

@media (max-width: 768px) {
  .amenhead{
    font-size: 1.8rem;
  }

  .amen .box-container {
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 1rem;
    margin-left: 4%;
    margin-right: 4%;
  }

  .amen .box-container .box img {
    height: 4rem;
    width: 4rem;
  }

  .amen .box-container .box h3 {
    font-size: 0.9rem;
  }
}


/*---------------------------configuration-------------------------------*/
.pricinghead{
  text-align: center;
  margin-top: 5%;
  color: #c64f2e;
}

.price-table {
  margin: 10px 50px;
  padding: 5px;
  background-color: rgba(255, 236, 225, 0.8);
  border: 2px solid #ccc;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

th {
  text-align: center;
  padding: 5px;
  background-color: #c64f2e;
  font-weight: 500;
  color: #fff;
}

tr:hover {
  background-color: #f1f1f1;
}

.btn1{
  padding: 8px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  background-color: #f29e38;
  color: #000;
  cursor: pointer;
}

.btn1:hover{
  background-color: #c64f2e;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .pricinghead {
    font-size: 1.8rem;
    margin-top: 30px;
  }

  .price-table {
    margin: 0;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }

  th, td {
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid #000;
  }

  th {
    background-color: #c64f2e;
    font-weight: 500;
    color: #fff;
  }

  tr:hover {
    background-color: #f1f1f1;
  }

  .btn1 {
    padding: 5px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
    background-color: #f29e38;
    color: #000;
    cursor: pointer;
    width: 100%;
    margin: 5px 0;
  }
}


/*------------------------floor plan section----------------------------------*/
.floorhead {
  text-align: center;
  color: #f16d48;
}  
  
#unit-plan button.owl-next {
  color: #fff!important;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

#unit-plan button.owl-prev {
  color: #fff!important;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

#unit-plan {
    position: relative;
    background-color: #2e2e2e;
    padding: 40px 0;
    margin-top: 5%;
}
    
#floor-plan-carousel {
    padding: 0!important;
}
    
#unit-plan .owl-nav {
    top: 50%;
    z-index: 1;
}

.plan-name {
    font-size: 16px!important;
    margin-top: 10px!important;
    text-align: center!important;
    color: #fff!important;
}
  
.floor-plan-img img {
    border: 4px solid #fff;
    width: 100%;
    filter: blur(2px);
    height: 300px;
}
  

.floor-plan-img {
    margin-bottom: 30px;
    cursor: pointer;
}
  
#floor-plan-carousel {
    display: flex;
    margin: 10px 0 -30px 0;
}
  
#floor-plan-carousel .col-md-6.item {
    max-width: unset;
}
  
#floor-plan-carousel {
    margin: 0;
    padding-bottom: 25px;
}

@media(max-width: 768px){
    .floorhead{
       font-size: 1.8rem;
    }
}
  

/*------------------------------gallery section------------------------*/
.galleryheading{
  text-align: center;
  margin-top: 5%;
  color: #c64f2e;
}  

#gallery .owl-carousel .item img {
  width: 100%;
  height: 300px; 
  object-fit: cover;
}

#gallery .owl-carousel .item {
  margin-right: 2px;
  border: 2px solid #c64f2e;
}

#project-gallery-carousel-1 .owl-prev,
#project-gallery-carousel-1 .owl-next {
  font-size: 20px;
  color: #000;
  cursor: pointer;
}

#galleryTabs {
  margin: 20px auto;
  display: table;
}

.nav-tabs {
  display: table-cell;
  text-align: center;
}

.nav-tabs .nav-item {
  display: inline-block;
  margin-bottom: 0;
}

.nav-tabs .nav-link {
  color: #333;
  border: 1px solid #000;
  margin-right: 5px;
  border-radius: 0;
  padding: 10px 20px;
}

.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #c64f2e;
  border-color: #c64f2e;
}

.tab-content {
  padding: 20px;
}

.tab-pane img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 0;
}


@media (max-width: 767px) {
  .galleryheading {
    font-size: 1.8rem;
  }

  .nav-tabs .nav-item {
    display: inline-block;
    margin-bottom: 0;
  }

  .nav-tabs .nav-link {
    padding: 2px 4px;
    font-size: 12px;
  }

  .tab-content {
    padding: 10px;
  }
}

/*-------------------location advantage-----------------*/
.locationhead{
   color: #c64f2e;
   text-align: center;
}

.location_section {
  padding: 50px 0;
  background: #efefef;
}

.px_30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.location_section li .count {
  position: absolute;
  left: -25px;
  top: 6px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
}


.location_section ul li {
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  list-style-type: none;
  position: relative;
}

.location_section .center_col img {
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 0 100px rgb(0 0 0 / 5%);
  width: 350px;
  height: 350px;
}


.location_section .right_col {
  text-align: left;
}

.px_30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

@media(max-width: 768px){
  .locationhead{
    font-size: 1.8rem;
  }

  .location_section ul li {
    font-size: 12px;
    font-weight: bold;
    line-height: 22px;
    background: #fff;
    padding: 10px 15px;
  }
  
  .location_section .center_col img {
    width: 100%;
    height: 250px;
    border-radius: 0 !important;
  }

  .location_section {
    padding: 10px 0;
  }

}

/*-------------------------------Contact Us----------------------------*/
.cnthead{
  color: #c64f2e;
  text-align: center;
  margin-bottom: 10px;
}

.Enquire_Now_service {
  background-color: #000;
  padding: 40px 0;
  margin-top: 2%;
}

.Enquire_Now_service .col-md-6 {
  display: flex;
  align-items: center;
}

.Enquire_Now_service .enquire_boxLeft {
  padding: 20px;
}

.Enquire_Now_service h2 {
  color: #000;
  font-size: 24px;
  margin-bottom: 20px;
}

.Enquire_Now_service .divied {
  display: block;
  width: 100px;
  height: 3px;
  background-color: #c64f2e;
  margin-bottom: 20px;
}

.Enquire_Now_service .form-control {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.Enquire_Now_service .send_btn {
  background-color: #c64f2e;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.Enquire_Now_service .send_btn:hover {
  background-color: #f29e38;
}

@media (max-width: 767px) {
  .Enquire_Now_service .col-md-6 {
    flex-direction: column;
    align-items: stretch;
  }

  .Enquire_Now_service .enquire_boxLeft {
    padding: 0 20px;
    margin-top: 20px;
  }

  .Enquire_Now_service .col-md-6 {
    height: 300px; 
  }

  .Enquire_Now_service .col-md-6:nth-child(1) {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 767px) {
  .Enquire_Now_service .col-md-6 {
    position: relative;
    height: 300px; 
    padding: 0 5px 0 15px;
  }

  .Enquire_Now_service .col-md-6 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}


/*------------------------------footer section---------------------*/
.footer-container {
  margin: 5px auto; 
  max-width: 100%; 
  padding: 0 20px; 
  box-sizing: border-box; 
}

.connect-with-me {
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.qr-code {
  margin-bottom: 20px;
  text-align: center;
}

.qr-code img {
  border: 2px solid #c64f2e;
  width: 90px;
  height: 90px; 
}

.reranum{
  margin-top: 2%;
  font-size: 1rem;
}

.dispara{
  font-size: 1.2rem;
}

.adres_para,
.adres_submision_para,
.adres_phone_para,
p {
  margin: 0;
}

.adres_para,
.adres_phone_para{
  font-size: 1.2rem;
}

.adres_phone_para {
  text-align: center;
}

.adres_phone_para a {
  color: #c64f2e;
  font-weight: bold;
  text-decoration: none;
}

.adres_phone_para a:hover {
  text-decoration: underline;
}

.disclaimer-section {
  background-color: #962d0f;
  font-size: 1.1rem;
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.gov-link {
  color: #c64f2e;
  font-weight: bold;
}

.terms-link {
  color: #c64f2e;
  font-weight: bold;
}

.privacy-policy-link {
  color: #fff;
}

.privacy-policy-link:hover {
  color: #fff;
  border: underline;
}

@media (min-width: 769px) and (max-width: 991px){
  .disclaimer-section{
    margin-bottom: 10%;
  }
}

/*---------------------------------desktop fixed position whatsapp and phone---------------------*/
#desktop-view {
  position: fixed;
  bottom: 10px; 
  right: 10px; 
  z-index: 9999; 
}

.icn {
  margin: 13px;
  cursor: pointer;
  animation: zoomIcons 0.6s ease-in-out infinite; 
}

@keyframes zoomIcons {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); 
  }
  100% {
    transform: scale(1);
  }
}

.icn:hover {
  animation-play-state: paused; 
}

@media(max-width: 768px){
  .icn{
    width: 20px;
    height: 20px;
  }
}

@media(max-width: 1200px){
  #desktop-view{
    display: none;
  }
}

/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #aa4422;
  box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%);
  z-index: 1030;
}

.mob-action ul {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  justify-content: space-around;
  align-items: center;
}

.mobile-view {
  display: none;
} 

@media (max-width: 1200px) {
  .mobile-view {
    display: block;
  } 
}






