@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500&display=swap');
*{
    font-family: 'Heebo', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
 }
 
 body{
   background-color: #F4FFFD;
 }
 
 html{
    scroll-behavior: smooth;
 }
 
 /*-----------------------------navbar code---------------------------*/
.navbar {
  background-color: #ffffff; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
  padding: 0;
}

.navbar-toggler {
  border: none; 
  font-size: 1.5rem;
  align-items: center;
}

.navbar-nav {
  margin-left: auto;
  display: flex;
  align-items: center; 
}

.nav-item {
  margin-right: 10px; 
}

.nav-link {
  color: #000; 
}

.nav-link:hover{
  color: #0F394D;
}


/*----------------------------------one popup form for all style code-------------------*/
.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: 20px;
  border: 1px solid #888;
  max-width: 500px;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color:#0F394D;
  font-size: 25px;
  text-align: center;
}

.popup-content label {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

.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: #0F394D;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-button:hover{
  background-color: #0F394D;
  color: #fff;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 50px;
}

.icons img {
  width: 55px;
  height: 45px;
  margin: 0 5px;
}

.icons .formimageicon{
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 600px) {
 .popup-content {
   margin: 20px;
  }
}

@media (max-width: 450px){
  .popup-content h2{
     font-size: 1rem;
  }
  
.icons {
  gap: 40px;
}

.icons img {
  width: 40px;
  height: 35px;
 }
} 


/*---------------------------------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: 4%;
  margin-bottom: 20px;
  color: #0F394D;
  text-transform: uppercase;
  font-size: 30px;
}

.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%;
  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: 16px;
  }

}

.projecthead{
   text-align: center;
   margin-top: 4%;
   margin-bottom: 20px;
   text-transform: uppercase;
}

.highlight-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.highlight-card h4 {
  color: #0F394D;
  font-size: 18px;
}

.highlight-card ul {
  list-style-type: none;
  padding: 0;
}

@media (max-width: 768px) {
  .highlight-card {
    padding: 15px;
  }

  .projecthead{
    margin-top: 30px;
  }
}

/*---------------------------pricing-------------------------------*/
#price {
  position: relative;
  background-image: url('image/bedroom.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  margin-top: 8%;
  padding: 10px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#price::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  left: 0;
  top: 0;
  box-sizing: border-box;
  padding: 10px 0;
  display: block;
  pointer-events: none; 
}

.pricinghead {
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 0 !important;
  color: #fff;
  position: relative;
  z-index: 2;
}

.price-table {
  margin: 3px;
  padding: 20px;
  position: relative; 
  z-index: 1; 
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #fff;
}

th {
  background-color: #000;
  color: #fff;
  padding: 12px;
  font-weight: 300;
  text-align: center !important;
}


.btn1 {
  padding: 10px;
  background-color: #0F394D;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .price-table {
    margin: 10px;
    padding: 10px;
  }

  table {
    font-size: 12px;
  }

  th,
  td {
    padding: 8px;
  }

  .btn1 {
    padding: 8px;
    font-size: 10px;
  }
}

@media(max-width: 768px){
  .pricinghead{
    font-size: 1.6rem;
  }
}

/*---------------------------------------floorplan--------------------------*/
.floorhead {
  text-align: center;
  margin-top: 8%;
  margin-bottom: 2%;
  color: #0F394D;
  text-transform: uppercase;
  font-size: 30px;
}

.floorplan {
  text-align: center;
}

.floorplan img {
  width: 100%;
  height: 300px; 
  object-fit: cover; 
  border: 1px solid #ddd;
  border-radius: 8px;
  filter: blur(2px);
}

.floor-btn {
  background-color: #0F394D;
  color: #fff;
  border: none;
  padding: 6px 10px;
  width: 100%;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
}

.owl-carousel.first-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.owl-carousel.first-carousel .owl-item {
  width: 100%;
}

.owl-carousel.first-carousel .owl-prev,
.owl-carousel.first-carousel .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
}

.owl-carousel.first-carousel .owl-prev {
  left: 10px;
}

.owl-carousel.first-carousel .owl-next {
  right: 10px;
}

@media(max-width: 600px){
  .floorhead{
      font-size: 1.7rem;
  }
}  


/*--------------------------------gallery carousel code-------------------------*/
.galleryhead{
  text-align: center;
  margin-top: 8%;
  margin-bottom: 1%;
  color: #0F394D;
  text-transform: uppercase;
  font-size: 30px;
}

.fancy {
  text-align: center;
  padding: 20px; 
}

.gallery-item {
  display: inline-block;
  margin: 10px;
  text-align: center; 
}

.gallery-item img {
  width: 350px; 
  height: 220px;
  display: block;
  border-radius: 4px; 
  border: 2px solid #0F394D;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out; 
}

.gallery-item:hover img {
  transform: scale(1.1); 
}

@media(max-width: 600px){
  .gallery-item img {
      width: 300px; 
      height: auto;
  }
}

/*---------------------------------------amenities code----------------------*/
.amenitieshead {
  margin-top: 5%;
  text-align: center;
  color: #0F394D;
  text-transform: uppercase;
  font-size: 30px;
}

#amenities .owl-carousel .item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-right: 10px;
}

#amenities .owl-carousel .item {
  margin-right: 10px;
  border: 2px solid #0F394D;
}

#amenities .owl-carousel .item .image-text {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 65, 90, 0.8);
  padding: 10px;
  text-align: center;
  font-weight: 400;
  color: #fff;
}

.modal-body {
  height: 60vh;
  margin: 20px auto;
  overflow: hidden;
}

#enlargedImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-dialog {
  max-width: 100%;
  margin: 0;
}

.modal-content {
  border: none;
}

@media (max-width: 768px) {
  #amenities .owl-carousel .item img {
    height: 150px;
  }

  #amenities .owl-carousel .item {
    margin-right: 5px;
    width: 100%;
  }

  .amenitieshead {
    font-size: 1.8rem;
  }

  #amenities .owl-carousel .item .image-text {
    font-size: 10px;
  }
}


/*--------------------------------location advantages code--------------------------------*/
.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.grey {
  color: #000;
}

.section-head{
  text-align: center;
  color: #0F394D;
  margin-top: 8%;
  text-transform: uppercase;
  font-size: 30px;
}

#accordion .panel-body {
  padding: 10px 30px 10px 60px;
  background: #f0f0f0;
  border-top: none;
  font-size: 15px;
  color: #6f6f6f;
  letter-spacing: 1px;
  line-height: 28px;
  position: relative;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd;
}

.panel-body {
  padding: 15px;
}

#accordion .panel-title a {
  display: block;
  padding: 10px 30px 10px 60px;
  background: #f5f5f5;
  font-size: 15px;
  letter-spacing: 1px;
  color: #000;
  overflow: hidden;
  position: relative;
}

.panel-title > .small,
.panel-title > .small > a,
.panel-title > a,
.panel-title > small,
.panel-title > small > a {
  color: inherit;
}

[role=button] {
  cursor: pointer;
}

#location p {
  color: #FFF;
  background: #414f55;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 500;
}

section p,
section ul,
section ol {
  font-size: 16px;
  line-height: 28px;
}

#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before,
#accordion .panel-title a:after,
#accordion .panel-title a.collapsed:after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  background-color: #0F394D;
  padding: 8px 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  transition: all 0.3s ease 0s;
}

#accordion .panel-title a.collapsed:after {
  content: "\f067";
  transform: translateY(0);
}

#accordion .panel-title a:not(.collapsed):after {
  transform: translateY(0);
  content: "\f068";
}



.location-image {
  width: 100%;
  height: auto;
  border: 2px solid #ccc;
}


@media(max-width: 768px) {
  .section-head h1 {
    font-size: 1.7rem;
  }
}

@media only screen and (max-width: 768px) {
  #location img {
    width: 100%;
    height: auto;
  }
}

/*----------------------contact section-------------------------*/  
.head-contact {
  text-align: center;
  color: #0F394D;
  margin-top: 8%;
  font-size: 30px;
}

.form-txt{
 text-align: center;
 font-weight: 500;
 margin-bottom: 2%;
 font-size: 1.1rem;
}

.form-group {
  margin-bottom: 15px;
}

.input-group-addon {
  background: #0F394D;
  color: #fff;
  padding: 6px 5px 6px 16px;
  border: 1px solid #0F394D;
  border-right: 0;
  border-radius: 7px 0 0 7px;
}

.contact-btn {
  margin: 0 auto;
  display: block;
  background: #0F394D;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 20px 5px;
  transition: ease all 0.4s;
  text-shadow: none;
  border-radius: 7px;
  box-shadow: none;
  outline: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media(max-width: 600px){
  .head-contact{
      font-size: 1.7rem;
  }
  .form-txt{
      font-size: 12px;
  }
}

/*------------------------------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 #0F394D;
  width: 100px;
  height: 100px; 
}

.reranum{
  margin-top: 2%;
  font-size: 1.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: #0F394D;
  font-weight: bold;
  text-decoration: none;
}

.adres_phone_para a:hover {
  text-decoration: underline;
}

.disclaimer-section {
  background-color: #344c57;
  font-size: 1.1rem;
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.gov-link {
  color: #0F394D;
  font-weight: bold;
}

.terms-link {
  color: #0F394D;
  font-weight: bold;
}

.privacy-policy-link {
  color: #dadada;
}

.privacy-policy-link:hover {
  color: #000;
}

@media(max-width: 768px){
  .disclaimer-section{
    margin-bottom: 15%;
  }
}

@media (min-width: 769px) and (max-width: 991px){
  .disclaimer-section{
    margin-bottom: 10%;
  }
}


/*-----------------------------------whatsapp, phone, and enquiry code-----------------------*/
#desktop-view {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  z-index: 9999; 
}

.icn {
  margin: 15px;
  width: 50px;
  height: 50px;
  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; 
}

@keyframes gradient {
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}

@media(max-width: 768px){
  .icn{
    width: 20px;
    height: 20px;
  }
}

@media(max-width: 991px){
  #desktop-view{
    display: none;
  }
}

/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #061e2a;
  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 screen for mobile view----------------------*/
@media (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}


/*----------------------------ola/uber-----------------------------*/
@media only screen and (max-width: 991px) {
  .freevisit-btn {
    bottom: 40px !important;
    left: 0 !important;
    width: 100%;
  }
}

.pulseanimation {
  animation: pulse-cust 2s infinite;
}

@keyframes pulse-cust{
0% {
  -webkit-box-shadow: 0 0 0 0 #0F394D;
}
70% {
  -webkit-box-shadow: 0 0 0 25px rgba(227, 56, 56, 0);
}
100% {
  -webkit-box-shadow: 0 0 0 0 rgba(227, 56, 56, 0);
}
}

.freevisit-btn {
    position: fixed;
    z-index: 9999;
    bottom: 2px;
    left: 10px;
    font-size: 16px !important;
    background: #0d3a4e;
    border: none;
    margin: 30px auto 0px;
    color: #fff;
    border: 2px solid;
    padding: 8px 10px;
    font-weight: 400;
    outline: none !important;
    display: block;
}

.freevisitbtn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



