
@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;
  /* color: #123e5b; */
}
  
.navbar {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 10px !important;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.2);;
}
    
.navbar .logo {
  flex: 1;
  padding: 0 10px;
}
    
.navbar .logo img {
  max-height: 60px;
  vertical-align: middle;
}
    
.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: #123e5b;
  text-decoration: none;
}
   
.navbar .menu li a:hover {
  color: #438cbd;
}
    
.menu-button {
  display: none;
  cursor: pointer;
  color: #123e5b;
  font-size: 24px;
  padding: 10px;
}
  
@media (max-width: 1200px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    text-align: center;
    background-color: #ffffff;
    color: #000;
    padding: 10px;
    position: absolute;
    top: 60px;
    width: calc(100% - 20px); 
    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;
    }
  }

  .call-button {
    background-color: #123e5b;
    color: #fff !important;
    padding: 10px 8px;
    border-radius: 5px;
    text-decoration: none;
  }
    
  .call-button:hover{
    cursor: pointer;
  }


/*--------------home page image styles for mobile-----------------*/

/* .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control{
    color: #000;
    font-size: 25px;
    font-weight: bold;
}

@media (max-width: 768px) {
  .for-desktop {
    display: none !important;
  }

  .for-mobile {
    display: block !important;
  }
} 

@media(max-width: 600px){
   .carousel-item img {
      width: 100%;
      height: 380px !important;
   } 
}

@media(max-width: 2400px){
  .for-mobile{
    display: none !important;
  }

  .for-desktop{
    display: block !important;
  }
} */

/*----------------------code for home slider-----------------*/
.for-desktop {
  display: block;
  width: 100%;
  height: auto;  
}

.for-mobile {
  display: none;
  max-width: 768px !important; 
  width: 100%;
  height: auto;   
}

/* Media query for screens smaller */
@media (max-width: 768px) {
  .for-desktop {
    display: none;
  }

  .for-mobile {
    display: block;
  }
}
 
 /*---------------------------------overview section css code-----------------------*/
.overview-section {
  background-color: #f5f5f5;
  padding: 50px;
  margin-top: 2%;
  text-align: center;
}

.overview-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overimage {
  max-width: 400px;
  height: 450px;
  border: 8px double #123e5b;
  margin-right: 20px;
}

.text-content {
  text-align: left;
}

.overhead {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #123e5b;
}

.overpara {
  font-size: 1.2em;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .overview-section {
    margin-top: 1%; 
  }

  .overview-content {
    flex-direction: column;
    align-items: center;
  }

  .overimage {
    margin-right: 0; 
    margin-bottom: 20px;
  }
}

@media (max-width: 500px){
  .overimage{
    max-width: 280px;
    height: 300px;
  }

  .overhead{
    font-size: 1.5rem;
  }

  .overpara {
    font-size: 1em;
  }
}



/*----------------------------------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:#123e5b;
  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: #123e5b;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 50px;
}

.icons img {
  width: 55px;
  height: 55px;
  margin: 0 5px;
}

.icons .formimageicon{
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}


/* Media query for smaller screens */
@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;
 }
}


/*--------------------------brochure-------------------------*/
.brochure {
  background-color: #123e5b;
  transform: rotate(-90deg);
  position: fixed;
  left: -75px;
  letter-spacing: 3px;
  top: 50%;
  padding: 10px;
  z-index: 10;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0px 24px 36px -11px rgba(0,0,0,0.09);
  cursor: pointer;
} 



/*---------------------------------highlights code------------------------------*/
.highlight-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 10px;
  padding: 10px;
}

.project-container {
  background: url('images/home3.jpg') center/cover fixed;
  padding: 50px;
  margin-top: 4%;
}

.highlight-card {
  border: 2px solid #ccc;
  margin: 20px;
  padding: 10px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7); 
  transition: transform 0.3s ease-in-out;
  height: 90%; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-card:hover {
  transform: scale(1.05); 
}

.highlight-card h4 {
  margin: 0;
  color:#000;
}

.highlight-card[data-aos='fade-up'] {
  opacity: 0;
  transform: translateY(50px);
}

.highhead {
  text-align: center;
  width: 50%;
  font-size: 1.7em;
  font-weight: bold;
  color: #f0f0f0;
  background-color:#123e5b;
  padding: 6px 6px;
  border-top-left-radius: 100px; 
  border-bottom-right-radius: 100px;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .highlight-card {
    margin: 10px;
    padding: 10px;
    height: auto;
  }

  .highlight-card h4 {
    font-size: 1.2em; 
  }

  .highhead {
    width: 100%;
    font-size: 1.2em;
    padding: 5px 5px;
  }
}

@media(max-width: 500px) {
  .highlight-card h4 {
    font-size: 1em; 
  }
}

/*-------------------css for configuration-------------------*/
.config {
  padding: 50px;
  text-align: center;
  margin-top: 2%;
}

.sec-tittle h2 {
  color: #123e5b;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.config-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.config-table th, .config-table td {
  border: 2px solid #ddd;
  font-weight: bold;
  font-size: 1rem;
  padding: 15px;
  text-align: left;
}

.price-button{
  background-color: #123e5b;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
}

.price-button:hover{
   background-color:#000;
   color: #fff;
}

@media(max-width: 500px){
  .sec-tittle h2 {
    font-size: 1.8rem;
  }

  .config-table th, .config-table td {
    font-size: 14px;
  }

  .config{
    padding: 20px;
  }
}

/*--------------------------------amenities section---------------------------------*/
.amenity-item {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 2px solid #123e5b;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s ease-in-out;
}

.amenity-item:hover {
  transform: scale(1.05);
}

.amenity-image {
  margin-top: 20px;
  width: 100px;
  height: auto;
}

.amenity-title {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #123e5b;
}

.amenities-heading {
  text-align: center;
  color: #123e5b;
  font-size: 36px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .amenity-item {
    margin-bottom: 20px;
  }
}


/*------------------------------------------------location advantage code---------------------------------*/
.section-tittle h2 {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
   margin-top: 30px;
  margin-bottom: 20px;
  color: #123e5b;
}
    
.accordion-container {
  display: flex;
  align-items: center;
  justify-content: center; 
}

.accordion {
  flex: 1;
  max-width: 50%;
}

.accordion-item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.accordion-heading {
  padding: 10px;
  background-color: #123e5b;
  color: #fff;
  cursor: pointer;
}

.accordion-content {
  display: none;
  list-style: none;
  padding: 0;
}

.accordion-content.show {
  display: block;
}

.accordion-content li {
  padding: 5px 10px;
  list-style-type: none;
}

.icoon {
  float: right;
  font-size: 20px;
}


@media (max-width: 800px) {
  .accordion-container {
    flex-direction: column;
    margin-left: 0;
  }
  
  .accordion {
    width: 100%; 
    margin: 0 auto; 
  }

}

@media (max-width: 580px) {
  #location .locathead {
    font-size: 1.8rem;
  }
  
}

/*-----------------------------gallery section--------------------------*/
.mytabb {
  text-align: center;
  border-bottom: none;
  margin-bottom: 40px;
}

.tab-content-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.col-md-4.gallery-pd {
  flex: 0 0 33.333%; 
  max-width: 33.333%;
  box-sizing: border-box;
  padding: 15px;
}

.navv {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navv a {
  text-decoration: none;
  font-size: 18px;
  padding: 15px;
  display: block;
}

.navv a:hover {
  color: #fff;
  background-color: #000;
}

.nav-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.nav-tabs a {
  border: 1px solid #ddd;
  border-radius: 4px 4px 0 0;
  padding: 10px 15px;
  display: inline-block;
  background-color: #123e5b;
  color: #fff;
  cursor: pointer;
}

.nav-tabs a.active {
  border-bottom: 2px solid #fff;
}

.pro-overlay {
  width: 100%;
  height: 100%;
  background: rgba(55 59 59 / 80%);
  position: absolute;
  top: 0;
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.section-gallery {
  padding: 60px 0;
}

.gallery-tittle h2 {
  font-size: 35px;
  line-height: 48px;
  margin-top: 0;
  font-weight: 500;
  color: #123e5b;
  margin-bottom: 2%;
  text-align: center;
}

.gallery-pd {
  padding: 15px;
}

.project-gallery img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
}
        
.project-gallery:hover .floor-overlay {
  opacity: 1;
}

.project-gallery .floor-image {
  filter: blur(3px) !important; 
  border: 1px solid #123e5b;
}

.floor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5); 
  opacity: 0;
  transition: opacity 0.3s;
}

.floor-button {
  background-color: #123e5b; 
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .col-md-4.gallery-pd {
    flex: 0 0 100%; 
    max-width: 100%;
  }

  .project-gallery img {
    height: auto;
  }

  .navv {
    align-items: center;
  }

  .navv li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .navv a {
    margin-right: 0;
  }

  .nav-tabs a {
    width: 100%;
    text-align: center;
  }
}

/*-------------------------------contact us section---------------------------------------*/
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cnthead{
  text-align: center;
  color:#123e5b;
  margin-top: 2%;
  margin-bottom: 1%;
}

h4{
  color:#123e5b;
}

.map-container {
  flex: 1;
  height: 400px; 
  width: 100%; 
}

.form-container {
  flex: 1;
  padding: 20px;
}

.form-group-prepend {
  display: flex;
  align-items: center;
}

.input-group-text{
  color: #123e5b;
}

.form-group-prepend .input-group-text {
  border-right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-group-prepend .input-group-prepend {
  margin-right: -1px;
}

.form-group-prepend .input-group-prepend i {
  padding: 10px;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-right: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.bttn2 {
  padding: 10px;
  background-color: #123e5b;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.bttn2:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }

  .map-container {
      height: 400px; 
  }

  .map-container iframe {
      width: 100%; 
      height: 100%; 
  }

  .form-container {
      width: 100%;
  }
}


/*-------------------------------footer
footer {
  background-color: #072133;
  padding: 20px;
  color: #fff;
  font-size: 14px;
  margin-top: 10%;
  margin-bottom: 2%;
}

.disclaimer h3 {
  margin-bottom: 10px;
}

footer .footerpolicy a {
  text-align: center;
  color: #d7d7d7;
  font-size: 12px;
}

.disclaimer {
  border-top: 2px solid #fff;
}

.maha {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-code-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1%;
  gap: 5px;
} 

footer .qr-code-img {
  width: 150px; 
  height: 150px; 
  margin-bottom: 4%;
}


@media (max-width: 300px) {
  .footerpolicy {
    margin-bottom: 5%; 
  }
}

@media (max-width: 768px) {
  .footerpolicy {
    margin-bottom: 10%; 
  }
}

@media (max-width: 1200px) {
  .footerpolicy {
    margin-bottom: 15%; 
  }
}

@media (max-width: 768px) {
  .qr-code-container {
    justify-content: center;
    position: relative; 
  }
}  */


.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 #123e5b;
  max-width: 100%; 
}

.adres_para,
.adres_submision_para,
.adres_email_para,
p {
  margin: 0;
}

.adres_email_para {
  text-align: center;
}

.adres_email_para a {
  color: #123e5b;
  font-weight: bold;
  text-decoration: none;
}

.adres_email_para a:hover {
  text-decoration: underline;
}

.disclaimer-section {
  background-color: #072133;
  color: #fff;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.gov-link {
  color: #123e5b;
  font-weight: bold;
}

.terms-link {
  color: #123e5b;
  font-weight: bold;
}

.privacy-policy-link {
  color: #dadada;
}

.privacy-policy-link:hover {
  color: #000;
}

@media(max-width: 400px){
  .disclaimer-section{
    margin-bottom: 20%;
  }
}

@media(max-width: 768px){
  .disclaimer-section{
    margin-bottom: 15%;
  }
}



/*---------------------------------desktop fixed position whatsapp and phone---------------------*/
#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; 
}


.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: 16px;
  font-weight: 500;
  background-color: #021521;
  cursor: pointer;
}

.ola_uber img{
  border-style: none;
  vertical-align: middle;
}

@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: 1200px){
  #desktop-view{
    display: none;
  }
  /* .mobile-view{
    display: block;
  } */
}

/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0f281c;
  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: 15px;
  font-weight: 500;
  background-color: #123e5b;
  cursor: pointer;
} 

/*------------------------media screen for mobile view----------------------*/
@media (max-width: 1200px) {
  .mobile-view {
    display: block;
  } 
}






/*-------------------AOS animations------------------------*/
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

[data-aos].aos-animate {
    opacity: 1;
}



