 @import url('https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&display=swap');

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   background-color: #fff;
   color: #333;
   font-family: "ZCOOL XiaoWei", sans-serif;
 }

 .page {
   display: grid;
   grid-template-rows: auto 1fr auto;
   min-height: 100vh;
   grid-template-areas:
     "header"
     "main"
     "footer";
 }

 .layout {
   display: grid;
   grid-template-rows: auto auto 1fr auto;
   grid-template-areas:
     "header"
     "slideshow"
     "main"
     "footer";
 }

 header {
   grid-area: header;
   background-image: url(../images/BG-03.png);
   color: white;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.7rem 2rem;
   position: sticky;
   top: 0;
   z-index: 1000;
   flex-wrap: wrap;
 }

 .logo {
   font-size: 1.5rem;
   font-weight: bold;
 }

 .menu-toggle {
   display: none;
   font-size: 1.8rem;
   background: none;
   border: none;
   color: white;
   cursor: pointer;
 }

 nav {
   display: flex;
   gap: 1.5rem;
 }

 nav a {
   color: white;
   text-decoration: none;
   font-size: 1.3rem;
 }

 nav a:hover {
   text-decoration: underline;
 }

 /* Slideshow */
 .slideshow {
   grid-area: slideshow;
   position: relative;
   overflow: hidden;
   width: 100%;
 }

 .slides {
   display: flex;
   transition: transform 0.5s ease;
 }

 .slide {
   min-width: 100%;
   height: 100vh;
   background-size: cover;
   background-position: center;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .slide::before {
   content: "";
   position: absolute;
   inset: 0;
 }

 .slide-content {
   position: relative;
   color: #fff;
   text-align: center;
   z-index: 1;
 }

 .slide-content h1 {
   font-size: 3rem;
   margin-bottom: 0.5rem;
 }

 .slide-content p {
   font-size: 1.2rem;
 }

 .nav-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: rgba(255, 255, 255, 0.5);
   border: none;
   font-size: 1.5rem;
   padding: 0.5rem 1rem;
   cursor: pointer;
   z-index: 2;
 }

 .prev-btn {
   left: 10px;
 }

 .next-btn {
   right: 10px;
 }

 .dots {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 10px;
   z-index: 2;
 }

 .dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.6);
   cursor: pointer;
 }

 .dot.active {
   background: #fff;
 }

 main {
   grid-area: main;
   padding: 0rem;
   display: grid;
   gap: 0rem;
 }

 section {
   min-height: 100vh;
   background: #f9f9f9;
   padding: 0rem;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }

 footer {
   grid-area: footer;
   color: white;
   text-align: center;
   padding: 1rem;
   background-image: url(../images/BG-03.png);
 }



 :root {
   --terracotta-red: #a0442c;
   --light-cream: #f5e3d3;
   --text-dark: hsl(0, 0%, 13%);
   --icon-red: #a93a26;
 }

 #about {
   background-image: url(../images/BG-03.png);
 }

 #specs {
   background-color: #ffffff;
 }

 #plans {
  background-image: url(../images/Anhata/1920x900_image-BG_2.jpg);
 }

 #amenities {
   background-color: #ffffff;
 }

 #gallery {
   background-image: url(../images/BG-03.png);
 }

 #contact {
    background-image: url(../images/Anhata/1920x900_image-BG_2.jpg);
 }

 .header-Amenities {

   text-align: left;
   padding-left: 30px !important;
   color: #a93a26;
 }

 .space-block h1 {
   font-size: 29px !important;
   padding: 0px 0px !important;
   color: #a93a26;
 }

 #about h1 {
   font-size: 50px;
   padding: 60px 0px;
   color: #fff;
 }

 #specs h1 {
   font-size: 50px;
   padding: 60px 0px 20px;
   color: #a93a26;
 }

 #plans h1 {
   font-size: 50px;
   padding: 60px 0px;
   color: #a93a26;
 }

 #amenities h1 {
   font-size: 50px;
   padding: 60px 0px;
   color: #a93a26;
 }

 #gallery h1 {
   font-size: 50px;
   padding: 60px 0px;
   color: #ffffff;
 }

 #contact h1 {
   font-size: 50px;
   padding: 60px 0px;
   color: #a93a26;
 }

 .aboutus {
   display: grid;
   grid-template-columns: 1fr 1fr;
   min-height: 100vh;

 }

 .aboutus .left {
   background-image: url(../images/BG-03.png);
   color: white;
   padding: 20px 0px 0px;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .aboutus .left h1 {
   font-size: 2rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 20px;
 }

.aboutus .left p {
  font-size: 1.3rem;
  max-width: 90%;
  padding: 20px 40px 50px;
}

 .aboutus .left h1 {

   padding: 40px 40px 0px !important;
 }

 .aboutus .highlight {
   font-weight: bold;
   text-transform: uppercase;
   margin-top: 10px;
 }

 .aboutus .left img {
   margin-top: 30px;
   max-width: 100%;
 }

 .aboutus .right {
   padding: 0px;
   display: flex;
   flex-direction: column;
   background-color: #f6e8dd;
 }

 .aboutus .right img.floorplan {
   width: 100%;
 }

 .aboutus .tagline {
   font-size: 1.2rem;
   margin-bottom: 10px;
 }

 .aboutus .features {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   margin-top: 30px;
 }

 .aboutus .feature {
   flex: 1 1 222px;
   background-color: white;
   padding: 15px;
   border: 1px solid #ddd;
   border-radius: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .aboutus .feature-icon {
   font-size: 1.5rem;
   color: var(--icon-red);
 }

 .aboutus .feature-text {
   font-size: 0.9rem;
   font-weight: 600;
 }

 

 .specification {
   display: grid;
 grid-template-columns: 60% 40%;
   min-height: 100vh;
 }

 .specification .left {
   padding: 0px 40px;
   background-color: var(--main-bg);
 }

 .specification h1 {
   font-size: 2rem;
   color: var(--accent);
   margin-bottom: 10px;
 }

 .specification h2 {
   font-size: 1rem;
   color: var(--accent);
   font-weight: 500;
   margin-bottom: 30px;
   text-transform: uppercase;
 }

 .section {
   margin-bottom: 30px;
   float: left;
   width: 50%;
 }

 .section-title {
   font-weight: bold;
   margin-bottom: 10px;
   color: var(--icon-green);
   display: flex;
   align-items: center;
   gap: 8px;
 }

 .section ul {
   list-style: none;
   padding-left: 20px;
 }

 .section li {
   margin-bottom: 8px;
   position: relative;
   padding-left: 20px;
 }

 .section li::before {
   content: "▣";
   position: absolute;
   left: 0;
   color: var(--accent);
   font-size: 0.8rem;
 }

 .specification .right {
   background-image: url('night-view.jpg');
   /* Replace with actual path */
   background-size: cover;
   background-position: center;
 }



 .header {
   font-size: 2.5rem;
   font-weight: bold;
   color: #333;
   text-align: center;
   padding-bottom: 1rem;
 }

 .tab-container {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   width: 100%;
 }

 .tab-buttons {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
 }

 .tab-btn {
   padding: 0.7rem 1.5rem;
   background-color: #ffffff;
   border: none;
   cursor: pointer;
   font-weight: 600;
   border-radius: 5px;
   transition: background 0.3s;
   margin: 0px 10px;
   color: #c54800;
 }

 .tab-btn.active,
 .tab-btn:hover {
   background-color: #c54800;
   color: white;
 }

 .tab-content {
   display: none;
   animation: fadeIn 0.5s ease-in;
 }

 .tab-content.active {
   display: block;
 }

 .grid-layout {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
   gap: 1.5rem;
 }

 .grid-box {

   padding: 2rem;
   text-align: center;
   border-radius: 10px;
 }

 @keyframes fadeIn {
   from {
     opacity: 0;
     transform: translateY(10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }


 .amenities {
   display: grid;
   grid-template-columns: 1.2fr 1fr;
   min-height: 100vh;
   width: 100%;
 }

 /* LEFT GALLERY */
 .left-gallery {
   display: grid;
   grid-template-columns: 1fr 1fr;
   grid-template-rows: 1fr 1fr;
 }

 .left-gallery img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border: 1px solid #fff;
 }

 /* RIGHT CONTENT */
 .right-content {
   padding: 60px 40px;
   overflow-y: auto;
   background-color: var(--bg);
 }

 .space-block {
   background: var(--white);
   padding: 20px 24px;
   border-radius: 12px;
   margin-bottom: 30px;
   box-shadow: 0 4px 12px var(--card-shadow);
   border-left: 5px solid var(--accent);
   width: 48%;
   float: left;
   height: 323px;
 }

 .space-block h1 {
   font-size: 1.4rem;
   color: var(--accent);
   margin-bottom: 8px;
   text-transform: uppercase;
 }

 .space-block h2 {
   font-size: 0.95rem;
   color: #555;
   margin-bottom: 20px;
   font-weight: normal;
 }

 .icon-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .icon-item {
   display: flex;
   align-items: center;
   gap: 14px;
   font-size: 0.95rem;
   font-weight: 500;
   padding: 10px 12px;
   background: #fefefe;
   border-radius: 8px;
   border: 1px solid #e3d3c4;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
 }

 .icon {
   background-color: var(--accent);
   color: white;
   border-radius: 50%;
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
 }

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 6px 9px;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: white;
}


 .gallery {
   padding: 0px;
   width: 100%;
   margin: auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));

 }

 .gallery img {
   width: 100%;
   height: auto;
   cursor: pointer;
   transition: transform 0.2s ease;
 }

 .gallery img:hover {
   transform: scale(1.02);
 }

 /* Lightbox Modal */
 .lightbox {
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;

   display: none;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   z-index: 9999;
   background: #000000d9;
 }

 .lightbox img {
   max-width: 90vw;
   max-height: 80vh;
   border-radius: 8px;
 }

 .caption {
   margin-top: 15px;
   color: #fff;
   font-size: 2rem;
 }

 .lightbox .controls {
   position: absolute;
   top: 50%;
   width: 100%;
   display: flex;
   justify-content: space-between;
   padding: 0 30px;
   transform: translateY(-50%);
 }

 .lightbox .controls span {
   font-size: 2rem;
   color: #fff;
   background-color: rgba(0, 0, 0, 0.4);
   padding: 10px 20px;
   border-radius: 50%;
   cursor: pointer;
   user-select: none;
 }

 .close-btn {
   position: absolute;
   top: 20px;
   right: 30px;
   font-size: 2rem;
   color: #fff;
   cursor: pointer;
   user-select: none;
 }


 #contact {
   padding: 0;
 
 }

 .grid-box img {
   padding: 2rem;
   text-align: center;
   border-radius: 10px;
   width: 100%;
 }

 .contact-info p {
   padding: 10px;
 }

 .contact-container {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 0px;
   width: 100%;
 }

 .contact-form,
 .map,
 .contact-info {
   padding: 2rem;
   min-height: 650px;
 }



 .section-title {
   font-size: 1.2rem;
   margin-bottom: 1rem;
   color: #21423F;
 }

 form {
   display: flex;
   flex-direction: column;
 }

 input,
 textarea {
   margin-bottom: 1rem;
   padding: 0.8rem;
   font-size: 1rem;
   border: 1px solid #ccc;
   border-radius: 5px;
 font-family: "ZCOOL XiaoWei", sans-serif !important;
 }
.gm-style .place-card .place-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 14px;
  color: black;
 font-family: "ZCOOL XiaoWei", sans-serif !important;    
}
 button {
   background-color: #21423F;
   color: white;
   border: none;
   padding: 0.9rem;
   border-radius: 5px;
   font-size: 1rem;
   cursor: pointer;
 }

 button:hover {
   background-color: #193630;
 }

 iframe {
   width: 100%;
   height: 100%;
   border: none;
 }
 @media screen and (max-width: 760px) {
   .header {
     font-size: 1.8rem;
   }

   .tab-btn {
     width: 20%;
     text-align: center;
   }
   .section {
  margin-bottom: 30px;
  float: left;
  width: 108%;
}
section {
  min-height: auto;
 
}
.logo img {
  font-size: 1.5rem;
  font-weight: bold;
  width: 160px;
}
header {
  
  padding: 0rem 2rem;

}
  #about h1 {
    font-size: 50px;
    padding: 20px 58px;
    color: #fff;
    width: 100%;
  }
.gallery {

  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
}
.section-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #21423F;
}
.aboutus .left h1 {
  padding: 0px 40px 0px !important;
  font-size: 27px !important;
}
.contact-form, .map, .contact-info {
  padding: 2rem;
  min-height: auto;
}
.space-block {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px var(--card-shadow);
  border-left: 5px solid var(--accent);
  width: 100%;
  float: left;
  height: 323px;
}
  nav#navMenu {
     flex-direction: column;
     display: none;
     width: 100%;
   }

   nav#navMenu.active {
     display: flex;
   }

   .menu-toggle {
     display: block;
   }
    .contact-container {
     grid-template-columns: 1fr;
   }
    .menu-toggle {
     display: block;
   }

   nav {
     display: none;
     flex-direction: column;
     width: 100%;
     padding-bottom: 20px;
   }

   nav.active {
     display: flex;
   }

   nav a {
     padding: 0rem 1.5rem;
     color: #fdbb7e;
   }

   

   .slide-content h1 {
     font-size: 2rem;
   }

   .slide-content p {
     font-size: 1rem;
   }
   .aboutus {
     grid-template-columns: 1fr;
   }

   .aboutus .left,
   .aboutus .right {
     padding: 40px 20px;
   }

   .aboutus .left img {
     max-width: 100%;
   }
    .specification {
     grid-template-columns: 1fr;
   }

   .specification .right {
     height: 300px;
   }
   .amenities {
     grid-template-columns: 1fr;
   }

   .left-gallery {
     grid-template-columns: 1fr;
     grid-template-rows: repeat(4, 200px);
   }

   .right-content {
     padding: 30px 20px;
   }
   .lightbox .controls span {
     font-size: 1.5rem;
     padding: 8px 14px;
   }
   
  }
  /* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 3px;
  right: 14px;
  font-size: 33px;
  color: #21423f;
}
.popup-content h2
{padding: 20px 0px;}
.e-brushere {
  background-color: #ca4a00;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: ma;
  margin-top: 15%;
  position: absolute;
  z-index: 20;
  left: 44%;
}

.e-brushere:hover {
  background-color: #f7471b;
}


/* Base styling for slides */
.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

/* Show only desktop slides by default */
.desktop {
  display: block;
}
.mobile {
  display: none;
}

/* Media query for mobile */
@media only screen and (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .e-brushere {
  background-color: #ca4a00;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: ma;
  margin-top: 38%;
  position: absolute;
  z-index: 20;
  left: 24%;
}
}

.ebrochure-btn{
  
    align-items: center;
    background: #ffffff;;
    color: #0a0a0a;
    border-radius: 20px;
    text-decoration: none;
    padding: 5px 20px;
    z-index: 9999;
    transition: transform .12s ease, box-shadow .12s ease;
  }
  .ebrochure-btn:focus,
  .ebrochure-btn:hover{
    
    outline: none;
  }
  .ebrochure-btn svg{ color:inherit;  }
  /* mobile safety: avoid overlapping system UI (notch) */
  @media (max-width: 520px){
    .ebrochure-btn{ top: 10px; right: 10px; padding: .5rem .7rem; border-radius: 8px; font-size: .95rem; }
  }
