/* about page home image*/
/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.aboutpage-container{
    font-family: 'Poppins';
    overflow-x: hidden;
}

.aboutpage-home-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: white;
    font-size: 5vw;
    font-weight: 200;
  }
  
  .property-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1; /* Ensure both slides are at the same level */
    transition: none; /* Remove any opacity or transition effects */
  }
  .property-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust 0.5 to control darkness */
  z-index: 0;
}


  
  /* Animation for sliding in new image */
  .property-slide.active {
    animation: slideIn 1s ease forwards;
    z-index: 2; /* New image will be on top */
  }
  
  @keyframes slideIn {
    0% {
      left: -100%; /* Start off-screen to the left */
    }
    100% {
      left: 0; /* Move to the center */
    }
  }
  
  .property-title-overlay {
      color: white;
      font-size: 5vw;
      z-index: 3; /* Overlay should be on top of images */
      font-weight: 400;
      text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
      font-family: 'Poppins';
      margin-top: 100px;
      margin-left: 5vw;
      /* text-transform: uppercase; */
    }
    .propterty-title-subline{
        font-size: 1.2vw;
        font-family: 'Poppins';
        text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
        font-weight: 200;
        margin-left: 5.3vw;
        z-index:3;
  }

  .aboutpage-download-brochure-button-holder{
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 100;
  }

  .aboutpage-download-brochure-button-holder a{
    text-decoration: none;
  }

/* Top container code */
.aboutpage-top-container{
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: row;

    gap: 3vw;

    padding: 5vw;

    padding-top: 3vw;
    padding-bottom: 3vw;
}

.aboutpage-top-subcontainer-1{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1.6vw;
    margin-top: 0.4vw;
}

.aboutpage-room-details-top{
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    /* flex-direction: column; */
    /* gap: 1vw; */
    background-color: #154c5d;
    /* padding: 1vw; */
    border-radius: 1vw;
    color: white;
}
.aboutpage-room-details-card{
    display: flex;
    flex-direction: column;
    width: 9.5vw;
    border: 1px solid white;
    padding: 1vw;
}

.aboutpage-room-details-card-text1{
    font-size: 1.2vw;
    border-bottom: 1px solid white;
    margin-bottom: 15px;
}
.aboutpage-room-details-card-text2{
    font-size: 1vw;
    font-weight: 200;
}
.About-us-Insigts-Placer{
    display: flex;
    /* gap: 1vw; */
}

/* Custom ultra-thin grey scrollbar for aboutpage-room-points-top */
.aboutpage-room-points-top {
    /* Keep your existing styles */
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 14vw;
    overflow-y: scroll;
    margin-left: 2vw;
    cursor: pointer;
    /* Add scrollbar styling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #9e9e9e transparent; /* For Firefox - thumb and track colors */
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.aboutpage-room-points-top::-webkit-scrollbar {
    width: 1px; /* Ultra thin scrollbar */
}

.aboutpage-room-points-top::-webkit-scrollbar-track {
    background: transparent; /* Transparent track */
}

.aboutpage-room-points-top::-webkit-scrollbar-thumb {
    background: rgba(158, 158, 158, 0.6); /* Semi-transparent grey thumb */
    border-radius: 3px;
}

/* Hover state for the scrollbar thumb */
.aboutpage-room-points-top::-webkit-scrollbar-thumb:hover {
    background: rgba(158, 158, 158, 0.8); /* More opaque on hover */
}

/* Hide scroll buttons (arrows) */
.aboutpage-room-points-top::-webkit-scrollbar-button {
    display: none;
}

/* For mobile devices */
@media (max-width: 480px) {
    .property-title-overlay{
        font-size: 14vw;
    }
    .propterty-title-subline{
        font-size: 7vw;
        /* text-align: center; */
    }
    .aboutpage-room-points-top{
        height: 90vw;
    }
    .aboutpage-room-points-top::-webkit-scrollbar {
        width: 2px; /* Extremely thin on mobile */
    }
}
.aboutpage-room-points-top h1{
    font-family: 'Poppins';
    font-size: 1.5vw;
    font-weight: 400;
}
.aboutpage-room-points-top ul {
    /* list-style: none;  */
    padding: 0;
    margin: 0; 
}
.aboutpage-room-points-top ul li{
    font-size: 1vw;
}

.aboutpage-room-bottom-text{
    display: flex;
    flex-direction: column;
    align-items:start;
    justify-content: center;
    width: 100%;
    font-size: 2.75vw;
}
.aboutpage-center-image-subcontainer-2-btns{
    display: flex;
    gap: 1vw;
}

.About-Us-sub2-btns{
    color: white;
    font-family: 'Poppins';
    font-size: 1vw;
    padding: 0.5vw 2vw;
    margin-bottom: 1vw;
    background-color: #154c5d;
    border-radius: 30px;
    border: none;
    transition: all 0.5s ease-in-out;
}
.About-Us-sub2-btns:hover {

    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(21, 76, 93, 0.3);
    transition: all 0.5s ease-in-out;}

.aboutpage-maps-displayer {
    width: 45vw;
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repetition */
}

.aboutpage-maps-displayer video {
    border-radius: 1vw;
  }

.aboutpage-primary-focus{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    margin-bottom: 4vw;
}

/* Title animation: top to bottom */
@keyframes slideDown {
    0% {
      transform: translateY(-20px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Content animation: left to right */
  @keyframes slideRight {
    0% {
      transform: translateX(-30px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Apply animation classes */
  .animate-title {
    animation: slideDown 0.5s ease;
  }
  
  .animate-content {
    animation: slideRight 0.6s ease;
  }

/* Button styles */
.aboutpage-primary-focus-sub-section-button {
    position: relative; /* Ensure the button has relative positioning for the loader */
    padding: 0.6vw 1.1vw;
    font-size: 0.965vw;
    color: white;
    background-color: #0E323D;
    border-radius: 3vw;
    transition: 0.5s;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
  }
  
  .aboutpage-primary-focus-sub-section-button:hover {
    cursor: pointer;
    background-color: #154c5d;
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(21, 76, 93, 0.3);
  }
  
  /* Button loading effect */
  .aboutpage-primary-focus-sub-section-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* Start with zero width for the loader */
    background: rgba(255, 255, 255, 0.226);
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    visibility: hidden; /* Hide loader initially */
    transition: width 3s ease; /* Smooth animation of the width */
  }
  
  /* Show the loader on active button */
  .aboutpage-primary-focus-sub-section-button.active-feature-button::after {
    visibility: visible; /* Make the loader visible */
    width: 100%; /* Animate width to full width */
  }
  
  /* Keyframes for the loader animation */
  @keyframes buttonLoader {
    0% {
      width: 0%; /* Start width */
    }
    100% {
      width: 100%; /* End width */
    }
  }
  
  
.aboutpage-primary-focus-title{
    font-size: 2.45vw;
    margin-bottom: 2vw;
}

.aboutpage-primary-focus-sub-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 3vw;
    /* margin-left: 15vw;
    margin-right: 15vw; */
}

.aboutpage-primary-focus-sub-section-image-holder{
    /* width: 32vw; */
}
.aboutpage-primary-focus-sub-section-content-holder{
    width: 45vw;
}

.aboutpage-primary-focus-sub-section-image{
    height: 22vw;
    /* min-height: 15vw; */
    border-radius: 1vw;
    width: 35vw;
}

.aboutpage-primary-focus-sub-section-button-icon{
    height: 22.5px;
    width: 22.5px;
}

.aboutpage-primary-focus-sub-section-buttons-holder{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0.5vw;

    margin-top: 2vw;
}

.aboutpage-primary-focus-sub-section-heading{
    font-size: 1.7vw;
    margin-bottom: 0.5vw;
}

.aboutpage-primary-focus-sub-section-content{
    font-size: 1.1vw;
}

.aboutUs-Map-container{
    padding: 0vw 5vw;
    padding-bottom: 5vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8vw;
}

.aboutUs-Map-container-map-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.layout-model-hover-effect:hover{
    cursor: pointer;
}

.aboutUs-Map-container h1{
    font-family: 'Poppins';
    font-size: 2.1vw;
    margin-bottom: 1vw;
    font-weight: 400;
}

.about-us-map{
    height: 25vw;
    width: 35vw;
    /* background-color: #154c5d; */
    background-size: cover;           /* Ensures the image covers the entire area */
    background-position: center;      /* Centers the image */
    background-repeat: no-repeat;
    border-radius: 1vw;
}

.aboutpage-top-subcontainer-2{
    display: flex;
    flex-direction: column;
    align-items: center;
}

 
.about-us-map {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 1vw;
  }
  
  /* Overlay for blur + zoom icon */
  .layout-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .zoom-icon {
    font-size: 20px;
    color: white;
  }
  
  /* Modal Styles */
  .layout-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
  }
  
  .layout-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 1vw;
    box-shadow: 0 0 20px #000;
  }
  
  .close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }

  .aboutpage-gallery-section {
    padding: 2rem 10rem;
    text-align: center;
  }
  
  .aboutpage-gallery-section h1 {
    margin-bottom: 2rem;
    font-size: 2.45vw;
    font-weight: 400;
  }
  
  .aboutpage-gallery-image-holder {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(21vw, 1fr));
    justify-content: center;    margin: 0 auto;
  }
  
  .aboutpage-gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1vw;
    aspect-ratio: 16 / 9;
  }
  
  /* Subtle dark overlay on all images */
  .aboutpage-gallery-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: background-color 0.3s ease;
    z-index: 1;
    border-radius: 0.5rem;
  }
  
  /* Remove overlay on hover */
  .aboutpage-gallery-image-wrapper:hover::before {
    background-color: rgba(0, 0, 0, 0);
  }
  
  /* Image styles */
  .aboutpage-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
    z-index: 0;
    position: relative;
  }
  
  /* Scale image only, not the wrapper */
  .aboutpage-gallery-image-wrapper:hover .aboutpage-gallery-image {
    transform: scale(1.1);
  }
  
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .aboutpage-gallery-image {
      transition: none;
    }
  }


/* Image container code */
.aboutpage-center-image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    width: 100%;
    height: fit-content;

    gap: 1.5vw;
}

.aboutpage-center-image-subcontainer-1,
.aboutpage-center-image-subcontainer-2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5vw;
}
.aboutpage-center-image-subcontainer-1{
    margin-top: 7.5vw;
}
.aboutpage-center-image-subcontainer-2{
    margin-bottom: 7.5vw;
}

.aboutpage-sub-image-1{
    width:30vw;
    height: 35vw;
    border-radius: 2vw;
}
.aboutpage-sub-image-2{
    width: 30vw;
    height: 20vw;
    border-radius: 2vw;
}

.aboutpage-button-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4vw;
}

.aboutpage-contact-button{
    font-size: 1vw;
    padding: 1vw 2vw;
    border-radius: 5vw;
    background-color: #2c3e50;
    color: white;
    border: 1px solid #2c3e50;
    transition: 0.5s;
    font-family: 'Poppins';
}

.aboutpage-contact-button:hover{
    cursor: pointer;
    color: #2c3e50;
    background-color: white;
    border: 1px solid #2c3e50;
    transition: 0.5s;
}

/* MOdell starts ---------------------------------------------------------------------------------*/
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: white;
    /* width: 80vw;
    height: 70vh; */
    padding: 2vw;
    border-radius: 1vw;
    position: relative;
    overflow-y: auto;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 1vw;
    right: 1vw;
    font-size: 2vw;
    cursor: pointer;
}
.Contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2vw;
    padding: 2vw;
    margin-top: -2vw;
}

.Contact-form {
    padding: 3vw;
    border-radius: 1vw;
    width: 50vw;
}

.Contact-form-h2 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 2.45vw;
    margin-bottom: 1vw;
    line-height: 1.2;
}

.Contact-form-h2-span {
    color: #0E323D;
}

.Contact-form-p {
    font-family: 'Poppins';
    font-size: 1vw;
    font-weight: 300;
    color: #555;
    margin-bottom: 1.5vw;
}
.Contact-label{
    font-family: 'Poppins';
    font-size: 0.8vw;
}

.Contact-input-group {
    display: flex;
    gap: 5vw;
    margin-bottom: 1.5vw;
}

.contact-input-lable-placer{
    display: flex;
    flex-direction: column;
}
input, select, textarea {
    margin-top: 0.5vw;
    width: 20vw;
    padding: 1vw;
    border: 0.1vw solid #ccc;
    border-radius: 3vw;
    font-size: 1vw;
    font-family: 'Poppins';
}

textarea {
    width: 102%;
    height: 10vw;
    resize: none;
    border-radius: 2vw;
}

.Contact-Submit-btn {
    font-size: 1vw;
    width: fit-content;
    border: none;
    color: white;
    background-color: #0E323D;
    padding: 0.7vw 1.5vw;
    border-radius: 30px;
    margin-top: 1vw;
    transition: all 0.5s ease-in-out;
}

.Contact-Submit-btn:hover {
    background-color: #154c5d;
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(21, 76, 93, 0.3);
    transition: all 0.5s ease-in-out;
}

@media (max-width: 1024px) and (orientation: portrait) {
    .property-title-overlay{
        font-size: 7vw;
    }
    .propterty-title-subline{
        font-size: 3vw;
        /* text-align: center; */
    }
    .Contact-form-h2 {
        font-size: 5vw;
    }
    .Contact-form-p {
        font-size: 1.5vw;
    }
    .Contact-label {
        font-size: 1.2vw;
    }
    input, select {
        font-size: 1.2vw;
    }
    .Contact-textarea {
        height: 15vw;
    }
    .Contact-Submit-btn {
        font-size: 1.5vw;
        padding: 1.5vw 2vw;
    }
    .aboutpage-gallery-section {
    padding: 2rem 4rem;
}
}

@media (max-width: 480px) {
    .Contact-container {
        /* padding-top: 10vw;
        padding-bottom: 10vw; */
        padding: 10vw 15vw;
    }
    .Contact-form {
        width: 80vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .Contact-form-h2 {
        font-size: 9vw;
    }
    .Contact-form-p {
        font-size: 4vw;
        margin-bottom: 10vw;
        text-align: center;
    }
    .Contact-label{
        font-size: 2.45vw;
    }
    .Contact-input-group {
        flex-direction: column;
    }
    input, select {
        width: 80vw;
        padding: 4vw;
        border-radius: 50px;
        font-size: 3.5vw;
    }
    .Contact-textarea {
        height: 30vw;
        border-radius: 5vw;
        font-size: 3.5vw;
        padding: 5vw;
        width: 78vw;
    }
    .Contact-Submit-btn {
        font-size: 3.5vw;
        padding: 3vw 6vw;
        margin-top: 20px;
    }
}



@media(max-width:550px){
    .aboutpage-home-slider{
        font-size: 8vw;
    }
    .aboutpage-top-container{
        flex-direction: column;
        gap: 5vw;
        margin-top: 10vw;
        margin-bottom: 7vw;
    }
    .aboutpage-maps-displayer video {
        border-radius: 3vw;
    }
    .aboutpage-primary-focus-title{
        font-size: 10vw;
        margin-bottom: 3vw;
    }
    .aboutpage-primary-focus-sub-section{
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 5vw;
    }
    .aboutpage-primary-focus-sub-section-image{
        width: 90vw;
        min-height: 55vw;
        margin-top: 2vw;
        margin-bottom: -2vw;
        border-radius: 3vw;
    }
    .aboutpage-gallery-image-wrapper {
        border-radius: 3vw;
    }
    .aboutpage-primary-focus-sub-section-content-holder{
        width: 90%;
    }
    .aboutpage-primary-focus-sub-section-heading{
        font-size: 7.5vw;
    }
    .aboutpage-primary-focus-sub-section-content{
        font-size: 4.5vw;
        margin-bottom: 4vw;
    }
    .aboutpage-primary-focus-sub-section-buttons-holder{
        gap: 2.5vw;
    }
    .aboutpage-primary-focus-sub-section-button{
        padding: 2.5vw;
        border-radius: 10vw;
        font-size: 3.5vw;
    }
    .aboutpage-primary-focus-sub-section-button-icon{
        height: 6vw;
        width: 6vw;
        margin-right: 2vw;
    }
    .aboutUs-Map-container{
        width: 85%;
        margin-top: 6vw;
        padding: 0;
        margin: 0;
        margin-left: 7.5%;
    }
    .aboutUs-Map-container-map-holder{
        min-width: 130%;
        max-width: 130%;
        border-radius: 5vw;
    }
    .aboutpage-gallery-section{
        width: 90%;
        margin-left: 5%;
        padding: 0;
        margin-top: 7vw;
        margin-bottom: 6vw;
    }
    .aboutpage-gallery-image-holder{
        grid-template-columns: repeat(auto-fit, minmax(65vw, 1fr));
    }
    .aboutpage-gallery-section h1{
        font-size: 9vw;
    }
    .aboutpage-top-subcontainer-1{
        align-items: center;
        justify-content: center;
    }
    .aboutpage-room-points-top{
        align-items: center;
    }
    .aboutpage-room-bottom-text{
        align-items: center;
        font-size: 8vw;
    }
    .aboutpage-maps-displayer{
        width: 92vw;
        height: 60vw;
        
    }
    .aboutpage-room-details-card-text1{
        font-size: 8vw;
    }
    .aboutpage-room-details-card-text2{
        font-size: 6vw;
    }
    .aboutpage-room-points-top ul li{
        font-size: 4vw;
        /* width: 90vw; */
    }
    .aboutpage-center-image-container{
        flex-direction: column;
    }
    .aboutpage-center-image-subcontainer-2{
        flex-direction: column-reverse;
    }
    .aboutpage-center-image-subcontainer-1{
        margin-top: 0;
    }
    .aboutpage-center-image-subcontainer-2{
        margin-bottom: 0;
    }

    .aboutpage-sub-image-1,
    .aboutpage-sub-image-2{
        width: 92vw;
    }
    .aboutpage-sub-image-1{
        height: 100vw;
    }
    .aboutpage-sub-image-2{
        height: 50vw;
    }
    .aboutpage-button-holder{
        margin-top: 10vw;
        margin-bottom: 10vw;
    }
    .aboutpage-contact-button{
        font-size: 6vw;
        border-radius: 15vw;
        padding: 4vw;
    }
    .aboutpage-room-details-top{
        border-radius: 3vw;
        flex-direction: column;
        margin-bottom: 5vw;
    }
    .aboutpage-room-details-card{
        width: 45vw;
        height: 25vw;
        /* align-items: center;
        justify-content: center; */
    }
    .aboutpage-room-details-card-text1{
        font-size: 5vw;
    }
    .aboutpage-room-details-card-text2{
        font-size: 4.5vw;
    }
    /* .aboutpage-maps-displayer{
        height: 100vw;
    } */
    .aboutpage-room-points-top h1{
        font-size: 9vw;
    }
    .aboutpage-room-points-top{
        padding: 5vw;
    }
    .aboutpage-room-points-top{
        /* display: flex; */
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .aboutpage-room-points-top-li{
        display: flex;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        /* width: 100%; */
        width: 100%;
    }
    .aboutpage-center-image-subcontainer-2-btns{
        width: 100%;
        margin-top: 5vw;
        flex-wrap: wrap;
    }
    .About-Us-sub2-btns{
        margin-top: -4vw;
        font-size: 3.5vw;
        padding: 3vw 6vw;
        margin-bottom: 5vw;
    }
    .aboutUs-Map-container h1{
        font-size: 9vw;
        text-align: center;
    }
    .about-us-map{
        height: 100vw;
        width: 80%;
                border-radius: 3vw;

    }
}