@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Parkinsans:wght@300..800&family=Quicksand:wght@300..700&display=swap');

* {
  font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
  }
  
  body{
    margin: 0;
    padding: 0;
  }
  
  html{
    scroll-behavior: smooth;
  }
  
  .navbar {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.2);
  }
    
  .navbar .logo {
    flex: 1;
    padding: 0 10px;
  }
    
  .navbar .logo img {
    max-height: 80px;
    width: 100px;
    padding: 2px;
  }
    
  .navbar .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
    
  .navbar .menu li {
    margin: 0;
    padding: 15px;
  }
  
  .menu .number{
    border: 1px solid rgb(0, 0, 0);
    border-radius: 8px;
    padding: 3px !important;
  }
    
  .navbar .menu li a {
    color: #000;
    text-decoration: none;
  }
   
  .navbar .menu li a:hover {
    color: #888;
  }
    
  .menu-button {
    display: none;
    cursor: pointer;
    color: #000;
    font-size: 24px;
    padding: 10px;
  }
  
  .tel-button {
    background-color: #000;
    color: #fff !important;
    padding: 8px 8px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
  }
    
  .tel-button:hover{
    cursor: pointer;
  }
  
  @media(max-width: 768px){     
    .navbar .logo img {
      max-height: 60px;
      max-width: 60px;
    }
   
  }

  @media (max-width: 1200px) {
   .navbar .menu {
     display: none;
     flex-direction: column;
     text-align: center;
     background-color: #fff;
     color: #000;
     padding: 10px;
     position: absolute;
     top: 57px;
     width: calc(100% - 10px); 
     border-radius: 5px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
   }
    
  .navbar .menu.active {
    display: flex;
  }
    
  .navbar .menu li {
    margin: 5px 0;
    padding: 0;
    display: block;
  }
    
  .navbar .menu li a {
    display: block;
    padding: 5px;
  }
    
  .menu-button {
    display: block;
    }
  }
  
  @media screen and (max-width: 1300px) and (min-width: 1201px) {
    .navbar .menu li {
      font-size: 12px;
      font-weight: 500;
    }
  }
  
  /*----------------------This is popup form code which is 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: 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-iconn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
  }
  
  .popup-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 25px;
    text-align: center;
    color: #000;
  }
  
  .popup-content p{
    font-size: 13px;
    font-weight: 500;
    text-align: center;
  }
  
  .popup-content label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .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;
  }
  
  .submitt-button {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .popup-button {
    font-size: 1.1rem;
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  
  /*----------Media query for popup form----------*/
  @media (max-width: 600px) {
   .popup-content {
     margin: 20px;
    }
  }
  
  @media (max-width: 450px){
    .popup-content h2{
       font-size: 1rem;
    }
  }

 /*-----------------------------home page 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;
  }
}

/*----------Mobile view Form------------*/
.stylish-contact-form {
  max-width: 420px;
  margin: 30px 10px;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

.form-heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #000;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-label i {
  margin-right: 8px;
  color: #000;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 0.9rem;
  color: #333;
}

.form-control:focus {
  outline: none;
  border: 1px solid #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.btn-gradient {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #333, #000);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #000, #333);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .stylish-contact-form {
    display: none;
  }
}

/*-------------------------------overview part---------------------------*/
.overhead{
  text-align: center;
  text-transform: uppercase;
  margin-top: 4%;
  margin-bottom: 2%;
  font-size: 1.8rem;
}

.about-border{
  border: 2px solid #000;
  border-left: 0px;
}
  
.about-heading {
  border-radius: 55px 0 55px 0;
  background: #000;
  padding: 5px 50px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

#aboutus p{
  padding: 5px 10px;
  font-size: 18px;
}

#aboutus{
  margin-top: 5%;
}

@media(max-width: 768px){
  .overhead{
    font-size: 1rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .about-heading {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  #aboutus p{
    font-size: 14px;
  }

  .about-border {
    margin-top: 10px;
  }

}

/*----------------------------gallery part-------------------------------*/
.headgallery{
  text-align: center;
  text-transform: uppercase;
  margin-top: 4%;
  margin-bottom: 1%;
  font-size: 1.8rem;
}

.gallery-container {
  display: flex;
  overflow: hidden;
  max-width: 900px; 
  margin: 0 auto;
}
  
.gallery-thumbnails {
  width: 100px;
  display: flex;
  flex-direction: column;
}
  
.gallery-thumbnails img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border: 2px solid transparent;
}
  
.gallery-thumbnails img.active {
  border-color: #007bff;
}
  
.gallery-main {
  flex: 1;
  overflow: hidden;
  position: relative;
}
  
.gallery-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
}
  
.gallery-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  cursor: pointer;
}
  
.gallery-buttons .btns {
  padding: 8px 30px; 
  background-color: #000; 
  color: #fff; 
  border: none;
  cursor: pointer;
}

 @media (max-width: 991px) {
    .gallery-container {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery-thumbnails {
      flex-direction: row;
      overflow-x: auto;
      width: auto;
    }
  
    .gallery-thumbnails img {
      margin: 0; 
      width: 40%;
    }
  
    .gallery-main img {
      max-width: 100%;
      height: auto;
    }

    .headgallery{
      font-size: 1.2rem;
      margin-top: 20px;
      margin-bottom: 20px;
    }
}

/*-------------------------floorplan----------------------------*/
.planhead{
  text-align: center;
  text-transform: uppercase;
  margin-top: 5%;
  margin-bottom: 2%;
  font-size: 1.8rem;
}

.floor-plan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
  
.floor-plan {
  width: 300px; 
  position: relative;
}
  
  .floorhead {
    text-align: center;
    margin-top: 10%;
    margin-bottom: 2%;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    height: 200px; 
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0; 
    transition: opacity 0.3s ease;
  }
  
  .btn3 {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .image-container:hover .overlay {
    opacity: 1;
  }
  
  .text {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 0 0 5px 5px;
  }
 
  @media (max-width: 768px) {
    .floor-plan {
      width: 100%;
    }
    .planhead{
      font-size: 1.2rem;
      margin-top: 30px;
      margin-bottom: 20px;
    }
  }
  

/*----------------------------pricing------------------------------*/
.pricehead {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-top: 5%;
  margin-bottom: 2%;
}

.pricing-table {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.price-card {
  background-color: #f4f4f4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  padding: 40px;
  text-align: center;
  margin: 10px;
  width: 250px;
  border-radius: 8px;
}

.price-card h4 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.price-card .price {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 10px 0;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn:hover {
  background-color: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .pricehead {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .pricing-table {
    flex-direction: column;
    align-items: stretch;
  }

  .price-card {
    padding: 25px;
    margin: 10px;
    width: auto;
  }

  .price-card h4 {
    font-size: 1rem;
  }
  
  .price-card .price {
    font-size: 16px;
  }

  .btn {
    padding: 5px 10px;
  }

}

/*--------------------------------amenities------------------------*/
.amenhead{
  text-align: center;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-top: 5%;
  margin-bottom: 2%;
}

.amenities-wrap {
  text-align: center;
  padding: 20px 10px;
  position: relative;
  background: #f0f0f0;
  width: 220px;
  margin-top: 30px;
}

.amenities-wrap:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.amenities-wrap:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.amenities-wrap:hover:before, .amenities-wrap:hover:after {
  width: 100%;
  height: 100%;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
}

.custom-col-md-3 {
  flex: 0 0 calc(25% - 10px); 
  margin-bottom: 20px;
}

.custom-container {
  max-width: 1200px; 
  margin: 0 auto; 
}

.amenities-wrap img {
  max-width: 60px;
  height: auto; 
  margin-bottom: 10px; 
}

.img-head{
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

@media (max-width: 767px) {
  .custom-col-md-3 {
    flex: 0 0 calc(50% - 10px); 
  }

  .custom-row {
    padding: 10px;
  }

  .amenities-wrap {
    width: 100%; 
    margin-bottom: 20px;
  }

  .amenhead {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.2rem;
  }

  .amenities-wrap img {
    max-width: 40px;
    height: auto;
  }

  .img-head {
    font-size: 14px;
    font-weight: 400;
  } 

  .amenities-wrap {
    padding: 10px 5px;
    margin-top: 2px;
  }

}

/*--------------------------------location-------------------------------*/
.locathead{
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  margin-top: 5%;
  margin-bottom: 2%;
}

.highlight-box {
  display: inline-block;
  border: 1px solid #000;
  padding: 10px;
  margin: 5px;
  background-color: #f4f4f4;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: calc(43.33% - 20px);
  box-sizing: border-box;
  text-align: center;
  margin-left: 5%;
}


@media(max-width:768px){
  .locathead{
    font-size: 1.4rem;
  }
  .highlight-box {
    width: 95%;
    margin-left: 1%;
  }
}

/*------------------About the Develpoer------------------*/
.about-developer-section {
  background-color: #f0f0f0;
  color: #000;
  padding: 40px 20px;
  margin-top: 30px;
}

.about-developer-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.developer-logo {
  width: 180px;
  height: auto;
}

.developer-heading {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.developer-underline {
  width: 70px;
  height: 4px;
  background-color: #333;
  margin: 10px auto;
}

.developer-description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
}

@media (max-width: 768px) {
  .about-developer-section {
    padding: 20px 15px;
    text-align: center;
  }

  .developer-heading {
    font-size: 26px;
  }

  .developer-description {
    font-size: 14px;
    max-width: 100%;
  }

  .developer-logo {
    width: 100px;
    margin-bottom: 15px;
  }

  .developer-underline {
    width: 50px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .about-developer-section {
    padding: 20px 10px;
  }

  .developer-heading {
    font-size: 22px;
  }

  .developer-description {
    font-size: 13px;
  }

  .developer-underline {
    width: 40px;
  }
}

/*---------------------------contact-----------------------------*/
#contact .contacthead {
  text-align: center;
  text-transform: uppercase;
  margin-top: 5%;
  margin-bottom: 2%;
  font-size: 1.8rem;
}

.contact-us-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 5%;
}

.contact-form {
  flex: 1;
  padding: 20px;
  background-color: #000;
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #fefefe;
  text-transform: uppercase;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  color: #fefefe;
}

.contact-form input {
  margin-bottom: 15px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #333;
  color: #fefefe;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #6e6e6e;
}

.contact-location {
  flex: 1;
  padding: 20px;
  background-color: #100f0f;
  border-radius: 8px;
}

.contact-location h3 {
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

.contact-location p {
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-location p i {
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  #contact .contacthead {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .contact-form h3 {
    font-size: 1.2rem;
  }

  .contact-location h3{
    font-size: 1.2rem;
  }
  
  .contact-us-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-location {
    margin: 0;
    padding: 20px;
  }

  .contact-form input,
  .contact-form button {
    width: 100%;
  }
}


/*------------------------------footer section---------------------*/
.footer-container {
  margin: 5px auto; 
  max-width: 100%; 
  padding: 0 20px; 
  box-sizing: border-box; 
}

.connect-with-me {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.qr-code {
  margin-bottom: 20px;
  text-align: center;
}

.qr-code img {
  border: 2px solid #ddd;
  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: #000;
  font-weight: bold;
  text-decoration: none;
}

.adres_phone_para a:hover {
  text-decoration: underline;
}

.disclaimer-section {
  background-color: #000;
  font-size: 1.1rem;
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.gov-link {
  color: #000;
  font-weight: bold;
}

.terms-link {
  color: #033165;
  font-weight: bold;
}

.privacy-policy-link {
  color: #dadada;
}

.privacy-policy-link:hover {
  color: #fff;
}

@media(max-width: 768px){
  .disclaimer-section{
    margin-bottom: 15%;
  }

  .dispara {
    font-size: 14px;
  }

  .reranum {
    font-size: 1rem;
  }

  .qr-code img {
    width: 80px;
    height: 80px;
  }

}

@media (min-width: 769px) and (max-width: 991px){
  .disclaimer-section{
    margin-bottom: 10%;
  }

}


/*---------------------------------desktop fixed position whatsapp and phone---------------------*/
#desktop-container {
  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; 
}


.ola_uber {
  position: fixed;
  padding: 0 12px;
  height: 40px;
  bottom: 0;
  left: 0;
  color: #fff !important;
  text-align: center;
  z-index: 100;
  margin: 0 auto;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  text-shadow: none;
  font-size: 15px;
  font-weight: 600;
  background-color: #2e2b0a;
  cursor: pointer;
}

.ola_uber img{
  border-style: none;
  vertical-align: middle;
}

@media(max-width: 768px){
  .icn{
     width: 20px;
     height: 20px;
  }
}

@media(max-width: 1200px){
  #desktop-container{
    display: none;
  }
  .mobile-view{
    display: block;
  }
}

/*------------Appointment section---------------------*/
.appointment-button {
  position: fixed;
  right: 0px;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1000;
}

.appointment-button .btn {
  writing-mode: vertical-lr; 
  transform: rotate(180deg);
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
}

/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  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;
 } 

 .ola_uber_mobile {
  padding: 0 10px;
  height: 35px;
  bottom: 0;
  left: 0;
  color: #fff !important;
  text-align: center;
  box-shadow: 2px 3px 15px 0px #100f0f;
  z-index: 100;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  text-shadow: none;
  font-size: 12px;
  font-weight: 600;
  background-color: #2e2b0a;
  cursor: pointer;
} 

/*------------------------media screen for mobile view----------------------*/
@media (max-width: 1200px) {
  .mobile-view {
    display: block;
  }
  .desktopofferbox{
    display: none;
  }
  .mobileofferbox{
    display: block;
  } 
}

@media (max-width: 991px) {
  .mobile-view {
    display: block;
  }
  .desktopofferbox{
    display: none;
  }
  .mobileofferbox{
    display: block;
  }
  .write-box{
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-view {
     display: block;
  } 
  .desktopofferbox{
     display: none;
  }
  .mobileofferbox{
    display: block;
  }
  .write-box{
    display: none;
  }
}



