/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Vidaloka', serif;
}



   


/* =====================
   SLIDER
===================== */
.slider {
  position: relative;
  width: 100%;
  height: 690px;
  overflow: hidden;
  z-index: 1;
  padding-top: 0px;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 690px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.slide span {
  font-size: 50px;
  color: #ffffff;
  padding: 10px 20px;
  font-family: 'Vidaloka', serif;
  margin-top: 510px;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  transition: background 0.3s ease;
}

.arrow:hover {
  color: #000;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #7d7b7b;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.6;
}

.dot.active {
  background-color: #ffcc00;
  opacity: 1;
}


/* Mobile Phones */
@media (max-width: 480px) {

  .slider,
  .slide {
    height: 300px;
  }

  .slide span {
    font-size: 20px;
    padding: 5px 10px;
  }

  .arrow {
    font-size: 25px;
    padding: 7px;
  }

  .dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {

  .slider,
  .slide {
    height: 450px;
  }

  .slide span {
    font-size: 30px;
    padding: 8px 16px;
  }

  .arrow {
    font-size: 30px;
    padding: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

/* Laptops */
@media (min-width: 769px) and (max-width: 1024px) {

  .slider,
  .slide {
    height: 550px;
  }

  .slide span {
    font-size: 40px;
    padding: 9px 18px;
  }

  .arrow {
    font-size: 35px;
    padding: 9px;
  }

  .dot {
    width: 11px;
    height: 11px;
    margin: 0 4px;
  }
}

/* Desktops */
@media (min-width: 1025px) and (max-width: 1440px) {

  .slider,
  .slide {
    height: 650px;
  }

  .slide span {
    font-size: 48px;
    padding: 10px 20px;
  }

  .arrow {
    font-size: 38px;
    padding: 10px;
  }

  .dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
  }
}

/* TVs and Large Screens */
@media (min-width: 1441px) {

  .slider,
  .slide {
    height: 690px;
  }

  .slide span {
    font-size: 50px;
    padding: 10px 20px;
  }

  .arrow {
    font-size: 40px;
    padding: 10px;
  }

  .dot {
    width: 14px;
    height: 14px;
    margin: 0 6px;
  }
}


/* <--------- HEADER NAVBAR CSS END ----------->  */


/* <----    box ---->  */
.box {
  border: 2px solid #fcfbfb;
  max-width: 1300px;
  margin: 50px auto;
  font-family: sans-serif;

}

.box h2 {
  text-align: center;
  padding: 20px;
  margin: 0;
  font-weight: 400;
  font-size: 44px;
  color: #524f4f;
}

.content-section {
  display: flex;
  height: 400px;
}

.left-image,
.right-text {
  width: 50%;
  box-sizing: border-box;
}

.left-image {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border: 5px solid #2e2f2e; Green border */
  border-radius: 15px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
}

.right-text {
  padding: 20px;
  overflow-y: scroll;
  /* border-left: 2px solid #ddd; */

}

.right-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}


/* <----------- 5STAR CONDO CONTAINER WITH MEDIA QUARY -------> */


.h1 {
  text-align: center;
  font-size: 54px;
  font-weight: 100;
  margin: 90px 0 20px;
  color: #444;
  padding: 0 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 90px;
  gap: 50px;
  align-items: flex-start;
  border-bottom: 1px solid rgb(201, 195, 195);
}

.left {
  flex: 1;
  min-width: 300px;
}

.left p {
  font-size: 18px;
  word-spacing: 1px;
  height: 180px;
  overflow-y: auto;
  margin-bottom: 0;
  border-bottom: 1px solid rgb(191, 185, 185);
  color: #323030;
  padding-right: 10px;
  line-height: 1.6;
  scrollbar-width: thin;
}

.left p::-webkit-scrollbar {
  width: 8px;
}

.left p::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.4);
  border-radius: 4px;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  /* background: #f5f5f5; */
  padding: 10px 15px;
  border-radius: 8px;
  flex: 1 1 150px;
  color: rgb(0, 0, 0);
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.info-item i {
  font-size: 30px;
  margin-right: 10px;
  color: #c58910;
}

.info-item span {
  font-size: 18px;
  font-weight: 100;
}

.right {
  flex: 1;
  min-width: 300px;
}

.right img {
  width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block;
  margin-top: 0px;
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
  .h1 {
    font-size: 28px;
    margin-top: 50px;
    font-weight: 500;
    margin-left: -40px;
  }

  .container {
    flex-direction: column-reverse;
    padding: 0px 20px;
    align-items: center;
    margin-left: 0px;
  }

  .left {
    width: 100%;
  }

  .left p {
    font-size: 16px;
    height: 150px;
  }

  .info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  .right {
    width: 100%;
    margin: 0 auto;
  }
}

/* Tablet (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .h1 {
    font-size: 36px;
    font-weight: 500;
    margin-top: 50px;
  }

  .container {
    flex-direction: column-reverse;
    padding: 30px;
    align-items: center;
  }

  .left {
    width: 100%;
  }

  .left p {
    height: 160px;
    font-size: 17px;
  }

  .info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .right {
    width: 100%;
  }
}

/* Laptop/Desktop (1025px and up) */
@media (min-width: 1025px) {
  .container {
    flex-direction: row;
    align-items: flex-start;
  }

  .info-item {
    flex: 1 1 30%;
  }

  .h1 {
    font-size: 50px;
  }
}

@media (min-width: 1441px) {
  .container {
    padding: 60px 100px;
  }

  .info-item {
    flex: 1 1 25%;
  }

  .h1 {
    font-size: 54px;
  }
}

/* <----------- END  5STAR CONDO CONTAINER WITH MEDIA QUARY -------> */




/* <------ COMMON AREAS CSS AND MEDIA QUARY START ----> */
h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  margin-top: 40px;
  font-weight: 300;
  color: #4e4c4c;
}

.common-areas-slider-container {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 190px;
}

.common-areas-slider-gallery {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 400px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.common-areas-slider-cards {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.5s ease;
}

.common-areas-slider-cards li {
  flex: 0 0 440px;
  height: 390px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  opacity: 0.9;
  transform: scale(0.8);
  transition: all 0.5s ease;
  cursor: pointer;
}

.common-areas-slider-cards li.active {
  transform: scale(1.0) translateY(0px);
  opacity: 1;
  z-index: 2;
}

.common-areas-slider-cards li.left,
.common-areas-slider-cards li.right {
  opacity: 0.9;
  transform: scale(0.9) translateY(-60px);
  z-index: 1;
}

.common-areas-nav-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 1;
}

.common-areas-nav-buttons button {
  background: rgba(239, 236, 236, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: rgb(14, 13, 13);
  cursor: pointer;
  transition: transform 0.3s ease;
  border: none;
}

.common-areas-nav-buttons button:hover {
  transform: scale(1.1);
}

/* Fullscreen Modal */
.common-areas-fullscreen-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.common-areas-fullscreen-modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  object-fit: contain;
}

.common-areas-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

.common-areas-heart-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.common-areas-heart-icon.liked {
  color: red;
}

.common-areas-fullscreen-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  z-index: 10000;
}

.common-areas-fullscreen-nav.left {
  left: 30px;
}

.common-areas-fullscreen-nav.right {
  right: -210px;
}

/* Responsive */
@media (max-width: 768px) {
  .common-areas-slider-container {
    padding: 0 0px;
    margin-top: -90px;
  }

  .common-areas-slider-cards li {
    flex: 0 0 80%;
    height: 300px;
  }

  .common-areas-slider-gallery {
    height: 300px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
    text-align: center;
    margin: 20px 10px;
  }

  .common-areas-slider-cards li {
    height: 250px;
  }
}

.common-areas-fullscreen-nav.left {
  left: 25px;
}

.common-areas-fullscreen-nav.right {
  right: -303px;
}

/* <------ COMMON AREAS CSS AND MEDIA QUARY END ----> */




/* <---- CONTACT US CSS AND MEDIA QUARY START -----> */

#contactContainer {
  font-size: 40px;
  font-weight: bold;
  display: block;
  text-align: center;
  margin: 40px 0 20px;
}

.container2 {
  display: flex;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  gap: 6px;
}

.left-section1,
.right-section1 {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  color: #fff;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Overlay for better readability */
.left-section1::before,
.right-section1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.left-section1 {
  background-image: url('https://waterrockgarden.com/imagesNew/water1.png');
}

.right-section1 {
  background-image: url('https://waterrockgarden.com/back-panel/images/404408601_6670e865-c854-4993-84c9-aa65ecbfc1a4.c10.jpg');
}

.left-section1 h2,
.right-section1 h2 {
  font-size: 34px;
  margin-bottom: 20px;
  text-align: center;
  z-index: 1;
}

.left-section1 p {
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
  z-index: 1;
}

.left-section1 i {
  margin-right: 10px;
}

form {
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  z-index: 1;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #ccc;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: #ddd;
  font-size: 16px;
}

textarea {
  resize: none;
  height: 80px;
}

.button1 {
  padding: 12px 20px;
  background-color: yellow;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  width: 120px;
  transition: 0.3s;
}

.button1:hover {
  background-color: #f1c40f;
  transform: scale(1.03);
}

/* Responsive Media Queries */
@media (max-width: 480px) {
  #contactContainer {
    font-size: 28px;
    margin: 20px 10px;
  }

  .container2 {
    flex-direction: column;
  }

  .left-section1,
  .right-section1 {
    padding: 10px;
  }

  .form-row {
    flex-direction: column;
  }

  .left-section1 p {
    font-size: 16px;
  }

  .right-section1 h2 {
    font-size: 26px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .container2 {
    flex-direction: column;
  }

  .left-section1,
  .right-section1 {
    padding: 30px;
  }

  .form-row {
    flex-direction: column;
  }

  .right-section1 h2 {
    font-size: 30px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .left-section1,
  .right-section1 {
    padding: 35px;
  }

  .form-row {
    gap: 10px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {

  .left-section1,
  .right-section1 {
    padding: 40px;
  }
}

@media (min-width: 1441px) {
  #contactContainer {
    font-size: 48px;
  }

  .left-section1 h2,
  .right-section1 h2 {
    font-size: 40px;
  }

  input,
  textarea {
    font-size: 18px;
  }
}



/* <---- CONTACT US CSS AND MEDIA QUARY END ----->  */


/* Styling for vertical fixed contact button */
.vertical-contact-button {
  position: fixed;
  top: 60%;
  right: 0;
  background-color: #0a0a87;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px 0 0 5px;
  text-decoration: none;
  transform: rotate(-90deg);
  transform-origin: right center;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
  margin-right: 24px;
}

.vertical-contact-button i {
  margin-right: 16px;
  font-style: normal;
}

/* Dummy contact section for demo */
#contactContainer {
  padding: 50px;
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .vertical-contact-button {
    font-size: 14px;
    padding: 10px 14px;
    margin-right: 16px;
    top: 35%;
  }
}

@media (max-width: 480px) {
  .vertical-contact-button {
    font-size: 12px;
    padding: 8px 12px;
    margin-right: 10px;
    top: 30%;
  }
}

/* Dummy contact section for demo */
#contactContainer {
  font-weight: 500;
  font-size: 48px;
  padding: 50px;
  background: #ffffff;
}



/* <---- ABOUT SECTION ----->  */


.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 100%;
  padding: 40px;
  margin-top: 30px;

}

.about-image {
  flex: 1 1 50%;
  padding: 0px 100px;
  object-fit: cover;
}

.about-image img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-content {
  flex: 1 1 50%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}




@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 20px;
  }

  .about_h1 {
    font-size: 24px;
  }

  .modal-content {
    flex-direction: column;
  }

  .modal-content img {
    width: 100%;

  }

  .about-image img {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 20px;
    scroll-behavior: smooth;
    margin-top: -10px;


  }

  .about_h1 {
    margin-top: -110px;
    font-size: 34px;
  }

  .about-image,
  .about-content {
    flex: 1 1 100%;
    padding: 0;
    /* Remove horizontal padding on small screens */

  }

  .about-image img {
    width: 90%;
    margin-left: 20px;
    height: auto;
    /* Maintain aspect ratio */
    max-height: 350px;
    /* Optional: limit height on mobile */
  }
}








.review-section {
  display: flex;
  min-height: 300px;
  margin-top: 90px;
  margin-bottom: 0px;
}

.left-side {
  flex: 2;
  background: url('https://waterrockgarden.com/imagesNew/water1.png') no-repeat center center/cover;
  color: white;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.left-side p {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 600px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);

}

.right-side {
  flex: 1;
  background-color: #d6d0d0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.right-side h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.right-side p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.right-side button {
  padding: 10px 20px;
  background-color: #f9b233;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.right-side button:hover {
  background-color: #e69a00;
}

@media (max-width: 768px) {
  .review-section {
    flex-direction: column;
  }

  .left-side,
  .right-side {
    width: 100%;
    text-align: center;
  }
}