@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: #112b47;
  --font-guest: #D8A928;
  --theme-grey: #949494;
}

html,
body {
  margin: 0;
  padding: 0;

}

::-webkit-scrollbar {
  width: 5px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background: var(--font-color);
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

.logo {
  width: 100%;
  max-width: 25%;
}

.button {
  background-color: var(--font-color);
  color: #ffffff;
  padding: 5px 20px;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button:hover {
  background-color: var(--font-color);
}

.bluefin-nav li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--font-color);
  font-weight:500;

}

.videos {
  height: 100vh;
}

.video {
  width: 100%;
  height: 100%;
  /* Full viewport height */
  object-fit: cover;
}

nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: white;
}

.text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 2;
  text-align: center;
}

h1 {
  font-family: var(--theme-font);
  font-weight: 300 !important;
  color: var(--font-color) !important;
}

.heading-three {
  font-family: var(--theme-font) !important;
  color: var(--font-color) !important;
}

.heading-two {
  font-family: var(--theme-font) !important;
  color: var(--font-color) !important;
}

.heading-four {
  font-family: var(--theme-font) !important;
  color: var(--font-color) !important;
}

/* 
#heading-one {
  font-size: 3rem;
  font-family: var(--theme-font);
} */

.heading-guest {
  color: var(--font-guest);

}

/* Ensures no overlap, each section takes full space and moves down naturally */
/* .masterpiece-section {
  min-height: 80vh;
  background: url('../assets/whitebg.png');
  background-repeat: no-repeat;
  background-size: cover;
} */

.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;
  text-align: center;
  z-index: 2;
  position: relative;
}

.masterpiece-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.masterpiece-text p {
  font-weight: 400;
  color: var(--font-color);
  font-size: 16px;
  line-height: 1.4;
}

.heading-guest {
  color: var(--font-guest) !important;
}

.three-lines {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* space between the lines */
  margin-bottom: 20px;
  position: absolute;
  top: -48px;
  left: 1%;
}

.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;
}

.nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #ffffffcc;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.nav-btn:hover {
  background: #ffffff;
}

.left-btn {
  left: 15px;
}

.right-btn {
  right: 15px;
}

/* Responsive - mobile friendly */
@media(max-width: 768px) {
  .masterpiece-section {
    flex-direction: column;
    min-height: auto;
    padding: 0px;
  }

  .masterpiece-image-container,
  .masterpiece-text {
    flex: 0 0 20%;
    width: 100%;
  }

  .masterpiece-image-container,
  .masterpiece-texti {
    flex: 0 0 20%;
    width: 100%;
  }

  .masterpiece-text {
    padding: 20px !important;
  }

  .masterpiece-texti {
    padding: 0px 20px 20px 20px !important;
  }

  .masterpiece-image-container img {
    height: 500px;
    max-height: 300px;
  }

  .masterpiece-text p {
    font-size: 14px;
  }

  .masterpiece-texti p {
    font-size: 11px;
  }

  .three-lines {
    top: -49px;
    left: 46%;
    gap: 0px;
  }

  .line {
    width: 3px;
    height: 50px;
  }

  .lines {
    width: 3px;
    height: 35px;
  }

  .bluefin-img {
    left: -12px !important;
    bottom: 50px !important;
  }

  .accordion {
    height: 400px !important;
  }

  .villa-text {
    width: 100% !important;
    padding: 25px 20px !important;
  }

  .tab-title {
    font-size: 16px !important;
    text-align: center !important;
  }

  .tab-container {
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }

  .tab-text {
    max-width: 100% !important;
  }

  .tab-content p,
  .location-section .infra-content p {
    font-size: 12px !important;
  }

  .tab-container .tab-data h2 {
    font-size: 22px !important;
  }

  .tab-container .tab-data {
    gap: 14px !important;
    flex-wrap: nowrap !important;
  }

  .tab-title {
    width: 100%;
    max-width: 50% !important;
  }

  .logo {
    max-width: 50% !important;
  }
  .mission_content,.vision_content{
    position: static !important;
    border: 0px !important;
  }
  .logo_icon {
    max-width: 47% !important;
    top: -32% !important;
  }
  .masterpiece-section .logo_icon {
    max-width: 47% !important;
    top: 7% !important;
  }
  .blufin_lifestyle p::after {
    left: initial !important;
    right: 0px !important;
  }
  .tab-section{
    padding: 50px 20px 0px !important;
  }
  .carousel-item img {
    object-fit: contain !important;
}
.carousel-container {
  height: 205px !important;
}
.carousel-nav button {
  padding: 5px 15px !important;
}
.carousel-nav {
  position: absolute;
  bottom: 5px !important;
}
.bluefin_blogs h1
 {
    font-size: 33px !important;
}
.recent li a{
  font-size: 14px !important;
}
.bluefin_contact h1 {
  padding-left: 0px !important;
}

.bluefin_contact .sub-text {
  padding-left: 0px !important;
}
}

.villa-text {
  width: 30%;
  background-color: #1d2a42;
  color: #f5c34b;
  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: 16px;
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 300;
}

.accordion {
  display: flex;
  height: 600px;
}

.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;
}

.blufin_lifestyle .container{
  background-image: url('../assets/lifestyle_banner.jpg');
  background-size: cover;
  /* padding: 90px 0px; */
  background-position: center;
  background-attachment: fixed;
  border-radius: 20px;
}
.project_counts {
  height: 90vh;
}
.bottom_curve{
  position: absolute;
  right: -8px;
  top: 47%;
}
.top_curve{
  position: absolute;
  left: 42%;
  top: -8px;
}
@media only screen and (min-width: 360px) and (max-width: 575px) {
  .counts_data{
   display: none !important;
  }
  .bottom_curve,.top_curve{
    display: none !important;
  }
  .blufin_lifestyle .container {
    background-image: url(../assets/lifestyle_banner.jpg);
    background-size: cover !important;
    /* padding: 90px 0px; */
    background-position: center !important;
  }
  .mb_counts_data{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    padding: 18px 0px 20px 0px;
    border-bottom-left-radius: 40px;
    background: #fff;
  }
  .mb_counts_data .data_ele{
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .blufin_lifestyle .project_head {
    top: 100px !important;
  }
}
.counts_data{
  position: absolute;
  right: -1px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: end;
  gap: 15px;
  padding: 0px 0px 20px 0px;
  border-bottom-left-radius: 40px;
  max-width: 55%;
  background: #fff;
  top: 0px;
}
.data_ele{
  background-color: var(--font-color);
  width: 100%;
  max-width: 30%;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: left;
  text-align: left;
  padding: 0px 0px 15px 12px;
}
.blufin_lifestyle .project_head {
  position: absolute;
  top: 30px;
  left: 20px;
}
.blufin_lifestyle .project_head h2 {
  background: linear-gradient(12deg, #92694B 0%, #D4A980 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
  position: relative;
}
.blufin_lifestyle .project_head h1::after{
  content: '';
  width: 100%;
  max-width: 50%;
  height: 1px;
  background-color: var(--font-color);
  position: absolute;
  left: 0px;
  bottom: -4px;
}
.blufin_lifestyle .project_head h4{
  font-family: var(--theme-font);
}
.blufin_lifestyle .data_ele h4 {
  background: linear-gradient(12deg, #92694B 0%, #D4A980 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For Firefox */
  color: transparent;
  font-family: var(--theme-secondary-font);
  font-weight: 600;
  font-size: 20px;
}

.blufin_lifestyle p {
  color: #ffffff;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0px;
}


/*.blufin_lifestyle {*/
/*  background-image: url('../assets/lifestyle_banner.jpg');*/
/*  background-size: cover;*/
  /*padding: 90px 0px;*/
/*  background-position: center;*/
/*  background-attachment: fixed;*/
/*}*/

/*.blufin_lifestyle h3 {*/
/*  color: var(--font-color);*/
/*  font-size: 25px;*/
/*  font-family: var(--theme-secondary-font);*/
/*  font-weight: 400;*/
/*  margin-bottom: 0px;*/
/*}*/

/*.blufin_lifestyle h3 span {*/
/*  font-size: 16px;*/
/*  font-family: var(--theme-font);*/
/*}*/

/*.blufin_lifestyle p {*/
/*  color: var(--font-color);*/
/*  font-weight: 400;*/
/*  font-size: 16px;*/
/*  position: relative;*/
/*}*/

/*.blufin_lifestyle p::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  max-width: 35%;*/
/*  height: 1.5px;*/
/*  background: #D4A980;*/
/*  background: linear-gradient(12deg, #92694B 0%, #D4A980 100%);*/
/*  bottom: -10px;*/
/*  left: 1px;*/
/*}*/

/* .lifestyle_items{
    background: #314167e3;
    padding: 40px 0px 10px 35px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.lifestyle_items.animate {
  opacity: 1;
  transform: translateY(0);
}
.lifestyle_item_one h3,.lifestyle_item_two h3{
    color: var(--font-guest);
    font-size: 20px;
    font-family: var(--theme-secondary-font);
    font-weight:400;
    margin-bottom: 0px;
}
.lifestyle_item_one h3 span,.lifestyle_item_two h3 span{
    font-size: 12px;
    font-family: var(--theme-font);
}
.lifestyle_item_one p,.lifestyle_item_two p{
    color: #fff;
    font-weight:300;
    font-size: 11px;
    position: relative;
} */

.accordion .item:hover .bluefin-img {
  rotate: 0deg;
  position: absolute;
  left: 20px;
  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');
}


.bluefin-img {
  position: absolute;
  left: -25px;
  font-size: 25px;
  color: white;
  white-space: nowrap;
  z-index: 10;
  width: 100%;
  max-width: 75%;
  rotate: 270deg;
  bottom: 100px;
}

.tab-section {
  text-align: center;
  padding: 50px 20px 0px;
  font-family: var(--theme-secondary-font);
  overflow-x: hidden;
}

.tab-container .tab-data {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-container .tab-data h2 {
  font-size: 28px;
}

iframe {
  width: 100%;
  height: 350px;
}

.tab-title {
  cursor: pointer;
}

.tab-title h2 {
  width: 100%;
  font-size: 40px;
  color: #666;
  font-weight: 300;
  border-bottom: 2px solid transparent;
  padding-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--theme-font);
  text-align: left;
}

.tab-title p {
  text-align: left;
  padding: 10px 0px;
  color: var(--theme-grey);
}

.tab-title.active h2 {
  font-weight: 300;
  color: var(--font-color);
  border-bottom: 2px solid var(--font-color);
}

.tab-title.active p {
  color: var(--font-color);
}

.tab-content {
  max-width: 100%;
  margin: 0 auto;
  font-size: 15px;
  color: black;
  line-height: 1.6;
  display: none;
}

.tab-text {
  width: 100%;
  max-width: 75%;
  margin: auto;
  padding: 20px 0px 0px 0px;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  font-weight: 400;
  color: var(--font-color);
  font-size: 16px;
}

.why-choose {
  text-align: center;
  padding: 50px 15px;
}

.why-choose h2 {
  font-size: 32px;
  color: var(--font-color);
  margin-bottom: 50px;
  font-family: var(--theme-font);
}

.feature h5 {
  font-weight: 400;
  color: var(--font-color);
}

.feature img {
  margin-bottom: 15px;
  width: 100%;
  max-width: 25%;
}

.feature p {
  font-size: 14px;
  color: var(--theme-grey);
  font-weight: 400;
}

.partners-section h2{
     font-family: var(--theme-font);
}
.location-section {
  text-align: center;
  padding: 50px 10px;
}


.location-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-family: var(--theme-font);
}

.location-section p {
  max-width: 750px;
  margin: 0 auto 10px;
  font-size: 16px;
  color: var(--theme-grey);
  line-height: 1.6;
}

.map-image {
  margin-top: 40px;
  max-width: 90%;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer .container {
  border-top: 1px solid var(--font-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 100px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column .bi {
  color: var(--font-color);
}

.footer-column span {
  font-family: var(--theme-secondary-font);
  font-size: 13px;
}

.footer h3 {
  margin-bottom: 20px;
  color: #001d3d;
  font-weight: 400;
  font-family: var(--theme-font);
}

.footer p,
.footer a {
  font-size: 13px;
  color: #000;
  text-decoration: none;
  margin-bottom: 0px;
  font-weight: 400;
  display: block;
}

.social-icons a i {
  color: #ffffff !important;
}

.contact-details a i {
  color: var(--font-color);
}

.footer a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background-color: #1f2a44;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icons img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.footer-bottom {
  background-color: var(--font-color);
  text-align: center;
  padding: 10px;
  color: white;
  font-size: 13px;
}

.footer-bottom .footer-sub-content,
.footer-bottom .footer-sub-content a {
  font-size: 12px;
  font-weight: 300;
}

/*.area_count {*/
/*  font-size: 23px;*/
/*  font-weight: 500;*/
/*  font-family: var(--theme-secondary-font);*/
/*  color: var(--font-color);*/
/*  margin-bottom: 2px;*/
/*}*/

/*.area_count span,*/
/*.sub_area_content {*/
/*  font-size: 13px;*/
/*  color: #7b6149;*/
/*  font-family: var(--theme-secondary-font);*/
/*}*/

.counter {
  color: #000;
  font-family: var(--theme-font);
}


.highlight {
  font-size: 40px;
  font-weight: bold;
}

.villas_section {
  background-color: #1d2a42;
}


.location-section .infra-content p {
  font-weight: 400;
  color: var(--font-color);
  font-size: 16px;
}

.blufin_about_content {
  font-size: 16px;
  color: var(--font-color);
  font-weight: 400;
}

.hightlight_text {
  font-family: var(--theme-font);
  font-size: 25px !important;
  font-weight: 400 !important;
  line-height: 25px !important;
}

.about_page h2 {
  line-height: 50px;
  font-size: 50px;
   font-family: var(--theme-font);
}

.about_page .three {
  position: absolute;
  top: 0px;
  right: 10%;
}

.about_page .three-lines {
  position: relative !important;
  margin-bottom: 0px !important;
}

.bluefin_team img,
.bluefin_blogs img {
  width: 100%;
}

/*.team_number {*/
/*  width: 100%;*/
/*  max-width: 80%;*/
/*  margin: auto;*/
/*}*/
/*.team_number i{*/
/*  font-size: 50px;*/
/*  color: var(--font-color);*/
/*}*/

/*.bluefin_blogs .team_number {*/
/*  max-width: 100% !important;*/
/*}*/
.mbil_content{
  position: absolute;
  top: -140px;
  left: 10px;
}
.mbil_content h1{
  color: #fff !important;
}
.mbil_content h4{
  color: #fff !important;
  font-family: var(--theme-font);
}
.mbil_content h4 span{
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.mission_vision_section {
  position: relative;
}

.logo_icon {
  position: absolute;
  left: 0px;
  max-width: 18%;
  top: 18%;
  z-index: -1;
}
.project_logo_icon{
    position: absolute;
    left: -3px;
    max-width: 40%;
    top: 7%;
}
.mission_vision_section h2 {
  font-size: 38px;
}

.mission_vision_section h2,
.mission_vision_section h4 {
  color: #fff;
  font-family: var(--theme-font);
}

.mission_content p,
.vision_content p {
  color: #fff;
  font-size: 14px;
}

.mission_content {
  position: absolute;
  background-color: var(--font-color);
  padding: 50px 32px 38px;
  right: -420px;
  top: 28px;
  width: 100%;
  max-width: 100%;
  border-right: 7px solid #b4a980;
  opacity: 0;
  transform: translateX(100px); /* Slight shift */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.mission_content.visible {
  opacity: 1;
  transform: translateX(0);
}
.vision_content {
  position: absolute;
  background-color: var(--font-color);
  padding: 50px 32px 38px;
  left: -320px;
  top: 44px;
  width: 100%;
  max-width: 100%;
  border-left: 7px solid #b4a980;
  opacity: 0;
  transform: translateX(-100px); /* Slight shift */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.vision_content.visible {
  opacity: 1;
  transform: translateX(0);
}

.bluefin_blogs .team_number a {
  /* color: var(--font-guest); */
  text-decoration: none;
  /* font-size: 13px; */
}

/* .bluefin_blogs .team_number p {
  color: var(--theme-grey) !important;
} */

.bluefin_blogs h1 {
  font-size: 50px;
}

/* .team_content {
  padding: 15px 25px;
  background-color: var(--font-color);
} */

.team_content h2 {
  font-family: var(--theme-font);
  color: #000000;
  margin: 0px;
  font-weight: 300;
  color: var(--font-color);
}

.team_content p {
  font-family: var(--theme-secondary-font);
  color: #000000;
  font-weight: 300;
  margin: 0px;
  font-size: 16px;
}

.bluefin_contact h1 {
  font-size: 75px;
  line-height: 70px;
  padding-left: 60px;
}

.bluefin_contact .sub-text {
  padding-left: 110px;
}

.bluefin_contact_text p {
  color: var(--font-color);
  font-family: var(--theme-secondary-font);
  font-weight: 400;
  font-size: 16px;
  padding-right: 80px;
}

.bluefin_locations {
  background-color: var(--font-color);
}

.bluefin_locations h1 {
  font-size: 45px;
  color: #ffffff !important;
  margin-bottom: 10px;
}

.bluefin_locations h1 span {
  font-weight: 300 !important;
  /* font-family: var(--theme-secondary-font); */
}

#sticky_btn {
  display: inline-block;
  background-color: var(--font-color);
  text-align: center;
  position: fixed;
  top: 45%;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  font-size: 16px;
  rotate: 270deg;
  padding: 3px 15px;
  color: #ffffff;
  right: -42px;
}

#button {
  display: inline-block;
  background-color: var(--font-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button i {
  font-size: 30px;
  color: #ffffff;
}

#button:hover {
  cursor: pointer;
  /* background-color: #333; */
}

#button:hover i {
  color: var(--font-guest);
}

#button:active {
  background-color: #555;
}

#button.show,
#sticky_btn.show {
  opacity: 1;
  visibility: visible;
}


.carousel-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  margin-bottom: 40px;
  /* background-color: #fff; */
  border-radius: 15px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

.carousel-items {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #e9ecef; */
  font-size: 24px;
  font-weight: bold;
  color: #495057;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: all 0.5s ease;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.carousel-nav button {
  background-color: var(--font-color);
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-nav button:hover {
  background-color: var(--font-color);
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 10;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ced4da;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dots span.active {
  background-color: var(--font-color);
}


.slider {
  width: 100%;
  max-width: 100%;
  height: 420px;
  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%;
  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: 10px;
  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;
  }

}

/* careers */

/* Popup Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  color: var(--font-color);
  font-family: var(--theme-font);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-btn {
  background-color: var(--font-color);
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 0.9em;
}

.apply-btn {
  cursor: pointer;
  padding: 20px 20px;
  /* border-radius: 20px; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.apply-btn h2 {
  font-weight: 400;
  color: var(--font-color);
}

.apply-btn .career_content {
  font-size: 14px;
  font-weight: 400;
}

.apply-btn .apply_career {
  font-size: 12px;
  margin-bottom: 0px;
  color: var(--font-color);
  font-weight: 500;
}

.blog_breadcrumb a{
  color: var(--font-guest) !important;
  text-decoration: underline !important;
}
.recent {
  top: 50px !important;
}
.recent span{
  border-bottom: 1px solid var(--font-color);
}
.recent ul {
  margin: 0;

}

.recent ul li a {
  font-size: 14px;
  color: var(--font-color) !important;
}

.More {
  color: var(--font-color) !important;
  font-size: 16px !important;
}

.masterpiece-texti {
  flex: 0 0 50%;
  padding: 45px 40px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.masterpiece-texti h2 {
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.masterpiece-texti p {
  font-weight: 400;
  color: var(--font-color);
  font-size: 16px;
  line-height: 1.6;
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 1400px) and (max-width: 1450px) {
  .mission_content {
    top: 55px;
  }
  .vision_content {
    top: 77px;
  }
}
/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 1435px) and (max-width: 2400px) {
  .slider {
    max-width: 75%;
  }
}


.blog-card {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: scale(1.02);
}



.blog-card .arrow-btn {
  position: absolute;
  top: 7px;
  right: 15px;
  /* border-radius: 56%; */
  font-size: 30px;
  /* color: #000; */
  transition: background 0.3s;
}

.blog-card .arrow-btn:hover {
  transform: scale(1.3);
}

.blog-card .overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  color: black;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  background: #000000a6;
}
.blog-card .overlay h5,.blog-card .overlay p{
  font-family: var(--theme-font);
}
.blog-card:hover .overlay {
  transform: translateY(-10px);
  /* Slight move up */
  opacity: 0.9;
  /* Optional: subtle fade effect */
}

.blog-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #314167;
  /* fallback color */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.bg-blend {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  /* ← this darkens the image */
  opacity: 0.9;
  z-index: 1;
}

.overlay {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.blog-card:hover .overlay {
  transform: translateY(-10px);
}


summary::marker{
  content: "";
}
details{
  background-color: var(--font-color);
  padding: 3px 15px;
}
details h3{
  font-family: var(--theme-font);
  font-weight: 300;
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
}
details p{
color: #fff;
}
/*#controls select{*/
/*  background-color: var(--font-color);*/
/*  color: #fff;*/
/*}*/
/*#controls{*/
/*  position: relative;*/
/*}*/
/*#infoPanel{*/
/*  position: absolute;*/
/*  background: #112b47d6;*/
/*  bottom: -320%;*/
/*  right: 5%;*/
/*  z-index: 100;*/
/*  color: #fff;*/
/*  width: 100%;*/
/*  max-width: 28%;*/
/*  padding: 20px 20px 20px 23px;*/
/*}*/

.loaction_head{
    background: var(--font-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 10px;
}
#infoPanel{
      border-top: 1px solid #112b471f;
    font-size: 10px;
    margin-top: 8px;
}
.loaction_head span{
    background: linear-gradient(12deg, #92694B 0%, #D4A980 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* For Firefox */
    color: transparent;
    font-family: var(--theme-secondary-font);
    font-weight: 600;
    text-align: center;
}
.location_map{
    position: relative;
}

.selected_locations{
    position: absolute;
    right: 10%;
    top: 12%;
    z-index: 100;
    width: 100%;
    max-width: 24%;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.location-list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 0px;
    row-gap: 3px;
}
.location-list span{
    font-size: 10px;
    background: #94949429;
    padding: 2px 9px 3px;
    border-radius: 10px;
    margin: 0px 4px 0px 0px;
}

.location-list span.active{
     background: linear-gradient(12deg, #92694B 0%, #D4A980 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* For Firefox */
    color: transparent;
    font-family: var(--theme-secondary-font);
}