 * {
     margin: 0;
     padding: 0;
 }

 @font-face {
     font-family: 'Gothic Medium';
     src: url(../font/Gotham/Gotham-Medium.ttf);
 }

 @font-face {
     font-family: 'Gothic Book';
     src: url(../font/Gotham/Gotham-Book.ttf);
 }

 @font-face {
     font-family: 'Gothic Thin';
     src: url(../font/Gotham/Gotham-Thin.ttf);
 }

 :root {
     --main-font: 'Gothic Medium';
     --second-font: 'Gothic Book';
     --third-font: 'Gothic Thin';
     --forth-font: "Playfair", serif;
     --main-color: #3776BF;
 }

 ::-webkit-scrollbar {
     display: none;
 }

 /* header start  */
 .navbar {
     display: flex;
     padding: 0px 75px;
     box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
     height: 75px;
     background-color: #fff;
      position: fixed; 
      width:100%;
     right: 0;
     left: 0;
     z-index: 9999;
 }

 .navlinks {
     display: flex;
     gap: 50px;
     font-family: var(--second-font);
     align-items: flex-end;
 }

 .navlinks ul {
     display: flex;
     gap: 30px;
 }

 .navlinks ul li {
     list-style: none;
 }

 .navlinks ul li a {
     color: #000;
     text-decoration: none;
     font-size: 13px;
 }

 .nav-btn {
     height: 75px;
     background-color: gray;
     border: none;
     display: flex;
     align-items: flex-end;
     padding-bottom: 5px;
 }

 .nav-btn a {
     text-decoration: none;
     color: #fff;
     padding: 0 20px;
     font-size: 13px;
 }

 .icon img {
     width: 25px;
     height: 25px;
     display: none;
 }

 /* Hide sidebar and icon by default */
 .sidebar {
     position: fixed;
     top: 0;
     right: -300px;
     width: 250px;
     height: 100%;
     background-color: #333;
     color: white;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding-top: 20px;
     transition: right 0.3s ease;
     z-index: 10000;
 }
.sidebar ul{padding-left:0rem;}
 .sidebar ul,
 .sidebar .nav-btn {
     margin: 20px 0;
     line-height: 2.8rem;
 }

 .sidebar ul li a {

     text-decoration: none;
     color: #fff;
 }

 .sidebar ul li {
     list-style: none;
 }

 .icon img {
     width: 25px;
     height: 25px;
     cursor: pointer;
     display: none;
 }

 /* Close button styling */
 .close-btn {
     font-size: 24px;
     color: white;
     cursor: pointer;
     position: absolute;
     top: 10px;
     right: 10px;
 }

 /* Media query for smaller screens */
 @media screen and (max-width: 1024px) {

     .navlinks,
     .nav-btn {
         display: none;
     }

     .icon img {
         display: block !important;
     }

     .sidebar .nav-btn {
         display: block;
         height: 40px;
         justify-content: center;
         display: flex;
         align-items: center;
         padding-bottom: 0;
     }

     .sidebar.open {
         right: 0;
         justify-content: center;
     }
 }

 /* Sidebar open state */

 /* header end */

 /* hero slider  */
 .hero-section {
     height: auto;
     position: relative;
     padding-top:75px;
 }
.sidebar.open .close-btn{
    color:#fff !important;
}
 .hero-slider {
     width: 100%;
     position: relative;
     display: block;
     /* align-items: center; */
     /* justify-content: center; */
     height: auto;

 }

 .patternbg {
     position: absolute;
     width: 45%;
     top: 0;
     bottom: 0;
     left: 0;
     height: 100%;
     background: url(../img/Diamond_Pattern_Black-01-01.svg) center repeat;
     background-size: 700px;
 }

 /* Slider container */
 .hero-container {
     height: calc(100vh - 9rem);
     display: flex;
     flex-direction: row-reverse;
     justify-content: center;
     align-content: center;
     align-items: center;
 }

 .slider {
     position: relative;
     width: 690px;
     overflow: hidden;
     border-radius: 3px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     z-index: 1;
 }

 .slides {
     display: flex;
     transition: transform 0.5s ease;
 }

 .slides img {
     width: 800px;
     height: 450px;
     object-fit: cover;
 }

 .controls {
     position: absolute;
     top: 50%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
 }

 .controls button {
     background-color: transparent;
     border: none;
     color: white;
     padding: 10px 0px;
     cursor: pointer;
     font-size: 18px;
 }

 .pagination {
     position: absolute;
     bottom: 15px;
     width: 100%;
     display: flex;
     justify-content: center;
 }

 .pagination button {
     background-color: #ccc;
     border: none;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     margin: 0 5px;
     cursor: pointer;
 }

 .pagination .active {
     background-color: #333;
 }

 .hero-slidercontent {
     text-align: center;

 }

 .heroslidersection {
     height: 100vh;
     /* background-image: url(../images/Diamond_Pattern_.svg); */
     display: flex;
     justify-content: center;
     align-items: center;

 }

 .heroslidersection::before {
     content: '';
     position: absolute;
     top: 0;
     left: -10%;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     background-repeat: no-repeat;
     background-image: url('../images/Diamond_Pattern_.svg');
     opacity: 0.25;
     /* Set your desired opacity here */
     z-index: -1;
     /* Ensure it stays below content */
 }

 .content {
     margin-top: 3rem;
 }

 .content h2 {
     color: var(--main-color);
     font-size: 25px;
     font-family: var(--forth-font);
 }

 .content p {
     padding: 0 55px;
     font-size: 15px;
     font-weight: 500;
     font-family: var(--second-font);
 }

 .hero-btn button {
     background-color: var(--main-color);
     padding: 4px 40px;
     border: none;
     color: #fff;
     font-family: var(--forth-font);
 }

 /* hero slider  */
 /* nav main  */

 .navbarmain {
     display: flex;
     padding: 0px 75px;
     box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
     height: 75px;
     background-color: #80808008;
     align-items: center;
     right: 0;
     left: 0;
     z-index: 9999;
     justify-content: space-between;
 }

 .navlinksmain {
     display: flex;
     gap: 50px;
     font-family: var(--second-font);
     align-items: flex-end;
 }

 .navlinksmain ul {
     display: flex;
     gap: 30px;
     margin-bottom: 0;
 }

 .navlinksmain ul li {
     list-style: none;

 }

 .navlinksmain ul li a {
     color: var(--main-color);
     text-decoration: none;
     font-size: 17px;
     font-weight: 600;
     font-family: var(--forth-font);
 }

 .nav-btn {
     height: 75px;
     background-color: gray;
     border: none;
     display: flex;
     align-items: flex-end;
     padding-bottom: 5px;
 }

 .nav-btn a {
     text-decoration: none;
     color: #fff;
     padding: 0 20px;
     font-size: 13px;
 }

 .icon img {
     width: 25px;
     height: 25px;
     display: none;
 }

 .logomain img {
     width: 45px;
     height: 45px;
 }

 /* Hide sidebar and icon by default */
 .sidebarmain {
     position: fixed;
     top: 0;
     right: -300px;
     width: 250px;
     height: 100%;
     background-color: #333;
     color: white;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding-top: 20px;
     transition: right 0.3s ease;
     z-index: 10000;
 }

 .sidebarmain ul,
 .sidebar .nav-btn {
     margin: 20px 0;
     line-height: 2.8rem;
 }

 .sidebarmain ul li a {

     text-decoration: none;
     color: #fff;
 }

 .sidebarmain ul li {
     list-style: none;
 }

 .iconmain img {
     width: 25px;
     height: 25px;
     cursor: pointer;
     display: none;
 }

 /* Close button styling */
 .close-btn {
     font-size: 24px;
     color: white;
     cursor: pointer;
     position: absolute;
     top: 10px;
     right: 10px;
 }

 /* Media query for smaller screens */
 @media screen and (max-width: 1023px) {

     .navlinksmain,
     .nav-btn {
         display: none;
     }

     .iconmain img {
         display: block;
     }

     .sidebarmain .nav-btn {
         display: block;
         height: 40px;
         justify-content: center;
         display: flex;
         align-items: center;
         padding-bottom: 0;
     }

     .sidebarmain .open {
         right: 0;
         justify-content: center;
     }
 }

 /* nav main  */
 /* home css start  */
 .home {
     height: 90vh;
 }

 .topbar {
     height: 75px;
     text-align: center;
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: var(--main-color);
     color: #fff;
     font-family: var(--forth-font);

 }

 .topbar h2 {
     font-size: 40px;
 }

 .homesectionimg img {
     width: 100%;
     height: 80vh;
 }

 /* home css end  */
 /* about start  */
 .sticky {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 1000;
     /* Ensures it stays above other elements */
     background-color: #fff;
     /* Optional: background color */
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     /* Optional: add shadow for better visibility */
 }

 .aboutmain {
     padding: 60px 30px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .aboutcontentright {
     text-align: center;
 }

 .aboutcontentright h2 {
     color: var(--main-color);
     font-family: var(--forth-font);
     letter-spacing: 0.1rem;
 }

 .aboutcontentrighth6 {
     padding: 15px 0;
     font-family: var(--second-font);
 }

 .aboutcontentright h6 {
     line-height: 0.9rem;
     font-family: var(--second-font);
     font-weight: 600;
 }

 .aboutcontentrighth6 p {
     line-height: 0.4rem;
     font-family: var(--second-font);
 }

 .aboutcontentright p {
     font-family: var(--second-font);
     font-size: 14px;
 }

 /* about end */

 /* mapcontact section css start */
 .mapcontactleft img {
     width: 100%;
 }

 .mapcontactright h2 {
     color: var(--main-color);
     font-size: 25px;
     font-family: var(--forth-font);
 }

 .mapcontactright p {
     font-family: var(--second-font);
     font-size: 14px;
     line-height: 0.2rem;
 }

 .mapcontactright div {
     padding: 15px 0 ;
 }

 .mapcontact {
     display: flex;
     align-items: center;
 }

 /* mapcontact section css end */

 /* gallery slider start  */
 .galleryslidermain {
     position: relative;
     margin-top: 50px;
 }

 .galleryslider {
     background-image: url("/asset/images/Diamond_Pattern_.svg");
     background-size: 700px;
 }

 .galleryslider line {
     display: inline-block;
     height: 1px;
     width: 65px;
     background: #fff;
 }

 .gallerysliderright {
     text-align: center;
     background-color: var(--main-color);

 }

 .slider-content img {
     width: 70px;
     height: 70px;
 }

 /* Basic styling for the slider container */
 .slider-container {
     display: flex;
     width: 100%;
     height: 500px;
     overflow: hidden;
     background-color: #f0f0f0;
     position: relative;
 }

 /* Left side with main images */
 .slider-images {
     flex: 2;
     overflow: hidden;
     position: relative;
 }

 .slider-images img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: opacity 1s ease;
     position: absolute;
     top: 0;
     left: 0;
     opacity: 0;
 }

 .slider-images img.active {
     opacity: 1;
 }

 /* Right side with content */
 .slider-content {
     flex: 1;
     background-color: #2b73af;
     color: white;

     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .slider-content .line {
     display: inline-block;
     height: 1px;
     width: 65px;
     background: #fff;
     margin: 2rem 0;
 }

 .slider-content h2 {
     margin: 0;
     font-size: 24px;
     font-family: var(--second-font);
     font-size: 20px;
 }

 .slider-content p {
     margin-top: 10px;
     font-size: 16px;
     font-family: var(--second-font);
 }

 /* Thumbnails styling */
 .thumbnails {
     display: grid;
     grid-template-columns: repeat(6, 1fr);

     flex-wrap: wrap;
     justify-content: center;
     margin-left: -7px;
     /* margin-right: -7px; */
     margin-top: 10px;
 }

 .thumbnails img {
     width: 100%;
     padding: 2px;
     margin: 0 3px;
     margin-bottom: 6px;
     cursor: pointer;
     height: auto;
     align-self: center;
 }


 .thumbnail.active {
     opacity: 1;
     /* border-color: #2b73af; */
 }

 .slider-arrows {
     position: absolute;
     top: 45%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
 }

 .arrow-btn {
     background: transparent;
     color: white;
     border: none;
     padding: 10px;
     font-size: 24px;
     cursor: pointer;
 }

 .arrow-btn img {
     width: 30px;
     /* Adjust size */
     height: auto;
 }

 .arrow-btnprev {
     position: absolute;
     left: 1%;
     background-color: transparent;
     border: none;

 }

 .arrow-btnnext {
     position: absolute;
     right: 35%;

     background-color: transparent;
     border: none;
 }

 .arrow-btnprev img {
     width: 15px;
 }

 .arrow-btnnext img {
     width: 15px;
 }

 /* gallery slider end  */

 /* MODERN-CONVENIENCES cssstart  */
 .MODERN-CONVENIENCES {
     text-align: center;
     padding: 30px 60px;
 }

 .MODERN-CONVENIENCES h2 {
     font-size: 25px;
     padding-bottom: 22px;
     font-family: var(--forth-font);
 }

 .MODERN-CONVENIENCES p {
     line-height: 0.4rem;
     font-family: var(--second-font);
     font-size: 17px;
 }

 .MODERN-CONVENIENCES button {
     margin-top: 22px;
     background-color: var(--main-color);
     border: none;
     padding: 10px 30px;
 }

 .MODERN-CONVENIENCES button a {
     color: #fff;
     text-decoration: none;
     font-family: var(--forth-font);
 }

 /* MODERN-CONVENIENCES cssstart  */
 /* place-togethertitle css start  */
 .place-togethertitle {
     margin-top: 50px;
 }

 .place-togethertitle h2 {
     color: var(--main-color);
     font-family: var(--forth-font);
     text-align: center;
     font-size: 40px;
     letter-spacing: 0.5px;
 }

 .togethermain {
     background-image: url('/asset/images/Diamond_Pattern_.svg');
     background-size: 700px;
     margin-top: 20px;
 }

 .togethermain img {
     width: 100%;
 }

 .togtherdesc {
     text-align: center;
     padding: 40px 0;
 }

 .togtherdesc p {
     line-height: 1.5rem;
     padding: 0 360px;
     font-size: 17px;
     font-family: var(--second-font);
 }

 .togtherdesc button {
     margin-top: 22px;
     background-color: var(--main-color);
     border: none;
     padding: 8px 30px;
 }

 .togtherdesc button a {
     color: #fff;
     text-decoration: none;
     font-family: var(--forth-font);
 }

 /* place-togethertitle css end  */
 /* come-hometitle start */
 .come-hometitle {
     margin-top: 50px;
 }

 .come-hometitle h2 {
     color: var(--main-color);
     font-family: var(--forth-font);
     text-align: center;
     font-size: 40px;
     letter-spacing: 0.5px;
 }

 .come-hometitlemain {
     background-image: url('/asset/images/Diamond_Pattern_.svg');
     background-size: 700px;
     margin-top: 20px;
 }

 .come-hometitlemain img {
     width: 900px;

 }

 .come-homeimage {
     display: flex;
     justify-content: center;
 }

 .comehomedesc {
     text-align: center;
     padding: 40px 0;
 }

 .comehomedesc p {
     line-height: 1.5rem;
     padding: 0 410px;
     font-size: 17px;
     font-family: var(--second-font);
 }

 .comehomedesc h2 {
     font-family: var(--forth-font);
     font-size: 25px;
     padding-top: 10px;
 }

 .comehomedesc button {
     margin-top: 10px;
     background-color: var(--main-color);
     border: none;
     padding: 8px 30px;
 }

 .comehomedesc button a {
     color: #fff;
     text-decoration: none;
     font-family: var(--forth-font);
 }

 /* come-hometitle end*/

 /* footer section css start  */
 .footermain {
     background-color: #80808026;
     position: relative;
     overflow: hidden;
 }

 .footermainsection {
     display: flex;
     padding: 30px 70px;
     gap: 50px;
     align-items: center;
 }

 .footermainsection .logo img {
     width: 100%;
     height: auto;
 }

 .footericon {
     display: flex;
     gap: 20px;
     padding: 15px 0;
 }

 .footericon img {
     width: 35px;
     height: 35px;
 }

 .footerdesc p {
     padding: 0 400px 0 0;
     font-family: var(--second-font);
     margin-top: 30px;
 }

 .copyright p {
     margin-top: 20px;
 }

 .lightlogo img {
     position: absolute;
     width: 400px;
     object-fit: cover;
     right: 1%;
     bottom: -35%;
 }

 /* footer section css end  */



 /* ---------------------------------------------- floorplan ----------------------------------------------------------------------------- */
 .floorhero-container {
     height: auto;
     display: flex;
     flex-direction: row-reverse;
     justify-content: center;
     align-content: center;
     align-items: center;
     --bs-gutter-x: 0;
 }

 .floorhero-container img {
     height: 100%;
 }

 .floorplancontent {
     text-align: center;
     padding: 40px 0 0 0;
 }

 .floorplancontent h2 {
     color: var(--main-color);
     font-family: var(--forth-font);
     font-size: 42px;
 }

 .floorplancontent p {
     font-family: var(--second-font);
     font-size: 17px;
     padding: 10px 80px;
 }

 /* filter tabs  */
 .tabs {
     display: flex;
     justify-content: center;
     gap: 150px;
     margin-top: 20px;
 }

 .tab {
     border: none;
     background: none;
     font-size: 25px;
     padding: 10px;
     cursor: pointer;
     font-weight: bold;
     color: #333;
     border-bottom: 2px solid transparent;
     font-family: var(--forth-font);
 }

 .tab.active {
     color: #000;
     border-bottom: 3px solid var(--main-color);

     border: 2;
 }

 .cards-container {
       display: grid
;
    grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     padding: 20px;
     flex-wrap: wrap;
 }

 .card {
     width: 100%;
     border: 1px solid var(--main-color);
     border-radius: 5px;
     overflow: hidden;
     background-color: #f9f9f9;
     text-align: center;
 }

 .card h3 {
     background-color: #3a6ea5;
     color: white;
     padding: 10px;
     margin: 0;
     text-align: left;
     font-family: var(--forth-font);
 }
.infomain{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}
 .infomain img {
     width: 30px !important;
     height: 30px !important;
 }
 .infobad{
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
 }
.card img{
    width: 100%;
    height: auto;
}
 .card-content {
     /* padding: 15px; */
 }

 .info {
     display: flex;
     justify-content: space-between;
     margin-bottom: 10px;

     align-items: flex-start;
 }

 .infocard {
     padding: 15px;
 }

 .info span {
     font-size: 25px;
     font-weight: 400;
     font-family: var(--second-font);
 }

 .pricinghome {
     display: flex;
 }

 .details {
     display: flex;
     justify-content: space-around;
     align-items: center;
     margin-bottom: 10px;
 }

 .details img {
     width: 20px;
     height: 20px;
     margin-left: 5px;
 }

 .price {
     font-size: 14px;
     color: #333;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     padding: 0px 50px 0px 10px;
     background-color: #d4d2d23e;
     font-family: var(--second-font);
 }

 .price strong {
     color: #3a6ea5;
     font-size: 32px;
     font-family: var(--second-font);
     font-weight: 400;
 }

 .view-btn {
     background-color: #3a6ea5;
     color: white;
     border: none;
     cursor: pointer;
     font-size: 30px;
     width: 100%;
     font-family: var(--forth-font);
     display: flex;
         justify-content: center;
         align-items: center;
         text-decoration: none;
 }
.view-btn button{
    background: transparent;
    border: none;
    color: #fff;
}
 .popup {
     display: none;
     /* Hidden by default */
     position: fixed;
     z-index: 9999;
     /* Sit on top */
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
       overflow-y:scroll;
     /* Enable scroll if needed */
     background-color: rgb(0, 0, 0);
     /* Fallback color */
     background-color: rgb(0 0 0 / 67%);
     /* Black w/ opacity */
     /* padding-top: 60px; */
     bottom: 0;
     
     justify-content:center;
     align-items:center;
 }

 .popup-content {
     background-color: #fff;
     /* margin: 5% auto; */
     padding: 30px 70px;
     border: 1px solid #888;
     width: 100%;
     max-width: fit-content;
     position: relative;
     height: auto;
     margin:auto;
  
 }

 .popup-content h2 {
     font-family: var(--forth-font);
     color: var(--main-color);
     font-size: 30px;
 }

 .popup-images {
     width: 550px;
     border: 2px solid var(--main-color);
 }

 .popup-images img {
     width: 100%;
     height: auto;

 }
 .floor-image{
    height: 100%;
 }
.floor-image img{
    width: 500px;
    height: auto;
}
 .popup-images .info span {
     font-size: 20px;
 }

 .popup-images .info img {
     width: 25px;
     height: 25px;
 }

 .elevations,
 .floors {
     margin-top: 20px;
 }

 .elevations li.active {
     background-color: var(--main-color);
     color: white;
     border: none;
     border-radius: 50%;
     padding: 2px 8px;
 }

 .close-btn {
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: 30px;
     font-weight: bold;
     color: #000;
     cursor: pointer;
 }

 .popup-images .info .view-btn {
     font-size: 20px;
 }



 .elevationsmain {
     display: flex;
     align-items: center;
     
 }
.elevationsmain select{margin-left:10px;margin-bottom: 10px;}
 .elevations h3 {
     font-size: 15px;
     color: var(--main-color);
     font-family: var(--second-font);
     font-weight: 600;
 }

 .elevations ul {
     display: flex;
     gap: 15px;
     padding-left: 1rem;
 }

 .elevations ul li {
     list-style: none;
     font-family: var(--second-font);
     font-weight: 550;
     color: gray;
 }

 .homedetails {
     display: flex;
     gap: 40px;
     height: 100%;
 }

 .floors {
     display: flex;
    flex-direction: column;
 }
.floorsmain{
    display: flex;
}
 .floors h3 {
     font-size: 15px;
     color: var(--main-color);
     font-family: var(--second-font);
     font-weight: 600;
 }

 .floors ul {
     display: flex;
     gap: 15px;
     padding-left: 1rem;
 }

 .floors ul li {
     list-style: none;
     font-family: var(--second-font);
     font-weight: 550;
     color: gray;
 }
 .floors ul li.active{
     background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 2px 10px;
    cursor: pointer;
 }
 .floor-list li.active {
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 50%;
    padding: 2px 10px;
    cursor: pointer;
}
.floor-list li{
    cursor: pointer;
    padding: 2px 10px;
}
.popup-content .close-btn{
    color: var(--main-color);
 }
 .infobad-bath{
    display: flex;
    align-items: center;
    gap: 10px;
 }


 /* -------------------------------------------------- sitepan css ------------------------------------------------------------------------- */
 #siteplanImage{width: 100%;}
.siteplancontainer{
    margin-bottom:50px;
    display: flex;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
}
 .siteplanheading h2{
    font-size: 40px;
    color: var(--main-color);
    text-align: center;
    padding: 30px 0;
    font-family: var(--forth-font);
 }
 .siteplanimg img{
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
 }
 /* Modal Overlay */
.siteplanmodal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    overflow: scroll;
  }
  
  /* Modal Content */
  .siteplanmodal-content {
    background-color: #fff;
    width: 500px;
    padding: 8px;
   border: 5px solid #000;
    text-align: center;
    position: relative;  
    overflow-y: scroll;
  }
  .siteplanlots{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    background-color: gray;
    color: #fff;
    padding: 0px 10px;
    font-family: var(--forth-font);
  }
  .siteplanlots h2{
    font-size: 35px;
  }
  .siteplanmodal-content .lotnumbers{
    text-align: left;
    font-size: 30px;
    font-family: var(--forth-font);
 
  }
  .secondModelContainer .lotnumbers{
    background-color: var(--main-color);
    color: #fff;
    padding-left: 20px;
  }
  .secondModelContainer .floor-image img{
    width: 50%;
  }
  .secondModelContainer .floors{
    margin-top: 0;
  }
  .modellotdetailsleft{
    width: 100%;
    font-family: var(--forth-font);
    text-align: left;
    padding-left: 15px;
  }
  .modellotdetailsleft img{
    width: 35px;
    height: 35px;
    
  }
  .modellotdetailsleft h1,h2{
    font-size: 30px;
  }
  .modellotdetailsleftimg{
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .modellotdetailsleft span{
    font-size: 35px;
  }
  .modellotdetails{
    display: flex;
  }
  .bymodelbuttons{
    display: flex;
    width: 100%;
  }
  .bymodelbuttonsleft{
    width: 100%;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bymodelbuttonsleft button{
    border: none;
    background-color: transparent;
    color: #fff;
    font-family: var(--forth-font);
  }
  .bymodelbuttonsright{
    width: 100%;
  }
  .bymodelbuttonsright ul{
    display: flex;
    gap: 15px;
  }
  .bymodelbuttons ul li{
    list-style: none;
  }
  /* Close Button */
  .siteplanclose-btn, .siteplanclose-btn2{
    font-size: 44px;
    cursor: pointer;
  }
  /* Modal Details */
  .siteplanmodal-details p {
    /*margin: 10px 0;*/
   
   
      display: flex;
    width: 33.33%;
    text-align: left;
    font-family: var(--second-font);
    flex-direction: column;
    align-items: flex-start;
  }
  .siteplanmodal-details{
    display: flex;
  }
  .siteplanmodal-details span{
    color: var(--main-color);
    font-size: 20px;
  }
  .siteplanmodal-options{
    display: flex;
    gap: 20px;
  }
  .siteplanmodal-options label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
    font-family: var(--second-font);
  }
  
  .siteplanmodal-options select {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid var(--main-color);
  }
  
  /* Confirm Button */
  .confirm-btn {
    background-color: var(--main-color);
    color: #fff;
    padding: 7px 20px;
    border: none;
   margin: 10px 0;
    font-size: 20px;
    cursor: pointer;
    font-family: var(--forth-font);
  }
  
 
  /* Show Modal Class */
  .siteplanmodal.show {
    display: flex; /* Flexbox to center modal */
  }
  .siteplanmodal-optionsmain{
    width: 100%;
  }
  .siteplanmodelimg img{
    width: 100%;
    height: 35vh;
    object-fit: cover;
    object-position: center;
  }
  .secondModelContainer .siteplanmodal-content{
    padding: 0;
    border: 5px solid var(--main-color);
  }
  .secondModelContainer .siteplanlots{
   background-color: var(--main-color);
  }
  .secondModelContainer .siteplanlots p{
    font-size: 28px;
    margin-bottom: 0;
  }
 /* ------------------------------------------- responsive css ------------------------------------------------------------------------*/
 @media only screen and (min-width:200px) and (max-width:767px) {

     .navbar,
     .navbarmain {
         padding: 0 25px;
     }
.siteplanmodal-details p{font-size: 12px;}
.siteplanmodal-details span {
    font-size: 16px;
}
.cards-container{
         grid-template-columns:repeat(1,1fr);
         
     }
.siteplanmodal-options label{font-size:13px;}
.siteplanmodal-options{gap:15px;}
     .hero-container {
         flex-direction: column;
         padding-top: 10%;
         padding-bottom: 10%;
         margin-left: 0;
         gap: 20px;
         height: auto;
     }

     .slider {
         width: 100%;
     }

     .slider img {
         width: 100%;
         height: auto;
     }

     .patternbg {
         width: 100%;
     }

     .hero-slider {
         height: auto;
     }

     .heroslidersection::before {
         background-image: none;
     }

     .heroslidersection {
         height: auto;
     }

     .topbar h2 {
         font-size: 28px;
     }

     .homesectionimg img {
         width: 100%;
         height: auto;
     }

     .home {
         height: auto;
     }

     .aboutmain {
         padding: 60px 0;
         gap: 25px;
         margin-left: 0;
     }

     .aboutcontentrighth6 p {
         line-height: 1rem;
         font-family: var(--second-font);
     }

     .aboutlogoleft {
         display: flex;
         justify-content: center;
     }

     .mapcontactright {
         text-align: center;
         padding-right: 0;
     }

     .mapcontact {
         --bs-gutter-x: 0;
     }
     .mapcontactright div{
        padding: 15px 0 0 0;
     }
     .aboutcontentrighth6 {
        padding: 15px 0 0 0;
        font-family: var(--second-font);
    }
     .slider-container {
         flex-direction: column-reverse;
     }

     .slider-content {
         padding: 60px 0;
     }

     .slider-arrows {
         top: 73%;
     }

     .arrow-btnprev {
         left: 2%;
     }

     .arrow-btnnext {
         right: 4%;
     }

     .thumbnails {
         grid-template-columns: repeat(3, 1fr);
         margin-left: 7px;
         margin-right: 11px;
     }

     .thumbnails img {
         margin-bottom: 0;
     }

     .MODERN-CONVENIENCES {
         padding: 30px 15px;
     }

     .MODERN-CONVENIENCES p {
         line-height: 1.4rem;
         font-size: 1rem;
     }
     .togtherdesc{
        padding: 40px 0 0 0;
     }
     .close-btn{
        color: #fff;
     }
     .togethermain div {
         padding-right: 0;
     }

     .togetherleftimg {
         margin-bottom: 10px;
     }

     .togtherdesc p {
         line-height: 1.5rem;
         padding: 0 10px;
         font-size: 15px;
         font-family: var(--second-font);
     }

     .comehomedesc p {
         line-height: 1.5rem;
         padding: 0 10px;
         font-size: 15px;
         font-family: var(--second-font);
     }

     .come-hometitlemain img {
         width: 100%;
     }

     .footermainsection {
         flex-direction: column;
         padding: 30px 30px;
     }

     .footermainsection .logo img {
         padding: 0px 50px;
     }

     .footerdesc p {
         padding: 0;
         margin-top: 0;
          z-index:1;
         position:relative;
        
     }

     .lightlogo img {
         position: absolute;
         width: 328px;
         object-fit: cover;
         right: 1%;
         bottom: -35%;
     }

     /* -------------------------------------------------- floorplan responsive csss --------------------------------------------------------- */
     .floorhero-container {
         height: auto;
     }

     .floorplancontent {
         text-align: center;
         padding: 20PX 0;
     }

     .floorplancontent h2 {
         font-size: 28px;
     }

     .floorplancontent p {
         font-family: var(--second-font);
         font-size: 15px;
         padding: 5px 11px;
     }

     .tab {
         font-size: 17px;
     }

     .tabs {
         gap: 0;
         margin-top: 0;
     }

     .cards-container {
         padding: 20px 0;
     }
     .popup{
        overflow-y: scroll;
     }
     .homedetails{
        flex-direction: column;
     }
     .popup-content{
        padding: 20px 10px;
        height: auto;
        max-width:95%;
     }
     .popup-images{
        width: 100%;
     }
     .view-btn{
        font-size: 18px;
     }
     .popup-images .info span{
        font-size: 17px;
     }
     .floor-image img{
        width: 100%;
     }
     .popup-content .close-btn{
        color: var(--main-color);
     }
 }

 @media only screen and (min-width:768px) and (max-width:1023px) {

     .navbar,
     .navbarmain {
         padding: 0 25px;
     }
.siteplanmodal-options{gap:20px;}
     .hero-container {
         flex-direction: column;
         padding-top: 10%;
         padding-bottom: 10%;
         margin-left: -13px;
         gap: 77px;
         height: auto;
     }

     .slider {
         width: 700px;
     }

     .slider img {
         width: 100%;
         height: auto;
     }

     .patternbg {
         width: 100%;
     }

     .hero-slider {
         height: auto;
     }

     .heroslidersection::before {
         background-image: none;
     }

     .heroslidersection {
         height: auto;
         --bs-gutter-x: 0rem;
         margin-left: 18px;
     }

     .homesectionimg img {
         width: 100%;
         height: auto;
     }

     .home {
         height: auto;
     }

     .aboutmain {
         gap: 25px;
     }

     .aboutlogoleft {
         display: flex;
         justify-content: center;
     }

     .mapcontactright {
         text-align: center;
         padding-left: 0;
     }

     .mapcontact {
         --bs-gutter-x: 0;
     }

     .slider-container {
         flex-direction: column-reverse;
         height: 68vh;
     }

     .slider-content {
         padding: 60px 0;
     }

     .slider-arrows {
         top: 73%;
     }

     .arrow-btnprev {
         left: 2%;
     }

     .arrow-btnnext {
         right: 4%;
     }

     .thumbnails {
         grid-template-columns: repeat(6, 1fr);
         margin-left: 7px;
         margin-right: 11px;
     }

     .thumbnails img {
         margin-bottom: 0;
     }

     .MODERN-CONVENIENCES {
         padding: 30px 0;
     }

     .MODERN-CONVENIENCES p {
         line-height: 0.4rem;
     }

     .togtherdesc p {
         line-height: 1.5rem;
         padding: 0 10px;
         font-size: 17px;
         font-family: var(--second-font);
     }

     .comehomedesc p {
         line-height: 1.5rem;
         padding: 0 10px;
         font-size: 17px;
         font-family: var(--second-font);
     }

     .come-hometitlemain img {
         width: 100%;
     }

     .footermainsection {
         flex-direction: column;
         padding: 30px 30px;
     }

     .footermainsection .logo img {
         padding: 0px 50px;
     }

     .footerdesc p {
         padding: 0;
         margin-top: 0;
          z-index:1;
         position:relative;
     }

     .lightlogo img {
         position: absolute;
         width: 328px;
         object-fit: cover;
         right: 1%;
         bottom: -35%;
     }

     /* -------------------------------------------------- floorplan responsive csss --------------------------------------------------------- */
     .floorhero-container {
         height: auto;
     }

     .floorplancontent h2 {
         font-size: 35px;
     }

     .floorplancontent p {
         font-family: var(--second-font);
         font-size: 15px;
         padding: 5px 0px;
     }

     .tab {
         font-size: 25px;
     }

     .tabs {
         gap: 30px;
         margin-top: 0;
     }

     .cards-container {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
     }

     .card {
         width: 100%;
         border: 1px solid var(--main-color);
         border-radius: 5px;
         overflow: hidden;
         background-color: #f9f9f9;
         text-align: center;
     }
     .popup{
        overflow-y: scroll;
     }
     .homedetails{
        flex-direction: column;
     }
     .popup-content{
        padding: 20px 10px;
        height: auto;
        max-width:90%;
     }
     .popup-images{
        width: 100%;
     }
     .view-btn{
        font-size: 30px;
     }
     .popup-images .info span{
        font-size: 30px;
     }
     .floor-image img{
        width: 100%;
     }
     .popup-content .close-btn{
        color: var(--main-color);
     }
     .infobad-bath img{
        width: 35px !important;
        height: 35px !important;
     }
 }

 @media only screen and (min-width:1024px) and (max-width:1250px) {

     .navbar,
     .navbarmain {
         padding: 0 25px;
     }
.cards-container{
         grid-template-columns:repeat(2,1fr);
         
     }
     .slider {
         width: 500px;
     }

     .hero-slider {
         height: auto;

     }
     .heroslidersection{
        height: auto;
     }
     .togtherdesc p {
         line-height: 1.5rem;
         padding: 0 96px;
         font-size: 17px;
         font-family: var(--second-font);
     }
     .hero-container{
       height: auto;
     }

     .homesectionimg img{
        height: auto;
     }
     .home{
        height: auto;
     }
     .heroslidersection::before{
        left: 0;
     }
     .comehomedesc p {
         line-height: 1.5rem;
         padding: 0 96px;
         font-size: 17px;
         font-family: var(--second-font);
     }

     .footermainsection {
         padding: 30px 0;
     }

     .lightlogo img {
         width: 330px;
     }

     .footerdesc p {
         padding: 0 258px 0 0;
     }

     .floorhero-container {
         height: auto;
     }
      .popup{
        overflow-y: scroll;
     }
     .homedetails{
        flex-direction: column;
     }
     .popup-content{
        padding: 20px 10px;
        height: auto;
         max-width:80%;
     }
     .popup-images{
        width: 100%;
     }
     .view-btn{
        font-size: 30px;
     }
     .popup-images .info span{
        font-size: 30px;
     }
     .floor-image img{
        width: 100%;
     }
     .popup-content .close-btn{
        color: var(--main-color);
     }
     .infobad-bath img{
        width: 35px !important;
        height: 35px !important;
     }
 }

 @media only screen and (min-width:1251px) and (max-width:1300px) {
     .togtherdesc p {
         line-height: 1.5rem;
         padding: 0 96px;
         font-size: 17px;
         font-family: var(--second-font);
     }

     .comehomedesc p {
         line-height: 1.5rem;
         padding: 0 96px;
         font-size: 17px;
         font-family: var(--second-font);
     }
     .popup-content{
        padding: 20px 10px;
        height: auto;
     }
     .popup{
        overflow-y: scroll;
     }
 }

 @media only screen and (min-width:1301px) and (max-width:1440px) {
     .togtherdesc p {
         line-height: 1.5rem;
         padding: 0 300px;
         font-size: 17px;
         font-family: var(--second-font);
     }

     .comehomedesc p {
         line-height: 1.5rem;
         padding: 0 300px;
         font-size: 17px;
         font-family: var(--second-font);
     }
 }

 .displaymodal, .displaymodalSecond{display: flex;}
 @media only screen and (min-width:1920px) and (max-width:4000px){
     .cards-container{
         grid-template-columns:repeat(4,1fr);
         
     }
     
 }

