@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@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=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --theme-font: "Playfair", serif;
  --theme-secondary-font: "Lato", sans-serif;
  --font-color: #314167;
  --font-guest: #D8A928;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

}


html,
body {
  color: var(--font-color);
  overflow-x: hidden;
  font-family: var(--theme-secondary-font);


}


body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}


.heading-font {
  font-family: var(--theme-font);
  font-size: 36px;
}

.heading-color {
  color: var(--font-guest);
}

.font_size {
  font-size: 14px;
  max-width: 80%;
  font-family: var(--theme-secondary-font);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color: var(--font-color) !important;
}
nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: white;
}

.logo {
  width: 100%;
  max-width: 25%;
}

.color_font {
  color: var(--font-color);
}

.villa {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.villa-background {
  position: absolute;
  /* ← This was missing */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0%), rgba(0, 0, 0, 0%)),
    url('https://bluefinconstructions.com/desktop_banners.jpg') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.villa-back {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(to bottom, rgba(0, 0, 0, 0%), rgba(0, 0, 0, 0%)),url('assets/bluefin.jpg') no-repeat center center;
  background-size: contain;
  z-index: 1;
}

.stat-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 24px 0px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.stat-card h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.stat-card p {
  font-size: 0.95rem;
  color: var(--font-guest);
  margin: 0;
  letter-spacing: 0.3px;
}


/* Scroll animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-300px * 5));
    /* Move width * number of items */
  }
}

.feature img {
  margin-bottom: 20px;
  width: 100%;
  max-width: 30%;
}

.feature p {
  font-size: 14px;
  color:#9b9b9b;
  font-weight:400;
}
p{font-family: var(--theme-secondary-font);}
.accordion-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  padding: 18px 20px;
  cursor: pointer;
  background-color: #eee;
  font-weight: bold;
  font-size: 18px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafafa;
}

.accordion-content.open {
  padding: 18px 20px;
  max-height: 500px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
  transform: scale(1.05);
}

/* 
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.lightbox .close {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
} */

@media (max-width: 600px) {
  .gallery img {
    width: 100%;
    height: auto;
  }
.villa {
  height: 90vh;
}
}

.bluefin_locations {
  background-color: var(--font-color);
}

.bluefin_locations h1 {
    font-size: 45px;
    color: #ffffff !important;
    margin-bottom: 10px;
    text-align: center;
   
}

.footer-column {
  font-size: 14px;
  text-align: left;
}


.footer-bottom {
  background-color: var(--font-color);
  text-align: center;
  padding: 15px;
  color: white;
  font-size: 13px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background-color: #1f2a44;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.contact-details a {
  color: var(--font-color) !important;
  margin-right: 30px;
}

.w3-border-red,
.w3-hover-border-red:hover {
  border-color: #314167 !important
}

.w3-padding {
  padding: 16px !important;
}

.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;

  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--font-color);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  color: var(--font-guest);
  cursor: pointer;
}



/* Amber color for text */
.text-amber {
  color: #ffc107 !important;
}

/* Override W3.CSS tab hover if needed */
.w3-hover-amber:hover {
  background-color: #ffc107 !important;
  color: #000 !important;
}

.inline-form-section {
  background-color: #061e3a;
  /* Deep blue */
}

.text-amber {
  color: #ffc107;
}

.btn-amber {
  background-color: #ffc107 !important;
  color: #000;
  font-weight: bold;
  border: none;
}

.btn-amber:hover {
  background-color: #e0a800;
  color: #fff;
}

.image-hover-wrap {
  position: relative;
  overflow: hidden;
}

.image-hover-wrap img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-hover-wrap:hover img {
  transform: scale(1.05);
}

.hover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--font-guest);
  color: var(--font-color);
  text-align: center;
  padding: 12px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  font-size: 1.2rem;
  font-weight: bold;
}

.image-hover-wrap:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}

.floor_plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.tabs,
.sub-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tower-tab {
  padding: 12px 30px;
  border: none;
  background: #f0f0f0;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tower-tab:hover {
  background: #e0e0e0;
}

.tower-tab.active {
  background: var(--font-color);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.sub-tab {
  padding: 10px 30px;
  border: 2px solid #ddd;
  background: white;
  color: #444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sub-tab:hover {
  background: #f5f5f5;
  border-color: #aaa;
}

.sub-tab.active {
  background: var(--font-guest);
  color: white;
  border-color: var(--font-color);
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
}


.sub-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}


.floor-img {
  max-width: 90%;
  height: 90%;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.floor_plan_content.active {
  filter: blur(2px);
}

.btn-floor {
  position: absolute;
  background-color: var(--font-color);
  color: white;
  top: 45%;
  left: 45%;
  padding: 10px;
  z-index: 9;

}

.btn-floor:hover {
  background-color: var(--font-guest);
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

.sub-content {
  display: none;
}

.sub-content.active {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

*/ .floor_plan {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--font-color);
  color: #fff;
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 100%;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: opacity 0.4s, transform 0.4s;
}

#backToTop:hover {
  background-color: var(--font-guest);
  transform: scale(1.);
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.scroll {
  --transition-time: 0.4s;
  --width-arrow-line: 6px;
  --color-arrow: #ffffff;
}

.top-btn {
  display: block;
  width: 80px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;
  background-color: #2589BD;
  box-shadow: 0 0 10px #2589BD;
  overflow: hidden;
}

.top-btn::before,
.top-btn::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  translate: -50% 0;
}

.top-btn::before {
  width: 24px;
  aspect-ratio: 1 / 1;
  border-top: var(--width-arrow-line) solid var(--color-arrow);
  border-left: var(--width-arrow-line) solid var(--color-arrow);
  rotate: 45deg;
}

.top-btn::after {
  width: var(--width-arrow-line);
  height: 50%;
  background-color: var(--color-arrow);
}

.scroll--active .top-btn:hover::before,
.scroll--active .top-btn:hover::after {
  animation: top 0.8s infinite;
}

@keyframes top {
  0% {
    top: 100%;
  }

  100% {
    top: -50%;
  }
}

.cta-download {
  position: fixed;
  top: 50%;
  right: -54px;
  transform: rotate(-90deg) translateY(90%);
  background-color: var(--font-color);
  color: #fff;
  padding: 4px 20px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 9999;
  border-radius: 20px;
}

.cta-download:hover {
  background-color: var(--font-guest);
}

.villa-text {
  width: 30%;
  background-color: var(--font-color);
  color: var(--font-guest);
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.villa-text h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.villa-text p {
  font-size: 15px !important;
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 300;
}

.accordion {

  height: 200px !;
}

.gallery_item {
  height: 599px;
}

.accordion .item {
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  flex: 1;
  transition: flex 0.6s ease-in-out;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 22px, rgba(0, 0, 0, 0.22) 0px 0px 0px;
  cursor: pointer;
}

.accordion .item:hover {
  flex: 5;
}

.accordion .item:hover .bluefin-img {
  rotate: 0deg;
  position: absolute;
  right: 0px;
  font-size: 33px;
  color: white;
  white-space: nowrap;
  z-index: 10;
  width: 100%;
  max-width: 92%;
  bottom: 40px;
}

.bg-barcelona {
  background-image: url('../../assets/klubhouse.jpg');
}

.bg-sydney {
  background-image: url('../../assets/sport-arena.jpg');
}

.bg-venice {
  background-image: url('../../assets/skywalk.jpg');
}

.bg-singapore {
  background-image: url('../../assets/community/images -16.png');
}


/*.form-selection {*/
/*  --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);*/
/*  display: block;*/
/*  width: 100%;*/
/*  padding: 0.375rem 3.25rem 0.375rem .75rem;*/
/*  font-size: 1rem;*/
/*  font-weight: 400;*/
/*  line-height: 1.5;*/
/*  color: var(--bs-body-color);*/
/*  -webkit-appearance: none;*/
/*  -moz-appearance: none;*/
/*  appearance: none;*/
/*  background-color: var(--bs-body-bg);*/
/*  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);*/
/*  background-repeat: no-repeat;*/
/*  background-position: right .75rem center;*/
/*  background-size: 16px 12px;*/
/*  border: var(--bs-border-width) solid var(--bs-border-color);*/
/*  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;*/
/*  margin-bottom: 1rem;*/
/*}*/

@media (max-width: 425px) {

    .villa-text {
    width: 100% !important;
    background-color: #1d2a42;
    color: #f5c34b;
    padding: 20px !important;
    padding-bottom: 10px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px !important;
  }
   
   .form-header h2 {
      font-size: 2rem !important;
    }
   
  .form-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 2000px;
    padding: 39px;
    margin: -0.5rem;
    top: -50px;
    left: 0px;
    background: #0000004d;
  }

  .display-5 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1rem;
    padding: 0 15px;
  }

  .image-hover-wrap {
    height: 200px;
  }

  .image-hover-wrap img {
    object-fit: cover;
    height: 100%;
  }

  .hover-text {
    font-size: 14px;
    padding: 6px 0;
  }

  .item {
    height: 250px;
  }

  .why-choose {
    height: auto;
  }

  .why-choose .heading-font {
    font-size: 2rem;
    padding: 1rem 0;
  }

  .feature img {
    width: 20px;
    height: auto;
    margin-bottom: 0.75rem;
  }

  /*.feature p {*/
  /*  font-size: 1rem;*/
  /*  line-height: 1.4;*/
  /*  padding: 0 10px;*/
  /*}*/

  .floor_plan {
    padding: 1rem;
  }

  .tabs {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: stretch;
    margin-bottom: 1rem;
  }

  .tower-tab {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center;
  }

  .tower-tab.active {
    background-color: var(--font-color);
    color: #fff;
  }

  .content-section {
    display: none;
  }

  .content-section.active {
    display: block;
  }

  .floor-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .sub-content {
    text-align: center;
  }

  .bluefin_locations .row {
    flex-direction: column;
  }

  .bluefin_locations h1 {
    font-size: 1.5rem;
     text-align: center;
  }

  .bluefin_locations .col-lg-6 {
    width: 100%;
  }

  .footer .row {
    flex-direction: column;
    text-align: center;
  }

  .contact-details {
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .footer .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-sub-content {
    margin-top: 1rem;
  }

  .brochure,
  #backToTop {
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
  }

  #backToTop {
    bottom: 20px;
  }

  .cta-download {

    padding: 5px !important;
    top: 50% !important;
  }

  .villa-background {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0%), rgba(0, 0, 0, 0%)),
      url('assets/back_img_mobile.jpg') no-repeat center center;
  }

  .btn-floor {
    top: 38%;
    left: 30%;
    font-size: 12px;
    padding: 8px 10px;
  }

  
.accordion .item:hover .bluefin-img {
  rotate: 0deg;
  position: absolute;
  right: 0px;
  font-size: 20px !important;
  color: white;
  white-space: nowrap;
  z-index: 10;
  width: 100%;
  max-width: 92%;
  bottom: 20px !important;
}
 .bluefin-img {
    position: absolute;
    right: -20px !important;
    font-size: 16px !important;
    color: white;
    white-space: nowrap;
    z-index: 9;
    width: 100%;
    max-width: 75%;
    rotate: 270deg;
    bottom: 30px !important;
 }
}

#enquiry_form_two {
  position: fixed;
  top: 50%;
  right: -21px;
  transform: rotate(-90deg) translateY(100%);
  background-color: var(--font-color);
  color: white;
  padding: 4px 20px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 9999;
  border-radius: 20px;
  text-decoration: none;
}

#enquiry_form_two:hover {
  background-color: var(--font-guest);
}

#enquiry_form_one {
  bottom: 10px;
  background-color: var(--font-color);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 9999;
  border-radius: 20px;
  text-decoration: none;
  width: 100%;
  max-width: 50%;
  margin-bottom: 20px;
}

#enquiry_form_one:hover {
  background-color: var(--font-guest);
}


.popup-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 30%;
  transform: translate(100%, -50%);
  background: white;
  padding: 4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  width: 500px;
}

/*.popup-form form {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/

/*.popup-form input,*/
/*.popup-form textarea {*/
/*  margin-bottom: 1rem;*/
/*  padding: 0.5rem;*/
/*  border: none;*/
/*  border-bottom: 1px solid black !important;*/
/*  color: black;*/
/*}*/


.close-icon {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  color: black;
  cursor: pointer;
  transition: color 0.3s;
}

.close-icon:hover {
  color: var(--font-guest);
}

.submit_btn {
  background-color: var(--font-color);
  /* update this with your actual color variable */
  color: white;
  height: 40px;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.myDropdown {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-bottom: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #333;
  cursor: pointer;
  transition: border-color 0.3s;
}

.myDropdown:focus {
  border-color: black;
  outline: none;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.form-header h2 {
  margin: 0;
  font-size: 2rem;
  color: #333;
}

.slider {
  width: 100%;
  max-width: 95%;
  height: 500px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.masterpiece-section {
  min-height: 80vh;
  /* Use min-height to make sure it doesn't overlap with the video */
  background: url('../assets/whitebg.png');
  background-repeat: no-repeat;
}

.slide_elements {
  display: flex;
  align-items: center;
  justify-content: center;
}

.masterpiece-image-container {
  position: relative;
  flex: 0 0 25%;
  height: 100%;
  overflow: hidden;
  /* Hide any part of the image that exceeds the container */
}

.masterpiece-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  /* Add fade-in animation */
  transition: transform 0.5s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.masterpiece-text {
  flex: 0 0 50%;
  padding: 20px 40px 0px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.masterpiece-text h2 {
  font-size: 25px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.masterpiece-text p {
  font-weight: 400;
  color: var(--font-color);
  font-size: 15px !important;
  line-height: 1.6;
}

.heading-guest {
  color: var(--font-guest) !important;
}
#project_overview p{
    color: var(--font-guest);
}
.three-lines {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* space between the lines */
  margin-bottom: 20px;
  position: absolute;
  top: -45px;
  left: 5%;
}

.line {
  width: 6px;
  /* thickness of each line */
  height: 80px;
  /* height of the lines */
  background-color: #7b6149;
  /* color matching your design */
}

.lines {
  width: 6px;
  height: 50px;
  background-color: #7b6149;
  margin: 0px 10px auto;
}



.custom-slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-slider {
  position: relative;
  width: 500px;
  height: 400px;
  overflow: hidden;


}

.custom-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*.slide {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: none;*/
/*}*/

/*.slide.active {*/
/*  display: block;*/
/*}*/

/*.prev,*/
/*.next {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  background-color: rgba(0, 0, 0, 0.5);*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 8px 12px;*/
/*  cursor: pointer;*/
/*  border-radius: 4px;*/
/*}*/

/*.prev {*/
/*  left: 10px;*/
/*}*/

/*.next {*/
/*  right: 10px;*/
/*}*/

/*.dots {*/
/*  text-align: center;*/
/*  position: absolute;*/
/*  bottom: 10px;*/
/*  width: 100%;*/
/*}*/

/*.dot {*/
/*  display: inline-block;*/
/*  width: 10px;*/
/*  height: 10px;*/
/*  margin: 0 4px;*/
/*  background-color: #bbb;*/
/*  border-radius: 50%;*/
/*  cursor: pointer;*/
/*}*/

/*.dot.active {*/
/*  background-color: #333;*/
/*}*/



.slider{
  width: 100%;
  max-width: 95%;
  height: 500px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
  transition: 1s;
}
.list img{
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height:85%;
  object-fit: cover;
}
.buttons{
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.buttons button {
  width: 50px;
  height: 50px;
  border-radius: 505;
  background-color: #fff5;
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}
.dots{
  position: absolute;
  bottom: 60px;
  color: #fff;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  transition: 1s;
}
.dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 20px;
  border-radius: 20px;
}
.dots li.active {
  width: 30px;
}
@media screen and ( max-width: 768px) { 
  .slider {
      height: 400px;
  }
  
}

/* Responsive - mobile friendly */
@media(max-width: 768px) {

  .logo {
    width: 100%;
    max-width: 50%;
  }

  .masterpiece-section {
    flex-direction: column;
    min-height: auto;
    padding: 0px;
  }

  .masterpiece-image-container,
  .masterpiece-text {
    flex: 0 0 20%;
    width: 100%;
  }

  .masterpiece-text {
    padding: 20px !important;
  }

  .masterpiece-image-container img {
    height: 500px;
    max-height: 300px;
  }

  .masterpiece-text p {
    font-size: 11px;
  }

  /*.three-lines {*/
  /*  top: -60px;*/
  /*  left: 42%;*/
  /*  gap: 0px;*/
  /*}*/

  .line {
    width: 6px;
    height: 100px;
  }

  .lines {
    width: 6px;
    height: 60px;
  }

  .three-lines {
    top: -120px;
    left: initial;
    right: 40px;
    gap: 10px;
    justify-content: end !important;
  }

  #project_overview {
    /*padding-top: 2rem;*/
    padding-bottom: 2rem;
    height: auto;
    /* instead of vh-100 on small screens */
  }

  #project_overview .stat-card h2 {
    font-size: 1.5rem;
  }

  #project_overview .stat-card p {
    font-size: 1rem;
  }

  #project_overview .row {
    row-gap: 1.5rem;
  }

  /* #project_overview .col-6,
  #project_overview .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  } */



  .mobile-action-buttons {
    /*display: flex !important;*/
    /*justify-content: center;*/
    /*gap: 10px !important;*/
    position: fixed;
    bottom: 15px;
    left: 0% ;
    /* transform: translateX(40%); */
    /*z-index: 1000;*/
    /*justify-content: space-evenly;*/
  }




  .action-btn {
    padding: 10px 20px;
    background-color: var(--font-color);
    /* dark maroon background */
    color: #fff;
    border: 1px solid var(--font-guest);
    /* golden-ish border color */
    border-radius: 50px;
    /* pill shape */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    /* equal width buttons */
    text-align: center !important;
  }

  .action-btn:hover {
    background-color: var(--font-guest);
  }


  .border-bottom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding: 3px 3px;
    width: 50%;
    margin-bottom: 10px;
    background: transparent;
    color: #000;

  }

  .bluefin-img {
    z-index: 1;
  }


  .villa-text h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .villa-text p {
    font-size: 1rem;
    line-height: 1.5;
  }


  .bluefin-img {
    text-align: center;
    width: 100%;
  }

  .why-choose {
    width: 100%;
    height: auto;
    /* Avoid vh-100 on mobile */
  }

  .why-choose h1 {
    font-size: 1rem;
    padding: 0;
  }
  
  ul{
  font-size: 20px;
}



  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

  }

  .feature img {
    width: 60px;
    height: auto;

  }

  .feature p {
    font-size: 0.75rem;
    line-height: 1;
  }



  .floor_plan {
    padding: 2rem 1rem;
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .tower-tab {
    flex: 1 1 45%;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    text-align: center;
    background-color: #f0f0f0;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
  }

  .tower-tab.active {
    background-color: var(--font-color);
    color: #fff;
  }

  .content-section {
    text-align: center;
  }

  .floor-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 1rem;
  }

  .bluefin_locations {
    padding: 2rem 1rem;
  }

  .bluefin_locations h1 {
    font-size: 2rem;
  }

    .bluefin_locations iframe {
      width: 100% !important;
      height: 250px;
      margin-bottom: 2rem;
      border-radius: 0.5rem;
    }

    .bluefin_locations .row {
      flex-direction: column;
    }

    .bluefin_locations .col-lg-6 {
      width: 100%;
      text-align: center;
     
    }


   .footer h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 10px !important;
    }

    .footer .contact-details {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    .footer .social-icons {
      justify-content: center;
      margin-top: 1rem;
    }

    .footer-bottom {
      padding-top: 1rem;
      padding-bottom: 1rem;
      font-size: 0.9rem;
    }

    .footer-bottom .footer-sub-content {
      padding-top: 0.5rem;
    }

    #backToTop {
      right: -1rem;
      bottom: 5rem;
     padding: 11px 17px !important;
      left: 90%;
    }

    .brochure {
      bottom: 80px;
      right: 1rem;
    }



    .popup-form {
      width: 90%;
      max-width: 400px;
      left: 50%;
      transform: translateX(-50%);
      padding: 2rem 1.5rem;
    }

    .popup-form input,
    .popup-form select,
    .popup-form button {
      width: 100%;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

   



  }

  .form-container {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #090022b8;
    padding-bottom: 20px !important;
  }

  #mysecondform input::placeholder {
    color: white !important;
    font-size: 13px;
  }

  .villa-text {
    width: 30%;
    background-color: #1d2a42;
    color: #f5c34b;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px;
  }

  .villa-text h1 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 30px;
  }

  .villa-text p {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.6;
    font-weight: 300;
  }

  .accordion {
    display: flex;
  }

  .gallery_item {
    height: 599px;
  }

  .accordion .item {
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    flex: 1;
    transition: flex 0.6s ease-in-out;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 22px, rgba(0, 0, 0, 0.22) 0px 0px 0px;
    cursor: pointer;
  } 

  .accordion .item:hover {
    flex: 5;
  }

  .accordion .item:hover .bluefin-img {
    rotate: 0deg;
    position: absolute;
    right: 0px;
    font-size: 33px;
    color: white;
    white-space: nowrap;
    z-index: 10;
    width: 100%;
    max-width: 92%;
    bottom: 40px;
  }



.bluefin-img {
    position: absolute;
    right: -13px;
    font-size: 24px;
    color: white;
    white-space: nowrap;
    z-index: 9;
    width: 100%;
    max-width: 75%;
    rotate: 270deg;
    bottom: 100px;
}

  .floor-plan-container {
    position: relative;
    width: 100%;
    max-width: 600px;
   
  }

  .floor-plan-img {
    width: 100%;
    display: block;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .overlay.unlocked {
    display: none;
  }

  .popup-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    z-index: 2000;
  }

  .btn-schedule-visit {
    background-color: var(--font-guest);
    /* or any color like #c8a45b */
    color: #fff;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(39, 38, 38, 0.2);
    transition: background-color 0.3s ease;
    text-align: center;
    margin: 0px auto 30px auto;
  }

  .btn-schedule-visit:hover {
    background-color: var(--font-guest);
    /* golden-brown shade on hover */
  }

  .sub-content {
    position: relative;
    /* keep the image and overlay relative */
  }

  .floor-img {
    width: 100%;
    display: block;
  }

  .unlock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(236, 233, 233, 0.5);
    /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    /* above the image */
  }

  .btn-unlock {
    background-color: #c8a45b;
    /* Golden color */
    color: #fff;
    border: none;
    outline: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }

  .btn-unlock:hover {
    background-color: #b48b45;
  }

  .border-bottom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    /* or your brand color */
    outline: none;
    padding: 8px 4px;
    width: 100%;
    margin-bottom: 15px;
    background: transparent;
    color: #000;
    /* tweak this as needed */
  }

  @media (max-width: 375px) {
    .features {
      /*display: flex;*/
      /*flex-wrap: nowrap;*/
      /* don't wrap, even on mobile */
      /*overflow-x: auto;*/
      /* make it scrollable if it overflows */
      /*gap: 1rem;*/
    }

    /*.features .col-lg-2 {*/
    /*  flex: 0 0 auto;*/
    /*  width: 500px;*/
    /*}*/

  }
  btn-schedule-visit {
    background-color: var(--font-guest);
    color: #fff;
    border: none;
    outline: none;
    padding: 5px 5px;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(39, 38, 38, 0.2);
    transition: background-color 0.3s ease;
    text-align: center;
    /* margin: 30px auto; */
}
  .footer-bottom a{
    font-family: var(--theme-secondary-font);
}
  @media (max-width: 768px) {
      #enquiry_form_one {
          font-size: 14px;
          max-width:100%;
      }
      .list img{
          max-height: 100%;
      }
      .dots li{
          background-color: var(--font-color);
      }
      .buttons{
          top:28%;
      }
      .action-btn{
          padding: 10px 50px;
      }
      .mobile-action-buttons{
          left: 5%;
      }
.masterpiece-section{
    background:none !important;
}
.footer-bottom a{
    font-size:12px;
}
  }
  
  .offcanvas-body li a {
      font-size: 14px;
          font-family: var(--theme-secondary-font);
  }