* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      color: #333;
      background-color: #fff;
      overflow-x: hidden;
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
  text-align: center;
    }
header {
            height: 100vh;
            width: 100%;
            /* The image is now the full background again */
           background: url('../image/Front View.jpg') no-repeat center center/cover;
            
            /* Use Flexbox to position the text panel */
            display: flex;
            align-items: center; /* Vertically centers the panel */
            justify-content: flex-start; /* Aligns the panel to the left */
        }

        /* The semi-transparent panel for text */
        .text-panel {
            width: 45%; /* Panel takes up less than half the screen */
            background: rgba(255, 255, 255, 0.9); /* White with 90% opacity */
            padding: 4rem;
            box-sizing: border-box;
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
            animation: slideInFromLeft 1.2s ease-out;
        }

        .logo {
            font-weight: bold;
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 2rem;
        }

        /* The elegant gold accent line */
        .accent-line {
            width: 80px;
            height: 3px;
            background: #c5a47e; /* A soft gold color */
            border: none;
            margin: 0 0 2rem 0;
        }

        .text-panel h1 {
            font-size: 3rem;
            color: #222; /* Dark text for readability */
            margin: 0 0 1rem 0;
        }

        .text-panel p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        /* The new Call-to-Action Button style */
        .cta-button {
            font-size: 1rem;
            font-weight: bold;
            color: #fff;
            background-color: #333; /* A strong, dark background */
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: #c5a47e; /* Gold color on hover */
        }

        /* Animation for the panel */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive adjustments for smaller screens */
        @media (max-width: 900px) {
            .text-panel {
                width: 100%; /* Panel takes full width on tablets/phones */
                height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 2rem;
            }
            .text-panel h1 { font-size: 2.5rem; }
            .text-panel p { font-size: 1rem; }
        }

         /* Popup modal background */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
  }

  /* Popup content box */
  .modal-content {
    position: relative;
    background: #fff;
    width: 80%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
  }

  /* Iframe for video / pdf */
  .modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 1100;
  }

    .info {
      padding: 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      background-color: #f9f9f9;
      animation: fadeInUp 1s ease-in;
    }

    .info div {
      text-align: center;
      padding: 1rem;
      border-radius: 10px;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .info div:hover {
      transform: scale(1.05);
    }

    .nav {
      display: flex;
      justify-content: center;
      padding: 1rem;
      background-color: #ddd;
      position: sticky;
      top: 0;
    }

    .nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #000;
      font-weight: bold;
      transition: color 0.3s;
    }

    .nav a:hover {
      color: #d4a03d;
    }

    footer {
      text-align: center;
      padding: 2rem;
      background-color: #222;
      color: #fff;
    }
    
 /* --- Top-Right User Profile and Buttons --- */
#user-status {
  position: absolute;
  right: 20px;
  top: 4%; /* This will vertically center it in the nav bar */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
}

#user-status span {
  font-weight: bold;
  color: #333;
}

#user-status a {
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s;
  white-space: nowrap;
}

/* Red Login Button */
#user-status .button-login {
  background-color: #d4a03d; /* Red */
}
#user-status .button-login:hover {
  background-color: #d4a03d; /* Darker Red */
}

/* Green Register Button */
#user-status .button-register {
  background-color: #d4a03d; /* Green */
}
#user-status .button-register:hover {
  background-color: #d4a03d;
}

/* Red Logout Button */
#user-status .button-logout {
  background-color: #d4a03d; /* Red */
}
#user-status .button-logout:hover {
  background-color: #d4a03d;
}
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }

    @keyframes slideIn {
      from {transform: translateY(-20px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }

    @keyframes fadeInUp {
      from {transform: translateY(20px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }

    /* Overview */
    
    body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.overview {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #fff;
}

.text-content {
    max-width: 55%;
}

.text-content h1 {
    color: #b89c4d;
    font-size: 36px;
    margin-bottom: 10px;
}

.text-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.text-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.buttons button {
    margin: 10px 10px 0 0;
    background-color: #b89c4d;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.buttons button:hover {
    background-color: #a0853f;
}

.image-content {
    position: relative;
    max-width: 40%;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.caption {
    display: block;
    text-align: right;
    font-size: 12px;
    margin-top: 5px;
    color: #555;
}
  

 /* Why buy */

h1 {
  color: #1a2f4e;
  font-size: 2rem;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-in-out forwards;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: auto;
  opacity: 0;
  animation: fadeIn 2s ease-in-out 1s forwards;
}

.box {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 5px;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: slideIn 0.5s ease forwards;
}

.box:nth-child(1) { animation-delay: 0.1s; }
.box:nth-child(2) { animation-delay: 0.2s; }
.box:nth-child(3) { animation-delay: 0.3s; }
.box:nth-child(4) { animation-delay: 0.4s; }
.box:nth-child(5) { animation-delay: 0.5s; }
.box:nth-child(6) { animation-delay: 0.6s; }
.box:nth-child(7) { animation-delay: 0.7s; }

.highlight {
  background-color: #fafbfd;
  color:#070707;
  font-weight: bold;
}

.box:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #3563b8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* configuration */



  
  .container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    animation: fadeSlideIn 1.2s ease-out;
  }

  h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    animation: fadeIn 1s ease forwards;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    animation: fadeSlideIn 1.5s ease forwards;
  }

  thead th {
    background-color: #4A90E2;
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 16px;
  }

  tbody td {
    padding: 14px;
    border-bottom: 1px solid #ddd;
    color: #555;
  }

  tbody tr {
    transition: background-color 0.3s ease;
  }

  tbody tr:hover {
    background-color: #f1f9ff;
  }

  a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }

  a:hover {
    color: #2c6dbc;
    transform: scale(1.05);
  }

  /* Animation Keyframes */
  @keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Amenities */
.amenities-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.amenities-section .title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  background-color: #e0e0e0;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 30px;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s;
}

.tab.active, .tab:hover {
  background-color: #34495e;
  color: #fff;
}

.description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  justify-items: center;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.amenity img {
  width: 175px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.amenity img:hover {
  transform: scale(1.05);
}

.amenity p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #333;
}


/* Specification   */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #444;
}

.specifications {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.specifications h1 {
  font-size: 2rem;
  color: #b5893e;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  border: none;
  background-color: #e4e4e4;
  margin: 5px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.tab.active {
  background-color: #d6a441;
  color: white;
}

.content ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 20px;
  list-style-type: none;
  padding-left: 0;
}

.content ul li {
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}

.content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d6a441;
  font-weight: bold;
}

.disclaimer {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
}

/* floor plan */

 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #333;
        }

        .container {
            padding: 40px 20px;
            text-align: center;
        }

        h1 {
            color: #b68928;
            font-size: 36px;
        }

        .tabs {
            margin-top: 20px;
        }

        .tab {
            display: inline-block;
            background-color: #b68928;
            color: white;
            padding: 10px 20px;
            margin: 0 5px;
            border-radius: 4px;
            cursor: pointer;
        }

        .tab.inactive {
            background-color: #e0e0e0;
            color: #333;
        }

        .floor-plans {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .floor-plan {
            max-width: 600px;
            text-align: center;
        }

        .floor-plan img {
            width: 100%;
            height: auto;
            border: 1px solid #ccc;
            border-radius: 8px;
        }

        .caption {
            margin-top: 10px;
            font-size: 16px;
            color: #555;
        }

        .note {
            margin-top: 30px;
            font-size: 14px;
            color: #888;
        }

        .nav-arrows {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 60px;
        }

        .arrow {
            color: #b68928;
            font-weight: bold;
            cursor: pointer;
        }

        /* loction */

.location-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 12px;
}

.location-section .location-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #222;
}

.location-section .location-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs */
.location-section .location-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.location-section .location-tab {
    padding: 10px 20px;
    border: none;
    background: #eee;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.location-section .location-tab:hover {
    background: #ddd;
}

.location-section .location-tab.active {
    background: #c28a2e;
    color: #fff;
}

/* Panels */
.location-section .location-panel {
    display: none; /* Hidden by default */
}

.location-section .location-panel.visible {
    display: block; /* Made visible by JavaScript */
    animation: fadeIn 0.5s ease-in-out;
}

.location-section .location-map {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.location-map-frame {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
}

.location-panel {
  display: none;
}

.location-panel.visible {
  display: block;
}

.rera-box {
  margin-top: 2em;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
}

.rera-box img {
  margin-top: 0.5em;
}
 /* gallary*/

.gallery-container {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    padding: 40px 20px;
}

.gallery-container h1 {
    color: #b88a3a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Tabs */
.gallery-container .gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-container .gallery-tab {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    background: #ddd;
    cursor: pointer;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.gallery-container .gallery-tab:hover {
    background: #ccc;
}

.gallery-container .gallery-tab.active {
    background: #b88a3a;
    color: white;
}

/* Slideshows */
.gallery-container .gallery-slideshow {
    display: none; /* Hidden by default */
    position: relative;
    width: 100%;
}

.gallery-container .gallery-slideshow.visible {
    display: block; /* Made visible by JavaScript */
}

.gallery-container .gallery-slide {
    display: none; /* Individual slides hidden by default */
}

.gallery-container .gallery-slide.active-slide {
    display: block; /* Active slide is shown */
    animation: fadeIn 0.5s ease;
}

.gallery-container .gallery-slide img {
    width: 100%;
    border-radius: 10px;
}

/* Slideshow Arrows */
.gallery-container .gallery-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    background-color: rgba(0,0,0,0.5);
    font-weight: bold;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    z-index: 10;
}

.gallery-container .gallery-arrow:hover {
    background-color: rgba(0,0,0,0.8);
}

.gallery-container .gallery-arrow.prev {
    left: 10px;
}

.gallery-container .gallery-arrow.next {
    right: 10px;
}

/* Reusable animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* construction update  */

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
}

.mySlides {
  display: none;
}

img {
  vertical-align: middle;
  width: 200px;
  height: 420px;
}


.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: .4 }
  to { opacity: 1 }
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  user-select: none;
  transform: translateY(-50%);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* video update  */

/* ===== 360° Virtual Tour Popup ===== */
/* --- Video Container Styling --- */
#videoContainer {
    /* * Key: Set a fixed, small max-width for a vertical/portrait orientation 
     * Adjust this value (e.g., 300px) to match the vertical aspect you want.
     */
    margin: 20px auto; 
    max-width: 350px; 
    
    /* Card/Story Look */
    background-color: #ffffff;
    border-radius: 12px; /* Rounded corners for the container */
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); /* Soft shadow for a floating card effect */
    /* Ensure nothing overflows the rounded corners */
    overflow: hidden; 
}

/* --- Video Element Styling --- */
#videoFrame {
    /* Make the video fill the width of its container */
    width: 100%; 
    height: auto;
    display: block; 
    border-radius: 8px; /* Slightly smaller rounded corners for the video itself */
}


/* --- Button Styling --- */
.buttons {
    margin-bottom: 30px;
}

.buttons button {
    background-color: #b88a3a;
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.buttons button:hover {
    background-color: #e7a32f; 
    transform: translateY(-2px);
}


/* ===== Brochure Popup ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #fff;
  width: 420px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
}

.modal-box h2 {
  margin-bottom: 10px;
}

.modal-box input,
.modal-box select,
.modal-box button {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
}

.modal-box button {
  background: #b88a3a;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.modal-box .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}